/* ── Hero ── */
.hero {
    background: linear-gradient(135deg, #0f2044 0%, #1a3a6e 100%);
    padding: 80px 40px;
    text-align: center;
    color: #ffffff;
}

.hero .badge {
    display: inline-block;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: #c9a84c;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    max-width: 800px;
    margin: 0 auto 20px;
}

.hero h1 span { color: #c9a84c; }

.hero p {
    font-size: 18px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.hero .hero-cta {
    display: inline-block;
    background: #c9a84c;
    color: #0f2044;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.hero .hero-cta:hover { background: #b8952f; }

.hero .hero-sub {
    margin-top: 16px;
    font-size: 13px;
    color: #64748b;
}

/* ── Stats Strip ── */
.stats-strip {
    background: #0a1628;
    padding: 24px 40px;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stats-strip .stat {
    text-align: center;
    color: #ffffff;
}

.stats-strip .stat .number {
    font-size: 28px;
    font-weight: 800;
    color: #c9a84c;
    display: block;
}

.stats-strip .stat .label {
    font-size: 12px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Pain Points ── */
.pain-section {
    padding: 80px 40px;
    background: #f8fafc;
    text-align: center;
}

.pain-section h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0f2044;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.pain-section .section-sub {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 48px;
}

.pain-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.pain-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px 24px;
    width: 280px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.pain-card .pain-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.pain-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0f2044;
    margin-bottom: 8px;
}

.pain-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* ── What's Included ── */
.included-section {
    padding: 80px 40px;
    background: #ffffff;
    text-align: center;
}

.included-section h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0f2044;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.included-section .section-sub {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 48px;
}

.checks-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto 48px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    color: #15803d;
    font-weight: 500;
}

.check-item .tick { font-size: 16px; }

.sample-report {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.sample-report h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f2044;
    margin-bottom: 8px;
}

.sample-report p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
}

.sample-report a {
    display: inline-block;
    background: #0f2044;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.sample-report a:hover { background: #1a3a6e; }

/* ── Checkout Section ── */
.checkout-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #0f2044 0%, #1a3a6e 100%);
    text-align: center;
}

.checkout-section h2 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.checkout-section .section-sub {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 40px;
}

.checkout-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    text-align: left;
}

.checkout-card .price-tag {
    font-size: 36px;
    font-weight: 800;
    color: #0f2044;
    margin-bottom: 4px;
}

.checkout-card .price-tag span {
    font-size: 14px;
    font-weight: 400;
    color: #94a3b8;
}

.checkout-card .price-sub {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 24px;
}

.field-group {
    margin-bottom: 20px;
}

.field-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.field-group input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    color: #1a1a2e;
}

.field-group input:focus {
    border-color: #0f2044;
    box-shadow: 0 0 0 3px rgba(15, 32, 68, 0.08);
}

.field-group small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #9ca3af;
}

#card-element {
    padding: 11px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    transition: border-color 0.2s;
}

#card-element.StripeElement--focus {
    border-color: #0f2044;
    box-shadow: 0 0 0 3px rgba(15, 32, 68, 0.08);
}

#submit-btn {
    width: 100%;
    padding: 14px;
    background: #c9a84c;
    color: #0f2044;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}

#submit-btn:hover { background: #b8952f; }
#submit-btn:disabled { background: #e2c97e; cursor: not-allowed; }

.secure-note {
    text-align: center;
    font-size: 12px;
    color: #9ca3af;
    margin-top: 12px;
}

.error-box {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #c2410c;
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 16px;
}

.success-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #15803d;
    padding: 20px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .hero h1 { font-size: 32px; }
    .hero { padding: 60px 24px; }
    .stats-strip { gap: 32px; padding: 24px; }
    .pain-section, .included-section, .checkout-section { padding: 60px 24px; }
    header { padding: 16px 24px; }
    header nav { display: none; }
}


/* ── Sample Report Section ── */
.sample-section {
    padding: 80px 40px;
    background: #ffffff;
}

.sample-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.sample-text h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0f2044;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.sample-text p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.sample-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.sample-list li {
    font-size: 14px;
    color: #15803d;
    font-weight: 500;
    padding: 4px 0;
}

.sample-download-btn {
    display: inline-block;
    background: #0f2044;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.sample-download-btn:hover { background: #1a3a6e; }

.pdf-preview {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(15, 32, 68, 0.1);
}

.pdf-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 3px solid #6366f1;
}

.pdf-logo {
    font-size: 16px;
    font-weight: 700;
    color: #6366f1;
}

.pdf-tag {
    font-size: 11px;
    background: #f0f0ff;
    color: #6366f1;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
}

.pdf-preview-score {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: #f8f8ff;
    border-radius: 8px;
}

.pdf-score-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 4px solid #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: #f59e0b;
    flex-shrink: 0;
}

.pdf-score-label {
    font-size: 14px;
    font-weight: 700;
    color: #f59e0b;
}

.pdf-score-sub {
    font-size: 12px;
    color: #64748b;
}

.pdf-preview-rows {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.pdf-row {
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 500;
}

.pdf-row.pass {
    background: #f0fdf4;
    color: #15803d;
}

.pdf-row.fail {
    background: #fff7ed;
    color: #c2410c;
}

.pdf-preview-footer {
    text-align: center;
    font-size: 11px;
    color: #94a3b8;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
}

/* ── Scope Section ── */
.scope-section {
    padding: 40px 40px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.scope-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.scope-inner h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0f2044;
    margin-bottom: 12px;
}

.scope-inner p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 8px;
}

@media (max-width: 900px) {
    .sample-inner {
        grid-template-columns: 1fr;
    }
    .pdf-preview {
        max-width: 400px;
        margin: 0 auto;
    }
}