/* Base Variables */
:root {
    --primary: #0B4F9C;
    --primary-mid: #19508D;
    --primary-deep: #0A2F66;
    --accent: #2E9FD1;
    --text-dark: #2C3A45;
    --text-muted: #374047;
    --bg-soft: #E8F2FE;
    --bg-sky: #B8D4EA;
    --white: #FFFFFF;
    --red-strike: #E85D4C;
    --green-check: #6BCB77;
    --border-color: #D1E4F9;
    --shadow-sm: 0 4px 6px -1px rgba(11, 79, 156, 0.1), 0 2px 4px -1px rgba(11, 79, 156, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(11, 79, 156, 0.1), 0 4px 6px -2px rgba(11, 79, 156, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(11, 79, 156, 0.15), 0 10px 10px -5px rgba(11, 79, 156, 0.04);
}

/* Reset & Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; }
ul { list-style: none; }

/* Utilities */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.bg-soft {
    background-color: var(--bg-soft);
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.justify-center { justify-content: center; }
.mx-2 { margin: 0 0.5rem; }
.text-white-50 { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* Typography */
h1, h2, h3 {
    color: var(--primary-deep);
    line-height: 1.2;
    font-weight: 800;
}

h1 { font-size: 2.8rem; margin-bottom: 1.5rem; letter-spacing: -0.03em; }
h2 { font-size: 2.2rem; margin-bottom: 1rem; letter-spacing: -0.02em; }
h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(11, 79, 156, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-deep);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 79, 156, 0.5);
}

.btn-secondary {
    background-color: var(--bg-sky);
    color: var(--primary-deep);
}

.btn-secondary:hover {
    background-color: #A3C9E6;
}

.btn-outline-primary {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
    flex-direction: column;
}

.btn-subtext {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 4px;
}

.btn-full {
    width: 100%;
}

.cta-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(11, 79, 156, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(11, 79, 156, 0); }
    100% { box-shadow: 0 0 0 0 rgba(11, 79, 156, 0); }
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--bg-soft) 0%, var(--white) 100%);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background-color: var(--bg-sky);
    color: var(--primary-deep);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero .subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-actions {
    margin-bottom: 40px;
}

.trust-marks {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--text-muted);
}

/* Cards & Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Problems / Solutions */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.problems-col {
    background: #FFF5F5;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #FFEBEB;
}

.solution-col {
    background: var(--bg-soft);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

.pain-list li, .solution-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
}

.x-icon { color: var(--red-strike); font-size: 1.2rem; }
.check-icon { color: var(--green-check); font-size: 1.2rem; }

/* Modules */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.module-card {
    display: flex;
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.module-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bg-sky);
    margin-right: 20px;
    line-height: 1;
}

.test-banner {
    background: var(--white);
    border: 2px dashed var(--accent);
    border-radius: 16px;
    padding: 24px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.test-icon { font-size: 2rem; }
.test-text { font-size: 1.1rem; color: var(--primary-deep); }

/* Pricing */
.value-stack-box {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto 50px;
    box-shadow: var(--shadow-sm);
}

.value-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-soft);
}

.value-item.highlight {
    font-weight: 700;
    color: var(--primary);
}

.value-total {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    font-size: 1.2rem;
    font-weight: 800;
}

.strike { text-decoration: line-through; color: var(--red-strike); }

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.price-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.price-card.popular {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
}

.popular-badge, .price-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.price-badge {
    background: var(--accent);
}

.price-card .price {
    margin: 20px 0;
}

.price .old {
    display: block;
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.price .current {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-deep);
}

.features { margin: 20px 0 30px; }
.features li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}
.features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.bundle-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    background: var(--bg-soft);
    padding: 10px;
    border-radius: 8px;
}

.urgency-banner {
    text-align: center;
    background: #FFF8E1;
    color: #B58500;
    padding: 16px;
    border-radius: 12px;
    max-width: 600px;
    margin: 40px auto 0;
    border: 1px solid #FFE082;
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-deep);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 0 24px 20px;
    max-height: 200px;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}
.faq-question .icon {
    transition: transform 0.3s ease;
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: var(--primary-deep);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer h2 { color: var(--white); }
.footer p { color: rgba(255,255,255,0.8); font-size: 1.1rem; }
.copyright {
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.9rem !important;
}

/* Sticky CTA Mobile */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
    padding: 12px 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: none;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.sticky-price .old-price {
    display: block;
    font-size: 0.8rem;
    text-decoration: line-through;
    color: var(--text-muted);
}
.sticky-price .new-price {
    font-weight: 800;
    color: var(--primary-deep);
    font-size: 1.1rem;
}

.btn-sm { padding: 10px 20px; font-size: 1rem; }

/* Responsive */
@media (max-width: 900px) {
    .grid-3 { grid-template-columns: 1fr; }
    .split-layout { grid-template-columns: 1fr; }
    .pricing-cards { grid-template-columns: 1fr; max-width: 400px; }
    h1 { font-size: 2.2rem; }
    .modules-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero { padding: 60px 0; }
    .sticky-cta { display: block; }
    body { padding-bottom: 70px; } /* Space for sticky CTA */
    .trust-marks { flex-direction: column; gap: 12px; }
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; }
    .btn-large { padding: 14px 24px; }
}
