/* =========================================================
       DESIGN TOKENS
    ========================================================= */
    :root {
      /* Brand Colors */
      --clr-bg:            #f4f7f5;
      --clr-bg-mint:       #edf5f0;
      --clr-surface:       #ffffff;
      --clr-surface-2:     #f8fbf9;
      --clr-divider:       #dce6e0;
      --clr-border:        #ccdbd3;

      /* Dark Blue — primary brand */
      --clr-navy:          #0d2240;
      --clr-navy-hover:    #162f56;
      --clr-navy-light:    #1e3a6e;

      /* Green — accent */
      --clr-green:         #4faa72;
      --clr-green-hover:   #3d9460;
      --clr-green-light:   #e4f4eb;
      --clr-green-pale:    #f0faf4;

      /* Text */
      --clr-text:          #1a2e20;
      --clr-text-muted:    #5a7060;
      --clr-text-faint:    #96a89c;
      --clr-text-inverse:  #f8fbf9;

      /* Typography */
      --font-display: 'Playfair Display', Georgia, serif;
      --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

      /* Type Scale */
      --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
      --text-sm:   clamp(0.875rem, 0.82rem + 0.28vw, 1rem);
      --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
      --text-lg:   clamp(1.125rem, 1rem    + 0.6vw,  1.375rem);
      --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.125rem);
      --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.25rem);
      --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    4.5rem);

      /* Spacing */
      --sp-1:  0.25rem;
      --sp-2:  0.5rem;
      --sp-3:  0.75rem;
      --sp-4:  1rem;
      --sp-5:  1.25rem;
      --sp-6:  1.5rem;
      --sp-8:  2rem;
      --sp-10: 2.5rem;
      --sp-12: 3rem;
      --sp-16: 4rem;
      --sp-20: 5rem;
      --sp-24: 6rem;

      /* Radii */
      --r-sm:   0.375rem;
      --r-md:   0.625rem;
      --r-lg:   1rem;
      --r-xl:   1.5rem;
      --r-full: 9999px;

      /* Shadows */
      --sh-sm: 0 1px 3px rgba(13,34,64,0.06), 0 1px 2px rgba(13,34,64,0.04);
      --sh-md: 0 4px 16px rgba(13,34,64,0.08), 0 2px 6px rgba(13,34,64,0.05);
      --sh-lg: 0 12px 40px rgba(13,34,64,0.11), 0 4px 16px rgba(13,34,64,0.06);

      /* Transitions */
      --tr: 220ms cubic-bezier(0.16, 1, 0.3, 1);

      /* Layout */
      --content: 1160px;
      --content-narrow: 720px;
    }

    /* =========================================================
       BASE RESET
    ========================================================= */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html {
      scroll-behavior: smooth;
      scroll-padding-top: 80px;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
    }
    section[id] {
      scroll-margin-top: 88px;
    }
    body {
      font-family: var(--font-body);
      font-size: var(--text-base);
      color: var(--clr-text);
      background: var(--clr-bg);
      line-height: 1.65;
      overflow-x: hidden;
    }
    img, picture, video, svg { display: block; max-width: 100%; }
    ul[role="list"] { list-style: none; }
    button { cursor: pointer; font: inherit; border: none; background: none; }
    a { color: inherit; text-decoration: none; }
    h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); line-height: 1.15; text-wrap: balance; }
    p, li { text-wrap: pretty; }
    :focus-visible { outline: 2px solid var(--clr-green); outline-offset: 3px; border-radius: var(--r-sm); }

    /* =========================================================
       SCROLL PROGRESS BAR
    ========================================================= */
    #scroll-progress {
      position: fixed;
      top: 0; left: 0;
      height: 3px;
      width: 0%;
      background: var(--clr-green);
      z-index: 1000;
      transition: width 0.1s linear;
    }

    /* =========================================================
       SKIP LINK
    ========================================================= */
    .skip-link {
      position: absolute;
      top: -100%; left: var(--sp-4);
      background: var(--clr-navy);
      color: var(--clr-text-inverse);
      padding: var(--sp-2) var(--sp-4);
      border-radius: var(--r-md);
      font-size: var(--text-sm);
      z-index: 9999;
      transition: top var(--tr);
    }
    .skip-link:focus { top: var(--sp-4); }

    /* =========================================================
       UTILITY CLASSES
    ========================================================= */
    .container {
      max-width: var(--content);
      margin-inline: auto;
      padding-inline: clamp(var(--sp-4), 5vw, var(--sp-12));
    }
    .container--narrow {
      max-width: var(--content-narrow);
      margin-inline: auto;
      padding-inline: clamp(var(--sp-4), 5vw, var(--sp-12));
    }
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: var(--sp-2);
      font-family: var(--font-body);
      font-size: var(--text-xs);
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--clr-green);
      margin-bottom: var(--sp-4);
    }
    .section-label::before {
      content: '';
      display: block;
      width: 20px;
      height: 2px;
      background: var(--clr-green);
      border-radius: var(--r-full);
      flex-shrink: 0;
    }

    /* =========================================================
       PLACEHOLDER BLOCKS
    ========================================================= */
    .placeholder {
      background: linear-gradient(135deg, var(--clr-bg-mint) 0%, #dceae3 100%);
      border: 2px dashed var(--clr-border);
      border-radius: var(--r-md);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: var(--sp-2);
      color: var(--clr-text-muted);
      font-size: var(--text-sm);
      font-family: var(--font-body);
      font-weight: 500;
      position: relative;
      overflow: hidden;
    }
    .placeholder::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 8px,
        rgba(79,170,114,0.05) 8px,
        rgba(79,170,114,0.05) 9px
      );
    }
    .placeholder-icon {
      width: 40px;
      height: 40px;
      border-radius: var(--r-full);
      background: rgba(79,170,114,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1;
    }
    .placeholder-icon svg { color: var(--clr-green); }
    .placeholder span { position: relative; z-index: 1; }

    /* =========================================================
       BUTTONS
    ========================================================= */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: var(--sp-2);
      font-family: var(--font-body);
      font-size: var(--text-sm);
      font-weight: 600;
      line-height: 1;
      padding: 0.875rem 1.75rem;
      border-radius: var(--r-md);
      transition: background var(--tr), color var(--tr), box-shadow var(--tr), transform var(--tr);
      cursor: pointer;
      border: 2px solid transparent;
      white-space: nowrap;
    }
    .btn:active { transform: translateY(1px); }
    .btn--primary {
      background: var(--clr-navy);
      color: var(--clr-text-inverse);
      border-color: var(--clr-navy);
    }
    .btn--primary:hover {
      background: var(--clr-navy-hover);
      border-color: var(--clr-navy-hover);
      box-shadow: var(--sh-md);
    }
    .btn--accent {
      background: var(--clr-green);
      color: #fff;
      border-color: var(--clr-green);
    }
    .btn--accent:hover {
      background: var(--clr-green-hover);
      border-color: var(--clr-green-hover);
      box-shadow: var(--sh-md);
    }
    .btn--outline {
      background: transparent;
      color: var(--clr-navy);
      border-color: var(--clr-navy);
    }
    .btn--outline:hover {
      background: var(--clr-navy);
      color: var(--clr-text-inverse);
    }
    .btn--ghost {
      background: transparent;
      color: var(--clr-navy);
      border-color: transparent;
      padding-inline: var(--sp-4);
    }
    .btn--ghost:hover { background: var(--clr-bg-mint); }
    .btn--sm {
      font-size: var(--text-xs);
      padding: 0.625rem 1.25rem;
    }

    /* =========================================================
       HEADER / NAV
    ========================================================= */
    #site-header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 900;
      padding: var(--sp-4) 0;
      background: transparent;
      transition: background var(--tr), box-shadow var(--tr), padding var(--tr);
    }
    #site-header.scrolled {
      background: rgba(244, 247, 245, 0.9);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 1px 0 var(--clr-divider), var(--sh-sm);
      padding: var(--sp-3) 0;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--sp-8);
    }
    .header-logo {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      gap: var(--sp-3);
    }
    .logo-placeholder {
      width: 44px;
      height: 44px;
      border-radius: var(--r-md);
      background: var(--clr-green-light);
      border: 2px dashed var(--clr-border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .logo-svg {
      width: 36px; height: 36px;
    }
    .logo-wordmark {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }
    .logo-wordmark strong {
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--clr-navy);
      letter-spacing: -0.01em;
    }
    .logo-wordmark span {
      font-size: 0.65rem;
      font-weight: 500;
      color: var(--clr-text-muted);
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .header-nav {
      display: flex;
      align-items: center;
      gap: var(--sp-1);
      list-style: none;
    }
    .header-nav a {
      font-size: var(--text-sm);
      font-weight: 500;
      color: var(--clr-text);
      padding: var(--sp-2) var(--sp-3);
      border-radius: var(--r-sm);
      transition: color var(--tr), background var(--tr);
    }
    .header-nav a:hover { color: var(--clr-navy); background: var(--clr-bg-mint); }
    .header-nav a.active { color: var(--clr-green); }
    .header-actions {
      display: flex;
      align-items: center;
      gap: var(--sp-3);
    }
    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: var(--sp-2);
      border-radius: var(--r-sm);
      transition: background var(--tr);
    }
    .menu-toggle:hover { background: var(--clr-bg-mint); }
    .menu-toggle span {
      display: block;
      width: 22px; height: 2px;
      background: var(--clr-navy);
      border-radius: var(--r-full);
      transition: transform var(--tr), opacity var(--tr);
    }
    .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile nav drawer */
    .mobile-nav {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--clr-surface);
      z-index: 850;
      padding: 100px var(--sp-8) var(--sp-8);
      flex-direction: column;
      gap: var(--sp-2);
      overflow-y: auto;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-size: var(--text-lg);
      font-family: var(--font-display);
      font-weight: 500;
      color: var(--clr-navy);
      padding: var(--sp-4) 0;
      border-bottom: 1px solid var(--clr-divider);
      display: block;
      transition: color var(--tr);
    }
    .mobile-nav a:hover { color: var(--clr-green); }
    .mobile-nav .btn { margin-top: var(--sp-6); width: 100%; justify-content: center; }

    /* =========================================================
       SCROLL ANIMATIONS
    ========================================================= */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-left {
      opacity: 0;
      transform: translateX(-28px);
      transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-left.visible { opacity: 1; transform: translateX(0); }
    .reveal-right {
      opacity: 0;
      transform: translateX(28px);
      transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-right.visible { opacity: 1; transform: translateX(0); }
    .reveal-scale {
      opacity: 0;
      transform: scale(0.96);
      transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-scale.visible { opacity: 1; transform: scale(1); }
    .section-reveal {
      opacity: 0;
      transform: translateX(40px);
      transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: opacity, transform;
    }
    .section-reveal--left { transform: translateX(-40px); }
    .section-reveal--right { transform: translateX(40px); }
    .section-reveal.visible {
      opacity: 1;
      transform: translateX(0);
    }
    .stagger-1 { transition-delay: 0.08s; }
    .stagger-2 { transition-delay: 0.16s; }
    .stagger-3 { transition-delay: 0.24s; }
    .stagger-4 { transition-delay: 0.32s; }
    .stagger-5 { transition-delay: 0.40s; }
    .stagger-6 { transition-delay: 0.48s; }

    /* =========================================================
       HERO SECTION
    ========================================================= */
    #hero {
      padding-top: clamp(100px, 15vw, 100px);
      padding-bottom: clamp(var(--sp-16), 8vw, var(--sp-24));
      background: var(--clr-bg);
      position: relative;
      overflow: hidden;
    }
    #hero::before {
      content: '';
      position: absolute;
      top: -120px; right: -80px;
      width: 600px; height: 600px;
      background: radial-gradient(ellipse at center, rgba(79,170,114,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(var(--sp-10), 6vw, var(--sp-16));
      align-items: center;
    }
    .hero-content { max-width: 560px; }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: var(--sp-2);
      background: var(--clr-green-light);
      color: var(--clr-green-hover);
      font-size: var(--text-xs);
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: var(--r-full);
      margin-bottom: var(--sp-6);
    }
    .hero-badge::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--clr-green);
      border-radius: 50%;
      /* animation: pulse 9.4s ease-in-out infinite; */
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.8); }
    }
    .hero-heading {
      font-size: var(--text-3xl);
      font-weight: 600;
      color: var(--clr-navy);
      line-height: 1.1;
      margin-bottom: var(--sp-5);
      letter-spacing: -0.02em;
    }
    .hero-heading em {
      font-style: italic;
      color: var(--clr-green);
    }
    .hero-subtext {
      font-size: var(--text-base);
      color: var(--clr-text-muted);
      max-width: 46ch;
      margin-bottom: var(--sp-8);
      line-height: 1.7;
    }
    .hero-cta-group {
      display: flex;
      align-items: center;
      gap: var(--sp-4);
      flex-wrap: wrap;
      margin-bottom: var(--sp-10);
    }
    .hero-trust-strip {
      display: flex;
      flex-wrap: wrap;
      gap: var(--sp-5);
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: var(--sp-2);
      font-size: var(--text-xs);
      font-weight: 600;
      color: var(--clr-text-muted);
      letter-spacing: 0.02em;
    }
    .trust-item::before {
      content: '';
      width: 8px; height: 8px;
      background: var(--clr-green);
      border-radius: 50%;
      flex-shrink: 0;
    }
    .hero-image-wrap {
      position: relative;
    }
    .hero-placeholder {
      width: 100%;
      aspect-ratio: 4/5;
      max-height: 580px;
      border-radius: var(--r-xl);
      overflow: hidden;
    }
    .hero-placeholder.placeholder {
      border-radius: var(--r-xl);
    }
    .hero-float-card {
      position: absolute;
      bottom: var(--sp-8);
      left: calc(-1 * var(--sp-8));
      background: var(--clr-surface);
      border-radius: var(--r-lg);
      padding: var(--sp-4) var(--sp-5);
      box-shadow: var(--sh-lg);
      min-width: 200px;
    }
    .hero-float-card p {
      font-size: var(--text-xs);
      color: var(--clr-text-muted);
      margin-bottom: var(--sp-1);
    }
    .hero-float-card strong {
      font-family: var(--font-display);
      font-size: var(--text-lg);
      color: var(--clr-navy);
      display: block;
    }
    .hero-float-card .tag {
      display: inline-block;
      background: var(--clr-green-light);
      color: var(--clr-green-hover);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 3px 8px;
      border-radius: var(--r-full);
      margin-top: var(--sp-2);
    }

    /* =========================================================
       SECTION DIVIDER
    ========================================================= */
    .divider {
      height: 1px;
      background: var(--clr-divider);
      margin: 0;
    }

    /* =========================================================
       ABOUT SECTION
    ========================================================= */
    #about {
      padding-block: clamp(var(--sp-16), 8vw, var(--sp-24));
      background: var(--clr-surface);
    }
    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(var(--sp-10), 7vw, var(--sp-20));
      align-items: start;
    }
    .about-image-wrap { position: relative; }
    .about-placeholder {
      width: 100%;
      aspect-ratio: 3/4;
      border-radius: var(--r-xl);
    }
    .about-accent-block {
      position: absolute;
      bottom: calc(-1 * var(--sp-6));
      right: calc(-1 * var(--sp-6));
      background: var(--clr-navy);
      color: var(--clr-text-inverse);
      border-radius: var(--r-lg);
      padding: var(--sp-5) var(--sp-6);
      max-width: 210px;
      box-shadow: var(--sh-lg);
    }
    .about-accent-block p {
      font-size: var(--text-xs);
      color: rgba(255,255,255,0.65);
      margin-bottom: var(--sp-1);
    }
    .about-accent-block strong {
      font-family: var(--font-display);
      font-size: var(--text-lg);
      font-weight: 600;
      display: block;
      line-height: 1.2;
    }
    .about-content {}
    .about-heading {
      font-size: var(--text-2xl);
      font-weight: 600;
      color: var(--clr-navy);
      margin-bottom: var(--sp-5);
      letter-spacing: -0.02em;
    }
    .about-lead {
      font-size: var(--text-base);
      color: var(--clr-text-muted);
      max-width: 52ch;
      margin-bottom: var(--sp-8);
      line-height: 1.75;
    }
    .about-features {
      display: grid;
      gap: var(--sp-5);
    }
    .about-feature {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: var(--sp-4);
      align-items: start;
    }
    .about-feature-point {
      position: relative;
      width: 30px;
      height: 14px;
      margin-top: 6px;
      display: inline-block;
      flex-shrink: 0;
    }
    .about-feature-point::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--clr-green);
      transform: translateY(-50%);
    }
    .about-feature-text h4 {
      font-family: var(--font-body);
      font-size: var(--text-base);
      font-weight: 600;
      color: var(--clr-navy);
      margin-bottom: 4px;
    }
    .about-feature-text p {
      font-size: var(--text-sm);
      color: var(--clr-text-muted);
      line-height: 1.6;
    }

    /* =========================================================
       SERVICES SECTION
    ========================================================= */
    #services {
      padding-block: clamp(var(--sp-16), 8vw, var(--sp-24));
      background: var(--clr-bg);
    }
    .services-header {
      max-width: 600px;
      margin-bottom: clamp(var(--sp-10), 5vw, var(--sp-16));
    }
    .services-heading {
      font-size: var(--text-2xl);
      font-weight: 600;
      color: var(--clr-navy);
      letter-spacing: -0.02em;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--sp-5);
    }
    .service-card {
      background: var(--clr-surface);
      border: 1px solid var(--clr-divider);
      border-radius: var(--r-lg);
      padding: var(--sp-6) var(--sp-6) var(--sp-5);
      transition: box-shadow var(--tr), border-color var(--tr), transform var(--tr);
      position: relative;
      overflow: hidden;
      cursor: default;
    }
    .service-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 3px;
      background: var(--clr-green);
      transition: width var(--tr);
      border-radius: 0 0 0 var(--r-lg);
    }
    .service-card:hover {
      box-shadow: var(--sh-md);
      border-color: var(--clr-green);
      transform: translateY(-3px);
    }
    .service-card:hover::after { width: 100%; }
    .service-img-placeholder {
      width: 100%;
      aspect-ratio: 16/9;
      border-radius: var(--r-md);
      margin-bottom: var(--sp-4);
      font-size: var(--text-xs);
    }
    .service-card-number {
      font-size: var(--text-xs);
      font-weight: 700;
      color: var(--clr-text-faint);
      letter-spacing: 0.06em;
      margin-bottom: var(--sp-2);
    }
    .service-card h3 {
      font-family: var(--font-display);
      font-size: var(--text-lg);
      font-weight: 600;
      color: var(--clr-navy);
      margin-bottom: var(--sp-2);
      line-height: 1.2;
    }
    .service-card p {
      font-size: var(--text-sm);
      color: var(--clr-text-muted);
      line-height: 1.65;
    }

    /* =========================================================
       JOURNEY SECTION
    ========================================================= */
    #journey {
      padding-block: clamp(var(--sp-16), 8vw, var(--sp-24));
      background: var(--clr-navy);
      color: var(--clr-text-inverse);
      position: relative;
      overflow: hidden;
    }
    #journey::before {
      content: '';
      position: absolute;
      top: -200px; right: -200px;
      width: 700px; height: 700px;
      background: radial-gradient(ellipse, rgba(79,170,114,0.12) 0%, transparent 65%);
      pointer-events: none;
    }
    .journey-header {
      text-align: center;
      max-width: 678px;
      margin: 0 auto var(--sp-16);
    }
    .journey-header .section-label { color: var(--clr-green); }
    .journey-header .section-label::before { background: var(--clr-green); }
    .journey-heading {
      font-size: var(--text-2xl);
      font-weight: 600;
      color: #fff;
      letter-spacing: -0.02em;
    }
    .journey-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      position: relative;
      gap: var(--sp-8);
    }
    .journey-steps::before {
      content: '';
      position: absolute;
      top: 28px; left: calc(16.66% + 28px); right: calc(16.66% + 28px);
      height: 2px;
      background: linear-gradient(to right, rgba(79,170,114,0.4), rgba(79,170,114,0.8), rgba(79,170,114,0.4));
    }
    .journey-step {
      position: relative;
      text-align: center;
      padding-top: var(--sp-16);
    }
    .journey-step-num {
      position: absolute;
      top: 0; left: 50%;
      transform: translateX(-50%);
      width: 56px; height: 56px;
      background: var(--clr-green);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: var(--text-lg);
      font-weight: 700;
      color: #fff;
      box-shadow: 0 0 0 8px rgba(79,170,114,0.15);
    }
    .journey-step h3 {
      font-size: var(--text-lg);
      font-weight: 600;
      color: #fff;
      margin-bottom: var(--sp-3);
    }
    .journey-step p {
      font-size: var(--text-sm);
      color: rgba(255,255,255,0.65);
      max-width: 28ch;
      margin-inline: auto;
      line-height: 1.7;
    }

    /* =========================================================
       DOCTOR SECTION
    ========================================================= */
    #team {
      padding-block: clamp(var(--sp-16), 8vw, var(--sp-24));
      background: var(--clr-surface);
    }
    .team-inner {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: clamp(var(--sp-12), 7vw, var(--sp-20));
      align-items: center;
    }
    .team-image-wrap { position: relative; }
    .team-placeholder {
      width: 100%;
      aspect-ratio: 3/4;
      border-radius: var(--r-xl);
    }
    .team-content {}
    .team-heading {
      font-size: var(--text-2xl);
      font-weight: 600;
      color: var(--clr-navy);
      letter-spacing: -0.02em;
      margin-bottom: var(--sp-5);
    }
    .team-body {
      font-size: var(--text-base);
      color: var(--clr-text-muted);
      max-width: 52ch;
      margin-bottom: var(--sp-8);
      line-height: 1.75;
    }
    .trust-metrics {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--sp-4);
      margin-bottom: var(--sp-8);
    }
    .trust-metric {
      background: var(--clr-bg);
      border: 1px solid var(--clr-divider);
      border-radius: var(--r-lg);
      padding: var(--sp-5);
      transition: border-color var(--tr), box-shadow var(--tr);
    }
    .trust-metric:hover { border-color: var(--clr-green); box-shadow: var(--sh-sm); }
    .trust-metric-icon {
      width: 32px; height: 32px;
      background: var(--clr-green-light);
      border-radius: var(--r-sm);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: var(--sp-3);
    }
    .trust-metric-icon svg { color: var(--clr-green); width: 16px; height: 16px; }
    .trust-metric h4 {
      font-family: var(--font-body);
      font-size: var(--text-sm);
      font-weight: 600;
      color: var(--clr-navy);
      margin-bottom: 4px;
    }
    .trust-metric p {
      font-size: var(--text-xs);
      color: var(--clr-text-muted);
      line-height: 1.55;
    }

    /* =========================================================
       GALLERY SECTION
    ========================================================= */
    #gallery {
      padding-block: clamp(var(--sp-16), 8vw, var(--sp-24));
      background: var(--clr-bg-mint);
    }
    .gallery-header {
      text-align: center;
      max-width: 540px;
      margin: 0 auto var(--sp-10);
    }
    .gallery-heading {
      font-size: var(--text-2xl);
      color: var(--clr-navy);
      letter-spacing: -0.02em;
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: auto auto;
      gap: var(--sp-4);
    }
    .gal-1 { grid-column: 1 / 6; grid-row: 1; }
    .gal-2 { grid-column: 6 / 9; grid-row: 1; }
    .gal-3 { grid-column: 9 / 13; grid-row: 1 / 3; }
    .gal-4 { grid-column: 1 / 4; grid-row: 2; }
    .gal-5 { grid-column: 4 / 9; grid-row: 2; }
    .gal-item {
      border-radius: var(--r-lg);
      overflow: hidden;
      transition: transform var(--tr), box-shadow var(--tr);
    }
    .gal-item:hover { transform: scale(1.015); box-shadow: var(--sh-lg); }
    .gal-item .placeholder {
      width: 100%;
      height: 100%;
      min-height: 180px;
      border-radius: 0;
      font-size: var(--text-xs);
    }

    /* =========================================================
       TESTIMONIALS SECTION
    ========================================================= */
    #testimonials {
      padding-block: clamp(var(--sp-16), 8vw, var(--sp-24));
      background: var(--clr-surface);
    }
    .testimonials-header {
      text-align: center;
      max-width: 540px;
      margin: 0 auto var(--sp-10);
    }
    .testimonials-heading {
      font-size: var(--text-2xl);
      color: var(--clr-navy);
      letter-spacing: -0.02em;
    }
    .testimonials-track-outer {
      overflow: hidden;
      position: relative;
    }
    .testimonials-track {
      display: flex;
      transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
      gap: var(--sp-5);
    }
    .testimonial-card {
      flex: 0 0 calc((100% - var(--sp-10)) / 3);
      background: var(--clr-bg);
      border: 1px solid var(--clr-divider);
      border-radius: var(--r-xl);
      padding: var(--sp-8);
      display: flex;
      flex-direction: column;
      gap: var(--sp-5);
    }
    .testimonial-quote {
      font-family: var(--font-display);
      font-size: var(--text-lg);
      font-style: italic;
      color: var(--clr-navy);
      line-height: 1.55;
      flex: 1;
    }
    .testimonial-quote::before {
      content: '\201C';
      font-size: 3.5rem;
      line-height: 0.6;
      display: block;
      margin-bottom: var(--sp-3);
      color: var(--clr-green);
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: var(--sp-3);
    }
    .testimonial-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--clr-green-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-weight: 600;
      font-size: var(--text-base);
      color: var(--clr-green-hover);
      flex-shrink: 0;
    }
    .testimonial-author-info strong {
      display: block;
      font-size: var(--text-sm);
      font-weight: 600;
      color: var(--clr-navy);
    }
    .testimonial-author-info span {
      font-size: var(--text-xs);
      color: var(--clr-text-muted);
    }
    .testimonial-stars {
      display: flex;
      gap: 3px;
      margin-top: var(--sp-1);
    }
    .testimonial-stars svg { color: #f5a623; }
    .testimonials-nav {
      display: flex;
      justify-content: center;
      gap: var(--sp-3);
      margin-top: var(--sp-8);
    }
    .slider-btn {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--clr-bg);
      border: 1px solid var(--clr-divider);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--clr-navy);
      transition: background var(--tr), border-color var(--tr), color var(--tr);
    }
    .slider-btn:hover { background: var(--clr-navy); color: #fff; border-color: var(--clr-navy); }
    .slider-dots {
      display: flex;
      align-items: center;
      gap: var(--sp-2);
    }
    .slider-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--clr-divider);
      cursor: pointer;
      transition: background var(--tr), transform var(--tr);
      border: none;
    }
    .slider-dot.active { background: var(--clr-green); transform: scale(1.3); }

    /* =========================================================
       CONTACT SECTION
    ========================================================= */
    #contact {
      padding-block: clamp(var(--sp-16), 8vw, var(--sp-24));
      background: var(--clr-bg);
    }
    .contact-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(var(--sp-10), 6vw, var(--sp-16));
      align-items: start;
    }
    .contact-left {}
    .contact-heading {
      font-size: var(--text-2xl);
      font-weight: 600;
      color: var(--clr-navy);
      letter-spacing: -0.02em;
      margin-bottom: var(--sp-4);
    }
    .contact-subtext {
      font-size: var(--text-base);
      color: var(--clr-text-muted);
      max-width: 44ch;
      margin-bottom: var(--sp-8);
      line-height: 1.7;
    }
    .contact-cards {
      display: grid;
      gap: var(--sp-4);
      margin-bottom: var(--sp-8);
    }
    .contact-card {
      background: var(--clr-surface);
      border: 1px solid var(--clr-divider);
      border-radius: var(--r-lg);
      padding: var(--sp-5);
      display: grid;
      grid-template-columns: auto 1fr;
      gap: var(--sp-4);
      align-items: start;
      transition: border-color var(--tr), box-shadow var(--tr);
    }
    .contact-card:hover { border-color: var(--clr-green); box-shadow: var(--sh-sm); }
    .contact-card-icon {
      width: 40px; height: 40px;
      background: var(--clr-green-light);
      border-radius: var(--r-md);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .contact-card-icon svg { color: var(--clr-green); }
    .contact-card-body small {
      display: block;
      font-size: var(--text-xs);
      font-weight: 600;
      color: var(--clr-text-faint);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 4px;
    }
    .contact-card-body strong {
      font-family: var(--font-body);
      font-size: var(--text-base);
      color: var(--clr-navy);
      display: block;
      line-height: 1.4;
    }
    .contact-cta-group {
      display: flex;
      gap: var(--sp-3);
      flex-wrap: wrap;
    }
    .contact-right {}
    .map-placeholder {
      width: 100%;
      aspect-ratio: 4/3;
      border-radius: var(--r-xl);
      margin-bottom: var(--sp-6);
      font-size: var(--text-sm);
    }
    .map-directions {
      display: flex;
      align-items: center;
      gap: var(--sp-2);
      font-size: var(--text-sm);
      font-weight: 600;
      color: var(--clr-green);
      transition: color var(--tr);
      border: none;
      background: none;
      cursor: pointer;
    }
    .map-directions:hover { color: var(--clr-green-hover); }
    .map-directions svg { flex-shrink: 0; }

    /* =========================================================
       FOOTER
    ========================================================= */
    #footer {
      background: var(--clr-navy);
      color: rgba(255,255,255,0.75);
      padding-block: clamp(var(--sp-12), 6vw, var(--sp-16));
    }
    .footer-inner {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: clamp(var(--sp-8), 5vw, var(--sp-16));
    }
    .footer-brand {}
    .footer-logo {
      display: flex;
      align-items: center;
      gap: var(--sp-3);
      margin-bottom: var(--sp-5);
    }
    .footer-logo-box {
      width: 38px; height: 38px;
      border-radius: var(--r-md);
      background: rgba(79,170,114,0.2);
      display: flex; align-items: center; justify-content: center;
    }
    .footer-logo strong {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 600;
      color: #fff;
    }
    .footer-brand p {
      font-size: var(--text-sm);
      line-height: 1.7;
      max-width: 30ch;
      color: rgba(255,255,255,0.55);
    }
    .footer-col h5 {
      font-family: var(--font-body);
      font-size: var(--text-xs);
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-bottom: var(--sp-5);
    }
    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: var(--sp-3);
    }
    .footer-col ul a {
      font-size: var(--text-sm);
      color: rgba(255,255,255,0.65);
      transition: color var(--tr);
    }
    .footer-col ul a:hover { color: var(--clr-green); }
    .footer-contact-item {
      display: grid;
      grid-template-columns: 15px 1fr;
      align-items: start;
      column-gap: var(--sp-3);
      font-size: var(--text-sm);
      color: rgba(255,255,255,0.65);
      margin-bottom: var(--sp-3);
    }
    .footer-contact-item span,
    .footer-contact-item a {
      display: block;
      line-height: 1.5;
    }
    .footer-contact-item svg {
      color: var(--clr-green);
      flex-shrink: 0;
      margin-top: 3px;
    }
    .footer-bottom {
      margin-top: var(--sp-12);
      padding-top: var(--sp-6);
      border-top: 1px solid rgba(255,255,255,0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: var(--sp-4);
      flex-wrap: wrap;
    }
    .footer-bottom p {
      font-size: var(--text-xs);
      color: rgba(255,255,255,0.35);
    }

    /* =========================================================
       FLOATING CTA (Mobile)
    ========================================================= */
    #float-cta {
      position: fixed;
      bottom: var(--sp-6);
      right: var(--sp-5);
      z-index: 800;
      display: none;
      box-shadow: var(--sh-lg);
      border-radius: var(--r-full);
    }
    #float-cta .btn {
      border-radius: var(--r-full);
      padding: 0.875rem 1.5rem;
      font-size: var(--text-sm);
    }

    /* =========================================================
       RESPONSIVE
    ========================================================= */
    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1fr; gap: var(--sp-10); }
      .hero-content { max-width: 100%; }
      .hero-placeholder { aspect-ratio: 16/9; max-height: 400px; }
      .hero-float-card { left: var(--sp-4); bottom: var(--sp-4); }
      .about-inner { grid-template-columns: 1fr; }
      .about-placeholder { aspect-ratio: 4/3; }
      .about-accent-block { right: var(--sp-4); bottom: calc(-1 * var(--sp-4)); }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .team-inner { grid-template-columns: 1fr; }
      .team-placeholder { aspect-ratio: 4/3; }
      .footer-inner { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 768px) {
      .header-nav, .header-actions .btn:not(.menu-toggle) { display: none; }
      .menu-toggle { display: flex; }
      #float-cta { display: block; }
      .about-content { order: 1; }
      .about-image-wrap { order: 2; }
      .services-grid { grid-template-columns: 1fr; }
      .journey-steps {
        grid-template-columns: 1fr;
        gap: var(--sp-10);
      }
      .journey-steps::before { display: none; }
      .journey-step { padding-top: var(--sp-16); text-align: center; }
      .journey-step-num { left: 50%; transform: translateX(-50%); }
      .journey-step p { margin-inline: auto; }
      .contact-inner { grid-template-columns: 1fr; }
      .trust-metrics { grid-template-columns: 1fr 1fr; }
      .gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: none;
      }
      .gal-1, .gal-2, .gal-3, .gal-4, .gal-5 {
        grid-column: auto;
        grid-row: auto;
      }
      .gal-item .placeholder { min-height: 160px; }
      .footer-inner { grid-template-columns: 1fr; gap: var(--sp-10); }
      .testimonial-card {
        flex: 0 0 calc(100% - var(--sp-4));
      }
    }

    @media (max-width: 480px) {
      .hero-cta-group { flex-direction: column; align-items: flex-start; }
      .hero-trust-strip { flex-direction: column; gap: var(--sp-2); }
      .trust-metrics { grid-template-columns: 1fr; }
      .contact-cta-group { flex-direction: column; }
      .contact-cta-group .btn { width: 100%; justify-content: center; }
    }
