/* TailoredHub - Modern Sales Page */

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --green: #10b981;
    --amber: #f59e0b;
    --rose: #f43f5e;
    --sky: #0ea5e9;
    --teal: #14b8a6;
    --indigo: #6366f1;
    --text: #0f172a;
    --text-2: #475569;
    --text-3: #64748b;
    --text-muted: #94a3b8;
    --bg: #ffffff;
    --bg-2: #f8fafc;
    --bg-3: #f1f5f9;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 40px -8px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

p { color: var(--text-2); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font);
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(99,102,241,0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99,102,241,0.4);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-1px);
}

.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--primary-dark);
    font-weight: 700;
    padding: 12px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-large { padding: 14px 32px; font-size: 16px; }
.btn-sm { padding: 8px 18px; font-size: 14px; }
.btn-full { width: 100%; }

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text);
    font-weight: 800;
    font-size: 18px;
    gap: 8px;
}

.main-navigation { display: flex; align-items: center; }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.25s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.menu-wrapper { display: flex; }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-3);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-menu a:hover { color: var(--primary); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-header-cta {
    background: var(--primary);
    box-shadow: none;
}

.btn-header-cta:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(99,102,241,0.3);
}

/* --- Hero --- */
.hero-section {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #f8f7ff 0%, #eef2ff 30%, #faf5ff 60%, #fdf4ff 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(99,102,241,0.2);
    top: -100px;
    right: -100px;
    animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(168,85,247,0.15);
    bottom: -80px;
    left: -80px;
    animation: orbFloat 10s ease-in-out infinite reverse;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(14,165,233,0.12);
    top: 40%;
    left: 50%;
    animation: orbFloat 12s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -30px) scale(1.05); }
    66% { transform: translate(-15px, 15px) scale(0.95); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid var(--border);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    color: var(--text);
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--text-2);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 480px;
}

.hero-sub-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.hero-subtext {
    font-size: 13px;
    color: var(--text-muted);
    padding-left: 4px;
}

/* Hero Mockup */
.hero-mockup {
    animation: mockupFloat 6s ease-in-out infinite;
}

@keyframes mockupFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.mockup-window {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.04);
    overflow: hidden;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border-light);
}

