/* ==========================================
   Design Tokens & CSS Variables (Screenshot Matched)
   ========================================== */
:root {
    --bg-page: #F8FAFC; /* Clean off-white/light gray page background */
    --bg-card: #FFFFFF; /* Pure white for cards */
    --bg-navy: #0F172A; /* Slate 900 for main headers and text */
    --bg-navy-light: #1E293B; /* Slate 800 for subtext and elements */
    --bg-navy-dark: #090E1A; /* Dark navy for footers and special cards */
    
    --primary: #FFC526; /* Gold/yellow from screenshot CTA buttons */
    --primary-hover: #E2B01F;
    --primary-glow: rgba(255, 197, 38, 0.2);
    
    --accent-red: #B91C1C; /* Crimson for highlighting pain points (चिंता, डर) */
    --accent-red-glow: rgba(185, 28, 28, 0.1);
    
    --accent-green: #10B981; /* Green for solution checkmarks */
    --accent-green-glow: rgba(16, 185, 129, 0.1);
    
    --text-main: #334155; /* Slate 700 for body text readability */
    --text-muted: #64748B; /* Slate 500 for captions and secondary details */
    --text-white: #FFFFFF;
    
    --font-heading: 'Poppins', 'Noto Sans Devanagari', sans-serif;
    --font-body: 'Inter', 'Outfit', sans-serif;
    
    --border-color: #E2E8F0; /* Slate 200 thin border */
    --border-color-hover: #CBD5E1; /* Slate 300 */
    --border-gold: rgba(255, 197, 38, 0.4);
    
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.03), 0 1px 2px rgba(15, 23, 42, 0.02);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -1px rgba(15, 23, 42, 0.03);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.04), 0 4px 6px -2px rgba(15, 23, 42, 0.02);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease-in-out;
    --container-max-width: 1140px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-page);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 75px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--bg-navy);
    font-weight: 700;
    line-height: 1.3;
}

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

a {
    color: var(--bg-navy);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
    max-width: var(--container-max-width);
}

/* ==========================================
   Highlight Classes (Screenshot Style)
   ========================================== */
.highlight-red {
    color: var(--accent-red) !important;
}

.highlight-green {
    color: var(--accent-green) !important;
}

.highlight-gold {
    color: #D97706; /* Golden dark */
}

/* ==========================================
   Section Headers (with dot-dash lines from screenshot)
   ========================================== */
.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.25rem;
    color: var(--bg-navy);
    position: relative;
    display: inline-block;
    padding: 0 1.5rem;
}

.section-title::before, .section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    border-bottom: 1px dashed var(--primary);
}

.section-title::before {
    left: -45px;
}

.section-title::after {
    right: -45px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }
    .section-title::before, .section-title::after {
        display: none;
    }
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0.75rem auto 0 auto;
}

/* ==========================================
   CTA Button (Yellow-Gold Gradient with black text)
   ========================================== */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(180deg, var(--primary) 0%, #F59E0B 100%);
    color: var(--bg-navy) !important; /* Dark text on yellow button */
    font-weight: 800;
    font-family: var(--font-heading);
    padding: 1rem 2.25rem;
    font-size: 1.25rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.25);
    transition: var(--transition-normal);
}

