/* --- Variables & Reset --- */
:root {
    /* Palette based on Lovable style */
    --brand-dark: #4338ca;  /* Brighter Indigo/Blue-Purple */
    --brand-light: #6366f1; /* Light Indigo */
    --accent: #FFDD05;      /* "Sprint Yellow" */
    --accent-hover: #FFE55C; /* Lighter Yellow for hover */
    
    --text-main: #1f2937;   /* Dark Grey */
    --text-light: #4b5563;  /* Medium Grey */
    --bg-light: #F3F4F6;    /* Light Blue-Grey */
    --white: #FFFFFF;
    --border: #E5E7EB;
    --radius: 12px;         
    --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--white);
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800; 
    color: #111827;   
    margin-bottom: 0.5em;
    letter-spacing: -0.02em;
}

a { text-decoration: none; }
img { max-width: 100%; height: auto; }

/* --- Utilities --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.small-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 100px 0; } 
.bg-light { background-color: var(--bg-light); }
.bg-brand { background-color: var(--brand-dark); color: var(--white); }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.mt-2 { margin-top: 2rem; }

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.btn-primary {
    background-color: var(--accent);
    color: #1a1a1a; 
    box-shadow: 0 4px 14px rgba(255, 221, 5, 0.4);
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 221, 5, 0.6);
}

.btn-nav {
    border: 2px solid var(--brand-dark);
    color: var(--brand-dark);
    padding: 10px 24px;
    background: transparent;
}

.btn-nav:hover {
    background-color: var(--brand-dark);
    color: var(--white);
}

.btn-large {
    font-size: 1.1rem;
    padding: 18px 48px;
}

.btn-full {
    display: block;
    width: 100%;
    text-align: center;
}

.link-secondary {
    color: var(--text-light);
    text-decoration: underline;
    font-size: 0.9rem;
    margin-top: 15px;
    display: inline-block;
}

/* --- Navigation --- */
.navbar {
    padding: 15px 0;
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px); 
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    max-height: 60px;
    width: auto;
    display: block;
}