.mockup-controls { display: flex; gap: 6px; }
.control-dot { width: 10px; height: 10px; border-radius: 50%; }
.control-dot.red { background: #ff5f57; }
.control-dot.yellow { background: #ffbd2e; }
.control-dot.green { background: #28ca42; }

.mockup-title {
    flex: 1;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-3);
}

.mockup-body {
    display: flex;
    min-height: 280px;
}

.mockup-sidebar {
    width: 48px;
    background: var(--bg-3);
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    border-right: 1px solid var(--border-light);
}

.sidebar-item {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 14px;
    transition: all 0.2s;
}

.sidebar-item.active {
    background: var(--primary);
    color: white;
}

.mockup-main {
    flex: 1;
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-content: start;
}

.mockup-card {
    padding: 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
}

.mockup-card .card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-bottom: 10px;
}

.mockup-card .card-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.mockup-card .card-stat {
    font-size: 11px;
    color: var(--text-muted);
}

.card-purple { background: #faf5ff; }
.card-purple .card-icon { background: #ede9fe; color: #7c3aed; }
.card-green { background: #f0fdf4; }
.card-green .card-icon { background: #dcfce7; color: #16a34a; }
.card-blue { background: #eff6ff; }
.card-blue .card-icon { background: #dbeafe; color: #2563eb; }
.card-amber { background: #fffbeb; }
.card-amber .card-icon { background: #fef3c7; color: #d97706; }

/* --- Social Proof Bar --- */
.proof-bar {
    padding: 32px 0;
    background: white;
    border-bottom: 1px solid var(--border-light);
}

.proof-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

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

.proof-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}

.proof-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* --- Section Common --- */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    background: #eef2ff;
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.section-description {
    font-size: 18px;
    color: var(--text-2);
    max-width: 540px;
    margin: 0 auto;
}

/* --- Reassurance Section ("Am I Doing Enough?") --- */
.reassurance-section {
    padding: 80px 0;
    background: white;
}

.reassurance-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.reassurance-content .section-title {
    font-size: 36px;
    color: var(--text);
}

.reassurance-lead {
    font-size: 20px;
    color: var(--text-2);
    margin-bottom: 12px;
    font-weight: 500;
}

.reassurance-body {
    font-size: 16px;
    color: var(--text-3);
    margin-bottom: 40px;
    line-height: 1.7;
}

.reassurance-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    text-align: left;
}

.reassurance-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-2);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: all 0.2s ease;
}

.reassurance-point:hover {
    box-shadow: var(--shadow-sm);
    border-color: rgba(16, 185, 129, 0.2);
}

.reassurance-point i {
    color: var(--green);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.reassurance-point span {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.5;
}

/* --- Features Bento Grid --- */
.features-section {
    padding: 96px 0;
    background: white;
}

.features-section.features-bg-alt {
    background: var(--bg-2);
}

.features-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.features-bento.bento-3col {
    grid-template-columns: repeat(3, 1fr);
}

.features-bento.bento-household {
    grid-template-columns: repeat(3, 1fr);
}

.features-bento.bento-3col-2row {
    grid-template-columns: repeat(3, 1fr);
}

.bento-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.features-bg-alt .bento-card {
    background: white;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(99,102,241,0.15);
}

.bento-card.bento-large {
    grid-column: span 1;
    grid-row: span 2;
    padding: 36px;
}

.bento-card.bento-wide {
    grid-column: span 2;
}

.bento-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.bento-card:hover .bento-icon { transform: scale(1.1); }

[data-color="purple"] .bento-icon { background: #ede9fe; color: #7c3aed; }
[data-color="blue"] .bento-icon { background: #dbeafe; color: #2563eb; }
[data-color="green"] .bento-icon { background: #dcfce7; color: #16a34a; }
[data-color="amber"] .bento-icon { background: #fef3c7; color: #d97706; }
[data-color="rose"] .bento-icon { background: #ffe4e6; color: #e11d48; }
[data-color="teal"] .bento-icon { background: #ccfbf1; color: #0d9488; }
[data-color="indigo"] .bento-icon { background: #e0e7ff; color: #4338ca; }
[data-color="sky"] .bento-icon { background: #e0f2fe; color: #0284c7; }

.bento-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.bento-card p {
    font-size: 14px;
    color: var(--text-3);
    line-height: 1.6;
    margin: 0;
}

.bento-large h3 { font-size: 22px; }
.bento-large p { font-size: 15px; }

.bento-visual {
    margin-top: 24px;
}

.ai-preview {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background: var(--bg-2);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.ai-line {
    height: 10px;
    background: linear-gradient(90deg, #ede9fe, #e0e7ff);
    border-radius: 5px;
    animation: shimmer 2s ease-in-out infinite;
}

.ai-line.short { width: 60%; }
.ai-line.medium { width: 80%; }

@keyframes shimmer {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* --- Feature Tags --- */
.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.tag-ai {
    background: #f3e8ff;
    color: #7c3aed;
}

.tag-compliance {
    background: #dcfce7;
    color: #059669;
}

.tag-apple {
    background: #e0e7ff;
    color: #1e40af;
}

.tag-family {
    background: #fef3c7;
    color: #b45309;
}

.tag-lifeskills {
    background: #dcfce7;
    color: #166534;
}

/* --- Compliance Banner --- */
.compliance-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 24px 32px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid #a7f3d0;
    border-radius: var(--radius-lg);
}

.compliance-banner-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #059669;
    box-shadow: var(--shadow-sm);
}

.compliance-banner-text {
    font-size: 15px;
    color: #065f46;
    line-height: 1.6;
}

.compliance-banner-text strong {
    color: #047857;
}

/* --- AI Stats Section --- */
.ai-section {
    padding: 96px 0;
    background: var(--bg-2);
}

.ai-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ai-stat-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.ai-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(139, 92, 246, 0.2);
}

.ai-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f3e8ff;
    color: #7c3aed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 16px;
}

.ai-stat-card p {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-2);
    line-height: 1.5;
    margin: 0;
}

/* --- Testimonials Section --- */
.testimonials-section {
    padding: 96px 0;
    background: white;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--bg-2);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: left;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    gap: 2px;
}

.testimonial-quote {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.testimonial-detail {
    font-size: 13px;
    color: var(--text-muted);
}

/* --- Platform Pills --- */
.platform-section {
    padding: 96px 0;
    background: var(--bg-2);
}

.platform-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.platform-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-2);
    transition: all 0.2s ease;
}

.platform-pill:hover {
    border-color: var(--primary-light);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

/* --- Price Comparison Banner --- */
.price-comparison-banner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 36px 40px;
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.price-comparison-banner h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
}

.price-comparison-banner p {
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.7;
    margin: 0;
}

.price-comparison-banner strong {
    color: var(--text);
}

/* --- Trial Banner --- */
.trial-banner {
    position: relative;
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    margin-bottom: 64px;
    overflow: hidden;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    color: white;
    text-align: center;
}

.trial-banner-bg {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="g" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="white" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23g)"/></svg>');
}

.trial-banner-content {
    position: relative;
    z-index: 1;
}

.trial-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.85;
    margin-bottom: 12px;
}

.trial-banner h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    color: white;
}

.trial-banner p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 24px;
    color: white;
}

/* --- Pricing --- */
.pricing-section {
    padding: 96px 0;
    background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%);
}

.billing-selector {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    background: var(--border);
    border-radius: var(--radius-lg);
    padding: 4px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.billing-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius);
    background: transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: var(--font);
}

.billing-option.active {
    background: white;
    box-shadow: var(--shadow);
}

.billing-option-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-muted);
    transition: color 0.2s;
}

.billing-option.active .billing-option-name { color: var(--text); }

.billing-option-price {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
}

.billing-option.active .billing-option-price { color: var(--primary); }

.billing-save-badge {
    display: inline-block;
    background: #dcfce7;
    color: #059669;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    margin-top: 2px;
}

.billing-option.active .billing-save-badge {
    background: var(--green);
    color: white;
}

.pricing-card {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: visible;
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--amber), #d97706);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(245,158,11,0.4);
    z-index: 2;
}

.pricing-header {
    padding: 48px 40px 40px;
    text-align: center;
    background: var(--gradient);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.pricing-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="d" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23d)"/></svg>');
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
    position: relative;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
    position: relative;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

.amount {
    font-size: 52px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.period {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
}

.price-daily {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-bottom: 8px;
    position: relative;
}

.price-description {
    color: rgba(255,255,255,0.75);
    margin: 0;
    font-size: 14px;
    position: relative;
}

/* Pricing Testimonial */
.pricing-testimonial {
    padding: 24px 40px;
    background: #faf5ff;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.pricing-testimonial-stars {
    color: #f59e0b;
    font-size: 14px;
    margin-bottom: 8px;
}

.pricing-testimonial p {
    font-size: 14px;
    color: var(--text-2);
    font-style: italic;
    margin: 0 0 4px;
}

.pricing-testimonial-author {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Pricing Features */
.pricing-features {
    padding: 36px 40px 40px;
    background: white;
    border-top: 1px solid rgba(0,0,0,0.04);
}

.pricing-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pricing-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.pricing-feature-item:hover {
    background: var(--bg-2);
}

.pricing-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.pricing-feature-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.pricing-feature-text strong {
    font-size: 14px;
    font-weight: 650;
    color: var(--text);
}

.pricing-feature-text span {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.3;
}

/* Guarantee Badge */
.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 16px 0;
    padding: 12px 20px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 1px solid #a7f3d0;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 700;
    color: #065f46;
}

.guarantee-badge i {
    color: #059669;
    font-size: 18px;
}

/* Pricing Form */
.pricing-form {
    padding: 40px;
    background: white;
    border-top: 1px solid var(--border-light);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.form-group { margin-bottom: 16px; }

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    font-family: var(--font);
    transition: all 0.2s ease;
    background: var(--bg-2);
    color: var(--text);
}

.form-group input::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.08);
    background: white;
}