.cta-btn:hover {
    background: linear-gradient(180deg, #FFD15C 0%, #D97706 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(245, 158, 11, 0.4);
}

.cta-btn i {
    font-size: 1.25rem;
}

.secondary-btn {
    background: #FFFFFF;
    color: var(--bg-navy) !important;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.secondary-btn:hover {
    background: var(--bg-page);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.sub-cta-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    display: block;
}

/* ==========================================
   Announcement Bar & Header
   ========================================== */
.announcement-bar {
    background-color: var(--bg-navy);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 0.85rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.announcement-bar p {
    color: var(--text-white);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.announcement-bar strong {
    color: var(--primary);
}

.timer-span {
    background-color: rgba(255, 197, 38, 0.15);
    color: var(--primary);
    padding: 0.1rem 0.5rem;
    border-radius: 4px;
    font-family: monospace;
    font-weight: 700;
}

.header {
    background-color: #FFFFFF;
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img-header {
    height: 44px;
    width: auto;
}

.logo-info {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--bg-navy);
    line-height: 1.1;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.header-badge {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--bg-navy-light);
    background-color: rgba(255, 197, 38, 0.05);
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-badge i {
    color: #F59E0B;
}

@media (max-width: 600px) {
    .header-badge {
        display: none;
    }
}

/* ==========================================
   1. Hero Section
   ========================================== */
.hero-section {
    padding: 3.5rem 0 4.5rem 0;
    background-color: #F8FAFC;
    border-bottom: 1px solid var(--border-color);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.pre-title .badge {
    background-color: rgba(201, 154, 60, 0.1);
    color: #B38526;
    border: 1px solid var(--border-gold);
    padding: 0.2rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2.75rem;
    line-height: 1.25;
    margin-bottom: 1.25rem;
    color: var(--bg-navy);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--bg-navy-light);
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Row of 4 icon highlights below subtitle */
.hero-bullets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 600px) {
    .hero-bullets {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

.bullet-item {
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    padding: 0.75rem 0.5rem;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.bullet-icon {
    font-size: 1.25rem;
    color: var(--primary);
}

.bullet-item span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--bg-navy);
}

.cta-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 991px) {
    .cta-box {
        align-items: center;
    }
}

.cta-box .cta-btn {
    padding: 1.15rem 3rem;
    font-size: 1.35rem;
}

/* Hero image mockups container */
.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.book-glow-effect {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 197, 38, 0.15) 0%, transparent 60%);
    z-index: 1;
    bottom: 50px;
}

.book-cover-img {
    z-index: 2;
    filter: drop-shadow(0 15px 25px rgba(15, 23, 42, 0.15));
    max-width: 65%;
    border-radius: 4px;
}

.smartphone-img {
    position: absolute;
    right: 5%;
    bottom: -10px;
    z-index: 3;
    max-width: 35%;
    filter: drop-shadow(0 10px 20px rgba(15, 23, 42, 0.2));
}

.price-badge-circle {
    position: absolute;
    top: -20px;
    right: 5%;
    background-color: var(--accent-red);
    color: var(--text-white);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 4;
    border: 2px dashed rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 16px rgba(185, 28, 28, 0.2);
    font-family: var(--font-heading);
    transform: rotate(5deg);
}

.price-badge-circle .only {
    font-size: 0.7rem;
    text-transform: uppercase;
}

.price-badge-circle .val {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}

.price-badge-circle .cross {
    font-size: 0.75rem;
    text-decoration: line-through;
    opacity: 0.7;
}

/* ==========================================
   2. Problem Section
   ========================================== */
.problem-section {
    padding: 6.5rem 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid var(--border-color);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 480px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }
}

.problem-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    gap: 1.25rem;
    align-items: center;
    transition: var(--transition-fast);
}

.problem-card:hover {
    border-color: #FDA4AF; /* Soft red border */
    box-shadow: var(--shadow-md);
}

.problem-card-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--accent-red);
    background-color: var(--accent-red-glow);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 900;
}

.problem-card-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex-shrink: 0;
}

.problem-card-info {
    display: flex;
    flex-direction: column;
}

.problem-card-info h3 {
    font-size: 1.1rem;
    color: var(--bg-navy);
    margin-bottom: 0.25rem;
}

.problem-card-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================
   3. Solution Section
   ========================================== */
.solution-section {
    padding: 6.5rem 0;
    background-color: var(--bg-page);
    border-bottom: 1px solid var(--border-color);
}

