      *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --ink: #0f0e0d;
            --ink-mid: #3a3835;
            --ink-muted: #7a7672;
            --surface: #faf9f7;
            --surface-alt: #f3f0eb;
            --surface-card: #ffffff;
            --accent: #1a6b4a;
            --accent-light: #e8f5ee;
            --accent-mid: #2a8a5f;
            --gold: #c9862a;
            --gold-light: #fdf3e3;
            --border: rgba(15,14,13,0.1);
            --border-strong: rgba(15,14,13,0.18);
            --radius: 12px;
            --radius-lg: 20px;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--surface);
            color: var(--ink);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* NAV */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            background: rgba(250,249,247,0.92);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
            padding: 0 40px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-logo {
            height: 32px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            color: var(--ink-mid);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.01em;
            transition: color 0.2s;
        }

        .nav-links a:hover { color: var(--accent); }

        .nav-cta {
            background: var(--ink);
            color: #fff !important;
            padding: 8px 20px;
            border-radius: 8px;
            transition: background 0.2s !important;
        }

        .nav-cta:hover { background: var(--accent) !important; color: #fff !important; }

        /* HERO */
        .hero {
            padding: 160px 40px 100px;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent-light);
            color: var(--accent);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 6px 14px;
            border-radius: 100px;
            margin-bottom: 24px;
        }

        .hero-eyebrow::before {
            content: '';
            width: 6px; height: 6px;
            border-radius: 50%;
            background: var(--accent);
            flex-shrink: 0;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.8rem, 5vw, 4.2rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.02em;
            color: var(--ink);
            margin-bottom: 24px;
        }

        .hero h1 em {
            font-style: italic;
            color: var(--accent);
        }

        .hero p {
            font-size: 18px;
            color: var(--ink-muted);
            line-height: 1.7;
            margin-bottom: 40px;
            font-weight: 300;
            max-width: 460px;
        }

        .hero-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--ink);
            color: #fff;
            padding: 14px 28px;
            border-radius: var(--radius);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            letter-spacing: 0.01em;
            transition: background 0.2s, transform 0.2s;
        }

        .btn-primary:hover { background: var(--accent); transform: translateY(-1px); }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: var(--ink);
            padding: 14px 28px;
            border-radius: var(--radius);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            border: 1px solid var(--border-strong);
            transition: border-color 0.2s, background 0.2s, transform 0.2s;
        }

        .btn-secondary:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: var(--accent-light);
            transform: translateY(-1px);
        }

        /* HERO VISUAL */
        .hero-visual {
            position: relative;
        }

        .hero-card {
            background: var(--surface-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 28px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
        }

        .card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border);
        }

        .card-header-left h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--ink);
        }

        .card-header-left p {
            font-size: 12px;
            color: var(--ink-muted);
            margin-top: 2px;
        }

        .status-badge {
            background: #e8f5ee;
            color: var(--accent);
            font-size: 11px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 100px;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .line-items {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 24px;
        }

        .line-item {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
        }

        .line-item-name { color: var(--ink-mid); }
        .line-item-price { font-weight: 500; }

        .card-divider { height: 1px; background: var(--border); margin: 16px 0; }

        .card-total {
            display: flex;
            justify-content: space-between;
            font-size: 18px;
            font-weight: 700;
        }

        .card-total .amount { color: var(--accent); }

        .hero-badge {
            position: absolute;
            bottom: -20px;
            left: -20px;
            background: var(--gold-light);
            border: 1px solid rgba(201,134,42,0.2);
            border-radius: 12px;
            padding: 14px 18px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        }

        .hero-badge-icon {
            width: 36px; height: 36px;
            background: var(--gold);
            border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            color: #fff; font-size: 16px;
        }

        .hero-badge-text strong { display: block; font-size: 14px; font-weight: 600; }
        .hero-badge-text span { font-size: 12px; color: var(--ink-muted); }

        /* STATS */
        .stats-bar {
            background: var(--ink);
            padding: 48px 40px;
        }

        .stats-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            text-align: center;
        }

        .stat-item {}

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 2.4rem;
            font-weight: 700;
            color: #fff;
            line-height: 1;
        }

        .stat-label {
            font-size: 13px;
            color: rgba(255,255,255,0.5);
            margin-top: 6px;
            letter-spacing: 0.03em;
        }

        .stat-divider {
            width: 1px;
            background: rgba(255,255,255,0.1);
            margin: 0 auto;
        }

        /* FEATURES */
        .features-section {
            padding: 100px 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 12px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            font-weight: 700;
            color: var(--ink);
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--ink-muted);
            max-width: 520px;
            line-height: 1.7;
            font-weight: 300;
        }

        .features-header {
            margin-bottom: 64px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
            background: var(--border);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
        }

        .feature-cell {
            background: var(--surface-card);
            padding: 32px;
            transition: background 0.2s;
        }

        .feature-cell:hover { background: var(--accent-light); }

        .feature-icon-wrap {
            width: 44px; height: 44px;
            background: var(--surface-alt);
            border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            font-size: 20px;
            margin-bottom: 16px;
            transition: background 0.2s;
        }

        .feature-cell:hover .feature-icon-wrap {
            background: rgba(26,107,74,0.15);
        }

        .feature-cell h3 {
            font-size: 15px;
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 8px;
        }

        .feature-cell p {
            font-size: 14px;
            color: var(--ink-muted);
            line-height: 1.6;
        }

        /* HIGHLIGHT */
        .highlight-section {
            background: var(--surface-alt);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            padding: 100px 40px;
        }

        .highlight-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .highlight-quote {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.6rem, 2.5vw, 2.2rem);
            font-weight: 700;
            line-height: 1.3;
            color: var(--ink);
        }

        .highlight-quote em {
            color: var(--accent);
            font-style: italic;
        }

        .highlight-right p {
            font-size: 17px;
            color: var(--ink-muted);
            line-height: 1.75;
            font-weight: 300;
        }

        /* DOWNLOAD */
        .download-section {
            padding: 100px 40px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .download-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 48px;
        }

        .download-btn {
            background: var(--surface-card);
            border: 1px solid var(--border-strong);
            color: var(--ink);
            padding: 16px 28px;
            border-radius: var(--radius);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 14px;
            transition: all 0.2s;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }

        .download-btn:hover {
            border-color: var(--accent);
            background: var(--accent-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        }

        .download-btn i {
            font-size: 28px;
            color: var(--ink-mid);
        }

        .download-btn-text small {
            display: block;
            font-size: 11px;
            color: var(--ink-muted);
            letter-spacing: 0.03em;
        }

        .download-btn-text strong {
            font-size: 17px;
            font-weight: 600;
        }

        /* SUPPORT */
        .support-section {
            background: var(--gold-light);
            border-top: 1px solid rgba(201,134,42,0.15);
            border-bottom: 1px solid rgba(201,134,42,0.15);
            padding: 80px 40px;
            text-align: center;
        }

        .coffee-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--gold);
            color: #fff;
            padding: 14px 32px;
            border-radius: var(--radius);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            margin-top: 28px;
            transition: all 0.2s;
        }

        .coffee-btn:hover {
            background: #b57420;
            transform: translateY(-1px);
        }

        /* CONTACT */
        .contact-section {
            padding: 100px 40px;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
        }

        .contact-info {}

        .contact-info h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .contact-info p {
            font-size: 16px;
            color: var(--ink-muted);
            line-height: 1.7;
            font-weight: 300;
        }

        .contact-detail {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 32px;
            padding: 16px 20px;
            background: var(--surface-alt);
            border-radius: var(--radius);
            text-decoration: none;
            color: var(--ink);
            border: 1px solid var(--border);
            transition: border-color 0.2s;
        }

        .contact-detail:hover { border-color: var(--accent); }

        .contact-detail-icon {
            width: 36px; height: 36px;
            background: var(--accent-light);
            border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            color: var(--accent);
            font-size: 14px;
            flex-shrink: 0;
        }

        .contact-detail-text small {
            display: block;
            font-size: 11px;
            color: var(--ink-muted);
            letter-spacing: 0.04em;
            text-transform: uppercase;
            font-weight: 500;
        }

        .contact-detail-text strong {
            display: block;
            font-size: 14px;
            font-weight: 500;
        }

        .contact-form-wrap {
            background: var(--surface-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 40px;
        }

        .form-group { margin-bottom: 20px; }

        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.02em;
            color: var(--ink-mid);
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--border-strong);
            border-radius: var(--radius);
            background: var(--surface);
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            color: var(--ink);
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(26,107,74,0.1);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            background: var(--ink);
            color: #fff;
            padding: 14px;
            border: none;
            border-radius: var(--radius);
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
        }

        .submit-btn:hover { background: var(--accent); transform: translateY(-1px); }

        .success-message {
            background: var(--accent-light);
            color: var(--accent);
            border: 1px solid rgba(26,107,74,0.2);
            padding: 14px 18px;
            border-radius: var(--radius);
            margin-bottom: 20px;
            font-size: 14px;
            font-weight: 500;
            display: none;
        }

        /* FOOTER */
        footer {
            background: var(--ink);
            padding: 48px 40px;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 24px;
        }

        .footer-logo img { height: 28px; opacity: 0.8; }

        .footer-links {
            display: flex;
            gap: 28px;
            list-style: none;
        }

        .footer-links a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            font-size: 13px;
            transition: color 0.2s;
        }

        .footer-links a:hover { color: #fff; }

        .footer-copy {
            color: rgba(255,255,255,0.3);
            font-size: 13px;
        }

        /* POLICY PAGES */
        .page-content { display: none; }
        .page-content.active { display: block; }

        .policy-nav {
            background: var(--ink);
            padding: 0 40px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .policy-nav img { height: 28px; }

        .back-btn {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: color 0.2s;
        }

        .back-btn:hover { color: #fff; }

        .policy-hero {
            background: var(--surface-alt);
            border-bottom: 1px solid var(--border);
            padding: 60px 40px;
        }

        .policy-hero-inner {
            max-width: 800px;
            margin: 0 auto;
        }

        .policy-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.4rem;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 8px;
        }

        .policy-hero p {
            font-size: 14px;
            color: var(--ink-muted);
        }

        .policy-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 60px 40px;
            line-height: 1.8;
        }

        .policy-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--ink);
            margin-top: 48px;
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border);
        }

        .policy-content h3 {
            font-size: 15px;
            font-weight: 600;
            color: var(--ink-mid);
            margin-top: 28px;
            margin-bottom: 10px;
        }

        .policy-content p { margin-bottom: 16px; color: var(--ink-mid); font-size: 15px; }

        .policy-content ul {
            margin: 12px 0 16px 20px;
            color: var(--ink-mid);
        }

        .policy-content li { margin-bottom: 8px; font-size: 15px; }

        /* ANIMATIONS */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(24px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .animate {
            animation: fadeUp 0.6s ease both;
        }

        .animate-delay-1 { animation-delay: 0.1s; }
        .animate-delay-2 { animation-delay: 0.2s; }
        .animate-delay-3 { animation-delay: 0.3s; }

        @media (max-width: 900px) {
            nav { padding: 0 20px; }
            .nav-links { display: none; }
            .hero { grid-template-columns: 1fr; gap: 48px; padding: 120px 20px 60px; }
            .hero-badge { display: none; }
            .stats-inner { grid-template-columns: repeat(2, 1fr); }
            .features-section { padding: 60px 20px; }
            .features-grid { grid-template-columns: 1fr; }
            .highlight-inner { grid-template-columns: 1fr; gap: 32px; padding: 60px 20px; }
            .highlight-section { padding: 60px 20px; }
            .contact-section { grid-template-columns: 1fr; gap: 40px; padding: 60px 20px; }
            .download-section { padding: 60px 20px; }
            .support-section { padding: 60px 20px; }
            .footer-inner { flex-direction: column; text-align: center; }
            .stats-bar { padding: 48px 20px; }
            .policy-content { padding: 40px 20px; }
            .policy-hero { padding: 40px 20px; }
        }
  