@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700;800;900&display=swap');

:root {
    /* Luxury Light Palette (Alabaster & Champagne Gold) */
    --bg-deep: #FAF9F6; /* Cream Alabaster */
    --bg-card: #FFFFFF; /* Pure White */
    --bg-card-hover: #F6F4EE; /* Soft Warm Tint */
    --bg-glass: rgba(255, 255, 255, 0.8);
    --border-glass: rgba(197, 155, 39, 0.15); /* Delicate Warm Gold Borders */
    --border-glass-hover: rgba(197, 155, 39, 0.35);
    
    --accent-gold: #C59B27; /* Solid gold for text readability on light bg */
    --accent-gold-light: #D4AF37; /* Standard luxury gold */
    --accent-gold-gradient: linear-gradient(135deg, #D4AF37 0%, #B59023 50%, #917116 100%);
    --accent-gold-glow: rgba(197, 155, 39, 0.08);
    
    --text-primary: #18181B; /* Crisp Titanium Dark Grey */
    --text-secondary: #4B5563; /* Soft Steel Grey */
    --text-muted: #8E939E;
    --text-gold: #AC8419; /* High contrast gold for headers */
    
    /* Structure */
    --radius-lg: 16px;
    --radius-md: 10px;
    --radius-sm: 6px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Light Mode Shadows */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    --shadow-hover: 0 20px 40px rgba(197, 155, 39, 0.06), 0 1px 8px rgba(0, 0, 0, 0.04);
}

/* Base resets & styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-deep);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.01em;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Utility Classes */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

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

.text-gold {
    background: var(--accent-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-center { text-align: center; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }

/* Section Header Typography */
.section-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 50px auto;
    font-weight: 400;
}

.heading-italic {
    font-style: italic;
    font-weight: 700;
}

.num {
    font-family: 'Outfit', sans-serif;
    font-variant-numeric: tabular-nums;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    word-spacing: 0.08em;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: var(--accent-gold-gradient);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 20px var(--accent-gold-glow);
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: 0.75s;
}

.btn-gold:hover::before {
    left: 150%;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(197, 155, 39, 0.35);
}

.btn-outline {
    background: var(--accent-gold-gradient);
    color: #ffffff;
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
}

.btn-outline:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-gold-light);
    transform: translateY(-2px);
}

.btn-primary {
    background: #111115;
    color: #FFFFFF;
    border: 1px solid #111115;
}

.btn-primary:hover {
    background: var(--accent-gold-gradient);
    color: #FFF;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--accent-gold-glow);
}

/* Animations */
@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(197, 155, 39, 0.3); }
    70% { box-shadow: 0 0 0 10px rgba(197, 155, 39, 0); }
    100% { box-shadow: 0 0 0 0 rgba(197, 155, 39, 0); }
}

/* Scroll Animation classes (manipulated by JS) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Top Announcement Bar (Anchored dark accent) */
.top-bar {
    background: #111115;
    color: #FFF6E0;
    text-align: center;
    padding: 12px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--border-glass);
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.top-bar-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background-color: var(--accent-gold-light);
    border-radius: 50%;
    animation: pulse-red-dot 1.5s infinite ease-in-out;
}

@keyframes pulse-red-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.top-bar-text {
    display: flex;
    align-items: center;
}

.marquee-inner {
    white-space: nowrap;
}

.marquee-content[aria-hidden="true"] {
    display: none;
}

/* Navigation */
.navbar {
    padding: 20px 0;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glass);
    position: sticky;
    top: 0;
    z-index: 200;
    transition: var(--transition-smooth);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 201;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.navbar.scrolled {
    padding: 14px 0;
    background: rgba(250, 249, 246, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

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

.razorpay-badge {
    display: inline-block;
    margin-top: 10px;
    height: auto;
    width: auto;
    max-width: 31%;
    opacity: 0.75;
    vertical-align: middle;
    border-radius: 6px;
    border: 1px solid rgba(5, 150, 105, 0.3);
    box-shadow: 0 0 12px rgba(5, 150, 105, 0.1);
}

@media (max-width: 900px) {
   .razorpay-badge{
        max-width: 100%;
   }
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--accent-gold);
}

/* Redesigned Hero style defined below */

/* Timer Styling */
.timer-container {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 40px;
}

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

.timer-value {
    background: var(--bg-card);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    padding: 12px 18px;
    min-width: 80px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.timer-value::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gold-gradient);
    border-bottom-left-radius: var(--radius-md);
    border-bottom-right-radius: var(--radius-md);
}

