    /* --- EXACT SAME STYLES AS PROVIDED (unchanged) plus mobile nav additions --- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --green-deep: #0D4A2F;
      --green-mid: #146B44;
      --green: #1A8A57;
      --green-soft: #22A86A;
      --green-light: #34C97E;
      --mint: #D4F5E5;
      --mint-mid: #E8FAF1;
      --mint-pale: #e9f1ec;
      --white: #FFFFFF;
      --grey-page: #eef3f0;
      --grey-soft: #E6EDE9;
      --grey-border: #D1DDD6;
      --grey-text: #5C7268;
      --text: #0F2D1E;
      --gold: #F0A500;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--white);
      color: var(--text);
      overflow-x: hidden;
    }

    /* --- NAV --- */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5%;
      height: 70px;
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--grey-soft);
      box-shadow: 0 2px 20px rgba(15, 45, 30, 0.04);
    }



  /* --- Service Card with Image & Aligned Buttons --- */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 28px;
  }

  .service-card {
    background: #fff;
    border: 1.5px solid var(--grey-soft, #E6EDE9);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  .service-card:hover {
    border-color: var(--green, #1A8A57);
    transform: translateY(-4px);
    box-shadow: 0 16px 44px rgba(26,138,87,0.08);
  }

  .service-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--mint-pale, #F3FCF7);
  }

  .service-img img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .service-card:hover .service-img img {
    transform: scale(1.03);
  }

  .service-card .card-title {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text, #0F2D1E);
    padding: 18px 22px 6px 22px;
  }

  .service-card .card-desc {
    font-size: 14px;
    color: var(--grey-text, #5C7268);
    line-height: 1.65;
    padding: 0 22px 16px 22px;
    flex: 1;
  }

  /* --- Button row: Learn More (left) + Inquire (right) --- */
  .card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px 22px 22px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .card-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--green, #1A8A57);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s, color 0.2s;
    padding: 6px 0;
    white-space: nowrap;
  }

  .card-link:hover {
    gap: 10px;
    color: var(--green-dark, #0D4A2F);
  }

  .card-link.inquire {
    color: var(--white, #FFFFFF);
    background: var(--green, #1A8A57);
    padding: 6px 20px;
    border-radius: 8px;
    font-weight: 600;
    gap: 4px;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
  }

  .card-link.inquire:hover {
    background: var(--green-mid, #146B44);
    transform: translateY(-1px);
    gap: 4px;
    color: #fff;
  }

  /* --- Responsive --- */
  @media (max-width: 600px) {
    .services-grid {
      grid-template-columns: 1fr;
      max-width: 420px;
      margin: 0 auto;
    }

    .card-actions {
      flex-wrap: wrap;
      justify-content: space-between;
    }
  }


    .service-img img{
        width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
        }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .nav-logo-icon {
      width: 38px;
      height: 38px;
      background: var(--green);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: #fff;
    }

    .nav-logo-text span {
      display: block;
      font-family: 'Sora', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: var(--text);
      letter-spacing: -0.2px;
    }

    .nav-logo-text small {
      font-size: 10px;
      font-weight: 500;
      color: var(--green);
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      font-size: 15px !important;
      font-weight: 500;
      color: var(--grey-text);
      text-decoration: none;
      transition: color 0.2s;
    }

    .nav-links a:hover {
      color: var(--green);
    }

    .nav-cta {
      background: var(--green);
      color: #fff;
      padding: 9px 22px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 700;
      text-decoration: none;
      font-family: 'Sora', sans-serif;
      transition: background 0.2s, transform 0.2s;
      box-shadow: 0 4px 12px rgba(26, 138, 87, 0.2);
    }

    .nav-cta:hover {
      background: var(--green-mid);
      transform: translateY(-1px);
    }

    /* --- HAMBURGER (mobile) --- */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 26px;
      height: 2.5px;
      background: var(--text);
      border-radius: 4px;
      transition: all 0.25s;
    }

    /* --- MOBILE NAV OVERLAY --- */
    .mobile-nav-overlay {
      position: fixed;
      top: 70px;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(10px);
      padding: 30px 5% 40px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
      transform: translateY(-120%);
      transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
      z-index: 99;
      border-bottom: 1px solid var(--grey-soft);
      display: flex;
      flex-direction: column;
      gap: 22px;
    }

    .mobile-nav-overlay.open {
      transform: translateY(0);
    }

    .mobile-nav-overlay a {
      font-size: 16px;
      font-weight: 500;
      color: var(--text);
      text-decoration: none;
      padding: 8px 0;
      border-bottom: 1px solid var(--grey-soft);
      transition: color 0.2s;
    }

    .mobile-nav-overlay a:hover {
      color: var(--green);
    }

    .mobile-nav-overlay .mobile-cta {
      background: var(--green);
      color: #fff;
      padding: 12px 20px;
      border-radius: 8px;
      text-align: center;
      font-weight: 700;
      font-family: 'Sora', sans-serif;
      border-bottom: none;
      margin-top: 6px;
    }

    .mobile-nav-overlay .mobile-cta:hover {
      background: var(--green-mid);
      color: #fff;
    }

    /* --- HERO --- */
    .hero {
      min-height: 100vh;
      background: url('../assets/img/hero2.png');
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: 100px 5% 60px;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 55% 55% at 72% 45%, rgba(52, 201, 126, 0.12) 0%, transparent 65%),
        radial-gradient(ellipse 35% 45% at 15% 75%, rgba(26, 138, 87, 0.15) 0%, transparent 60%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 640px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(52, 201, 126, 0.12);
      border: 1px solid rgba(52, 201, 126, 0.3);
      color: var(--green-light);
      padding: 6px 16px;
      border-radius: 100px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 28px;
    }

    .hero-badge span {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--green-light);
      display: inline-block;
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.3;
      }
    }

    .hero-headline {
      font-family: 'Sora', sans-serif;
      font-size: clamp(36px, 5.2vw, 64px);
      font-weight: 800;
      color: #fff;
      line-height: 1.06;
      letter-spacing: -1.5px;
      margin-bottom: 22px;
    }

    .hero-headline em {
      font-style: normal;
      color: var(--green-light);
      position: relative;
    }

    .hero-headline em::after {
      content: '';
      position: absolute;
      bottom: 3px;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--green-light);
      opacity: 0.35;
      border-radius: 2px;
    }

    .hero-sub {
      font-size: 17px;
      color: rgb(217 226 221);
      line-height: 1.7;
      margin-bottom: 40px;
      max-width: 490px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--green-light);
      color: var(--green-deep);
      padding: 14px 30px;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 700;
      text-decoration: none;
      font-family: 'Sora', sans-serif;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.25s;
      box-shadow: 0 8px 28px rgba(52, 201, 126, 0.35);
    }

    .btn-primary:hover {
      background: #4DD98E;
      transform: translateY(-2px);
      box-shadow: 0 12px 36px rgba(52, 201, 126, 0.45);
    }

    .btn-outline-white {
      background: transparent;
      color: rgba(255, 255, 255, 0.85);
      padding: 14px 30px;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      border: 1.5px solid rgba(255, 255, 255, 0.2);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.25s;
    }

    .btn-outline-white:hover {
      border-color: var(--green-light);
      color: var(--green-light);
    }

    /* stats card */
    .hero-stats-card {
      position: absolute;
      right: 5%;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(13, 74, 47, 0.6);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(52, 201, 126, 0.2);
      border-radius: 20px;
      padding: 36px 32px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      min-width: 300px;
      z-index: 2;
    }

    .stat-item {
      text-align: center;
    }

    .stat-num {
      font-family: 'Sora', sans-serif;
      font-size: 36px;
      font-weight: 800;
      color: var(--green-light);
      line-height: 1;
      margin-bottom: 5px;
    }

    .stat-label {
      font-size: 11px;
       color: rgb(217 226 221);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .stat-divider {
      grid-column: 1/-1;
      height: 1px;
      background: rgba(52, 201, 126, 0.15);
    }

    .hero-scroll {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, 0.2);
      font-size: 10px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    .scroll-line {
      width: 1px;
      height: 38px;
      background: linear-gradient(to bottom, rgba(52, 201, 126, 0.7), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }

    @keyframes scrollPulse {

      0%,
      100% {
        opacity: 0.3;
      }

      50% {
        opacity: 1;
      }
    }

    /* --- TRUST BAR --- */
    .trust-bar {
      background: var(--mint-pale);
      border-bottom: 1px solid var(--grey-soft);
      padding: 18px 5%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 13px;
      font-weight: 500;
      color: var(--grey-text);
    }

    .trust-icon {
      font-size: 17px;
    }

    .trust-sep {
      width: 1px;
      height: 18px;
      background: var(--grey-border);
    }

    /* --- SHARED SECTION --- */
    section {
      padding: 50px 5%;
    }

    .section-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .section-label::before {
      content: '';
      width: 22px;
      height: 2px;
      background: var(--green);
      border-radius: 2px;
    }

    .section-title {
      font-family: 'Sora', sans-serif;
      font-size: clamp(26px, 3.2vw, 42px);
      font-weight: 800;
      color: var(--text);
      line-height: 1.16;
      letter-spacing: -0.7px;
      margin-bottom: 14px;
    }

    .section-sub {
      font-size: 16px;
      color: var(--grey-text);
      line-height: 1.7;
      max-width: 510px;
    }

    /* --- SERVICES --- */
    .services {
      background: var(--white);
    }

    .services-header {
      text-align: center;
      margin-bottom: 56px;
    }

    .services-header .section-label {
      justify-content: center;
    }

    .services-header .section-sub {
      margin: 0 auto;
    }

    .services-grid {
      display: grid;
      /* grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); */
      gap: 24px;
    }

    .service-card {
      background: #fff;
      border: 1.5px solid var(--grey-soft);
      border-radius: 16px;
      padding: 30px 26px;
      position: relative;
      overflow: hidden;
      transition: all 0.3s;
      cursor: default;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--green), var(--green-light));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s;
    }

    .service-card:hover {
      border-color: rgba(26, 138, 87, 0.2);
      transform: translateY(-4px);
      box-shadow: 0 16px 44px rgba(26, 138, 87, 0.08);
    }

    .service-card:hover::before {
      transform: scaleX(1);
    }

    .card-icon {
      width: 50px;
      height: 50px;
      background: var(--mint);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 18px;
      transition: background 0.3s;
    }

    .service-card:hover .card-icon {
      background: rgba(26, 138, 87, 0.12);
    }

    .card-title {
      font-family: 'Sora', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 9px;
    }

    .card-desc {
      font-size: 14px;
      color: var(--grey-text);
      line-height: 1.65;
      margin-bottom: 18px;
    }

    .card-link {
      font-size: 13px;
      font-weight: 600;
      color: var(--green);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.2s;
    }

    .card-link:hover {
      gap: 10px;
    }

    /* --- SPINE SPOTLIGHT --- */
    .spine-section {
      background: var(--grey-page);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }

    .feature-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 36px;
    }

    .feature-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 14px;
      color: var(--grey-text);
      line-height: 1.55;
    }

    .feature-list li::before {
      content: '✓';
      width: 22px;
      height: 22px;
      min-width: 22px;
      background: var(--mint);
      border: 1.5px solid rgba(26, 138, 87, 0.3);
      border-radius: 6px;
      color: var(--green);
      font-size: 11px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 1px;
    }

    .spine-visual {
      background: #fff;
      border: 1.5px solid var(--grey-soft);
      border-radius: 20px;
      padding: 36px;
      display: flex;
      flex-direction: column;
      gap: 13px;
      box-shadow: 0 4px 24px rgba(26, 138, 87, 0.06);
    }

    .spine-visual-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--grey-text);
      margin-bottom: 4px;
    }

    .tech-tag {
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--mint-pale);
      border: 1px solid var(--grey-soft);
      border-radius: 10px;
      padding: 12px 16px;
      font-size: 14px;
      color: var(--text);
      font-weight: 500;
      transition: border-color 0.2s, background 0.2s;
    }

    .tech-tag:hover {
      background: var(--mint);
      border-color: rgba(26, 138, 87, 0.25);
    }

    .tech-tag-dot {
      width: 8px;
      height: 8px;
      min-width: 8px;
      border-radius: 50%;
      background: var(--green);
    }

    .tech-tag-label {
      font-size: 10px;
      color: var(--green);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-left: auto;
      background: var(--mint);
      padding: 2px 8px;
      border-radius: 100px;
    }

    .spine-stat {
      margin-top: 4px;
      padding: 16px;
      background: var(--mint-pale);
      border: 1.5px solid rgba(26, 138, 87, 0.2);
      border-radius: 12px;
      text-align: center;
    }

    .spine-stat-num {
      font-size: 28px;
      font-weight: 800;
      font-family: 'Sora', sans-serif;
      color: var(--green);
    }

    .spine-stat-label {
      font-size: 11px;
      color: var(--grey-text);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-top: 2px;
    }

    /* --- PROCESS --- */
    .process {
      background: var(--white);
    }

    .process-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .process-header .section-label {
      justify-content: center;
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }

    .process-steps::before {
      content: '';
      position: absolute;
      top: 43px;
      left: 12.5%;
      right: 12.5%;
      height: 1.5px;
      background: linear-gradient(90deg, var(--green), rgba(26, 138, 87, 0.15));
      z-index: 0;
    }

    .process-step {
      text-align: center;
      padding: 0 18px;
      position: relative;
      z-index: 1;
    }

    .step-number {
      width: 54px;
      height: 54px;
      background: var(--white);
      border: 2px solid var(--green);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Sora', sans-serif;
      font-size: 18px;
      font-weight: 800;
      color: var(--green);
      margin: 0 auto 22px;
      transition: all 0.3s;
      box-shadow: 0 0 0 6px var(--mint-pale);
    }

    .process-step:hover .step-number {
      background: var(--green);
      color: #fff;
    }

    .step-title {
      font-family: 'Sora', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 8px;
    }

    .step-desc {
      font-size: 13px;
      color: var(--grey-text);
      line-height: 1.65;
    }

    /* --- TESTIMONIALS --- */
    .testimonials {
      background: var(--grey-page);
    }

    .testimonials-header {
      text-align: center;
      margin-bottom: 56px;
    }

    .testimonials-header .section-label {
      justify-content: center;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .testimonial-card {
      background: #fff;
      border: 1.5px solid var(--grey-soft);
      border-radius: 16px;
      padding: 30px;
      position: relative;
      transition: all 0.3s;
    }

    .testimonial-card:hover {
      border-color: rgba(26, 138, 87, 0.2);
      box-shadow: 0 8px 32px rgba(26, 138, 87, 0.07);
    }

    .quote-mark {
      font-size: 44px;
      line-height: 1;
      color: var(--green);
      opacity: 0.15;
      font-family: Georgia, serif;
      position: absolute;
      top: 18px;
      right: 22px;
    }

    .stars {
      color: var(--gold);
      font-size: 13px;
      letter-spacing: 2px;
      margin-bottom: 14px;
    }

    .testimonial-text {
      font-size: 14px;
      color: #3D5248;
      line-height: 1.7;
      margin-bottom: 22px;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .author-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--mint);
      border: 2px solid rgba(26, 138, 87, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Sora', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: var(--green-mid);
    }

    .author-name {
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
    }

    .author-tag {
      font-size: 12px;
      color: var(--grey-text);
    }

    /* --- CTA --- */
    /* .cta-section {
      background-image: url('../assets/img/cta.png');
      overlay: var(--green-deep);
      padding: 50px 5%;
      text-align: center;
      position: relative;
      overflow: hidden;
    } */
.cta-section{
    position: relative;
    overflow: hidden;
    padding: 50px 5%;
    text-align: center;

    background: url('../assets/img/cta.png') center center/cover no-repeat;
}
  
    .cta-section::before {
      content: '';
      position: absolute;
      top: -160px;
      left: 50%;
      transform: translateX(-50%);
      width: 700px;
      height: 350px;
      background: radial-gradient(ellipse, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
    }

    .cta-section .section-label {
      justify-content: center;
      color: var(--mint);
    }

    .cta-section .section-label::before {
      background: var(--mint);
    }

    .cta-section .section-title {
      color: #fff;
      max-width: 560px;
      margin: 0 auto 14px;
    }

    .cta-section p {
      color: rgba(255, 255, 255, 0.65);
      font-size: 16px;
      max-width: 460px;
      margin: 0 auto 38px;
      line-height: 1.7;
    }

    .cta-buttons {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-white {
      background: #fff;
      color: var(--green-mid);
      padding: 14px 30px;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 700;
      text-decoration: none;
      font-family: 'Sora', sans-serif;
      transition: all 0.25s;
      box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    }

    .btn-white:hover {
      background: var(--mint-pale);
      transform: translateY(-2px);
    }

    .btn-outline-green {
      background: transparent;
      color: rgba(255, 255, 255, 0.88);
      padding: 14px 30px;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      border: 1.5px solid rgba(255, 255, 255, 0.3);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.25s;
    }

    .btn-outline-green:hover {
      border-color: rgba(255, 255, 255, 0.7);
      color: #fff;
    }

    /* --- CONTACT --- */
    .contact-section {
      background: var(--white);
      padding: 50px 5%;
    }

    .contact-inner {
      max-width: 1080px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: start;
    }

    .contact-info .section-title {
      margin-bottom: 10px;
    }

    .contact-info>p {
      color: var(--grey-text);
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 32px;
    }

    .contact-items {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .contact-item-icon {
      width: 40px;
      height: 40px;
      min-width: 40px;
      background: var(--mint);
      border: 1.5px solid rgba(26, 138, 87, 0.2);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }

    .contact-item-text {
      font-size: 14px;
      color: var(--grey-text);
      line-height: 1.6;
    }

    .contact-item-text strong {
      color: var(--text);
      font-weight: 600;
      display: block;
      margin-bottom: 2px;
    }

    .contact-form {
      background: var(--mint-pale);
      border: 1.5px solid var(--grey-soft);
      border-radius: 20px;
      padding: 36px;
      box-shadow: 0 4px 24px rgba(26, 138, 87, 0.06);
    }

    .form-title {
      font-family: 'Sora', sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 24px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 13px;
    }

    .form-group {
      margin-bottom: 13px;
    }

    .form-group label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      color: var(--grey-text);
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      background: #fff;
      border: 1.5px solid var(--grey-soft);
      border-radius: 10px;
      padding: 11px 14px;
      color: var(--text);
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: #b0c0b8;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(26, 138, 87, 0.1);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 88px;
    }

    .btn-form {
      width: 100%;
      background: var(--green);
      color: #fff;
      padding: 14px;
      border-radius: 10px;
      border: none;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      font-family: 'Sora', sans-serif;
      transition: all 0.25s;
      margin-top: 4px;
    }

    .btn-form:hover {
      background: var(--green-mid);
    }

    /* --- FOOTER --- */
    footer {
      background: var(--green-deep);
      padding: 60px 5% 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 44px;
      margin-bottom: 44px;
    }

    .footer-brand p {
      font-size: 14px;
      color: rgb(255, 255, 255);
      line-height: 1.7;
      margin-top: 14px;
      max-width: 255px;
    }

    .footer-col h4 {
      font-family: 'Sora', sans-serif;
      font-size: 12px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.9);
      letter-spacing: 0.8px;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-col ul li a {
      font-size: 13px;
      color: rgb(255, 255, 255);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-col ul li a:hover {
      color: var(--green-light);
    }

    .footer-logo-text span {
      font-family: 'Sora', sans-serif;
      color: #fff;
      display: block;
      font-size: 14px;
      font-weight: 700;
    }

    .footer-logo-text small {
      font-size: 10px;
      font-weight: 500;
      color: var(--green-light);
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.07);
      padding-top: 26px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 12px;
      color: rgb(255, 255, 255);
    }

    .footer-bottom a {
      color: var(--green-light);
      text-decoration: none;
    }

    /* --- WHATSAPP FLOAT --- */
    .whatsapp-btn {
      position: fixed;
      bottom: 26px;
      right: 26px;
      z-index: 200;
      width: 54px;
      height: 54px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      text-decoration: none;
      box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
      transition: all 0.25s;
    }

    .whatsapp-btn:hover {
      transform: scale(1.08);
      box-shadow: 0 6px 26px rgba(37, 211, 102, 0.5);
    }

    /* --- RESPONSIVE (with mobile nav) --- */
    @media (max-width: 900px) {
      .nav-links {
        display: none;
      }

      .nav-cta {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .hero-stats-card {
        display: none;
      }

      .spine-section {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .process-steps {
        grid-template-columns: 1fr 1fr;
      }

      .process-steps::before {
        display: none;
      }

      .testimonials-grid {
        grid-template-columns: 1fr;
      }

      .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .form-row {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 550px) {
      .hero-stats-card {
        display: none;
      }

      .process-steps {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .hero {
        padding: 90px 5% 40px;
        min-height: 90vh;
      }

      .hero-actions {
        flex-direction: column;
        align-items: flex-start;
      }

      .btn-primary,
      .btn-outline-white {
        width: 100%;
        justify-content: center;
      }

      .section-title {
        font-size: 28px;
      }

      .spine-visual {
        padding: 24px;
      }

      .contact-form {
        padding: 24px;
      }
    }