.solution-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 991px) {
    .solution-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.solution-text-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.solution-badge {
    background-color: var(--accent-green-glow);
    color: var(--accent-green);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 0.35rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    font-family: var(--font-heading);
}

.solution-heading {
    font-size: 2.25rem;
    color: var(--bg-navy);
    margin-bottom: 1.25rem;
}

.solution-desc {
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .solution-grid {
        grid-template-columns: 1fr;
    }
}

.solution-card {
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: var(--transition-fast);
}

.solution-card:hover {
    border-color: var(--primary-hover);
    box-shadow: var(--shadow-md);
}

.solution-card-icon {
    font-size: 1.5rem;
    color: var(--primary);
    background-color: rgba(255, 197, 38, 0.1);
    width: 44px;
    height: 44px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-card h4 {
    font-size: 1.1rem;
    color: var(--bg-navy);
}

.solution-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================
   4. Learn Section
   ========================================== */
.learn-section {
    padding: 6.5rem 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid var(--border-color);
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.25rem;
}

@media (max-width: 480px) {
    .learn-grid {
        grid-template-columns: 1fr;
    }
}

.learn-pill {
    background-color: #F8FAFC;
    border: 1px solid var(--border-color);
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.learn-pill:hover {
    border-color: rgba(16, 185, 129, 0.3);
    background-color: #F0FDF4;
}

.learn-pill-icon {
    font-size: 1.25rem;
    color: var(--accent-green);
    flex-shrink: 0;
}

.learn-pill span {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--bg-navy);
}

/* ==========================================
   5. Timeline Section (Timeline Path Chevron style)
   ========================================== */
.challenge-section {
    padding: 6.5rem 0;
    background-color: var(--bg-page);
    border-bottom: 1px solid var(--border-color);
}

.timeline-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

@media (max-width: 991px) {
    .timeline-wrapper {
        grid-template-columns: 1fr;
    }
}

.timeline-card {
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    padding: 2.25rem 1.75rem;
    border-radius: 8px;
    position: relative;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-card::after {
    /* Arrow indicator on desktop between cards */
    content: '\f0da';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--border-color-hover);
    z-index: 10;
}

@media (max-width: 991px) {
    .timeline-card::after {
        content: '\f0d7';
        right: auto;
        left: 50%;
        bottom: -25px;
        top: auto;
        transform: translateX(-50%);
    }
}

.timeline-card:last-child::after {
    display: none;
}

.timeline-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.timeline-card-badge {
    background-color: var(--accent-green);
    color: var(--text-white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.timeline-card:nth-child(2) .timeline-card-badge {
    background-color: var(--primary);
}

.timeline-card:nth-child(3) .timeline-card-badge {
    background-color: var(--bg-navy-light);
}

.timeline-card-info h3 {
    font-size: 1.15rem;
    color: var(--bg-navy);
}

.timeline-card-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.timeline-card p {
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.6;
}

/* ==========================================
   6. Split Section (Bonus & Why Choose Upgyanam)
   ========================================== */
.split-section {
    padding: 6.5rem 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid var(--border-color);
}

.split-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
}

@media (max-width: 991px) {
    .split-wrapper {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

.bonus-container {
    display: flex;
    flex-direction: column;
}

.bonus-title {
    font-size: 1.75rem;
    color: var(--bg-navy);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bonus-title i {
    color: var(--accent-red);
}

.bonus-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.bonus-item-card {
    background-color: #F8FAFC;
    border: 1px solid var(--border-color);
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    display: flex;
    gap: 1.25rem;
    align-items: center;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.bonus-gift-box {
    background-color: var(--primary);
    color: var(--bg-navy);
    width: 44px;
    height: 44px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.bonus-item-card:nth-child(2) .bonus-gift-box { background-color: var(--primary); }
.bonus-item-card:nth-child(3) .bonus-gift-box { background-color: #60A5FA; color: white; }
.bonus-item-card:nth-child(4) .bonus-gift-box { background-color: #34D399; color: white; }
.bonus-item-card:nth-child(5) .bonus-gift-box { background-color: #A78BFA; color: white; }

.bonus-item-info {
    display: flex;
    flex-direction: column;
}

.bonus-item-info h4 {
    font-size: 1.05rem;
    color: var(--bg-navy);
    margin-bottom: 0.25rem;
}

.bonus-item-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.bonus-badge-val {
    position: absolute;
    top: 10px;
    right: 15px;
    background-color: rgba(255, 197, 38, 0.15);
    color: #B38526;
    border: 1px solid var(--border-gold);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Why Choose Card (Dark Blue background block) */
.why-upgyanam-card {
    background-color: var(--bg-navy-dark);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 2.75rem 2.25rem;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-lg), var(--shadow-gold-glow);
}

.why-upgyanam-card h3 {
    font-size: 1.6rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.why-point-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.why-point-item i {
    color: var(--accent-green);
    font-size: 1.15rem;
    margin-top: 0.2rem;
}

.why-point-item span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

/* ==========================================
   7. Pricing Table Section (Matching logo style)
   ========================================== */
.pricing-section {
    padding: 6.5rem 0;
    background-color: var(--bg-page);
    border-bottom: 1px solid var(--border-color);
}

.pricing-card-wrapper {
    display: flex;
    justify-content: center;
}

.pricing-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    max-width: 550px;
    width: 100%;
    padding: 3rem 2.25rem;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: 'सर्वोत्तम डील';
    position: absolute;
    top: 22px;
    right: -35px;
    background-color: var(--accent-red);
    color: var(--text-white);
    padding: 0.25rem 2.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    transform: rotate(45deg);
    text-transform: uppercase;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--bg-navy);
    margin-bottom: 0.25rem;
}

.pricing-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.pricing-deal {
    background-color: var(--bg-page);
    border: 1px solid var(--border-color);
    padding: 1.25rem 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.original-price-row {
    margin-bottom: 0.35rem;
}

.bonuses-price-row {
    margin-bottom: 0.75rem;
}

.cross-price {
    text-decoration: line-through;
    color: var(--text-muted);
}

.pricing-divider {
    border: 0;
    height: 1px;
    background: var(--border-color);
    margin-bottom: 0.75rem;
}

.main-price-row {
    margin-bottom: 0.5rem;
}

.price-label {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--bg-navy);
}

.price-num-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.main-price-val {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-red);
    font-family: var(--font-heading);
    line-height: 1;
}

.tax-info {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.save-tag {
    background-color: var(--accent-red-glow);
    color: var(--accent-red);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.35rem;
    border-radius: 4px;
    text-align: center;
    margin-top: 0.5rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features ul {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: var(--text-main);
}

.pricing-features li i {
    color: var(--accent-green);
    margin-top: 0.2rem;
}

.pricing-features li strong {
    color: var(--bg-navy);
}

.pricing-timer-box {
    background: var(--accent-red-glow);
    border: 1px solid rgba(185, 28, 28, 0.15);
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.timer-desc {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.time-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--bg-navy);
    font-family: monospace;
}

.time-label {
    font-size: 0.6rem;
    color: var(--text-muted);
}

.time-colon {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-muted);
    padding-bottom: 8px;
}

.pricing-cta-box .cta-btn {
    width: 100%;
    margin-bottom: 1.25rem;
}

.payment-icons-box p {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 1.25rem;
    color: var(--text-muted);
}

.upi-text {
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

/* ==========================================
   8. FAQ Section (Grid Style from screenshot)
   ========================================== */
.faq-section {
    padding: 6.5rem 0;
    background-color: var(--bg-page);
    border-bottom: 1px solid var(--border-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 480px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-card-static {
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    padding: 1.75rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-card-static h3 {
    font-size: 1.05rem;
    color: var(--bg-navy);
    font-weight: 700;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 0.5rem;
}

.faq-card-static p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================
   9. Final CTA Banner (Split Banner)
   ========================================== */
.final-cta-section {
    padding: 4.5rem 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid var(--border-color);
}

.final-cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

@media (max-width: 991px) {
    .final-cta-wrapper {
        flex-direction: column;
        text-align: center;
    }
}

.final-cta-left {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

@media (max-width: 991px) {
    .final-cta-left {
        flex-direction: column;
    }
}

.final-cta-logo-img {
    height: 72px;
    width: auto;
    flex-shrink: 0;
}

.final-cta-text-box h2 {
    font-size: 1.85rem;
    color: var(--bg-navy);
    margin-bottom: 0.35rem;
}

.final-cta-text-box p {
    font-size: 1rem;
    color: var(--text-muted);
}

.final-cta-right {
    flex-shrink: 0;
}

.final-cta-right .cta-btn {
    padding: 1.1rem 2.5rem;
    font-size: 1.25rem;
}

/* ==========================================
   Footer Section & Badges
   ========================================== */
.footer {
    background-color: var(--bg-navy-dark);
    color: var(--text-white);
    padding: 2rem 0;
}

.footer-badge-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-badge-bar span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-badge-bar i {
    color: var(--primary);
}

.footer-disclaimer-box {
    max-width: 850px;
    margin: 0 auto 1.5rem auto;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

.footer-copy-box {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-copy-box a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-copy-box a:hover {
    color: var(--primary);
}

/* ==========================================
   Mobile Sticky Footer CTA
   ========================================== */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-color);
    padding: 0.65rem 1.25rem;
    z-index: 99;
    box-shadow: 0 -8px 20px rgba(15, 23, 42, 0.08);
    display: none;
    transition: transform 0.3s ease;
}

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

.sticky-price-box {
    display: flex;
    flex-direction: column;
}

.sticky-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-red);
    line-height: 1.1;
    font-family: var(--font-heading);
}

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

.sticky-cta-btn {
    background: linear-gradient(180deg, var(--primary) 0%, #F59E0B 100%);
    color: var(--bg-navy) !important;
    font-weight: 800;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sticky-cta-btn:hover {
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
}

@media (max-width: 768px) {
    .mobile-sticky-cta.visible {
        display: block;
    }
}

/* ==========================================
   Interactive Checkout Modal (Mock)
   ========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: #FFFFFF;
    border: 1px solid var(--border-gold);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    padding: 3rem 2.25rem;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.open .modal-content {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-muted);
    cursor: pointer;
}

.modal-close-btn:hover {
    color: var(--bg-navy);
}

.modal-success-icon {
    font-size: 4rem;
    color: var(--accent-green);
    margin-bottom: 1.25rem;
}

.modal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--bg-navy);
}

.modal-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.modal-download-box {
    background-color: var(--bg-page);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.modal-download-box p {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--bg-navy);
}

.modal-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(180deg, var(--primary) 0%, #F59E0B 100%);
    color: var(--bg-navy);
    font-weight: 800;
    padding: 0.85rem 1.75rem;
    border-radius: 6px;
    width: 100%;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.2);
}

.modal-download-btn:hover {
    box-shadow: 0 6px 15px rgba(245, 158, 11, 0.35);
}

.modal-email-note {
    font-size: 0.8rem !important;
    color: var(--text-muted) !important;
    margin-bottom: 0 !important;
}

/* ==========================================
   Reviews Section
   ========================================== */
.reviews-section {
    padding: 6.5rem 0;
    background-color: var(--bg-page);
    border-bottom: 1px solid var(--border-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 480px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

.review-card {
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    padding: 2.25rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    transition: var(--transition-fast);
}

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

.review-rating {
    color: var(--primary);
    font-size: 1.1rem;
    display: flex;
    gap: 0.2rem;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
    font-style: italic;
    position: relative;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.25rem;
}

.user-avatar-initials {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-info h4 {
    font-size: 1.05rem;
    color: var(--bg-navy);
    line-height: 1.2;
    margin-bottom: 0.15rem;
}

.user-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}