.timer-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 8px;
    color: var(--text-secondary);
    font-weight: 700;
}

/* Pricing Tag */
.hero-price-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-price-tag {
    background: rgba(197, 155, 39, 0.06);
    border: 1px solid rgba(197, 155, 39, 0.15);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    box-shadow: var(--shadow-soft);
}

.hero-price-tag .current-price {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-gold);
}

.hero-price-tag .old-price {
    text-decoration: line-through;
    color: #EF4444;
    font-size: 1.1rem;
}

.badge-discount {
    background: linear-gradient(135deg, #DC2626, #EF4444);
    color: #FFF;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-image-wrapper {
    flex: 0.85;
    position: relative;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;
    height: 110%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(197, 155, 39, 0.06) 0%, transparent 65%);
    z-index: -1;
}

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(197, 155, 39, 0.2);
    padding: 8px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.hero-image-frame:hover {
    transform: translateY(-5px) rotate(1deg);
    border-color: var(--accent-gold-light);
    box-shadow: 0 40px 80px rgba(197, 155, 39, 0.15);
}

.hero-image-frame img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    border: 1px solid var(--border-glass);
}

.floating-trust-card {
    position: absolute;
    bottom: 20px;
    left: -30px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

.trust-avatar {
    width: 36px;
    height: 36px;
    background: rgba(197, 155, 39, 0.1);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.trust-info {
    display: flex;
    flex-direction: column;
    font-size: 0.78rem;
    text-align: left;
}

.trust-info strong {
    color: var(--text-primary);
    font-weight: 700;
}

.trust-info span {
    color: var(--text-secondary);
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

/* Demo Video Section */
.demo-section {
    padding: 120px 0;
    border-top: 1px solid var(--border-glass);
}

.video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    background: #E5E7EB;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-glass);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 5;
}

.video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(250, 249, 246, 0.5) 0%, rgba(250, 249, 246, 0.1) 100%);
    z-index: 1;
    transition: var(--transition-smooth);
}

.video-wrapper:hover::before {
    background: linear-gradient(0deg, rgba(250, 249, 246, 0.6) 0%, rgba(250, 249, 246, 0.2) 100%);
}

.video-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    padding: 40px;
}

.video-play-btn {
    width: 90px;
    height: 90px;
    background: var(--accent-gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: #FFF;
    margin-bottom: 24px;
    padding-left: 6px;
    box-shadow: 0 0 0 0 rgba(197, 155, 39, 0.4);
    animation: pulse-gold 2s infinite;
    transition: var(--transition-smooth);
}

.video-wrapper:hover .video-play-btn {
    transform: scale(1.1);
    box-shadow: 0 0 0 15px rgba(197, 155, 39, 0);
}

.video-placeholder-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111115;
    text-shadow: 0 2px 4px rgba(255,255,255,0.8);
}

.video-placeholder-text p {
    color: #374151;
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(255,255,255,0.8);
}

/* Steps Section */
.steps-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #F3F2EC 0%, var(--bg-deep) 100%);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.steps-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

@media (min-width: 901px) {
    .steps-track::before {
        content: '';
        position: absolute;
        top: 44px;
        left: 16%;
        right: 16%;
        height: 2px;
        background: linear-gradient(to right, var(--accent-gold), var(--accent-gold-light), var(--accent-gold));
        opacity: 0.2;
        z-index: 0;
    }
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 3px solid var(--accent-gold);
}

.step-card:hover {
    border-color: var(--accent-gold-light);
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
}

.step-card-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-gold);
    opacity: 0.06;
    position: absolute;
    top: -6px;
    right: 10px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.step-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(197, 155, 39, 0.08);
    border: 1px solid rgba(197, 155, 39, 0.15);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: var(--transition-smooth);
}