/* --- Hero --- */
.hero {
    background: linear-gradient(135deg, #312e81 0%, #4f46e5 100%);
    color: var(--white);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    color: var(--white);
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight { 
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
    color: #e0e7ff; 
}

.trust-text {
    margin-top: 24px;
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* --- Hero Video (Portrait Fixed) --- */
.video-wrapper.portrait {
    max-width: 340px; 
    margin: 0 auto;
    
    /* Force 9:16 Ratio */
    aspect-ratio: 9 / 16;
    
    width: 100%;
    padding-bottom: 0; 
    height: auto;
    
    border-radius: 20px;
    border: 4px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    background: #000;
    position: relative;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

/* --- Feature Cards --- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 { font-size: 2.2rem; color: var(--brand-dark); }
.subhead-white { opacity: 0.9; font-size: 1.1rem; color: #e0e7ff; }

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
}

.card:hover { transform: translateY(-5px); }

.icon-lg {
    font-size: 2.5rem;
    color: var(--brand-dark);
    margin-bottom: 24px;
}

/* --- Timeline --- */
.timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.timeline-item {
    flex: 1;
    min-width: 200px;
    background: rgba(255,255,255,0.05); 
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
}

.day-badge {
    background: var(--accent);
    color: #1a1a1a; 
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.timeline-content h3 { color: var(--white); font-size: 1.2rem; }
.timeline-content p { font-size: 0.95rem; opacity: 0.9; color: #e0e7ff; }

/* --- What You Get --- */
.feature-item {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.feature-icon { font-size: 2rem; margin-bottom: 15px; }
.feature-item h4 { color: var(--brand-dark); margin-bottom: 8px; font-weight: 700; }

/* --- ALITU & VALUE SECTION (NEW) --- */
.alitu-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.alitu-content .lead {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: var(--text-light);
}

.alitu-feature-list ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.alitu-feature-list li {
    margin-bottom: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.alitu-feature-list i {
    color: var(--brand-light);
    margin-right: 12px;
    font-size: 1.1rem;
}

.highlight-box {
    background: #FEFCE8; /* Pale Yellow */
    border-left: 4px solid var(--accent);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.small-text { font-size: 0.9rem; color: #666; }

/* Value Breakdown Card */
.alitu-value-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 1px solid var(--border);
}

.alitu-value-card h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.value-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.value-price { font-weight: 700; }
.strike { text-decoration: line-through; color: #999; font-weight: 400; }

.value-divider {
    height: 1px;
    background: var(--border);
    margin: 20px 0;
}

.value-row.total { color: var(--brand-dark); font-weight: 800; font-size: 1.2rem; }
.value-row.investment { margin-top: 10px; font-size: 1.3rem; }

.highlight-price {
    color: #D97706; /* Darker Orange/Gold for readability */
    background: #FEF3C7;
    padding: 2px 8px;
    border-radius: 4px;
}

.legal-text {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    margin-top: 15px;
    line-height: 1.4;
}

/* --- Coach --- */
.coach-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}
.coach-photo {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: block;
}
blockquote {
    border-left: 4px solid var(--accent);
    padding-left: 24px;
    margin-top: 24px;
    font-style: italic;
    color: var(--text-main);
    font-weight: 500;
}

/* --- Comparison --- */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.compare-card { padding: 40px; border-radius: var(--radius); }
.compare-card.bad { background: #FEF2F2; border: 1px solid #FECACA; }
.compare-card.good { background: #F0FDF4; border: 1px solid #BBF7D0; }
.compare-card h3 { font-size: 1.3rem; }

/* --- Who For (Lists) --- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }

.check-list h3, .cross-list h3 {
    margin-bottom: 20px;
    color: var(--brand-dark);
}

.check-list ul, .cross-list ul {
    list-style-type: none; 
    padding-left: 0;
    margin: 0;
}

.check-list li, .cross-list li {
    margin-bottom: 16px;
    position: relative;
    padding-left: 35px; 
    font-weight: 500;
}

.check-list li::before {
    content: "✅";
    position: absolute; left: 0; top: 0;
}

.cross-list li::before {
    content: "❌";
    position: absolute; left: 0; top: 0;
}

/* --- FAQ --- */
.faq-item { border-bottom: 1px solid var(--border); margin-bottom: 10px; }
.faq-question {
    width: 100%; text-align: left; background: none; border: none;
    padding: 24px 0; font-size: 1.1rem; font-weight: 700;
    color: var(--text-main); cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-family: 'Montserrat', sans-serif;
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-answer p { padding-bottom: 24px; color: var(--text-light); }

/* --- Pricing --- */
.pricing-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    text-align: center;
    border: 1px solid var(--border);
    color: var(--text-main); 
}
.pricing-header {
    background: var(--brand-dark); 
    color: var(--white);
    padding: 50px 20px;
}
.pricing-header h2 { color: var(--white); font-size: 1.8rem; }
.price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent); 
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    margin: 10px 0;
}
.pricing-body { padding: 40px; }
.pricing-body ul { list-style: none; text-align: left; max-width: 400px; margin: 0 auto 30px; }
.pricing-body li { 
    color: var(--text-main);
    margin-bottom: 14px; 
    display: flex; 
    align-items: center; 
}
.pricing-body li i { color: var(--brand-light); margin-right: 12px; font-size: 1.1rem; }

/* --- CTA Spacing --- */
.cta-group {
    margin-top: 30px;
    margin-bottom: 30px;
}

/* --- Footer --- */
footer {
    background: #111827;
    color: rgba(255,255,255,0.4);
    padding: 60px 0;
    font-size: 0.9rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero h1 { font-size: 2.2rem; }
    .grid-2, .grid-3, .comparison-grid, .coach-layout, .alitu-layout { grid-template-columns: 1fr; }
    .timeline { flex-direction: column; }
    .pricing-card { margin: 0; }
    
    .video-wrapper.portrait {
        max-width: 280px; 
    }
    .nav-logo {
        max-height: 40px; 
    }
}

/* --- SPECIAL FIX: Headings on Purple Background --- */
.bg-brand h1, 
.bg-brand h2, 
.bg-brand h3 {
    color: var(--white);
}

/* --- Comparison List Fix --- */
.compare-card ul {
    list-style: none; /* Removes the dot bullet */
    padding-left: 0;  /* Removes default indentation */
    margin-top: 15px;
}

.compare-card li {
    margin-bottom: 12px;
}