/* ===== RESET & BASE ===== */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --dark: #023336;
            --green: #4da674;
            --green-hover: #3d8f62;
            --light-green: #c1e6ba;
            --pale: #eaf8e7;
            --white: #ffffff;
            --gray-50: #f8faf8;
            --gray-100: #f0f4f0;
            --gray-400: #8a9a8a;
            --gray-600: #4a5a4a;
            --shadow-sm: 0 1px 3px rgba(2,51,54,.08);
            --shadow-md: 0 4px 20px rgba(2,51,54,.1);
            --shadow-lg: 0 12px 40px rgba(2,51,54,.15);
            --shadow-xl: 0 20px 60px rgba(2,51,54,.18);
            --radius: 12px;
            --radius-lg: 20px;
            --transition: .3s cubic-bezier(.4,0,.2,1);
        }

        html { scroll-behavior: smooth; scroll-padding-top: 80px; }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background: var(--white);
            -webkit-font-smoothing: antialiased;
        }

        img { max-width: 100%; display: block; }
        a { text-decoration: none; color: inherit; }
        button { font-family: inherit; cursor: pointer; border: none; }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

        /* ===== HEADER ===== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(2,51,54,.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(77,166,116,.15);
            transition: var(--transition);
        }

        .header.scrolled {
            background: rgba(2,51,54,.98);
            box-shadow: 0 4px 30px rgba(0,0,0,.2);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 76px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .logo-img {
            width: 52px;
            height: 52px;
            object-fit: contain;
            border-radius: 6px;
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 800;
            color: var(--white);
            letter-spacing: 1.5px;
        }

        .logo-text small {
            display: block;
            font-family: 'Inter', sans-serif;
            font-size: 9px;
            font-weight: 500;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--green);
            margin-top: -2px;
        }

        /* NAV */
        .nav-list {
            display: flex;
            list-style: none;
            gap: 6px;
        }

        .nav-list a {
            display: block;
            padding: 8px 14px;
            font-size: 13.5px;
            font-weight: 500;
            color: rgba(255,255,255,.8);
            border-radius: 8px;
            transition: var(--transition);
            white-space: nowrap;
        }

        .nav-list a:hover,
        .nav-list a.active {
            color: var(--white);
            background: rgba(77,166,116,.2);
        }

        /* HAMBURGER */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            padding: 8px;
            border-radius: 8px;
            transition: var(--transition);
        }

        .hamburger:hover { background: rgba(255,255,255,.1); }

        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--white);
            border-radius: 2px;
            transition: var(--transition);
            transform-origin: center;
        }

        .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        /* ===== PAGE HERO ===== */
        .page-hero {
            position: relative;
            padding: 160px 0 100px;
            background: var(--dark);
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -150px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(77,166,116,.12), transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .page-hero::after {
            content: '';
            position: absolute;
            bottom: -250px;
            left: -100px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(193,230,186,.08), transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .page-hero-inner {
            position: relative;
            z-index: 1;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: rgba(255,255,255,.5);
            margin-bottom: 20px;
        }

        .breadcrumb a {
            color: rgba(255,255,255,.6);
            transition: var(--transition);
        }

        .breadcrumb a:hover { color: var(--green); }

        .breadcrumb-sep {
            width: 16px;
            height: 16px;
            stroke: rgba(255,255,255,.35);
            stroke-width: 2;
            fill: none;
        }

        .breadcrumb-current { color: var(--green); font-weight: 600; }

        .page-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.2rem, 4.5vw, 3.4rem);
            font-weight: 800;
            color: var(--white);
            line-height: 1.15;
            margin-bottom: 18px;
        }

        .page-hero h1 span { color: var(--green); }

        .page-hero-desc {
            font-size: clamp(1rem, 1.8vw, 1.15rem);
            color: rgba(255,255,255,.65);
            max-width: 600px;
            line-height: 1.75;
        }

        /* ===== SECTION SHARED ===== */
        .section { padding: 100px 0; }
        .section-pale { background: var(--pale); }
        .section-white { background: var(--white); }
        .section-dark { background: var(--dark); color: var(--white); }

        .section-label {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--green);
            margin-bottom: 14px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 18px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            max-width: 660px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-desc {
            font-size: 1.05rem;
            color: var(--gray-600);
            line-height: 1.7;
        }

        /* ===== INTRO SPLIT ===== */
        .intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .intro-img-wrap {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .intro-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            aspect-ratio: 4/3;
        }

        .intro-img-badge {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: rgba(2,51,54,.9);
            backdrop-filter: blur(8px);
            color: var(--white);
            padding: 16px 22px;
            border-radius: var(--radius);
            font-size: 13px;
            font-weight: 600;
            border: 1px solid rgba(77,166,116,.3);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .intro-img-badge svg {
            width: 28px;
            height: 28px;
            stroke: var(--green);
            stroke-width: 2;
            fill: none;
            flex-shrink: 0;
        }

        .intro-img-badge strong {
            color: var(--green);
            display: block;
            font-size: 15px;
        }

        .intro-content .section-label { margin-bottom: 12px; }

        .intro-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 700;
            line-height: 1.25;
            margin-bottom: 24px;
        }

        .intro-text {
            font-size: 1.05rem;
            color: var(--gray-600);
            line-height: 1.8;
            margin-bottom: 18px;
        }

        .intro-highlight {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark);
            font-style: italic;
            padding-left: 20px;
            border-left: 3px solid var(--green);
            margin: 28px 0 0;
            line-height: 1.7;
        }

        /* ===== DIFFERENTIATORS (WHAT SETS US APART) ===== */
        .diff-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .diff-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(2,51,54,.06);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .diff-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--green);
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition);
        }

        .diff-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }

        .diff-card:hover::before { transform: scaleX(1); }

        .diff-num {
            font-family: 'Playfair Display', serif;
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--light-green);
            line-height: 1;
            margin-bottom: 20px;
            transition: var(--transition);
        }

        .diff-card:hover .diff-num { color: var(--green); }

        .diff-icon {
            width: 52px;
            height: 52px;
            background: var(--pale);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: var(--transition);
        }

        .diff-card:hover .diff-icon { background: var(--green); }
        .diff-card:hover .diff-icon svg { stroke: var(--white); }

        .diff-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--green);
            stroke-width: 2;
            fill: none;
        }

        .diff-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .diff-card p {
            font-size: .92rem;
            color: var(--gray-600);
            line-height: 1.7;
        }

        /* ===== IMAGE + TEXT SPLIT (DEEP DIVE) ===== */
        .deep-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .deep-grid.reversed .deep-img-col { order: 2; }
        .deep-grid.reversed .deep-text-col { order: 1; }

        .deep-img-col {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .deep-img-col img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            aspect-ratio: 4/3;
        }

        .deep-text-col h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.4rem, 2.5vw, 1.9rem);
            font-weight: 700;
            line-height: 1.25;
            margin-bottom: 20px;
        }

        .deep-text-col p {
            font-size: 1.05rem;
            color: var(--gray-600);
            line-height: 1.8;
            margin-bottom: 28px;
        }

        .check-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .check-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            font-size: .95rem;
            font-weight: 500;
            color: var(--dark);
            line-height: 1.5;
        }

        .check-circle {
            width: 28px;
            height: 28px;
            background: var(--green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .check-circle svg {
            width: 14px;
            height: 14px;
            stroke: var(--white);
            stroke-width: 3;
            fill: none;
        }

        /* ===== PROMISE BANNER ===== */
        .promise-banner {
            position: relative;
            padding: 80px 0;
            background: linear-gradient(135deg, var(--dark) 0%, #045a60 100%);
            overflow: hidden;
        }

        .promise-banner::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -80px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(77,166,116,.1), transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .promise-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .promise-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 700;
            color: var(--white);
            line-height: 1.25;
            margin-bottom: 20px;
        }

        .promise-content h2 span { color: var(--green); }

        .promise-content p {
            font-size: 1.05rem;
            color: rgba(255,255,255,.7);
            line-height: 1.8;
            margin-bottom: 36px;
        }

        .promise-metrics {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .promise-metric {
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.1);
            padding: 28px 24px;
            border-radius: var(--radius);
            text-align: center;
            transition: var(--transition);
        }

        .promise-metric:hover {
            background: rgba(77,166,116,.1);
            border-color: rgba(77,166,116,.25);
            transform: translateY(-4px);
        }

        .promise-metric-value {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 800;
            color: var(--green);
            margin-bottom: 4px;
        }

        .promise-metric-label {
            font-size: .85rem;
            color: rgba(255,255,255,.55);
        }

        /* ===== TESTIMONIAL STRIP ===== */
        .testimonial-section { background: var(--pale); }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .testimonial-card {
            background: var(--white);
            padding: 36px 28px;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(2,51,54,.06);
            transition: var(--transition);
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .testimonial-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 20px;
        }

        .testimonial-stars svg {
            width: 18px;
            height: 18px;
            fill: #f59e0b;
            stroke: none;
        }

        .testimonial-card blockquote {
            font-size: .95rem;
            color: var(--gray-600);
            line-height: 1.7;
            font-style: italic;
            margin-bottom: 24px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .testimonial-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--green);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 700;
            color: var(--white);
            flex-shrink: 0;
        }

        .testimonial-name {
            font-size: .95rem;
            font-weight: 700;
            color: var(--dark);
        }

        .testimonial-role {
            font-size: .82rem;
            color: var(--gray-400);
            margin-top: 2px;
        }

        /* ===== CTA BANNER ===== */
        .cta-banner {
            padding: 80px 0;
            background: var(--white);
            text-align: center;
        }

        .cta-inner {
            max-width: 640px;
            margin: 0 auto;
        }

        .cta-banner h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 3.5vw, 2.4rem);
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 16px;
        }

        .cta-banner p {
            font-size: 1.1rem;
            color: var(--gray-600);
            line-height: 1.7;
            margin-bottom: 36px;
        }

        .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

        /* BUTTONS */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 15px;
            font-weight: 600;
            padding: 15px 32px;
            border-radius: 10px;
            transition: var(--transition);
            white-space: nowrap;
        }

        .btn-primary { background: var(--green); color: var(--dark); }

        .btn-primary:hover {
            background: var(--green-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(77,166,116,.35);
        }

        .btn-dark { background: var(--dark); color: var(--white); }

        .btn-dark:hover {
            background: #034a4f;
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(2,51,54,.35);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--dark);
            color: var(--white);
            padding: 60px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 48px;
            border-bottom: 1px solid rgba(255,255,255,.1);
        }

        .footer-brand p {
            color: rgba(255,255,255,.6);
            font-size: .92rem;
            line-height: 1.7;
            margin-top: 16px;
        }

        .footer h4 {
            font-size: .85rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--green);
            margin-bottom: 20px;
        }

        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 12px; }

        .footer-links a {
            font-size: .92rem;
            color: rgba(255,255,255,.6);
            transition: var(--transition);
        }

        .footer-links a:hover { color: var(--white); padding-left: 4px; }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px 0;
            font-size: .85rem;
            color: rgba(255,255,255,.45);
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(24px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity .7s ease, transform .7s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== MOBILE NAV ===== */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 76px;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(2,51,54,.98);
            backdrop-filter: blur(12px);
            z-index: 999;
            padding: 32px 24px;
            overflow-y: auto;
            transform: translateX(100%);
            transition: transform .35s cubic-bezier(.4,0,.2,1);
        }

        .mobile-nav.open { transform: translateX(0); }

        .mobile-nav-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .mobile-nav-list a {
            display: block;
            padding: 16px 20px;
            font-size: 16px;
            font-weight: 500;
            color: rgba(255,255,255,.8);
            border-radius: 10px;
            transition: var(--transition);
        }

        .mobile-nav-list a:hover,
        .mobile-nav-list a.active { background: rgba(77,166,116,.15); color: var(--white); }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hamburger { display: flex; }
            .desktop-nav { display: none; }
            .mobile-nav { display: block; }
            .intro-grid { grid-template-columns: 1fr; gap: 40px; }
            .diff-grid { grid-template-columns: repeat(2, 1fr); }
            .deep-grid { grid-template-columns: 1fr; gap: 40px; }
            .deep-grid.reversed .deep-img-col { order: 0; }
            .deep-grid.reversed .deep-text-col { order: 0; }
            .promise-inner { grid-template-columns: 1fr; gap: 40px; }
            .testimonial-grid { grid-template-columns: 1fr 1fr; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 640px) {
            .section { padding: 64px 0; }
            .page-hero { padding: 130px 0 64px; }
            .diff-grid { grid-template-columns: 1fr; }
            .promise-metrics { grid-template-columns: 1fr; }
            .testimonial-grid { grid-template-columns: 1fr; }
            .cta-btns { flex-direction: column; }
            .btn { width: 100%; justify-content: center; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
        }