.step-card:hover .step-icon-box {
    background: var(--accent-gold-gradient);
    color: #FFFFFF;
    border-color: transparent;
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(197, 155, 39, 0.3);
}

.step-icon-box svg {
    width: 26px;
    height: 26px;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.hero {
    padding: 100px 0 120px;
    position: relative;
    background-image: radial-gradient(circle at 80% 20%, rgba(197, 155, 39, 0.08) 0%, transparent 60%),
                      radial-gradient(circle at 10% 80%, rgba(197, 155, 39, 0.04) 0%, transparent 50%);
}

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

.hero-text {
    flex: 1.2;
    max-width: 650px;
}

.hero-badge {
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.2);
    border-radius: 30px;
    padding: 6px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: var(--shadow-soft);
}

.star-rating {
    color: #059669;
    letter-spacing: 1px;
}

.badge-text {
    color: #059669;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-main-title {
    font-size: 3.85rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-highlights {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.hero-highlights svg {
    width: 18px;
    height: 18px;
    color: #059669;
    flex-shrink: 0;
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-cta-wrapper .razorpay-badge,
.cta-content .razorpay-badge {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 420px;
}

.btn-hero-cta {
    font-size: 1.1rem;
    padding: 18px 40px;
    width: 100%;
    max-width: 420px;
}

.cta-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    padding-left: 4px;
}

/* Modules Section */
.modules-section {
    padding: 120px 0;
}

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

.module-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-top: 3px solid var(--card-accent, var(--accent-gold));
}

.module-card:hover {
    border-color: var(--card-accent, var(--accent-gold-light));
    box-shadow: 0 20px 40px color-mix(in srgb, var(--card-accent, var(--accent-gold)) 10%, transparent), 0 1px 8px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

.module-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.module-icon {
    width: 28px;
    height: 28px;
    color: var(--card-accent, var(--accent-gold));
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.module-icon svg {
    width: 100%;
    height: 100%;
}

.module-card-header h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    flex: 1;
    margin-bottom: 0;
}

.module-expand {
    display: none;
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--card-accent, var(--accent-gold));
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}

.module-card.active .module-expand {
    transform: rotate(45deg);
}

.module-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--card-accent, var(--accent-gold));
    opacity: 0.06;
    position: absolute;
    top: -8px;
    right: 8px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.module-card-body {
    max-height: none;
    overflow: visible;
}

.module-card.active .module-card-body {
    max-height: none;
}

.module-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 16px;
    margin-bottom: 14px;
    padding-top: 14px;
    border-top: 1px solid color-mix(in srgb, var(--card-accent, var(--accent-gold)) 15%, transparent);
}

.module-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.module-features li {
    font-size: 0.8rem;
    color: var(--text-secondary);
    padding: 6px 10px;
    background: color-mix(in srgb, var(--card-accent, var(--accent-gold)) 4%, transparent);
    border: 1px solid color-mix(in srgb, var(--card-accent, var(--accent-gold)) 10%, transparent);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.module-features li:hover {
    background: color-mix(in srgb, var(--card-accent, var(--accent-gold)) 8%, transparent);
    border-color: color-mix(in srgb, var(--card-accent, var(--accent-gold)) 20%, transparent);
    color: var(--text-primary);
}

.module-features li::before {
    content: '✦';
    color: var(--card-accent, var(--accent-gold));
    font-size: 0.6rem;
    flex-shrink: 0;
}

/* Gallery Section */
.gallery-section {
    padding: 120px 0;
    background: #F3F2EC;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.gallery-slider-wrapper {
    position: relative;
    width: 100%;
    margin: 40px auto 20px auto;
    display: flex;
    align-items: center;
    padding: 0 40px; /* Leave space for floating arrows */
}

.gallery-slider-track-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0; /* Prevents shadow clipping */
}

.gallery-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.gallery-slider-item {
    flex: 0 0 calc(50% - 12px); /* 2 items per view */
    position: relative;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-glass);
    background: var(--bg-card);
    overflow: hidden;
    height: 390px; /* Elevated height to display both image and info card */
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    user-select: none;
    display: flex;
    flex-direction: column;
}