.form-group input.error { border-color: var(--rose); }
.form-group input.valid { border-color: var(--green); }

.payment-security {
    text-align: center;
    font-size: 13px;
    color: var(--text-3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Form Steps */
.form-steps-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    padding: 0 20px;
}

.form-step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    background: var(--border);
    color: var(--text-muted);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.form-step-indicator.active .step-circle {
    background: var(--primary);
    color: white;
    border-color: rgba(99,102,241,0.3);
    box-shadow: 0 0 0 4px rgba(99,102,241,0.12);
}

.form-step-indicator.completed .step-circle {
    background: var(--green);
    color: white;
    border-color: rgba(16,185,129,0.3);
}

.form-step-indicator .step-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.2s;
}

.form-step-indicator.active .step-label,
.form-step-indicator.completed .step-label {
    color: var(--text);
}

.step-line {
    flex: 1;
    height: 3px;
    background: var(--border);
    margin: 0 8px;
    margin-bottom: 24px;
    border-radius: 3px;
    transition: background 0.3s;
    min-width: 40px;
    max-width: 100px;
}

.step-line.active { background: var(--primary); }

.form-step {
    display: none;
    animation: stepFade 0.3s ease-out;
}

.form-step.active { display: block; }

@keyframes stepFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-nav-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.step-nav-buttons .btn { flex: 1; }

