    :root {
      /* DAP Brand Colors */
      --primary: #F4511E;           /* DAP Orange */
      --primary-dark: #D84315;      /* Darker orange for hover states */
      --primary-light: rgba(244, 81, 30, 0.1);
      --dark-bg: #082437;           /* DAP Dark Navy */
      --dark-card: #0d3049;         /* Slightly lighter navy for cards */
      --dark-border: #205D93;       /* DAP Medium Blue */
      --blue-medium: #205D93;       /* DAP Medium Blue */
      --blue-light: #5894B9;        /* DAP Light Blue */
      --accent-yellow: #FFC108;     /* DAP Yellow/Gold */
      --text-dark: #1a1a1a;
      --text-gray: #1a1a1a;         /* Same as dark for better contrast */
      --text-light: #444444;        /* Darker "light" text for readability */
      --bg-light: #f8f9fa;
      --bg-white: #ffffff;
      --border-light: #e5e7eb;
      --gold: #FFC108;              /* Updated to DAP Yellow */
    }

/* ====================================
   BREADCRUMB SECTION
   ==================================== */

.breadcrumb {
  padding: 120px 0 20px; /* Adjust 120px based on your header height */
  font-size: 14px;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}
    
    /* Hero Section */
    .hero {
      padding: 24px 0 60px;
      background: var(--bg-white);
    }
    
    .hero h1 {
      font-size: 48px;
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 24px;
      display: inline-block;
      border-bottom: 4px solid var(--primary);
      padding-bottom: 8px;
    }
    
    .hero .intro {
      font-size: 18px;
      color: #1a1a1a;
      max-width: 900px;
      line-height: 1.8;
      margin-bottom: 48px;
    }
    
    .hero .intro strong {
      color: var(--primary);
      font-weight: 600;
    }
    
    /* Hero Image FPO */
    .hero-image-fpo {
      border-radius: 12px;
      margin-top: 48px;
      overflow: hidden;
      background: var(--bg-light);
      border: 2px dashed var(--border-light);
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 16px;
      padding: 40px;
      text-align: center;
    }
    
    .hero-image-fpo img {
      display: block;
      width: 100%;
      height: auto;
    }
    
    .fpo-label {
      font-size: 12px;
      font-weight: 700;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    .fpo-specs {
      font-size: 13px;
      color: var(--text-gray);
      line-height: 1.8;
      max-width: 400px;
    }
    
    /* Metrics Section - Dark Background Style */
    .metrics-section {
      background: var(--dark-bg);
      padding: 60px 0;
    }
    
    .metrics-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 32px;
    }
    
    .metric-card {
      padding: 0;
      text-align: left;
    }
    
    .metric-card .label {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.5;
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    
    .metric-card .value {
      font-size: 50px;
      font-weight: 800;
      color: var(--bg-white);
      line-height: 1;
      margin-bottom: 16px;
    }
    
    .metric-card .bar {
      width: 40px;
      height: 3px;
      background: var(--primary);
    }
    
    /* Client & Services Section - Two Column */
    .client-services-section {
      padding: 60px 0;
      background: var(--bg-white);
    }
    
    .client-services-grid {
      display: grid;
      grid-template-columns: 340px 1fr;
      gap: 100px;
      align-items: start;
    }
    
    /* Client Info */
    .client-info {
      display: flex;
      flex-direction: column;
      gap: 24px;
      max-width: 340px;
    }
    
    /* How We Helped Content */
    .how-we-helped-content {
      background: var(--bg-light);
      padding: 40px;
      border-radius: 16px;
    }
    
    .how-we-helped-content .section-title {
      margin-bottom: 32px;
      font-size: 28px;
      font-weight: 400;
      color: var(--text-dark);
      display: inline-block;
      border-bottom: 3px solid var(--primary);
      border-left: none;
      padding-left: 0;
      padding-bottom: 8px;
    }
    
    .client-logo {
      width: 120px;
      height: 120px;
      background: var(--bg-white);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      border: 1px solid var(--border-light);
      padding: 8px;
    }
    
    .client-logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    
    .client-logo:hover {
      transform: scale(1.02);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .client-details {
      flex: 1;
    }
    
    .client-details .label {
      font-size: 20px;
      color: var(--text-light);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 4px;
      font-weight: 600;
    }
    
    .client-details .value {
      font-size: 16px;
      color: var(--text-dark);
      margin-bottom: 16px;
    }
    
    .client-details .value a {
      color: var(--primary);
      text-decoration: none;
    }
    
    .client-details .value a:hover {
      text-decoration: underline;
    }
    
    .client-details .bio {
      color: var(--text-gray);
      font-size: 16px;
      line-height: 1.6;
      margin-top: 0;
      margin-bottom: 16px;
    }
    
    /* Section Styling */
    .section {
      padding: 80px 0;
    }
    
    .section-alt {
      background: var(--bg-light);
    }
    
    .section-title{
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 48px;
      color: var(--text-dark);
      padding-left: 20px;
      border-left: 4px solid var(--primary);
    }
    .section-title b{
      font-size: 36px;
      font-weight: 700;
      padding-left: 0px;
      border-left: none;
    }

    
    .section-title span {
      color: var(--text-dark);
    }
    

/* ====================================
   PROJECT SUMMARY SECTION
   ==================================== */

.project-summary-section {
  padding: 60px 0;
  background: var(--bg-white);
}

.project-summary-section .section-title {
  margin-bottom: 32px;
}

.project-summary-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.project-summary-text {
  font-size: 18px;
  line-height: 1.8;
  color: #1a1a1a;
}

.project-summary-text p {
  color: #1a1a1a;
  margin-bottom: 16px;
}

.project-summary-text p:last-child {
  margin-bottom: 0;
}

/* Photo Grid */
.project-summary-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.project-summary-photos > div {
  overflow: hidden;
  border-radius: 12px;
  background: var(--dark-bg);
  padding: 20px;
}

/* First image spans 2 columns */
.project-summary-photos > div:first-child {
  grid-column: span 2;
}

.project-summary-photos > div:first-child img {
  height: 100%;
  object-fit: cover;
}

/* Remaining images */
.project-summary-photos > div:not(:first-child) img {
  height: 100%;
  object-fit: cover;
}

.project-summary-photos img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
  .project-summary-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .project-summary-photos {
    order: -1;
  }
}

@media (max-width: 768px) {
  /* Stack images on mobile */
  .project-summary-photos {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  /* Remove 2-column span on mobile */
  .project-summary-photos > div:first-child {
    grid-column: span 1;
  }
  
  .project-summary-photos > div:first-child img {
    height: 160px;
    object-fit: contain;
  }
  
  .project-summary-photos > div:not(:first-child) img {
    height: 160px;
  }
}   
    /* Video Section */
    .video-section {
      padding: 80px 0;
      background: var(--bg-light);
      text-align: center;
    }
    
    .video-section .section-title {
      border-left: none;
      padding-left: 0;
      display: block;
    }
    
    .video-section .section-subtitle {
      font-size: 16px;
      font-style: italic;
      color: var(--text-gray);
      margin-bottom: 40px;
    }
    
    .video-wrapper {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    }
    
    .video-wrapper iframe,
    .video-wrapper video {
      width: 100%;
      aspect-ratio: 16/9;
      display: block;
    }
    
    .video-thumbnail {
      position: relative;
      cursor: pointer;
    }
    
    .video-thumbnail img {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
    }
    
    .video-play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80px;
      height: 80px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .video-play-btn:hover {
      transform: translate(-50%, -50%) scale(1.1);
      box-shadow: 0 4px 20px rgba(244, 81, 30, 0.4);
    }
    
    .video-play-btn svg {
      width: 32px;
      height: 32px;
      fill: white;
      margin-left: 4px;
    }

        /* Challenge Section */
    .challenge-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }
    
    .challenge-visual {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    
    .challenge-visual svg {
      width: 100%;
      max-width: 450px;
      height: auto;
    }
    
    .challenge-list {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    
    .challenge-item {
      background: var(--bg-white);
      border: 1px solid var(--border-light);
      border-radius: 12px;
      padding: 24px;
      border-left: 4px solid var(--primary);
    }
    
    .challenge-item .category {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 600;
      margin-bottom: 8px;
    }
    
    .challenge-item .category svg {
      width: 16px;
      height: 16px;
    }
    
    .challenge-item h3 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--text-dark);
    }
    
    .challenge-item p {
      font-size: 14px;
      color: var(--text-gray);
      line-height: 1.6;
    }

    /* ====================================
       HOW WE HELPED SECTION - Template Style
       ==================================== */
    
    /* Service Category Row */
    .service-category-row {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 28px;
    }
    
    .service-category-row:last-child {
      margin-bottom: 0;
    }
    
    /* Category Icon */
    .category-icon-box {
      width: 64px;
      height: 64px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(244, 81, 30, 0.1);
      border-radius: 12px;
    }
    
    .category-icon-box svg {
      width: 36px;
      height: 36px;
      color: var(--primary);
      stroke: var(--primary);
      stroke-width: 1.5;
    }
    
    /* Category Content */
    .category-content {
      flex: 1;
      padding-top: 4px;
    }
    
    .category-content h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 4px;
    }
    
    .category-content h3 a {
      color: var(--text-dark);
      text-decoration: none;
    }
    
    .category-content h3 a:hover {
      color: var(--primary);
    }
    
    /* Service Links - Pipe Separated */
    .service-links {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      font-size: 14px;
      line-height: 1.6;
    }
    
    .service-links a {
      color: var(--primary);
      text-decoration: none;
    }
    
    .service-links a:hover {
      text-decoration: underline;
    }
    
    .service-links .separator {
      color: var(--text-dark);
      margin: 0 6px;
      font-weight: 300;
    }

    /* Solutions Section */
    .solution-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
      margin-bottom: 64px;
      padding-bottom: 64px;
      border-bottom: 1px solid var(--border-light);
    }
    
    .solution-block:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }
    
    .solution-block:nth-child(even) {
      direction: rtl;
    }
    
    .solution-block:nth-child(even) > * {
      direction: ltr;
    }
    
    .solution-content h3 {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 16px;
      color: var(--primary);
    }
    
    .solution-content p {
      color: var(--text-dark);
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 16px;
    }
    
    .solution-content ul {
      list-style: none;
      padding: 0;
      margin-top: 16px;
    }
    
    .solution-content ul li {
      color: #1a1a1a;
      font-size: 15px;
      padding: 12px 12px 12px 40px;
      position: relative;
      background: #ffffff;
      border-radius: 8px;
      margin-bottom: 15px;
      border-left: 3px solid var(--primary);
      box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    }
    
    .solution-content ul li::before {
      content: "";
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      width: 18px;
      height: 18px;
      background: var(--primary);
      border-radius: 50%;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
      background-size: 12px;
      background-position: center;
      background-repeat: no-repeat;
    }
    
    .solution-image {
      background: var(--bg-light);
      border-radius: 16px;
      height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--border-light);
      flex-direction: column;
      gap: 12px;
      padding: 24px;
      text-align: center;
    }

    /* Results Section - Alternating Layout */
    .result-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      padding: 80px 0;
      border-bottom: 1px solid var(--border-light);
    }
    
    .result-block:last-child {
      border-bottom: none;
    }
    
    .result-block:nth-child(even) {
      direction: rtl;
    }
    
    .result-block:nth-child(even) > * {
      direction: ltr;
    }
    
    .result-content {
      padding: 20px 0;
    }
    
    .result-icon {
      width: 48px;
      height: 48px;
      margin-bottom: 20px;
    }
    
    .result-icon svg {
      width: 48px;
      height: 48px;
      stroke: var(--text-dark);
      stroke-width: 1.5;
      fill: none;
    }
    
    .result-metric {
      margin-bottom: 8px;
    }
    
    .result-metric .value {
      font-size: 64px;
      font-weight: 700;
      color: var(--primary);
      line-height: 1;
      letter-spacing: -2px;
    }
    
    .result-metric .label {
      font-size: 13px;
      color: var(--text-dark);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 8px;
    }
    
    .result-divider {
      width: 40px;
      height: 3px;
      background: var(--primary);
      margin: 24px 0;
    }
    
    .result-description {
      font-size: 17px;
      color: var(--text-gray);
      line-height: 1.8;
    }
    
    .result-image-wrapper {
      position: relative;
    }
    
    .result-image {
      background: var(--dark-bg);
      border-radius: 12px;
      min-height: 280px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.5);
      font-size: 14px;
      overflow: hidden;
      border: 3px solid var(--dark-bg);
      padding: 20px;
      flex-direction: column;
      gap: 12px;
      text-align: center;
    }
    
    .result-image-arc {
      display: none;
    }
    
    .result-image-arc svg {
      width: 100%;
      height: 100%;
    }
    
    .result-callout {
      position: relative;
      margin-top: 20px;
      background: white;
      border-radius: 8px;
      padding: 16px 24px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      border-bottom: 3px solid var(--primary);
      display: flex;
      align-items: center;
      gap: 16px;
    }
    
    .result-callout .callout-value {
      font-size: 32px;
      font-weight: 700;
      color: var(--primary);
      line-height: 1;
    }
    
    .result-callout .callout-label {
      font-size: 11px;
      font-weight: 700;
      color: var(--text-dark);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      line-height: 1.4;
      max-width: 140px;
    }

    /* CTA Section with Form */
    .cta-section {
      background: var(--dark-bg);
      padding: 80px 0;
    }
    
    .cta-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    
    .cta-image {
      position: relative;
    }
    
    .cta-image img {
      width: 100%;
      max-width: 480px;
      border-radius: 0 270px;
      display: block;
    }
    
    .cta-image-placeholder {
      width: 100%;
      max-width: 480px;
      height: 360px;
      background: linear-gradient(135deg, #1a3a5c 0%, #0d2137 100%);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.3);
      font-size: 14px;
      border: 2px solid rgba(255,255,255,0.1);
      flex-direction: column;
      gap: 12px;
      padding: 24px;
      text-align: center;
    }
    
    .cta-content h2 {
      font-size: 36px;
      font-weight: 400;
      color: white;
      line-height: 1.3;
      margin-bottom: 8px;
    }
    
    .cta-content h2 .underline {
      text-decoration: underline;
      text-decoration-color: var(--primary);
      text-underline-offset: 4px;
    }
    
    .cta-form-wrapper {
      background: white;
      border-radius: 12px;
      padding: 32px;
      margin-top: 32px;
    }
    
    .cta-form {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    
    .form-field {
      position: relative;
    }
    
    .form-field input,
    .form-field select,
    .form-field textarea {
      width: 100%;
      padding: 16px;
      border: 1px solid var(--border-light);
      border-radius: 8px;
      font-size: 14px;
      font-family: inherit;
      color: var(--text-dark);
      background: white;
      transition: border-color 0.2s;
    }
    
    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
      outline: none;
      border-color: var(--primary);
    }
    
    .form-field input::placeholder,
    .form-field textarea::placeholder {
      color: var(--text-light);
    }
    
    .form-field .field-icon {
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-light);
    }
    
    .form-field .field-icon svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      stroke-width: 1.5;
      fill: none;
    }
    
    .form-consent {
      font-size: 12px;
      color: var(--text-gray);
      line-height: 1.6;
      margin-top: 8px;
    }
    
    .form-consent a {
      color: var(--primary);
      text-decoration: none;
    }
    
    .form-consent a:hover {
      text-decoration: underline;
    }
    
    .form-submit {
      background: var(--primary);
      color: white;
      border: none;
      padding: 18px 32px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      transition: background 0.2s, transform 0.2s;
      margin-top: 8px;
    }
    
    .form-submit:hover {
      background: var(--primary-dark);
      transform: translateY(-1px);
    }
    
    .form-submit svg {
      width: 18px;
      height: 18px;
      fill: white;
    }

    /* Testimonial Section */
    .testimonial-section {
      background: var(--dark-bg);
      padding: 100px 0;
      text-align: center;
    }
    
    .testimonial-quote {
      max-width: 900px;
      margin: 0 auto 48px;
      font-size: 22px;
      font-weight: 500;
      color: white;
      line-height: 1.7;
      position: relative;
    }
    
    .testimonial-quote .quote-mark {
      color: var(--primary);
      font-size: 28px;
      font-weight: 700;
    }
    
    .testimonial-author {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }
    
    .testimonial-avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: white;
      font-weight: 600;
      border: 3px solid rgba(255,255,255,0.1);
    }
    
    .testimonial-avatar img {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
    }
    
    .testimonial-name {
      font-size: 18px;
      font-weight: 700;
      color: white;
    }
    
    .testimonial-title {
      font-size: 15px;
      color: rgba(255,255,255,0.7);
      margin-top: -8px;
    }
    
    .testimonial-company {
      font-size: 14px;
      color: rgba(255,255,255,0.5);
      margin-top: -8px;
    }

    /* Project Summary Section */
    .summary-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }
    
    .summary-text {
      font-size: 17px;
      color: var(--text-gray);
      line-height: 1.8;
    }
    
    .summary-text p {
      margin-bottom: 20px;
    }
    
    .summary-text p:last-child {
      margin-bottom: 0;
    }
    
    .summary-image {
      background: var(--bg-light);
      border-radius: 16px;
      height: 350px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--border-light);
    }
    
    /* Before/After Comparison */
    .before-after-comparison {
      display: flex;
      flex-direction: column;
      gap: 16px;
      width: 100%;
    }
    
    .comparison-item {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    
    .comparison-item img {
      width: 100%;
      height: auto;
      display: block;
    }
    
    .comparison-label {
      position: absolute;
      top: 12px;
      left: 12px;
      padding: 6px 16px;
      border-radius: 4px;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    .comparison-label.before {
      background: var(--text-gray);
      color: white;
    }
    
    .comparison-label.after {
      background: var(--primary);
      color: white;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .metrics-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .client-services-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }
      .project-summary-content {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .project-summary-photos {
        order: -1;
      }
      .header-nav {
        display: none;
      }
      .footer-top {
        grid-template-columns: 1fr 1fr;
      }
      .result-block,
      .solution-block {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .result-block:nth-child(even),
      .solution-block:nth-child(even) {
        direction: ltr;
      }
      .result-content {
        order: 1;
      }
      .result-image-wrapper {
        order: 2;
      }
    }
    
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 32px;
      }
      .metrics-grid {
        grid-template-columns: 1fr;
      }
      .metrics-row-bottom {
        grid-template-columns: 1fr;
        max-width: 100%;
      }
      .metric-card .value {
        font-size: 36px;
      }
      .client-info {
        text-align: center;
        align-items: center;
      }
      .challenge-grid {
        grid-template-columns: 1fr;
      }
      .challenge-visual {
        order: -1;
        margin-bottom: 24px;
      }
      .challenge-visual svg {
        max-width: 350px;
      }
      .result-block {
        grid-template-columns: 1fr;
        padding: 48px 0;
      }
      .result-metric .value {
        font-size: 48px;
      }
      .result-image {
        min-height: 200px;
      }
      .result-callout {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 16px;
        margin-left: 20px;
        margin-right: 20px;
      }
      .result-image-arc {
        display: none;
      }
      .solution-block {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .solution-image {
        height: 200px;
      }
      .service-category-row {
        flex-direction: column;
        align-items: flex-start;
      }
      .header-phone {
        display: none;
      }
      .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .footer-tagline {
        font-size: 20px;
      }
      .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
      }
      .footer-cta-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
      }
      .cta-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .cta-image-placeholder {
        max-width: 100%;
        height: 280px;
      }
      .cta-content h2 {
        font-size: 28px;
      }
      .form-row {
        grid-template-columns: 1fr;
      }
      .testimonial-quote {
        font-size: 18px;
        padding: 0 16px;
      }
      .summary-content {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .summary-image {
        height: 250px;
      }
      .before-after-comparison {
        gap: 12px;
      }
      .comparison-label {
        padding: 4px 12px;
        font-size: 10px;
      }
    }