.gallery-slider-item img {
    width: 100%;
    height: 290px; /* Fixed height for image, leaving 100px for title info */
    object-fit: cover;
    opacity: 0.95;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    border-bottom: 1px solid var(--border-glass); /* Split line */
}

.gallery-slider-item:hover img {
    transform: scale(1.03);
    opacity: 1;
}

.gallery-slider-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    border-radius: var(--radius-lg);
    transition: var(--transition-fast);
    z-index: 3;
    pointer-events: none;
}

.gallery-slider-item:hover::after {
    border-color: var(--accent-gold-light);
}

.gallery-slider-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.gallery-overlay {
    padding: 16px 20px;
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    z-index: 2;
}

.gallery-overlay h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.gallery-overlay p {
    font-size: 0.75rem;
    color: var(--text-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    z-index: 10;
    transition: var(--transition-smooth);
}

.slider-arrow:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-gold-light);
    color: var(--accent-gold);
    box-shadow: var(--shadow-hover);
    transform: translateY(-50%) scale(1.08);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-arrow.prev {
    left: 0px;
}

.slider-arrow.next {
    right: 0px;
}

/* Dots Pagination */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 20px 0 50px 0;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--text-muted);
    opacity: 0.35;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dots .dot:hover {
    opacity: 0.7;
}

.slider-dots .dot.active {
    background-color: var(--accent-gold);
    opacity: 1;
    width: 24px;
    border-radius: 4px;
}

/* Slider Responsiveness */
@media (max-width: 768px) {
    .gallery-slider-wrapper {
        padding: 0;
    }
    .slider-arrow {
        display: none; /* Touch swipe & dots only on mobile */
    }
    .gallery-slider-item {
        flex: 0 0 100%; /* 1 card at a time on mobile */
    }
    
}

/* Bonuses Section */
.bonuses-section {
    padding: 120px 0;
}

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

.bonus-image-wrapper {
    width: 100%;
    height: 242px;
    margin-bottom: 20px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(197, 155, 39, 0.06), rgba(197, 155, 39, 0.01));
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-glass);
    overflow: hidden;
}

.bonus-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.bonus-card:hover .bonus-image-wrapper img {
    transform: scale(1.05);
}

.bonus-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 0;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.bonus-card > div:not(.bonus-image-wrapper):not(.bonus-features) {
    padding: 32px;
}

.bonus-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold-light);
    box-shadow: var(--shadow-hover);
}

.bonus-badge {
    position: static;
    display: inline-block;
    margin-bottom: 12px;
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.2);
    color: #059669;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.bonus-card-value {
    color: var(--text-gold);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
    margin-top: 10px;
}

.bonus-card h4 {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.bonus-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.bonus-features {
    list-style: none;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.bonus-features li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bonus-features li::before {
    content: '✓';
    color: #059669;
    font-weight: 700;
}

/* Reviews Section */
.reviews-section {
    padding: 120px 0;
    background-color: #F3F2EC;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    position: relative;
    overflow: hidden;
    overflow-x: hidden;
}

.reviews-layout {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 60px;
    align-items: start;
}

.reviews-spotlight {
    position: relative;
}

.spotlight-sticky {
    position: sticky;
    top: 100px; /* Accounts for floating navbar */
}

.reviews-spotlight .section-title {
    font-size: 2.85rem;
    line-height: 1.15;
    margin-bottom: 16px;
    text-align: left;
}

.reviews-spotlight .section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    text-align: left;
    line-height: 1.6;
}

.spotlight-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-soft);
}

.spotlight-main {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.spotlight-score {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.spotlight-stars-wrapper {
    display: flex;
    flex-direction: column;
}

.spotlight-stars-wrapper .stars {
    margin-bottom: 4px;
}

.spotlight-count {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.verified-badge-row {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gold);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.verified-badge-row svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-gold);
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.stars-label {
    width: 45px;
    text-align: left;
    font-weight: 700;
}

.bar-track {
    flex-grow: 1;
    height: 6px;
    background: #E5E7EB;
    border-radius: 3px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--accent-gold-gradient);
    border-radius: 3px;
}

.bar-percent {
    width: 32px;
    text-align: right;
    color: var(--text-muted);
}

.reviews-content {
    width: 100%;
}



.whatsapp-gallery {
    margin-top: 20px;
}

.whatsapp-gallery-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 32px;
    position: relative;
}