/* Student Fields */
.student-field-group {
    margin-bottom: 24px;
}

.student-field-group h4 {
    margin: 0 0 16px;
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
}

.student-form-body {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.student-fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.student-fields-grid .field-cell {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.student-fields-grid .field-cell:nth-child(odd) {
    border-right: 1px solid var(--border);
}

.student-fields-grid .field-cell.full-width {
    grid-column: 1 / -1;
    border-right: none;
}

.student-fields-grid .field-cell:nth-last-child(1),
.student-fields-grid .field-cell:nth-last-child(2) {
    border-bottom: none;
}

.student-fields-grid .field-cell.full-width:last-child {
    border-bottom: none;
}

.field-cell label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-2);
    margin-bottom: 3px;
    letter-spacing: 0.01em;
}

.field-cell input,
.field-cell select {
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: var(--font);
    color: var(--text);
    background: transparent;
    padding: 0;
    -webkit-appearance: none;
    appearance: none;
}

.field-cell select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 18px;
}

.field-cell input::placeholder {
    color: var(--border);
}

.field-cell input:focus,
.field-cell select:focus {
    outline: none;
    box-shadow: none;
}

.student-options {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.coupon-applied-badge {
    display: flex;
    align-items: center;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    color: #065f46;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-2);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.password-fields {
    margin-top: 12px;
    padding: 12px;
    background: white;
    border-radius: 6px;
    border: 1px solid var(--border);
}

.password-note {
    font-size: 12px;
    color: var(--text-3);
    line-height: 1.4;
    margin-top: 8px;
    padding: 8px 12px;
    background: #eff6ff;
    border-radius: 4px;
    border-left: 3px solid #3b82f6;
}

/* Order Summary */
.order-summary {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.summary-section { padding: 8px 0; }

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    font-size: 14px;
}

.summary-student {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    background: transparent;
    border-radius: 0;
    margin-top: 4px;
    font-size: 14px;
    border: 1px solid var(--border-light);
}

.summary-grade { color: var(--text-3); font-size: 13px; }
.summary-divider { height: 1px; background: var(--border); margin: 12px 0; }

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
}

.summary-total.coupon-applied { color: #059669; }

.coupon-tag {
    display: inline-block;
    background: #dcfce7;
    color: #059669;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    margin-left: 4px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-3);
    font-weight: 500;
}

.trust-badge i { color: var(--green); font-size: 14px; }

/* --- Subscribe Choice (Dual CTA) --- */
.subscribe-choice-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.subscribe-option {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 16px 16px;
    text-align: center;
    position: relative;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.subscribe-option:hover {
    border-color: var(--primary-light);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.08);
}

.subscribe-option.recommended {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.04);
    box-shadow: 0 2px 12px rgba(99, 102, 241, 0.1);
}

