        :root {
            --navy: #0c1e3e;
            --offwhite: #fafafa;
            --lightgray: #f5f7fa;
            --gold: #948971;
            --charcoal: #2d3748;
            --gray-accessible: #4a5568;
        }


        html {
          scroll-behavior: smooth;

        }

        body {
            font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: #f8f9fa;
            color: var(--charcoal);
            font-size: 16px;
        }

        h1, h2, h3 {
            font-family: 'Instrument Sans', sans-serif;
            font-weight: 600;
        }

        .text-gold{
            color: var(--gold);
        }

        .section {
            padding: 80px 24px;
        }

        .hero {
            background: var(--lightgray);
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            align-items: center;
            padding: 80px 24px;
        }

        .hero-section {
            background: var(--lightgray);
            padding: 80px 44px;
            text-align: center;
        }

        .form-container {
            background: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            max-width: 500px;
            margin: 0 auto;
        }

        .form-input {
            width: 100%;
            padding: 12px;
            border: 1px solid #e2e8f0;
            border-radius: 4px;
            margin-bottom: 16px;
            font-family: inherit;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 2px rgba(184, 158, 111, 0.1);
        }

        @media (min-width: 1024px) {
            .hero {
                grid-template-columns: 1fr 1fr;
                gap: 80px;
                padding: 120px 64px;
            }
        }

        .cta-button {
            display: inline-block;
            background: var(--navy);
            color: white;
            padding: 14px 32px;
            border-radius: 2px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s ease;
            border: 1px solid var(--navy);
        }

        .cta-button:hover {
            background: linear-gradient(135deg, var(--gold) 0%, #a08a5c 100%);
            border-color: var(--gold);
            color: var(--navy);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(184, 158, 111, 0.25);
        }

        .cta-button-contrast {
            display: inline-block;
            background: linear-gradient(135deg, var(--gold) 0%, #a08a5c 100%);
            color: var(--navy);
            padding: 14px 32px;
            border-radius: 2px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s ease;
            border: 1px solid var(--navy);
        }

        .cta-button-contrast:hover {
            background: linear-gradient(135deg, var(--gold) 0%, #a08a5c 100%);
            border-color: var(--gold);
            color: var(--navy);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(184, 158, 111, 0.25);
        }

        /* Document preview frame */
        .preview-frame {
            border: 1px solid #e2e8f0;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.04);
            background: white;
        }

        .preview-frame img {
            width: 100%;
            display: block;
            border-bottom: 1px solid #edf2f7;
        }

        .preview-caption {
            padding: 16px;
            font-size: 14px;
            color: #718096;
            text-align: center;
        }

        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            margin-top: 32px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-value {
            font-size: 28px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 14px;
            color: var(--gray-accessible);
        }

        /* Feature Card */
        .feature-card {
            background: white;
            border: 1px solid #f0f0f0;
            border-top: 3px solid var(--gold);
            border-radius: 8px;
            padding: 28px 24px;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .feature-card:hover {
            box-shadow: 0 6px 16px rgba(0,0,0,0.05);
            transform: translateY(-2px);
        }

        .feature-title {
            font-weight: 600;
            font-size: 1.125rem;
            color: var(--navy);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .feature-title::before {
            content: "✓";
            color: var(--gold);
            font-weight: bold;
            font-size: 1.1em;
        }

        .feature-desc {
            font-size: 0.9375rem;
            color: var(--gray-accessible);
            line-height: 1.5;
        }

        /* Final CTA panel */
        .cta-panel {
            background: var(--navy);
            color: white;
            text-align: center;
            padding: 64px 24px;
            border-radius: 8px;
            margin: 64px auto;
            max-width: 768px;
            position: relative;
        }

        .cta-panel h2 {
            font-weight: 500;
            font-size: 28px;
            margin-bottom: 24px;
            line-height: 1.3;
        }

        .price-tag {
            font-size: 42px;
            font-weight: 600;
            margin: 20px 0;
            letter-spacing: -0.5px;
        }

        .small-print {
            color: var(--gray-accessible);
            opacity: 1;
            font-size: 14px;
            max-width: 500px;
            margin: 0 auto;
        }

        .small-print-contrast {
            color: #fafafa;
            opacity: 1;
            font-size: 14px;
            max-width: 500px;
            margin: 0 auto;
        }

        .slots-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 500;
            color: var(--gold);
            margin-top: 8px;
        }

        .gold-dot {
            display: inline-block;
            width: 6px;
            height: 6px;
            background: var(--gold);
            border-radius: 50%;
        }
        .footer a {
            color: var(--gray-accessible); /* Updated */
        }
    