.whatsapp-gallery-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-gold-gradient);
    margin: 12px auto 0;
    border-radius: 2px;
}

.whatsapp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.whatsapp-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-glass);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

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

.whatsapp-card img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
    .reviews-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }
    .spotlight-sticky {
        position: relative;
        top: 0;
    }
    .reviews-spotlight .section-title {
        text-align: center;
        font-size: 2.35rem;
    }
    .reviews-spotlight .section-subtitle {
        text-align: center;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    .spotlight-card {
        max-width: 480px;
        margin: 0 auto;
    }
    .slider-arrow {
        display: none;
    }
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg) 0%, rgba(212, 175, 55, 0.03) 50%, var(--bg) 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 0;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-gold-light), var(--accent-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0 2px 2px 0;
}

.faq-item.active::before,
.faq-item:hover::before {
    opacity: 1;
}

.faq-item.active {
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 4px 24px rgba(212, 175, 55, 0.08);
}

.faq-item:hover {
    border-color: var(--border-glass-hover);
}

.faq-header {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    gap: 16px;
}

.faq-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-body);
    margin-bottom: 0;
    line-height: 1.4;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.faq-icon {
    width: 28px;
    height: 28px;
    position: relative;
    flex-shrink: 0;
    border: 1.5px solid var(--accent-gold);
    border-radius: 50%;
    transition: transform 0.3s ease, background 0.3s ease;
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--accent-gold);
    transition: transform 0.4s ease, opacity 0.3s ease;
    border-radius: 1px;
}

.faq-icon::before {
    top: 13px;
    left: 7px;
    width: 12px;
    height: 1.5px;
}

.faq-icon::after {
    top: 7px;
    left: 13px;
    width: 1.5px;
    height: 12px;
}

.faq-item.active .faq-icon {
    background: rgba(212, 175, 55, 0.1);
    transform: rotate(45deg);
}

.faq-item.active .faq-icon::after {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-item.active .faq-icon::before {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-content {
    max-height: 500px;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content p {
    padding: 0 28px 24px 36px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
}

.faq-content p::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.3), transparent 80%);
}

.faq-cta {
    text-align: center;
    margin-top: 48px;
}

.faq-cta-btn {
    padding: 14px 36px;
    font-size: 0.95rem;
}

/* Call to Action Final — Gold Banner with Cards */
.cta-section {
    padding: 100px 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.04) 39px, rgba(255,255,255,0.04) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.04) 39px, rgba(255,255,255,0.04) 40px),
        linear-gradient(135deg, #B8860B 0%, #D4AF37 30%, #C59B27 60%, #8B6914 100%);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.cta-content {
    flex: 1;
    max-width: 560px;
    text-align: left;
}

.cta-content h2 {
    font-size: 3.25rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #FFFFFF;
    line-height: 1.15;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 480px;
    /* margin-left: auto; */
    /* margin-right: auto; */
}

.btn-cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: #FFFFFF;
    color: #8B6914;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    text-decoration: none;
}

.btn-cta-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    background: #FFF;
    color: #8B6914;
}

/* CTA Book Image */
.cta-cards {
    flex: 0 0 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-book-image {
    width: 157%;
    /* max-width: 560px; */
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.3));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-book-image:hover {
    transform: translateY(-6px);
}

@media (max-width: 768px) {
    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
    .cta-content {
        max-width: 100%;
    }
    .cta-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .cta-cards {
        flex: none;
        width: 100%;
    }
    .cta-book-image {
        max-width: 260px;
    }
}

/* Footer (grounded dark accent) */
footer {
    background-color: #0A0A0C;
    color: var(--text-muted);
    padding: 80px 0 100px;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.02);
}
@media (max-width: 768px) {
    footer {
            padding: 80px 0 150px !important;
    }
}
.footer-links {
    margin-bottom: 30px;
}

.footer-links a {
    color: #9CA3AF;
    margin: 0 20px;
    transition: var(--transition-fast);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent-gold-light);
}

footer p {
    font-size: 0.85rem;
    color: #6B7280;
}