.recommend-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.subscribe-option .btn {
    width: 100%;
}

.subscribe-option .btn-outline {
    border-color: var(--border);
    color: var(--text-2);
    background: transparent;
}

.subscribe-option .btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(99, 102, 241, 0.04);
}

.subscribe-option-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
    margin-bottom: 0;
    line-height: 1.4;
}

/* --- FAQ --- */
.faq-section {
    padding: 96px 0;
    background: white;
}

.faq-list {
    max-width: 680px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-2);
    border-radius: var(--radius);
    margin-bottom: 8px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all 0.2s;
}

.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    transition: color 0.2s;
}

.faq-question:hover { color: var(--primary); }

.faq-icon {
    font-size: 12px;
    color: var(--text-muted);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
    padding: 0 24px 18px;
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-2);
}

/* --- CTA --- */
.cta-section {
    padding: 96px 0;
    background: var(--gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="c" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.06"/></pattern></defs><rect width="100" height="100" fill="url(%23c)"/></svg>');
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-guarantee {
    display: block;
    margin-top: 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-dark);
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.cta-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* --- Mobile Sticky CTA --- */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    padding: 10px 16px;
    text-align: center;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.mobile-sticky-cta.visible {
    display: flex;
}

.sticky-cta-text {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- Footer --- */
.site-footer {
    background: #0f172a;
    color: white;
    padding: 64px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 12px;
}

.footer-logo img {
    height: 48px !important;
    width: auto !important;
    max-width: none !important;
    background: white;
    border-radius: 8px;
    padding: 4px;
}



.footer-logo .site-title { color: white; }

.footer-description {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
}

.footer-title {
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
}

.footer-links li { margin-bottom: 8px; }

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover { color: white; }

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 24px;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
}

.copyright {
    color: #64748b;
    font-size: 13px;
    margin: 0;
}

/* --- Toast --- */
.form-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    white-space: nowrap;
    max-width: 90vw;
}

.form-toast.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.form-toast.success { background: #059669; color: white; }
.form-toast.error { background: #dc2626; color: white; }

/* Price animation */
.price-changing {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.15s, transform 0.15s;
}

/* Focus */
.btn:focus, input:focus, button:focus, select:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* --- Scroll Animations (disabled — cards must always be visible) --- */
.bento-card,
.faq-item,
.ai-stat-card,
.testimonial-card,
.reassurance-point {
    opacity: 1;
    transform: none;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-title { font-size: 44px; }
    .hero-description { max-width: 100%; margin: 0 auto 32px; }
    .hero-buttons { align-items: center; }

    .features-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-bento.bento-3col {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-bento.bento-household {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-bento.bento-3col-2row {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-card.bento-large { grid-column: span 2; grid-row: span 1; }

    .ai-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }

    .menu-toggle { display: block; }

    .menu-wrapper {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: white;
        border-bottom: 1px solid var(--border);
        padding: 16px;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.25s ease;
        box-shadow: var(--shadow-lg);
    }

    .menu-wrapper.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu { flex-direction: column; gap: 16px; }

    .btn-header-cta { display: none; }

    .hero-section { padding: 120px 0 60px; }
    .hero-title { font-size: 36px; }
    .hero-description { font-size: 16px; }
    .hero-mockup { display: none; }

    .section-title { font-size: 30px; }

    .proof-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .proof-divider { display: none; }

    .reassurance-points {
        grid-template-columns: 1fr;
    }

    .features-bento,
    .features-bento.bento-3col,
    .features-bento.bento-household,
    .features-bento.bento-3col-2row { grid-template-columns: 1fr; }
    .bento-card.bento-large,
    .bento-card.bento-wide { grid-column: span 1; }

    .ai-stats-grid { grid-template-columns: 1fr 1fr; }

    .testimonials-grid { grid-template-columns: 1fr; }

    .platform-pills { gap: 8px; }
    .platform-pill { font-size: 13px; padding: 8px 16px; }

    .price-comparison-banner { padding: 24px 20px; }
    .price-comparison-banner h3 { font-size: 18px; }

    .pricing-features-grid { grid-template-columns: 1fr; }
    .pricing-header { padding: 36px 24px 32px; }
    .pricing-features { padding: 32px 24px; }
    .pricing-testimonial { padding: 20px 24px; }
    .pricing-form { padding: 24px; }
    .trial-banner { padding: 32px 24px; }
    .trial-banner h3 { font-size: 24px; }

    .compliance-banner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-content { grid-template-columns: 1fr; text-align: center; }

    .step-nav-buttons { flex-direction: column; }
    .trust-badges { flex-direction: column; align-items: center; gap: 8px; }
    .student-fields-grid { grid-template-columns: 1fr; }
    .student-fields-grid .field-cell { border-right: none; }
    .student-fields-grid .field-cell:nth-last-child(2) { border-bottom: 1px solid var(--border); }

    /* Mobile sticky CTA handled by JS */
    .mobile-sticky-cta {
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 30px; }
    .section-title { font-size: 26px; }
    .amount { font-size: 44px; }
    .billing-selector { flex-direction: column; max-width: 100%; }
    .faq-question { padding: 14px 16px; font-size: 14px; }
    .faq-answer p { padding: 0 16px 14px; }
    .ai-stats-grid { grid-template-columns: 1fr; }
    .reassurance-content .section-title { font-size: 28px; }
}

@media (min-width: 640px) {
    .student-fields-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Print */
@media print {
    .site-header, .site-footer, .btn, .hero-bg, .mobile-sticky-cta { display: none; }
    body { font-size: 12pt; }
    .container { max-width: none; padding: 0; }
}

/* --- Ultra-compact spacing overrides (2026-03-03) --- */

/* Every section */
.features-section { padding: 40px 0; }
.ai-section { padding: 40px 0; }
.reassurance-section { padding: 40px 0; }
.pricing-section { padding: 48px 0; }
.faq-section { padding: 44px 0; }
.cta-section { padding: 44px 0; }
.hero-section { padding: 110px 0 44px; }
.proof-bar { padding: 20px 0; }
.site-footer { padding: 36px 0 16px; }

/* Headers & titles */
.section-header { margin-bottom: 24px; }
.section-title { font-size: 32px; margin-bottom: 10px; }
.section-badge { margin-bottom: 10px; padding: 4px 14px; font-size: 12px; }
.section-description { font-size: 16px; }

/* Reassurance */
.reassurance-content .section-title { font-size: 30px; }
.reassurance-lead { font-size: 18px; margin-bottom: 8px; }
.reassurance-body { margin-bottom: 24px; font-size: 15px; }
.reassurance-point { padding: 14px 18px; }

/* Bento cards */
.bento-card { padding: 20px; }
.bento-card h3 { margin-bottom: 4px; font-size: 16px; }
.bento-card p { font-size: 13px; line-height: 1.5; }
.bento-icon { width: 40px; height: 40px; font-size: 18px; margin-bottom: 12px; border-radius: 10px; }
.feature-tag { margin-bottom: 8px; padding: 2px 8px; font-size: 10px; }
.features-bento { gap: 14px; }

/* AI grid */
.ai-stats-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
.ai-stat-card { padding: 16px; }
.ai-stat-card p { font-size: 13px; }
.ai-stat-icon { width: 42px; height: 42px; font-size: 18px; margin-bottom: 10px; }

/* Pricing */
.trial-banner { padding: 32px 32px; margin-bottom: 32px; }
.trial-banner h3 { font-size: 26px; margin-bottom: 6px; }
.trial-banner p { margin-bottom: 18px; font-size: 15px; }
.price-comparison-banner { padding: 24px 28px; margin-top: 0; }
.price-comparison-banner h3 { font-size: 20px; margin-bottom: 6px; }
.price-comparison-banner p { font-size: 15px; }
.pricing-section .section-header { margin-top: 32px !important; }
.billing-selector { margin-bottom: 24px; }
.pricing-header { padding: 32px 36px 28px; }
.pricing-header h3 { font-size: 22px; margin-bottom: 12px; }
.amount { font-size: 48px; }
.pricing-features { padding: 24px 32px 28px; }
.pricing-features-grid { gap: 8px; }
.pricing-feature-item { padding: 12px 14px; }
.pricing-feature-icon { width: 38px; height: 38px; font-size: 15px; }
.pricing-feature-text strong { font-size: 13px; }
.pricing-feature-text span { font-size: 11px; }
.pricing-form { padding: 28px 32px; }
.pricing-card:hover { transform: none; }

/* FAQ */
.faq-question { padding: 16px 22px; font-size: 15px; }
.faq-answer p { padding: 0 22px 16px; font-size: 14px; }
.faq-item { margin-bottom: 6px; }

/* CTA */
.cta-content h2 { font-size: 30px; margin-bottom: 10px; }
.cta-content p { font-size: 16px; margin-bottom: 24px; }

/* Footer */
.footer-content { margin-bottom: 24px; gap: 28px; }

/* Hero */
.hero-title { font-size: 50px; margin-bottom: 16px; }
.hero-description { font-size: 17px; margin-bottom: 28px; }
.hero-badge { margin-bottom: 18px; }
.hero-content { gap: 56px; }

/* Proof */
.proof-number { font-size: 26px; }
.proof-items { gap: 36px; }
.proof-divider { height: 34px; }

@media (max-width: 768px) {
    .features-section, .ai-section, .reassurance-section { padding: 28px 0; }
    .pricing-section, .faq-section, .cta-section { padding: 32px 0; }
    .section-header { margin-bottom: 18px; }
    .section-title { font-size: 24px; }
    .hero-section { padding: 94px 0 32px; }
    .hero-title { font-size: 34px; }
    .ai-stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================ */
/* HOW IT WORKS: Workflow Section (expanded)     */
/* ============================================ */
.workflow-section {
    padding: 48px 0;
    background: linear-gradient(135deg, #eef2ff 0%, #f5f3ff 50%, #fdf4ff 100%);
}

.workflow-flow-expanded {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    max-width: 960px;
    margin: 0 auto;
}

.workflow-connector {
    display: none;
}

.workflow-step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 4px;
}

/* Connecting arrows between cards (CSS pseudo-element) */
.workflow-step-card:not(:last-child)::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -14px;
    top: 52px;
    color: var(--primary-light);
    font-size: 14px;
    opacity: 0.5;
    z-index: 1;
}

.workflow-step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.workflow-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: white;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    box-shadow: var(--shadow);
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.workflow-step-card:hover .workflow-step-icon {
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.workflow-step-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.workflow-step-card p {
    font-size: 11px;
    color: var(--text-3);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 900px) {
    .workflow-flow-expanded {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 16px;
        max-width: 600px;
    }
    .workflow-step-card:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .workflow-flow-expanded {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 12px;
    }
    .workflow-step-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

/* ============================================ */
/* MERGED CANVAS SECTION                         */
/* ============================================ */
.canvas-section {
    padding: 48px 0;
    background: white;
}

.canvas-section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.canvas-section-text h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.canvas-section-text p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.6;
    margin-bottom: 16px;
}

.canvas-feature-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.canvas-mini-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: var(--bg-2);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.canvas-mini-card:hover {
    border-color: rgba(99,102,241,0.2);
    box-shadow: var(--shadow-sm);
}

.canvas-mini-card > i {
    font-size: 18px;
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.canvas-mini-card strong {
    display: block;
    font-size: 14px;
    font-weight: 650;
    color: var(--text);
    margin-bottom: 2px;
}

.canvas-mini-card span {
    font-size: 12px;
    color: var(--text-3);
    line-height: 1.4;
}

/* Canvas — clean typographic features */
.canvas-headline {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.canvas-lead {
    font-size: 17px;
    color: var(--text-2);
    line-height: 1.5;
    margin-bottom: 36px;
    max-width: 420px;
}

.canvas-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.canvas-feature-row strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
}

.canvas-feature-row span {
    font-size: 15px;
    color: var(--text-3);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .canvas-headline {
        font-size: 28px;
    }
    .canvas-lead {
        font-size: 15px;
    }
    .canvas-feature-row strong {
        font-size: 15px;
    }
    .canvas-feature-row span {
        font-size: 14px;
    }
}

.canvas-showcase-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.showcase-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-2);
    transition: all 0.2s;
}

.showcase-pill:hover {
    border-color: var(--primary-light);
    color: var(--primary);
}

.showcase-pill i {
    font-size: 11px;
    color: var(--primary);
}

/* iPad Frame */
.ipad-frame {
    background: #1a1a2e;
    border-radius: 24px;
    padding: 16px;
    box-shadow: var(--shadow-xl), 0 0 0 2px rgba(255,255,255,0.05) inset;
    max-width: 420px;
    margin: 0 auto;
}

.ipad-screen {
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.canvas-toolbar {
    display: flex;
    gap: 4px;
    padding: 8px 12px;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border-light);
}

.tool-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--text-3);
    transition: all 0.2s;
}

.tool-btn.active {
    background: var(--primary);
    color: white;
}

.canvas-body {
    padding: 16px 20px;
    min-height: 200px;
    position: relative;
}

.canvas-line {
    height: 1px;
    background: #d4e3f5;
    margin-bottom: 24px;
}

.canvas-handwriting {
    font-family: 'Segoe Script', 'Bradley Hand', cursive;
    font-size: 22px;
    color: #2c3e7a;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.canvas-shapes {
    display: flex;
    gap: 16px;
    align-items: center;
    margin: 12px 0;
}

.canvas-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0.7;
}

.canvas-rect {
    width: 44px;
    height: 28px;
    border-radius: 4px;
    border: 2px solid var(--green);
    opacity: 0.7;
}

.canvas-triangle {
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 32px solid transparent;
    border-bottom-color: rgba(245, 158, 11, 0.35);
}

.canvas-ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f3e8ff;
    color: #7c3aed;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
    margin-top: 8px;
}

.ipad-home-bar {
    width: 100px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
    margin: 12px auto 0;
}

@media (max-width: 768px) {
    .canvas-section-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .canvas-section-text { text-align: center; }
    .canvas-section-text h2 { font-size: 26px; }
    .canvas-showcase-tags { justify-content: center; }
    .canvas-mini-card { text-align: left; }
    .ipad-frame { max-width: 340px; }
}

/* ============================================ */
/* VISUAL BREAK 3: Stats Counter                */
/* ============================================ */
.stats-counter {
    padding: 32px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 30px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px 16px;
    }
    .stat-number { font-size: 28px; }
    .stat-label { font-size: 11px; }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================ */
/* VISUAL BREAK 4: Device Lineup                */
/* ============================================ */
.device-section {
    padding: 36px 0;
    background: var(--bg-2);
    text-align: center;
}

/* Device Icon Grid (replaces device mockups) */
.device-icon-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 28px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.device-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 12px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.device-icon-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.device-icon-card i {
    font-size: 28px;
    color: var(--primary);
}

.device-icon-card span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-2);
}

/* Platform Features pills under devices */
.platform-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .device-icon-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .device-icon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .platform-features { gap: 6px; }
    .platform-pill { font-size: 11px; padding: 6px 12px; }
}

/* ============================================ */
/* AI GROUPED GRID                               */
/* ============================================ */
.ai-grouped-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.ai-group {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.2s ease;
}

.ai-group:hover {
    box-shadow: var(--shadow);
}

.ai-group-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ai-group-label i {
    font-size: 16px;
}

.ai-group-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ai-grouped-grid .ai-stat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    padding: 14px 16px;
}

.ai-grouped-grid .ai-stat-icon {
    margin: 0;
    flex-shrink: 0;
}

.ai-grouped-grid .ai-stat-card p {
    margin: 0;
}

@media (max-width: 768px) {
    .ai-grouped-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================ */
/* FOUNDING FAMILIES SECTION                     */
/* ============================================ */

.founding-families-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #faf5ff 0%, #ede9fe 50%, #e0e7ff 100%);
}

.founding-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.founding-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.founding-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.12);
}

.founding-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    color: #7c3aed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.founding-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-1);
    margin: 0 0 8px;
}

.founding-card p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .founding-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .founding-families-section {
        padding: 60px 0;
    }
}
