       /* ============================================================
       CSS RESET & CUSTOM PROPERTIES
    ============================================================ */
      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }

      :root {
        --beige-base: #f5f0e8;
        --beige-light: #faf7f2;
        --beige-mid: #ede7da;
        --beige-warm: #e8dece;
        --section-alt: #f0ebe0;
        --clay: #c9b99a;
        --clay-dark: #a8936e;
        --charcoal: #2c2c2c;
        --text-body: #4a4540;
        --text-muted: #7a7168;
        --accent: #7d9b76;
        --accent-light: #a8c4a0;
        --accent-dark: #5c7856;
        --gold: #c8a96e;
        --gold-light: #dfc394;
        --white: #ffffff;
        --shadow-soft: 0 4px 24px rgba(44, 40, 35, 0.09);
        --shadow-card: 0 2px 16px rgba(44, 40, 35, 0.07);
        --radius: 12px;
        --radius-lg: 20px;
        --max-w: 1160px;
        --font-display: "Cormorant Garamond", Georgia, serif;
        --font-body: "DM Sans", system-ui, sans-serif;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: var(--font-body);
        background-color: var(--beige-base);
        color: var(--text-body);
        font-size: 16px;
        line-height: 1.7;
        -webkit-font-smoothing: antialiased;
      }

      img {
        max-width: 100%;
        display: block;
      }
      a {
        text-decoration: none;
        color: inherit;
      }

      /* ============================================================
       UTILITY
    ============================================================ */
      .container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 24px;
      }
      .section-label {
        font-family: var(--font-body);
        font-size: 0.72rem;
        font-weight: 600;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--accent-dark);
        display: block;
        margin-bottom: 14px;
      }
      .section-title {
        font-family: var(--font-display);
        font-size: clamp(2rem, 4vw, 3.2rem);
        font-weight: 500;
        line-height: 1.15;
        color: var(--charcoal);
        margin-bottom: 16px;
      }
      .section-sub {
        font-size: 1.05rem;
        color: var(--text-muted);
        max-width: 560px;
        line-height: 1.75;
      }
      .text-center {
        text-align: center;
      }
      .text-center .section-sub {
        margin: 0 auto;
      }

      /* ============================================================
       NAVIGATION
    ============================================================ */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background: rgba(245, 240, 232, 0.88);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(200, 185, 155, 0.25);
        transition:
          background 0.3s,
          box-shadow 0.3s;
      }
      nav.scrolled {
        background: rgba(245, 240, 232, 0.97);
        box-shadow: 0 2px 20px rgba(44, 40, 35, 0.1);
      }
      .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 70px;
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 24px;
      }
      .nav-logo {
        font-family: var(--font-display);
        font-size: 1.55rem;
        font-weight: 600;
        color: var(--charcoal);
        letter-spacing: -0.01em;
      }
      .nav-logo span {
        color: var(--accent-dark);
      }
      .nav-links {
        display: flex;
        gap: 32px;
        list-style: none;
      }
      .nav-links a {
        font-size: 0.88rem;
        font-weight: 500;
        color: var(--text-body);
        letter-spacing: 0.03em;
        transition: color 0.2s;
      }
      .nav-links a:hover {
        color: var(--accent-dark);
      }
      .nav-cta {
        background: var(--accent-dark);
        color: var(--white) !important;
        padding: 9px 22px;
        border-radius: 50px;
        font-size: 0.85rem !important;
        font-weight: 600 !important;
        transition:
          background 0.2s,
          transform 0.15s !important;
      }
      .nav-cta:hover {
        background: var(--charcoal) !important;
        transform: translateY(-1px);
      }
      .nav-hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 4px;
      }
      .nav-hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--charcoal);
        border-radius: 2px;
        transition: all 0.3s;
      }

      /* Print button styling */
      .nav-print-btn {
        background: none;
        border: none;
        font-size: 1.3rem;
        cursor: pointer;
        padding: 4px 8px;
        margin: 0 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.2s;
      }
      .nav-print-btn:hover {
        opacity: 0.7;
      }
      .nav-print-btn:active {
        opacity: 0.5;
      }

      /* ============================================================
       HERO
    ============================================================ */
      #hero {
        min-height: -webkit-fill-available;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        position: relative;
        overflow: hidden;
        background: linear-gradient(
          160deg,
          var(--beige-light) 0%,
          var(--beige-warm) 50%,
          var(--beige-mid) 100%
        );
        padding: 120px 24px 80px;
      }

      /* Decorative organic shapes */
      #hero::before {
        content: "";
        position: absolute;
        top: -120px;
        right: -120px;
        width: 520px;
        height: 520px;
        border-radius: 50%;
        background: radial-gradient(
          circle,
          rgba(200, 169, 110, 0.12) 0%,
          transparent 70%
        );
        pointer-events: none;
      }
      #hero::after {
        content: "";
        position: absolute;
        bottom: -80px;
        left: -100px;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: radial-gradient(
          circle,
          rgba(125, 155, 118, 0.1) 0%,
          transparent 70%
        );
        pointer-events: none;
      }

      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(125, 155, 118, 0.12);
        border: 1px solid rgba(125, 155, 118, 0.3);
        border-radius: 50px;
        padding: 6px 16px;
        font-size: 0.78rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--accent-dark);
        margin-bottom: 28px;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeUp 0.7s ease forwards 0.2s;
      }
      .hero-badge::before {
        content: "";
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--accent);
        display: inline-block;
      }

      .hero-eyebrow {
        font-family: var(--font-body);
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--clay-dark);
        margin-bottom: 18px;
        opacity: 0;
        animation: fadeUp 0.7s ease forwards 0.35s;
      }

      .hero-headline {
        font-family: var(--font-display);
        font-size: clamp(2.8rem, 6.5vw, 5.2rem);
        font-weight: 400;
        line-height: 1.08;
        color: var(--charcoal);
        max-width: 860px;
        margin: 0 auto 24px;
        opacity: 0;
        animation: fadeUp 0.8s ease forwards 0.5s;
      }
      .hero-headline em {
        font-style: italic;
        color: var(--accent-dark);
      }

      .hero-sub {
        font-size: clamp(1rem, 1.8vw, 1.18rem);
        color: var(--text-muted);
        max-width: 560px;
        margin: 0 auto 44px;
        line-height: 1.8;
        opacity: 0;
        animation: fadeUp 0.8s ease forwards 0.65s;
      }

      .hero-cta-group {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
        opacity: 0;
        animation: fadeUp 0.8s ease forwards 0.8s;
      }

      /* Pulsing CTA Button */
      .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--accent-dark);
        color: var(--white);
        padding: 16px 36px;
        border-radius: 50px;
        font-size: 0.95rem;
        font-weight: 600;
        letter-spacing: 0.02em;
        cursor: pointer;
        border: none;
        position: relative;
        transition:
          background 0.25s,
          transform 0.2s;
        animation: pulse-glow 2.5s ease-in-out infinite;
        box-shadow: 0 4px 20px rgba(92, 120, 86, 0.35);
      }
      .btn-primary:hover {
        background: var(--charcoal);
        transform: translateY(-2px);
        animation: none;
        box-shadow: 0 6px 28px rgba(44, 40, 35, 0.28);
      }
      .btn-primary .arrow {
        display: inline-block;
        transition: transform 0.2s;
      }
      .btn-primary:hover .arrow {
        transform: translateX(4px);
      }

      @keyframes pulse-glow {
        0%,
        100% {
          box-shadow: 0 4px 20px rgba(92, 120, 86, 0.35);
        }
        50% {
          box-shadow:
            0 4px 32px rgba(92, 120, 86, 0.6),
            0 0 0 8px rgba(92, 120, 86, 0.1);
        }
      }

      .btn-outline {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        color: var(--charcoal);
        padding: 15px 32px;
        border-radius: 50px;
        font-size: 0.95rem;
        font-weight: 500;
        border: 1.5px solid var(--clay);
        cursor: pointer;
        transition:
          background 0.2s,
          border-color 0.2s,
          transform 0.2s;
      }
      .btn-outline:hover {
        background: var(--beige-mid);
        border-color: var(--clay-dark);
        transform: translateY(-2px);
      }

      .hero-scroll {
        position: absolute;
        bottom: 36px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        font-size: 0.7rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--text-muted);
        opacity: 0;
        animation: fadeUp 1s ease forwards 1.2s;
      }
      .scroll-line {
        width: 1px;
        height: 48px;
        background: linear-gradient(to bottom, var(--clay), transparent);
        animation: scrollPulse 2s ease-in-out infinite;
      }
      @keyframes scrollPulse {
        0%,
        100% {
          opacity: 0.4;
          transform: scaleY(1);
        }
        50% {
          opacity: 1;
          transform: scaleY(1.15);
        }
      }

      .hero-stats {
        display: flex;
        gap: 40px;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 60px;
        padding-top: 40px;
        border-top: 1px solid rgba(200, 185, 155, 0.3);
        opacity: 0;
        animation: fadeUp 0.8s ease forwards 1s;
      }
      .stat-item {
        text-align: center;
      }
      .stat-number {
        font-family: var(--font-display);
        font-size: 2.2rem;
        font-weight: 600;
        color: var(--charcoal);
        line-height: 1;
      }
      .stat-label {
        font-size: 0.78rem;
        color: var(--text-muted);
        letter-spacing: 0.06em;
        margin-top: 4px;
      }

      /* ============================================================
       SCROLL REVEAL
    ============================================================ */
      .reveal {
        opacity: 0;
        transform: translateY(36px);
        transition:
          opacity 0.75s ease,
          transform 0.75s ease;
      }
      .reveal.visible {
        opacity: 1;
        transform: translateY(0);
      }
      .reveal-delay-1 {
        transition-delay: 0.1s;
      }
      .reveal-delay-2 {
        transition-delay: 0.2s;
      }
      .reveal-delay-3 {
        transition-delay: 0.3s;
      }
      .reveal-delay-4 {
        transition-delay: 0.4s;
      }

      @keyframes fadeUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* ============================================================
       TRUST BAR
    ============================================================ */
      #trust {
        background: var(--charcoal);
        padding: 22px 0;
      }
      .trust-inner {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
        flex-wrap: wrap;
      }
      .trust-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.82rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.72);
        letter-spacing: 0.08em;
      }
      .trust-icon {
        font-size: 1rem;
      }
      .trust-divider {
        width: 1px;
        height: 20px;
        background: rgba(255, 255, 255, 0.2);
      }

      /* ============================================================
       ABOUT / INTRO
    ============================================================ */
      #about {
        padding: 100px 0;
        background: var(--beige-light);
      }
      .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
      }
      .about-visual {
        position: relative;
      }
      .about-img-wrap {
        width: 100%;
        aspect-ratio: 4/5;
        border-radius: var(--radius-lg);
        overflow: hidden;
        background: var(--beige-warm);
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .about-img-placeholder {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        color: var(--text-muted);
        font-size: 0.85rem;
      }
      .about-img-placeholder .icon-large {
        font-size: 3.5rem;
      }
      .about-badge-float {
        position: absolute;
        bottom: -20px;
        right: -20px;
        background: var(--white);
        border-radius: var(--radius);
        padding: 20px 24px;
        box-shadow: var(--shadow-soft);
        display: flex;
        align-items: center;
        gap: 14px;
        min-width: 200px;
      }
      .badge-icon {
        font-size: 2rem;
      }
      .badge-text-top {
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--charcoal);
        line-height: 1;
      }
      .badge-text-bot {
        font-size: 0.78rem;
        color: var(--text-muted);
        margin-top: 3px;
      }
      .about-dot-grid {
        position: absolute;
        top: -24px;
        left: -24px;
        width: 120px;
        height: 120px;
        background-image: radial-gradient(
          circle,
          var(--clay) 1.5px,
          transparent 1.5px
        );
        background-size: 14px 14px;
        opacity: 0.35;
      }
      .about-content .section-sub {
        margin-bottom: 32px;
      }
      .about-highlights {
        display: flex;
        flex-direction: column;
        gap: 18px;
        margin-bottom: 36px;
      }
      .highlight-item {
        display: flex;
        align-items: flex-start;
        gap: 14px;
      }
      .highlight-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: rgba(125, 155, 118, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        flex-shrink: 0;
        margin-top: 2px;
      }
      .highlight-text {
        font-size: 0.92rem;
        color: var(--text-body);
        line-height: 1.6;
      }
      .highlight-text strong {
        color: var(--charcoal);
        font-weight: 600;
        display: block;
        margin-bottom: 2px;
      }

      /* ============================================================
       SERVICES CARDS
    ============================================================ */
      #services {
        padding: 100px 0;
        background: var(--section-alt);
      }
      .services-header {
        margin-bottom: 60px;
      }
      .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
      }
      .service-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 40px 32px;
        box-shadow: var(--shadow-card);
        border: 1px solid rgba(200, 185, 155, 0.2);
        transition:
          transform 0.3s,
          box-shadow 0.3s;
        position: relative;
        overflow: hidden;
      }
      .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(
          90deg,
          var(--accent-light),
          var(--gold-light)
        );
        opacity: 0;
        transition: opacity 0.3s;
      }
      .service-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-soft);
      }
      .service-card:hover::before {
        opacity: 1;
      }
      .service-card.featured {
        background: var(--charcoal);
        color: var(--white);
      }
      .service-card.featured .service-title {
        color: var(--white);
      }
      .service-card.featured .service-desc {
        color: rgba(255, 255, 255, 0.7);
      }
      .service-card.featured .service-features li {
        color: rgba(255, 255, 255, 0.75);
        border-color: rgba(255, 255, 255, 0.1);
      }
      .service-card.featured::before {
        opacity: 1;
      }
      .service-icon {
        width: 52px;
        height: 52px;
        border-radius: 12px;
        background: rgba(125, 155, 118, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin-bottom: 22px;
      }
      .service-card.featured .service-icon {
        background: rgba(255, 255, 255, 0.1);
      }
      .service-title {
        font-family: var(--font-display);
        font-size: 1.4rem;
        font-weight: 500;
        color: var(--charcoal);
        margin-bottom: 12px;
        line-height: 1.2;
      }
      .service-desc {
        font-size: 0.9rem;
        color: var(--text-muted);
        line-height: 1.7;
        margin-bottom: 22px;
      }
      .service-features {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0;
      }
      .service-features li {
        font-size: 0.84rem;
        color: var(--text-body);
        padding: 10px 0;
        border-bottom: 1px solid var(--beige-mid);
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .service-features li::before {
        content: "✓";
        color: var(--accent-dark);
        font-weight: 700;
        font-size: 0.8rem;
        flex-shrink: 0;
      }
      .service-card.featured .service-features li::before {
        color: var(--gold-light);
      }

      /* ============================================================
       HOW IT WORKS
    ============================================================ */
      #process {
        padding: 100px 0;
        background: var(--beige-base);
      }
      .process-header {
        margin-bottom: 60px;
      }
      .process-steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        position: relative;
      }
      .process-steps::before {
        content: "";
        position: absolute;
        top: 36px;
        left: 12.5%;
        right: 12.5%;
        height: 1px;
        background: linear-gradient(
          90deg,
          transparent,
          var(--clay),
          transparent
        );
        z-index: 0;
      }
      .step-item {
        text-align: center;
        padding: 0 16px;
        position: relative;
        z-index: 1;
      }
      .step-number {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        background: var(--white);
        border: 2px solid var(--clay);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 22px;
        font-family: var(--font-display);
        font-size: 1.6rem;
        font-weight: 500;
        color: var(--clay-dark);
        box-shadow: 0 2px 12px rgba(168, 147, 110, 0.15);
      }
      .step-title {
        font-family: var(--font-display);
        font-size: 1.2rem;
        font-weight: 500;
        color: var(--charcoal);
        margin-bottom: 10px;
      }
      .step-desc {
        font-size: 0.86rem;
        color: var(--text-muted);
        line-height: 1.65;
      }

      /* ============================================================
       BENEFITS SECTION
    ============================================================ */
      #benefits {
        padding: 100px 0;
        background: var(--beige-warm);
      }
      .benefits-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: end;
      }
      .benefits-heading {
        margin-bottom: 36px;
      }
      .benefits-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 18px;
      }
      .benefits-list li {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 20px 22px;
        background: var(--white);
        border-radius: var(--radius);
        box-shadow: var(--shadow-card);
        border-left: 3px solid var(--accent);
        transition: transform 0.2s;
      }
      .benefits-list li:hover {
        transform: translateX(4px);
      }
      .benefit-icon {
        font-size: 1.3rem;
        flex-shrink: 0;
        margin-top: 2px;
      }
      .benefit-content {
      }
      .benefit-title {
        font-weight: 600;
        font-size: 0.93rem;
        color: var(--charcoal);
        margin-bottom: 3px;
      }
      .benefit-detail {
        font-size: 0.84rem;
        color: var(--text-muted);
        line-height: 1.6;
      }

      .deliverables-panel {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 40px;
        box-shadow: var(--shadow-soft);
      }
      .deliverables-panel h3 {
        font-family: var(--font-display);
        font-size: 1.6rem;
        font-weight: 500;
        color: var(--charcoal);
        margin-bottom: 8px;
      }
      .deliverables-panel p {
        font-size: 0.88rem;
        color: var(--text-muted);
        margin-bottom: 28px;
        line-height: 1.65;
      }
      .deliverable-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
      }
      .deliverable-chip {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 14px;
        border-radius: 8px;
        background: var(--beige-light);
        font-size: 0.83rem;
        font-weight: 500;
        color: var(--text-body);
        transition: background 0.2s;
      }
      .deliverable-chip:hover {
        background: var(--beige-mid);
      }
      .chip-icon {
        font-size: 1rem;
      }

      /* ============================================================
       ANALYTICS / METRICS
    ============================================================ */
      #metrics {
        padding: 100px 0;
        background: var(--charcoal);
        color: var(--white);
      }
      .metrics-header {
        margin-bottom: 60px;
      }
      .metrics-header .section-title {
        color: var(--white);
      }
      .metrics-header .section-label {
        color: var(--gold-light);
      }
      .metrics-header .section-sub {
        color: rgba(255, 255, 255, 0.65);
      }
      .metrics-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        margin-bottom: 60px;
      }
      .metric-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--radius-lg);
        padding: 36px 28px;
        text-align: center;
        transition: background 0.3s;
      }
      .metric-card:hover {
        background: rgba(255, 255, 255, 0.09);
      }
      .metric-icon {
        font-size: 2rem;
        margin-bottom: 16px;
      }
      .metric-number {
        font-family: var(--font-display);
        font-size: 2.8rem;
        font-weight: 500;
        color: var(--gold-light);
        line-height: 1;
        margin-bottom: 8px;
      }
      .metric-label {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
        font-weight: 500;
        margin-bottom: 8px;
      }
      .metric-desc {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.45);
        line-height: 1.6;
      }

      .analytics-features {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }
      .analytics-item {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: var(--radius);
        border: 1px solid rgba(255, 255, 255, 0.07);
      }
      .analytics-icon {
        font-size: 1.4rem;
        flex-shrink: 0;
      }
      .analytics-title {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 4px;
      }
      .analytics-desc {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.55;
      }

      /* ============================================================
       FAQ SECTION
    ============================================================ */
      #faq {
        padding: 100px 0;
        background: var(--beige-light);
      }
      .faq-grid {
        display: grid;
        grid-template-columns: 1fr 1.6fr;
        gap: 80px;
        align-items: start;
      }
      .faq-intro .section-sub {
        margin-bottom: 32px;
      }
      .faq-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .faq-item {
        border: 1px solid var(--beige-warm);
        border-radius: var(--radius);
        overflow: hidden;
        background: var(--white);
        box-shadow: var(--shadow-card);
      }
      .faq-q {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 24px;
        cursor: pointer;
        font-weight: 600;
        font-size: 0.92rem;
        color: var(--charcoal);
        transition: background 0.2s;
        user-select: none;
      }
      .faq-q:hover {
        background: var(--beige-light);
      }
      .faq-chevron {
        font-size: 1rem;
        color: var(--text-muted);
        transition: transform 0.3s;
        flex-shrink: 0;
      }
      .faq-item.open .faq-chevron {
        transform: rotate(180deg);
      }
      .faq-a {
        max-height: 0;
        overflow: hidden;
        transition:
          max-height 0.4s ease,
          padding 0.3s;
        font-size: 0.88rem;
        color: var(--text-muted);
        line-height: 1.75;
        padding: 0 24px;
      }
      .faq-item.open .faq-a {
        max-height: 300px;
        padding: 0 24px 20px;
      }

      /* ============================================================
       CONTACT / FORM
    ============================================================ */
      #contact {
        padding: 100px 0;
        background: var(--section-alt);
      }
      .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 80px;
        align-items: start;
      }
      .contact-info .section-sub {
        margin-bottom: 40px;
      }
      .contact-details {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }
      .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 14px;
      }
      .contact-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: rgba(125, 155, 118, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        flex-shrink: 0;
      }
      .contact-label {
        font-size: 0.78rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--text-muted);
        margin-bottom: 2px;
      }
      .contact-value {
        font-size: 0.92rem;
        color: var(--charcoal);
        font-weight: 500;
      }
      .form-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 48px 44px;
        box-shadow: var(--shadow-soft);
        border: 1px solid rgba(200, 185, 155, 0.2);
      }
      .form-title {
        font-family: var(--font-display);
        font-size: 1.9rem;
        font-weight: 500;
        color: var(--charcoal);
        margin-bottom: 6px;
      }
      .form-sub {
        font-size: 0.88rem;
        color: var(--text-muted);
        margin-bottom: 32px;
      }
      .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
      }
      .form-group {
        margin-bottom: 18px;
      }
      .form-group label {
        display: block;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--text-muted);
        margin-bottom: 7px;
      }
      .form-group input,
      .form-group select,
      .form-group textarea {
        width: 100%;
        padding: 12px 16px;
        border: 1.5px solid var(--beige-warm);
        border-radius: 8px;
        font-family: var(--font-body);
        font-size: 1rem;
        color: var(--charcoal);
        background: var(--beige-light);
        transition:
          border-color 0.2s,
          background 0.2s;
        outline: none;
      }
      .form-group input:focus,
      .form-group select:focus,
      .form-group textarea:focus {
        border-color: var(--accent);
        background: var(--white);
      }
      .form-group textarea {
        resize: vertical;
        min-height: 110px;
      }
      .form-submit {
        width: 100%;
        padding: 16px;
        border: none;
        border-radius: 50px;
        background: var(--accent-dark);
        color: var(--white);
        font-family: var(--font-body);
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        letter-spacing: 0.04em;
        transition:
          background 0.25s,
          transform 0.2s,
          box-shadow 0.25s;
        box-shadow: 0 4px 18px rgba(92, 120, 86, 0.3);
        margin-top: 8px;
      }
      .form-submit:hover {
        background: var(--charcoal);
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(44, 40, 35, 0.25);
      }
      .form-note {
        text-align: center;
        font-size: 0.78rem;
        color: var(--text-muted);
        margin-top: 14px;
      }

      /* ============================================================
       FOOTER
    ============================================================ */
      footer {
        background: var(--charcoal);
        color: rgba(255, 255, 255, 0.65);
        padding: 60px 0 30px;
      }
      .footer-grid {
        display: grid;
        grid-template-columns: 1.8fr 1fr 1fr 1fr;
        gap: 48px;
        margin-bottom: 48px;
      }
      .footer-brand .nav-logo {
        color: var(--white);
        margin-bottom: 14px;
        display: block;
      }
      .footer-brand p {
        font-size: 0.85rem;
        line-height: 1.7;
      }
      .footer-col h4 {
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--white);
        margin-bottom: 18px;
      }
      .footer-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .footer-links a {
        font-size: 0.86rem;
        transition: color 0.2s;
      }
      .footer-links a:hover {
        color: var(--white);
      }
      .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
        font-size: 0.8rem;
      }
      .footer-social {
        display: flex;
        gap: 14px;
      }
      .social-link {
        width: 34px;
        height: 34px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        transition: background 0.2s;
      }
      .social-link:hover {
        background: var(--accent-dark);
        color: var(--white);
      }

      .footer-credit {
        font-size: 0.78rem;
        color: rgba(255,255,255,0.4);
        width: 100%;
        text-align: center;
        margin-top: 6px;
      }
      .footer-credit-link {
        color: rgba(255,255,255,0.6);
        text-decoration: underline;
        text-underline-offset: 3px;
        transition: color 0.2s;
      }
      .footer-credit-link:hover { color: var(--gold-light); }


      /* ============================================================
       MOBILE MENU
    ============================================================ */

      .mobile-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--beige-light);
        border-bottom: 1px solid var(--beige-warm);
        box-shadow: 0 8px 24px rgba(44, 40, 35, 0.1);
        z-index: 99;
        padding: 24px;
      }
      .mobile-menu.open {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }
      .mobile-menu a {
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-body);
        padding: 10px 0;
        border-bottom: 1px solid var(--beige-warm);
      }

      /* ============================================================
       PRINT STYLES
    ============================================================ */
      @media print {
        nav,
        .hero-scroll,
        .mobile-menu,
        #contact .form-card,
        #hero::before,
        #hero::after {
          display: none !important;
        }
        body {
          background: white;
          color: black;
          font-size: 11pt;
        }
        #hero {
          min-height: auto;
          padding: 40px 24px;
          background: none;
        }
        .hero-headline {
          font-size: 28pt;
        }
        .section-title {
          font-size: 18pt;
        }
        .service-card,
        .metric-card,
        .faq-item {
          break-inside: avoid;
        }
        #metrics {
          background: #f5f5f5 !important;
          color: black !important;
        }
        .metric-number {
          color: #333 !important;
        }
        a::after {
          content: " (" attr(href) ")";
          font-size: 9pt;
          color: #555;
        }
        .container {
          max-width: 100%;
        }
        * {
          box-shadow: none !important;
        }
      }

      /* ============================================================
       RESPONSIVE
    ============================================================ */
      @media (max-width: 1024px) {
        .services-grid {
          grid-template-columns: 1fr 1fr;
        }
        .about-grid {
          gap: 40px;
        }
        .footer-grid {
          grid-template-columns: 1fr 1fr;
          gap: 32px;
        }
        .metrics-grid {
          grid-template-columns: 1fr 1fr;
        }
        .analytics-features {
          grid-template-columns: 1fr 1fr;
        }
      }

      @media (max-width: 768px) {
        .nav-links {
          display: none;
        }
        .nav-cta {
          display: none;
        }
        .nav-hamburger {
          display: flex;
        }
        .services-grid {
          grid-template-columns: 1fr;
        }
        .about-grid {
          grid-template-columns: 1fr;
        }
        .about-visual {
          display: none;
        }
        .process-steps {
          grid-template-columns: 1fr 1fr;
          gap: 32px;
        }
        .process-steps::before {
          display: none;
        }
        .benefits-grid {
          grid-template-columns: 1fr;
          gap: 36px;
        }
        .metrics-grid {
          grid-template-columns: 1fr;
        }
        .analytics-features {
          grid-template-columns: 1fr;
        }
        .contact-grid {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .form-card {
          padding: 32px 24px;
        }
        .form-row {
          grid-template-columns: 1fr;
        }
        .faq-grid {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .footer-grid {
          grid-template-columns: 1fr;
          gap: 28px;
        }
        .footer-bottom {
          flex-direction: column;
          text-align: center;
        }
        .hero-stats {
          gap: 24px;
        }
        .trust-inner {
          gap: 20px;
        }
        .trust-divider {
          display: none;
        }
        .deliverable-items {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 480px) {
        .process-steps {
          grid-template-columns: 1fr;
        }
        .container {
          padding: 0 16px;
        }
      }
    

    /* =============================================================
       PRINT-VIEW ELEMENT  (screen: hidden | print: shown)
    ============================================================= */
    #print-view {
      display: none;
    }

    /* =============================================================
       PRINT MEDIA — override ALL screen layout
    ============================================================= */
    @media print {

      /* --- Hide every screen element --- */
      body > *:not(#print-view) { display: none !important; }
      nav, #navbar, #hero, #trust, #about, #services, #process,
      #benefits, #metrics, #faq, #contact,
      footer, .mobile-menu, .hero-scroll,
      .hero-cta-group, .hero-stats,
      .nav-print-btn { display: none !important; }

      /* --- Reveal the print document --- */
      #print-view {
        display: block !important;
        font-family: 'Cormorant Garamond', Georgia, serif;
        font-size: 10.5pt;
        color: #2c2c2c;
        background: #fff;
        margin: 0;
        padding: 0;
        width: 100%;
      }

      /* ---- Page setup ---- */
      @page {
        margin: 18mm 16mm 18mm 16mm;
        size: letter portrait;
      }

      /* ---- Global resets inside print-view ---- */
      #print-view * {
        box-shadow: none !important;
        text-shadow: none !important;
        background: transparent !important;
        color: #2c2c2c !important;
        border-color: #c9b99a !important;
        animation: none !important;
        transition: none !important;
      }

      /* ---- Typography ---- */
      #print-view .pv-doc-title {
        font-family: 'Cormorant Garamond', Georgia, serif;
        font-size: 26pt;
        font-weight: 500;
        line-height: 1.15;
        color: #2c2c2c !important;
        margin: 0 0 4pt;
      }
      #print-view .pv-doc-sub {
        font-family: 'DM Sans', Arial, sans-serif;
        font-size: 10pt;
        color: #7a7168 !important;
        margin: 0 0 8pt;
        line-height: 1.6;
      }
      #print-view .pv-section-label {
        font-family: 'DM Sans', Arial, sans-serif;
        font-size: 7pt;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: #5c7856 !important;
        display: block;
        margin-bottom: 5pt;
      }
      #print-view .pv-section-title {
        font-family: 'Cormorant Garamond', Georgia, serif;
        font-size: 17pt;
        font-weight: 500;
        line-height: 1.2;
        color: #2c2c2c !important;
        margin: 0 0 6pt;
        border-bottom: 0.75pt solid #c9b99a;
        padding-bottom: 4pt;
      }
      #print-view p, #print-view li, #print-view dd {
        font-family: 'DM Sans', Arial, sans-serif;
        font-size: 9.5pt;
        line-height: 1.65;
        color: #4a4540 !important;
      }
      #print-view strong {
        font-weight: 700;
        color: #2c2c2c !important;
      }

      /* ---- Header / cover strip ---- */
      #print-view .pv-header {
        border-bottom: 1.5pt solid #a8936e;
        padding-bottom: 14pt;
        margin-bottom: 18pt;
      }
      #print-view .pv-logo {
        font-family: 'Cormorant Garamond', Georgia, serif;
        font-size: 14pt;
        font-weight: 600;
        letter-spacing: -0.01em;
        color: #2c2c2c !important;
        margin-bottom: 8pt;
      }
      #print-view .pv-logo span { color: #5c7856 !important; }
      #print-view .pv-tagline {
        font-size: 8pt;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: #7a7168 !important;
        font-family: 'DM Sans', Arial, sans-serif;
      }

      /* ---- Section wrapper ---- */
      #print-view .pv-section {
        margin-bottom: 20pt;
        break-inside: avoid;
      }

      /* ---- Who We Are ---- */
      #print-view .pv-about-body {
        font-size: 9.5pt;
        line-height: 1.7;
        margin-bottom: 8pt;
      }
      #print-view .pv-highlight-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 5pt;
      }
      #print-view .pv-highlight-list li {
        padding: 5pt 8pt;
        border-left: 2pt solid #7d9b76;
        background: #faf7f2 !important;
        font-size: 9pt;
      }
      #print-view .pv-highlight-list li strong {
        display: block;
        margin-bottom: 1pt;
      }

      /* ---- What We Do — 3-col grid ---- */
      #print-view .pv-services-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10pt;
        margin-top: 8pt;
      }
      #print-view .pv-service-card {
        border: 0.75pt solid #c9b99a;
        border-radius: 6pt;
        padding: 10pt;
        break-inside: avoid;
      }
      #print-view .pv-service-card h4 {
        font-family: 'Cormorant Garamond', Georgia, serif;
        font-size: 12pt;
        font-weight: 600;
        margin: 0 0 5pt;
        color: #2c2c2c !important;
      }
      #print-view .pv-service-card p {
        font-size: 8.5pt;
        margin-bottom: 6pt;
      }
      #print-view .pv-service-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      #print-view .pv-service-card ul li {
        font-size: 8pt;
        padding: 2pt 0;
        border-bottom: 0.5pt solid #ede7da;
        padding-left: 10pt;
        position: relative;
      }
      #print-view .pv-service-card ul li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #5c7856 !important;
        font-weight: 700;
        font-size: 7pt;
      }

      /* ---- Benefits ---- */
      #print-view .pv-benefits-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8pt;
        margin-top: 8pt;
      }
      #print-view .pv-benefit-item {
        border: 0.75pt solid #ede7da;
        border-left: 2pt solid #7d9b76;
        border-radius: 4pt;
        padding: 8pt 10pt;
        break-inside: avoid;
      }
      #print-view .pv-benefit-title {
        font-weight: 700;
        font-size: 9pt;
        color: #2c2c2c !important;
        margin-bottom: 2pt;
        display: block;
      }
      #print-view .pv-benefit-detail {
        font-size: 8.5pt;
        color: #4a4540 !important;
        line-height: 1.55;
      }

      /* ---- Deliverables chips → compact two-col list ---- */
      #print-view .pv-deliverables {
        margin-top: 10pt;
        break-inside: avoid;
      }
      #print-view .pv-deliverables h4 {
        font-family: 'Cormorant Garamond', Georgia, serif;
        font-size: 12pt;
        font-weight: 500;
        margin: 0 0 6pt;
        color: #2c2c2c !important;
        border-bottom: 0.5pt solid #c9b99a;
        padding-bottom: 3pt;
      }
      #print-view .pv-chip-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4pt;
      }
      #print-view .pv-chip {
        font-size: 8pt;
        padding: 3pt 6pt;
        border: 0.5pt solid #c9b99a;
        border-radius: 3pt;
        color: #4a4540 !important;
      }

      /* ---- Metrics / Success Story ---- */
      #print-view .pv-metrics-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8pt;
        margin: 8pt 0 10pt;
      }
      #print-view .pv-metric-card {
        border: 0.75pt solid #c9b99a;
        border-radius: 4pt;
        padding: 8pt;
        text-align: center;
        break-inside: avoid;
      }
      #print-view .pv-metric-number {
        font-family: 'Cormorant Garamond', Georgia, serif;
        font-size: 18pt;
        font-weight: 600;
        color: #a8936e !important;
        line-height: 1;
        display: block;
        margin-bottom: 3pt;
      }
      #print-view .pv-metric-label {
        font-size: 8pt;
        font-weight: 600;
        color: #2c2c2c !important;
        margin-bottom: 3pt;
        display: block;
      }
      #print-view .pv-metric-desc {
        font-size: 7.5pt;
        color: #7a7168 !important;
        line-height: 1.5;
      }
      #print-view .pv-analytics-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6pt;
      }
      #print-view .pv-analytics-item {
        border: 0.5pt solid #ede7da;
        border-radius: 3pt;
        padding: 6pt 8pt;
        break-inside: avoid;
      }
      #print-view .pv-analytics-title {
        font-size: 8.5pt;
        font-weight: 700;
        color: #2c2c2c !important;
        margin-bottom: 2pt;
        display: block;
      }
      #print-view .pv-analytics-desc {
        font-size: 7.5pt;
        color: #7a7168 !important;
        line-height: 1.5;
      }

      /* ---- FAQ ---- */
      #print-view .pv-faq-list {
        list-style: none;
        padding: 0;
        margin: 8pt 0 0;
      }
      #print-view .pv-faq-item {
        border-bottom: 0.5pt solid #ede7da;
        padding: 7pt 0;
        break-inside: avoid;
      }
      #print-view .pv-faq-q {
        font-family: 'Cormorant Garamond', Georgia, serif;
        font-size: 11pt;
        font-weight: 600;
        color: #2c2c2c !important;
        margin-bottom: 3pt;
        display: block;
      }
      #print-view .pv-faq-a {
        font-size: 8.5pt;
        color: #4a4540 !important;
        line-height: 1.6;
        padding-left: 10pt;
        border-left: 1.5pt solid #7d9b76;
      }

      /* ---- Contact block ---- */
      #print-view .pv-contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8pt;
        margin-top: 8pt;
      }
      #print-view .pv-contact-item {
        border: 0.75pt solid #c9b99a;
        border-radius: 4pt;
        padding: 8pt 10pt;
        break-inside: avoid;
      }
      #print-view .pv-contact-label {
        font-size: 7pt;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: #5c7856 !important;
        margin-bottom: 3pt;
        display: block;
      }
      #print-view .pv-contact-value {
        font-size: 9.5pt;
        font-weight: 600;
        color: #2c2c2c !important;
      }

      /* ---- Footer strip ---- */
      #print-view .pv-footer {
        margin-top: 20pt;
        padding-top: 8pt;
        border-top: 0.75pt solid #c9b99a;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      #print-view .pv-footer p {
        font-size: 7.5pt;
        color: #7a7168 !important;
      }
    }