/* Checkout Page (cart.html) Specifics */
.checkout-box {
    max-width: 680px;
    margin: 80px auto;
    background: var(--bg-card);
    padding: 48px;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.checkout-box h2 {
    font-size: 2.25rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.order-summary {
    background: rgba(197, 155, 39, 0.02);
    padding: 10px;
    margin-bottom: 40px;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
}

.order-summary h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 12px;
    color: var(--text-primary);
}

.order-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Order Addons Styling (Highly Attractive Bump Offers) */
.order-addon {
    display: block;
    padding: 20px;
    background: linear-gradient(135deg, rgba(197, 155, 39, 0.05) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 2px dashed rgba(197, 155, 39, 0.35);
    border-radius: var(--radius-md);
    margin: 16px 0;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.order-addon:hover {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(197, 155, 39, 0.08) 0%, rgba(255, 255, 255, 1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197, 155, 39, 0.08);
}

.addon-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-gold-gradient);
    color: #FFFFFF;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 12px;
    border-bottom-left-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.addon-content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.addon-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    cursor: pointer;
}

.addon-checkbox input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: var(--accent-gold);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 3px;
}

.addon-label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 15px;
}

.addon-label strong {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.addon-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.addon-pricing-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    flex-shrink: 0;
    gap: 2px;
    margin-top: 2px;
}

.addon-pricing-block .old-price {
    font-size: 0.85rem;
    text-decoration: line-through;
    color: #EF4444;
}

.addon-pricing-block .current-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: #AC8419;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

.addon-pricing-block .save-label {
    font-size: 0.7rem;
    color: #EF4444;
    font-weight: 700;
    background: rgba(239, 68, 68, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.order-product-image {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--border-glass);
}
.order-product-image img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-soft);
}
.order-product-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.order-row strong {
    color: var(--text-primary);
}

.checkout-box h3 {
    font-size: 1.25rem;
    margin-top: 30px;
    color: var(--text-primary);
}

.form-group {
    margin-bottom: 24px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.form-group input {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border-glass);
    background: #FFFFFF;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(197, 155, 39, 0.15);
}

.security-badge-container {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.security-badge svg {
    width: 16px;
    height: 16px;
    fill: var(--accent-gold);
    flex-shrink: 0;
}

/* Thank You Page (thankyou.html) Specifics */
.thankyou-box {
    max-width: 760px;
    margin: 80px auto;
    background: var(--bg-card);
    padding: 60px 48px;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.thankyou-box h1 {
    font-size: 3.5rem;
    margin-bottom: 12px;
}

.thankyou-box h2 {
    font-size: 1.75rem;
    color: var(--text-primary);
}

.thankyou-steps-container {
    background: rgba(197, 155, 39, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 32px;
    margin: 40px 0;
    text-align: left;
}

.thankyou-steps-container h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.thankyou-steps-container ol {
    margin-left: 20px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.thankyou-steps-container li {
    margin-bottom: 16px;
    line-height: 1.6;
}

.thankyou-steps-container li strong {
    color: var(--text-primary);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Tablets (1024px) */
@media (max-width: 1024px) {
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Section padding reduction */
    .demo-section,
    .steps-section,
    .modules-section,
    .gallery-section,
    .bonuses-section,
    .reviews-section,
    .faq-section,
    .cta-section {
        padding: 80px 0;
    }
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets / Medium (900px) */
@media (max-width: 900px) {
    /* Hero */
    .hero {
        padding: 70px 0 80px;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .hero-text {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-main-title {
        font-size: 2.85rem;
    }
    .hero-image-wrapper {
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }
    .floating-trust-card {
        left: 0;
    }
    .hero-pretitle {
        justify-content: center;
    }
    .hero-pretitle::before {
        display: none;
    }
    .timer-container {
        justify-content: center;
    }
    .hero-price-container {
        justify-content: center;
    }
    .btn-hero-cta {
        max-width: 100%;
    }

    /* Steps */
    .steps-track {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .steps-track::before {
        display: none;
    }

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

    /* Section titles */
    .section-title {
        font-size: 2.35rem;
    }

    /* Nav */
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .nav-cta-btn {
        display: none;
    }
}

/* Mobile (768px) */
@media (max-width: 768px) {
    /* Mobile nav overlay */
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(250, 249, 246, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 199;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease, transform 0.35s ease;
        transform: translateY(-20px);
        list-style: none;
    }
    .nav-links.open {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }
    .nav-links li a {
        font-size: 1.35rem;
        font-weight: 700;
        color: var(--text-primary);
    }
    .hamburger {
        display: flex;
    }
    .nav-cta-btn {
        display: none;
    }

    /* Hero */
    .hero {
        padding: 60px 0 70px;
    }
    .hero-main-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    .hero-desc {
        font-size: 1rem;
    }
    .hero-highlights li {
        font-size: 0.875rem;
    }
    .hero-image-wrapper {
        display: none; /* hide on small mobile, keep page clean */
    }

    /* Sections padding */
    .demo-section,
    .steps-section,
    .modules-section,
    .gallery-section,
    .bonuses-section,
    .reviews-section,
    .faq-section,
    .cta-section {
        padding: 60px 0;
    }

    /* Section titles */
    .section-title {
        font-size: 2rem;
    }
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 36px;
    }

    /* Modules: accordion mode on mobile */
    .modules-grid {
        grid-template-columns: 1fr;
    }
    .module-features {
        grid-template-columns: 1fr;
    }
    .module-expand {
        display: block;
    }
    .module-card-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .module-card.active .module-card-body {
        max-height: 600px;
    }

    /* Gallery slider */
    .gallery-slider-wrapper {
        padding: 0;
    }
    .slider-arrow {
        display: none;
    }
    .gallery-slider-item {
        flex: 0 0 100%;
    }

    /* Bonuses */
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .bonus-card {
        padding: 28px 24px;
        overflow: visible;
    }
    .bonus-image-wrapper {
        height: 150px;
    }
    .bonuses-section.reveal,
    .bonuses-section.reveal.active {
        opacity: 1;
        transform: none;
    }

    /* WhatsApp gallery mobile */
    .whatsapp-gallery {
        margin-top: 40px;
    }
    .whatsapp-gallery-title {
        font-size: 1.25rem;
    }
    .whatsapp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Reviews mobile — full width, no overflow */
    .spotlight-card {
        max-width: 100%;
        padding: 24px 20px;
    }
    .spotlight-main {
        gap: 16px;
    }
    .spotlight-score {
        font-size: 2.5rem;
    }
    .reviews-content {
        overflow: hidden;
    }
    
    /* Steps */
    .steps-track {
        grid-template-columns: 1fr;
    }

    /* FAQ */
    .faq-header h4 {
        font-size: 1rem;
    }

    /* CTA */
    .cta-section h2 {
        font-size: 2.25rem;
    }

    /* Buttons scale down on mobile */
    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
    .btn-hero-cta {
        padding: 14px 32px;
        font-size: 1rem;
    }
    .btn-cta-pill {
        padding: 14px 32px;
        font-size: 0.9rem;
    }

    /* Sticky bar */
    .sticky-bar {
        padding: 10px 0;
    }
    .sticky-bar-content {
        flex-direction: row;
        gap: 6px;
    }
    .sticky-title-container {
        display: none;
    }
    .sticky-counter {
        padding: 4px 10px;
        gap: 4px;
    }
    .sticky-counter-text {
        font-size: 0.75rem;
    }
    .sticky-action-container {
        flex-direction: column;
        align-items: flex-end;
        gap: 2px;
    }
    .sticky-price-tag {
        gap: 4px;
    }
    .sticky-price-tag .old-price {
        font-size: 0.7rem;
    }
    .sticky-price-tag .current-price {
        font-size: 0.95rem;
    }
    .btn-sticky-cta {
        padding: 4px 12px;
        font-size: 0.7rem;
        white-space: nowrap;
    }

    /* Checkout page mobile product layout */
    .order-addon {
        padding: 24px 20px;
    }
    .addon-content-wrapper {
        flex-wrap: wrap;
        gap: 12px;
    }
    .addon-pricing-block {
        flex-direction: row;
        gap: 14px;
        align-items: center;
        width: 100%;
        justify-content: flex-start;
        padding-left: 34px;
        margin-top: 4px;
    }
    .addon-pricing-block .current-price {
        font-size: 1.15rem;
    }
    .addon-pricing-block .old-price {
        font-size: 0.8rem;
    }
    .addon-pricing-block .save-label {
        font-size: 0.7rem;
    }
    .addon-label strong {
        font-size: 0.95rem;
    }
    .addon-desc {
        font-size: 0.78rem;
    }
}

/* Small Mobile (600px) */
@media (max-width: 600px) {
    .hero-main-title {
        font-size: 1.9rem;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .module-features {
        grid-template-columns: 1fr;
    }
    .checkout-box {
        padding: 24px;
        margin: 40px auto;
    }
    .thankyou-box {
        padding: 40px 20px;
        margin: 40px auto;
    }
    .spotlight-card {
        max-width: 100%;
    }
    .reviews-section {
        padding: 50px 0;
    }
    .timer-value {
        font-size: 1.75rem;
        min-width: 64px;
        padding: 10px 14px;
    }
    .hero-price-tag .current-price {
        font-size: 1.6rem;
    }
    .cta-section h2 {
        font-size: 1.85rem;
    }
    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
    .btn-hero-cta {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
    .btn-cta-pill {
        padding: 12px 28px;
        font-size: 0.85rem;
    }
    footer {
        padding: 50px 0 20px;
    }
}

/* Very Small (480px) */
@media (max-width: 480px) {
    .hero-main-title {
        font-size: 1.65rem;
    }
    .container {
        padding: 0 16px;
    }
    .top-bar {
        font-size: 0.72rem;
        padding: 10px 16px;
        overflow: hidden;
    }
    .top-bar-text {
        overflow: hidden;
        min-width: 0;
    }
    .marquee-inner {
        display: inline-block;
        white-space: nowrap;
        animation: marquee 20s linear infinite;
    }
    .marquee-content[aria-hidden="true"] {
        display: inline-block;
    }
    @keyframes marquee {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    .whatsapp-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
    }

    .bonus-card {
        padding: 22px 18px;
    }
    .bonus-image-wrapper {
        height: 228px;
    }
    .step-card {
        padding: 22px 18px;
    }
    .gallery-section {
        padding: 50px 0;
    }
}

/* Bottom Sticky Bar Styling */
.sticky-bar {
    position: fixed;
    bottom: -120px; /* Hidden state */
    left: 0;
    width: 100%;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-glass);
    padding: 14px 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.06);
    z-index: 1000;
    transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-bar.visible {
    bottom: 0;
}

.sticky-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.sticky-title-container {
    display: flex;
    flex-direction: column;
}

.sticky-pre {
    color: #DC2626;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sticky-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.sticky-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.2);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
}

.sticky-counter-icon {
    font-size: 1.2rem;
    line-height: 1;
}

.sticky-counter-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #059669;
    white-space: nowrap;
}

.sticky-counter-text .num {
    color: #059669;
    font-weight: 800;
}

.sticky-action-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sticky-price-tag {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.sticky-price-tag .old-price {
    text-decoration: line-through;
    color: #EF4444;
    font-size: 0.9rem;
}

.sticky-price-tag .current-price {
    color: var(--text-gold);
    font-size: 1.35rem;
    font-family: var(--font-heading);
    font-weight: 800;
}

.btn-sticky-cta {
    padding: 12px 28px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

@media (max-width: 768px) {
    .sticky-bar {
        padding: 10px 0;
    }
    .sticky-bar-content {
        flex-direction: row;
        gap: 6px;
    }
    .sticky-title-container {
        display: none;
    }
    .sticky-counter {
        padding: 4px 10px;
        gap: 4px;
    }
    .sticky-counter-text {
        font-size: 0.75rem;
    }
    .sticky-action-container {
        flex-direction: column;
        align-items: flex-end;
        gap: 2px;
    }
    .sticky-price-tag {
        gap: 4px;
    }
    .sticky-price-tag .old-price {
        font-size: 0.7rem;
    }
    .sticky-price-tag .current-price {
        font-size: 0.95rem;
    }
    .btn-sticky-cta {
        padding: 4px 12px;
        font-size: 0.7rem;
        white-space: nowrap;
    }
}