/* 
================================================================
   JanamPatrika Pro - Premium Spiritual Luxury Design System
================================================================
*/

:root {
    --bg-dark: #0a0015;
    --bg-void: #05000f;
    --bg-card: rgba(124, 58, 237, 0.08);
    --bg-card-hover: rgba(124, 58, 237, 0.15);
    --gold: #f59e0b;
    --gold-premium: #f59e0b;
    --gold-dark: #d97706;
    --white: #f8f8ff;
    --text-muted: #c4b5fd;
    --success: #10b981;
    --error: #ef4444;
    --purple: #7c3aed;
    --light-purple: #a78bfa;
    --purple-glow: rgba(124, 58, 237, 0.35);
    --gold-glow: rgba(245, 158, 11, 0.25);
    --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    --purple-gradient: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    --transition: all 0.3s ease;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Poppins', sans-serif;
    --font-alt: 'Montserrat', sans-serif;
    --glass-border: rgba(167, 139, 250, 0.2);
    --gold-border: rgba(245, 158, 11, 0.3);
    --header-height: 58px;
    --mobile-cta-height: 68px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img,
svg,
video,
canvas {
    max-width: 100%;
    height: auto;
}

section,
header,
footer,
.container,
.header-container,
.footer-container {
    max-width: 100%;
}

/* Starfield Twinkling Animation Background */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #0c1228 0%, var(--bg-dark) 100%);
}

.stars, .stars2, .stars3 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.stars {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><circle cx="10" cy="30" r="0.75" fill="%23fff" opacity="0.8"/><circle cx="75" cy="80" r="1" fill="%23fff" opacity="0.6"/><circle cx="120" cy="40" r="0.5" fill="%23fff" opacity="0.5"/><circle cx="150" cy="130" r="0.8" fill="%23fff" opacity="0.9"/><circle cx="30" cy="160" r="0.6" fill="%23fff" opacity="0.7"/><circle cx="180" cy="180" r="1.2" fill="%23ffd700" opacity="0.8"/></svg>') repeat;
    animation: twinkle 12s ease-in-out infinite alternate;
}

.stars2 {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300" viewBox="0 0 300 300"><circle cx="40" cy="80" r="0.8" fill="%23fff" opacity="0.5"/><circle cx="180" cy="40" r="1.1" fill="%23ffd700" opacity="0.7"/><circle cx="230" cy="210" r="0.6" fill="%23fff" opacity="0.9"/><circle cx="90" cy="270" r="0.9" fill="%23fff" opacity="0.8"/><circle cx="280" cy="120" r="0.5" fill="%23fff" opacity="0.4"/></svg>') repeat;
    animation: twinkle 18s ease-in-out infinite alternate-reverse;
}

.stars3 {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" viewBox="0 0 400 400"><circle cx="20" cy="120" r="1.2" fill="%23fff" opacity="0.8"/><circle cx="140" cy="320" r="0.8" fill="%23fff" opacity="0.5"/><circle cx="350" cy="80" r="0.6" fill="%23ffd700" opacity="0.7"/><circle cx="220" cy="250" r="1" fill="%23fff" opacity="0.9"/></svg>') repeat;
    animation: twinkle 24s ease-in-out infinite alternate;
}

.nebula-glow {
    position: absolute;
    top: 20%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%);
    opacity: 0.3;
    filter: blur(80px);
    animation: nebulaMove 30s ease-in-out infinite alternate;
    pointer-events: none;
}

/* Base Headings & Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white);
}

.font-alt {
    font-family: var(--font-alt);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* Selection Highlight */
::selection {
    background: var(--purple) !important;
    color: #ffffff !important;
}
::-moz-selection {
    background: var(--purple) !important;
    color: #ffffff !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--purple);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Layout Containers */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: clamp(14px, 4vw, 24px);
    padding-right: clamp(14px, 4vw, 24px);
}

.section-padding {
    padding-top: clamp(50px, 8vw, 80px);
    padding-bottom: clamp(50px, 8vw, 80px);
    position: relative;
}

.text-center { text-align: center; }
.accent-text { color: var(--gold); }
.highlight-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto clamp(34px, 5vw, 56px) auto;
}

.section-header h2 {
    font-size: clamp(1.65rem, 4.8vw, 2.5rem);
    line-height: 1.18;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
}

.section-header h2::after {
    content: '✦';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 1.25rem;
    text-shadow: 0 0 10px var(--gold);
}

.section-header p {
    color: var(--text-muted);
    font-size: clamp(0.95rem, 2.4vw, 1.1rem);
    font-weight: 300;
}

/* Glassmorphism Cards */
/* Glassmorphism Cards */
.glass-card, .card {
    background: rgba(124, 58, 237, 0.08) !important;
    border: 1px solid rgba(167, 139, 250, 0.2) !important;
    border-radius: 16px !important;
    padding: 24px !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease !important;
}

.glass-card:hover, .card:hover {
    border-color: rgba(167, 139, 250, 0.6) !important;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.3) !important;
    transform: translateY(-4px) !important;
}

/* Premium Luxury Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 32px;
    border-radius: 40px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: clamp(0.88rem, 2.4vw, 1.05rem);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: none;
    z-index: 2;
}

.btn:hover::after {
    animation: shine 1.2s ease-in-out infinite;
}

.btn-gold {
    background: var(--purple-gradient) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
    font-weight: 700;
    border: 1px solid var(--gold) !important;
}

.btn-gold:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.7), 0 0 15px rgba(245, 158, 11, 0.5);
    border-color: #ffffff !important;
}

.btn-secondary, .btn-outline {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: var(--white) !important;
    font-weight: 600;
}

.btn-secondary:hover, .btn-outline:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: #ffffff !important;
    transform: translateY(-2px);
}

.btn-pulse {
    animation: goldPulse 2.0s infinite;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    background: #20ba5a;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Navigation Header */
/* Navigation Header */
.main-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(10, 0, 21, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(167, 139, 250, 0.1);
    transition: var(--transition);
}

.main-header.scrolled {
    padding: 8px 0;
    background: rgba(10, 0, 21, 0.95);
    border-bottom: 1px solid var(--gold-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold) !important;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.25);
}

.logo-icon {
    font-size: 1.8rem;
    animation: spinSlow 20s linear infinite;
    display: inline-block;
}

.nav-menu {
    position: fixed;
    top: var(--header-height, 58px);
    left: -100%;
    width: 100%;
    height: calc(100dvh - var(--header-height, 58px));
    background: rgba(10, 0, 21, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    transition: var(--transition);
    gap: 30px;
    z-index: 998;
    overflow-y: auto;
}

.nav-menu.active {
    left: 0;
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 997;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.nav-overlay.active {
    display: block;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: #c4b5fd;
    position: relative;
    padding: 8px 0;
    text-decoration: none;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #f8f8ff;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.mobile-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    margin-bottom: 6px;
    transition: var(--transition);
}

.mobile-toggle span:last-child {
    margin-bottom: 0;
}

/* Active hamburger menu transformation */
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.header-cta {
    display: none;
}

.header-cta .btn {
    background: var(--purple-gradient);
    border: 1px solid var(--gold);
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    transition: var(--transition);
}

.header-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.6), 0 0 10px rgba(245, 158, 11, 0.4);
    border-color: #ffffff;
}

.logo-text {
    line-height: 1.2;
}

@media (max-width: 768px) {
    .header-container {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        padding: 6px 12px;
        gap: 6px;
        min-height: 48px;
    }

    .main-header {
        padding: 0;
    }

    .logo {
        font-size: clamp(0.78rem, 3.2vw, 0.95rem);
        min-width: 0;
        max-width: calc(100vw - 52px);
        gap: 5px;
    }

    .logo-text {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .logo-icon {
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .logo-image {
        height: 26px !important;
        width: 26px !important;
    }

    .mobile-toggle {
        flex-shrink: 0;
        margin-left: 0;
        padding: 6px;
        width: 36px;
        height: 36px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .mobile-toggle span {
        width: 22px;
        margin-bottom: 5px;
    }

    .nav-menu {
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100vw;
        transform: translateX(-100%);
        transition: transform 0.3s ease, visibility 0.3s ease;
        top: var(--header-height, 52px);
        height: calc(100dvh - var(--header-height, 52px));
        padding: 24px 20px 40px;
        gap: 18px;
        z-index: 1000;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1rem;
        width: 100%;
        text-align: center;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .header-cta {
        display: none !important;
    }

    .main-header.scrolled {
        padding: 0;
    }
}

@media (min-width: 769px) {
    .nav-menu {
        position: static;
        left: auto;
        top: auto;
        width: auto;
        height: auto;
        padding-top: 0;
        background: transparent;
        flex-direction: row;
        gap: 28px;
        z-index: auto;
        overflow-y: visible;
        transform: none;
    }

    .nav-overlay {
        display: none !important;
    }

    .mobile-toggle {
        display: none;
    }

    .header-cta {
        display: block;
    }
}

/* ========================================================
   Redesigned Hero Section (Split Screen Layout)
   ======================================================== */
.hero-section {
    padding: clamp(86px, 12vh, 116px) 0 clamp(44px, 7vh, 60px) 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.12) 0%, rgba(10, 0, 21, 0) 70%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(28px, 5vw, 46px);
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content .price-card {
    margin: 0 auto 35px auto !important;
}

.trust-bar, .hero-trust-bar {
    display: flex;
    align-items: center;
    background: rgba(124, 58, 237, 0.15) !important;
    border-top: 1px solid rgba(167, 139, 250, 0.3) !important;
    border-bottom: 1px solid rgba(167, 139, 250, 0.3) !important;
    padding: 12px 20px;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 30px;
    justify-content: center;
    border-left: none !important;
    border-right: none !important;
    border-radius: 0 !important;
    margin: 25px 0 !important;
}

.trust-bar::-webkit-scrollbar, .hero-trust-bar::-webkit-scrollbar {
    display: none;
}

.trust-item, .hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #c4b5fd !important;
    font-weight: 500;
}

.trust-item::after, .hero-trust-item::after {
    content: '|';
    color: var(--gold);
    margin-left: 30px;
    opacity: 0.4;
}

.trust-item:last-child::after, .hero-trust-item:last-child::after {
    content: '';
}

@media (max-width: 768px) {
    .trust-bar, .hero-trust-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px 10px;
        white-space: normal;
        overflow-x: visible;
        justify-content: stretch;
        padding: 12px !important;
        border-radius: 10px !important;
        margin: 12px 0 16px !important;
    }

    .trust-item::after,
    .hero-trust-item::after {
        display: none;
    }
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 18px;
    text-transform: uppercase;
    max-width: 650px;
    width: 100%;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.1);
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: clamp(0.98rem, 3.2vw, 1.18rem);
    margin-bottom: 26px;
    max-width: 650px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    align-items: center;
}

.hero-card-container {
    display: flex;
    justify-content: center;
}

.price-card {
    width: 100%;
    max-width: 400px;
    text-align: left;
    position: relative;
    border: 1px solid var(--gold-border);
    background: linear-gradient(180deg, rgba(11, 16, 32, 0.85) 0%, rgba(7, 11, 23, 0.98) 100%);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.2);
}

.offer-badge, .discount-badge {
    position: absolute;
    top: -15px;
    right: 12px;
    background: #ef4444 !important;
    color: #ffffff !important;
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.85rem;
    transform: rotate(-3deg);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.6);
    animation: cardBadgePulse 2.5s infinite;
}

.price-card-tagline {
    font-size: clamp(0.72rem, 2.4vw, 0.85rem);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 15px;
}

.pricing-box {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.original-price {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: clamp(1.05rem, 4vw, 1.35rem);
    font-family: var(--font-alt);
}

.sale-price {
    font-size: clamp(2.25rem, 11vw, 3.1rem);
    font-weight: 800;
    color: var(--gold-premium);
    font-family: var(--font-alt);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.pdf-bullets {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pdf-bullets li {
    font-size: clamp(0.86rem, 2.8vw, 0.95rem);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pdf-bullets li::before, .hero-bullets li::before {
    content: '✓' !important;
    color: var(--gold) !important;
    font-size: 1.1rem !important;
    font-weight: 900 !important;
}

/* Premium 3D Book Mockup & Visual Composition */
@keyframes bookFloat {
    0% { transform: rotateX(14deg) rotateY(-18deg) rotateZ(-2deg) translateY(0); }
    100% { transform: rotateX(16deg) rotateY(-22deg) rotateZ(-2deg) translateY(-10px); }
}

@keyframes glowRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-visual-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
}

.book-bg-glow {
    position: absolute;
    width: 115%;
    height: 115%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.glow-ring {
    position: absolute;
    width: 85%;
    height: 85%;
    border: 1px dashed rgba(212, 175, 55, 0.12);
    border-radius: 50%;
    animation: glowRotate 60s linear infinite;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle cx='50' cy='50' r='45' fill='none' stroke='rgba(212,175,55,0.06)' stroke-width='0.5'/><path d='M50 5 L50 95 M5 50 L95 50' stroke='rgba(212,175,55,0.08)' stroke-width='0.3'/></svg>") center no-repeat;
    background-size: cover;
}

.glow-rays {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(91, 61, 245, 0.08) 0%, rgba(212, 175, 55, 0.04) 50%, transparent 80%);
    filter: blur(40px);
}

.glow-planet {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.planet-1 {
    width: 15px;
    height: 15px;
    background: radial-gradient(circle at 30% 30%, #ffd700, #b58d00);
    top: 15%;
    right: 15%;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.planet-2 {
    width: 25px;
    height: 25px;
    background: radial-gradient(circle at 30% 30%, #5b3df5, #2c12b5);
    bottom: 20%;
    left: 10%;
    box-shadow: 0 0 20px rgba(91, 61, 245, 0.3);
}

.book-wrapper {
    --book-width: 185px;
    --book-height: 255px;
    perspective: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: calc(var(--book-height) + 40px);
    z-index: 2;
    max-width: 100%;
}

.book {
    width: var(--book-width);
    height: var(--book-height);
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(15deg) rotateY(-20deg) rotateZ(-2deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    animation: bookFloat 6s ease-in-out infinite alternate;
}

.book:hover {
    transform: rotateX(10deg) rotateY(-10deg) rotateZ(-1deg) translateY(-5px);
}

.book-cover, .kundali-card {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #160b2d 0%, #05000f 100%) !important;
    border: 2px solid var(--gold) !important;
    border-radius: 4px 16px 16px 4px;
    box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.9), 0 0 40px rgba(245, 158, 11, 0.2) !important;
    transform: translateZ(10px) rotate(-1deg);
    z-index: 5;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.book-cover:hover, .kundali-card:hover {
    transform: translateZ(10px) rotate(0deg) translateY(-4px);
    box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.9), 0 0 50px rgba(245, 158, 11, 0.35) !important;
}

.book-cover::before {
    content: '';
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 12px;
    right: 12px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    pointer-events: none;
}

.book-cover-bg-patterns {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: radial-gradient(circle at 100% 150%, #d4af37 24%, white 24%, white 28%, #d4af37 28%, #d4af37 36%, white 36%, white 40%, transparent 40%, transparent);
    background-size: 20px 20px;
    pointer-events: none;
}

.book-cover-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.cover-logo-icon {
    font-size: 1.4rem;
    color: var(--gold-premium);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.cover-brand-name {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--gold-premium);
    letter-spacing: 2px;
}

.book-cover-middle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    z-index: 2;
}

.cover-zodiac-wheel {
    width: 80px;
    height: 80px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    margin-bottom: 12px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle cx='50' cy='50' r='48' fill='none' stroke='rgba(212,175,55,0.2)' stroke-width='0.5'/><circle cx='50' cy='50' r='36' fill='none' stroke='rgba(212,175,55,0.15)' stroke-width='0.5'/><path d='M50 2 L50 98 M2 50 L98 50 M16 16 L84 84 M16 84 L84 16' stroke='rgba(212,175,55,0.1)' stroke-width='0.5'/><polygon points='50,20 76,65 24,65' fill='none' stroke='rgba(212,175,55,0.15)' stroke-width='0.5'/></svg>") center no-repeat;
    background-size: cover;
    animation: spinSlow 25s linear infinite;
}

.cover-title-group {
    text-align: center;
}

.cover-kalyan {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 4px;
    display: block;
    margin-bottom: 8px;
    opacity: 0.8;
}

.cover-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    letter-spacing: 1px;
}

.cover-kundali-yantra {
    font-size: 0.8rem;
    color: var(--gold-premium);
    display: block;
    margin-top: 8px;
    opacity: 0.8;
}

.book-cover-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.cover-subtitle {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-style: italic;
}

.cover-pages-badge {
    font-size: 0.6rem;
    font-family: var(--font-alt);
    font-weight: 700;
    color: #05000f !important;
    background: var(--gold-gradient) !important;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    display: inline-block;
}

.book-spine {
    width: 20px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -10px;
    background: linear-gradient(90deg, #03050b 0%, #090e1f 50%, #03050b 100%);
    transform: rotateY(-90deg);
    transform-origin: right center;
    border-radius: 4px 0 0 4px;
    z-index: 4;
}

.book-pages {
    width: 98%;
    height: 98%;
    position: absolute;
    top: 1%;
    left: 2%;
    background: #e9e0cf;
    box-shadow: 5px 15px 30px rgba(0,0,0,0.5);
    transform: translateZ(0);
    border-radius: 0 12px 12px 0;
    z-index: 3;
}

.book-pages::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.08) 0%, rgba(255,255,255,0.15) 2%, rgba(0,0,0,0.03) 5%, transparent 10%),
                repeating-linear-gradient(0deg, #d8ccb4 0px, #d8ccb4 1px, transparent 1px, transparent 3px);
    border-radius: 0 12px 12px 0;
}

/* Trust Badges below Book Cover 2x2 Grid */
.book-trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 25px;
    width: 100%;
    max-width: 440px;
    margin-top: 30px;
    z-index: 3;
}

.book-trust-badges .badge-item {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.book-trust-badges .badge-item::before {
    content: '✓';
    color: var(--gold-premium);
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

/* Responsive adjustments refactored to mobile-first progressive enhancement */

/* ========================================================
   Discover Your Future Grid
======================================================== */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: clamp(18px, 3vw, 30px);
    margin-bottom: clamp(34px, 5vw, 56px);
}

/* Card Grid & Features layout styling */
.card-grid, .triggers-grid, .offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 24px !important;
}

.card, .trigger-card, .offer-card {
    background: rgba(124, 58, 237, 0.08) !important;
    border: 1px solid rgba(167, 139, 250, 0.2) !important;
    border-radius: 16px !important;
    padding: 24px !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.card:hover, .trigger-card:hover, .offer-card:hover {
    border-color: rgba(167, 139, 250, 0.6) !important;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.3) !important;
    transform: translateY(-4px) !important;
}

.card-icon, .trigger-icon, .offer-card-icon {
    font-size: 2.5rem !important;
    display: block !important;
    margin: 0 auto 12px auto !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
    color: var(--gold) !important;
}

.card-title, .trigger-q, .offer-card-info h3 {
    color: #a78bfa !important;
    font-weight: 600 !important;
    font-size: 1.25rem !important;
    margin-bottom: 12px !important;
    font-family: var(--font-heading) !important;
}

.card-text, .trigger-desc, .offer-card-info p {
    color: #c4b5fd !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
}

/* Value Stack Pricing Container */
.value-stack-container {
    max-width: 800px;
    margin: clamp(34px, 5vw, 56px) auto 0 auto;
    position: relative;
    border: 2px solid var(--gold-border);
    background: linear-gradient(180deg, rgba(11, 16, 32, 0.9) 0%, rgba(7, 11, 23, 0.99) 100%);
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.value-stack-header {
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.value-stack-header h3 {
    font-size: clamp(1.25rem, 4vw, 1.8rem);
    color: var(--gold-premium);
}

.value-stack-list {
    list-style: none;
    margin-bottom: 30px;
}

.value-stack-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 10px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    font-size: 1rem;
    gap: 16px;
}

.value-stack-item:last-child {
    border-bottom: none;
}

.value-stack-title {
    color: var(--text-muted);
    min-width: 0;
}

.value-stack-price {
    font-weight: 600;
    font-family: var(--font-alt);
}

.value-stack-total {
    display: flex;
    justify-content: space-between;
    padding: 20px 10px;
    border-top: 2px solid var(--gold-border);
    margin-bottom: 30px;
    font-size: 1.3rem;
    font-weight: 700;
}

.value-stack-total span {
    font-family: var(--font-alt);
}

.value-stack-deal {
    font-size: clamp(1.1rem, 4vw, 1.55rem);
    margin-bottom: 20px;
    font-weight: 700;
}

/* ========================================================
   Interactive 3D PDF Mockup Previews
======================================================== */
.preview-container {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 50px;
    margin-top: 50px;
    align-items: start;
}

.preview-tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tab-btn {
    background: rgba(11, 16, 32, 0.5);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 16px 24px;
    border-radius: 14px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.tab-btn::after {
    content: '❯';
    font-size: 0.75rem;
    opacity: 0.4;
    transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
}

.tab-btn.active {
    background: rgba(91, 61, 245, 0.1);
    color: var(--gold-premium);
    box-shadow: inset 4px 0 0 var(--gold-premium);
    border-color: var(--gold-border);
}

.tab-btn.active::after {
    transform: translateX(4px);
    opacity: 1;
    color: var(--gold-premium);
}

/* ========================================================
   Interactive PDF Mockup Styling & Widgets
   ======================================================== */
.pdf-mockup {
    background: radial-gradient(circle at center, #131a33 0%, #080d1d 100%);
    border-radius: 14px;
    padding: clamp(16px, 3vw, 28px);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.8);
    overflow: hidden;
    height: 100%;
}

.pdf-mockup-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    opacity: 0.015;
    pointer-events: none;
    user-select: none;
    color: var(--gold);
    z-index: 1;
}

.pdf-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
    margin-bottom: 20px;
    font-size: clamp(0.58rem, 1.8vw, 0.72rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    z-index: 2;
}

.pdf-header-logo {
    font-weight: 700;
    color: var(--gold);
}

.pdf-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2;
}

.pdf-title-container {
    text-align: center;
    margin-bottom: 15px;
}

.pdf-title-container h3 {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--gold-premium);
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.pdf-subtitle {
    font-size: clamp(0.62rem, 1.8vw, 0.75rem);
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pdf-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 12px;
    margin-top: 20px;
    font-size: clamp(0.58rem, 1.8vw, 0.68rem);
    color: var(--text-muted);
    letter-spacing: 1px;
    z-index: 2;
}

/* Widgets inside Mockup Pages */
.pdf-chart-placeholder {
    height: 120px;
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 15px;
    overflow: hidden;
}

.chart-bar-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle at 50% 50%, rgba(91, 61, 245, 0.1) 0%, transparent 80%);
    top: 10%;
    left: 10%;
    pointer-events: none;
}

.chart-axis-x {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.chart-axis-y {
    position: absolute;
    bottom: 15px;
    left: 15px;
    top: 15px;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.chart-bar {
    width: 25px;
    background: var(--gold-gradient);
    border-radius: 4px 4px 0 0;
    position: relative;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    z-index: 2;
}

.chart-bar::after {
    content: attr(data-label);
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pdf-compatibility-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
}

.badge-ring {
    width: 100px;
    height: 100px;
    border: 3px solid rgba(255, 255, 255, 0.05);
    border-top: 3px solid var(--gold-premium);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.badge-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-premium);
    font-family: var(--font-alt);
}

.badge-sub {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pdf-table-preview {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
}

.table-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    padding: 9px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: clamp(0.62rem, 1.8vw, 0.74rem);
    gap: 8px;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row.table-head {
    background: rgba(255, 255, 255, 0.03);
    font-weight: 600;
    color: var(--gold);
    border-bottom: 1px solid var(--gold-border);
}

.pdf-remedies-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.remedy-item {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 14px;
    border-radius: 10px;
    align-items: center;
}

.remedy-bullet {
    font-size: 1.3rem;
}

.remedy-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--white);
}

.remedy-item span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.pdf-timeline-preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-left: 2px solid var(--gold-border);
    padding-left: 15px;
    margin-left: 10px;
}

.timeline-item-preview {
    position: relative;
}

.timeline-item-preview::before {
    content: '';
    position: absolute;
    left: -21px;
    top: 4px;
    width: 10px;
    height: 10px;
    background: var(--bg-dark);
    border: 2px solid var(--gold-premium);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold);
}

.timeline-year {
    display: block;
    font-size: 0.7rem;
    color: var(--gold-premium);
    font-family: var(--font-alt);
    font-weight: 700;
}

.timeline-item-preview strong {
    display: block;
    font-size: 0.85rem;
    color: #fff;
    margin: 2px 0;
}

.timeline-item-preview span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.pdf-dosha-indicator {
    display: flex;
    gap: 12px;
}

.dosha-indicator-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dosha-indicator-item.safe .status-badge {
    background: rgba(46, 196, 182, 0.1);
    color: #2EC4B6;
    border: 1px solid rgba(46, 196, 182, 0.2);
}

.dosha-indicator-item.alert .status-badge {
    background: rgba(214, 175, 55, 0.1);
    color: var(--gold);
    border: 1px solid rgba(214, 175, 55, 0.2);
}

.dosha-indicator-item span {
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge {
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.pdf-text-preview {
    font-size: 0.75rem;
}

.pdf-tag {
    display: inline-block;
    background: rgba(91, 61, 245, 0.15);
    color: #a291ff;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: clamp(0.58rem, 1.8vw, 0.65rem);
    font-weight: 600;
    margin-bottom: 6px;
}

.pdf-text-preview p {
    color: var(--text-muted);
    line-height: 1.5;
    font-weight: 300;
}

.pdf-graphic-box {
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
}

.chart-north-indian {
    width: 80%;
    height: 80%;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><path d='M0 0 L200 200 M0 200 L200 0' stroke='rgba(212,175,55,0.2)' stroke-width='1'/><path d='M100 0 L0 100 L100 200 L200 100 Z' stroke='rgba(212,175,55,0.25)' stroke-width='1'/></svg>");
    background-size: contain;
}

.chart-house-num {
    position: absolute;
    font-family: var(--font-alt);
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.1;
    text-align: center;
    transform: translate(-50%, -50%);
}

.chart-house-num small {
    font-size: 0.55rem;
    color: var(--gold);
    display: block;
}

.h1-pos { top: 50%; left: 50%; color: #fff; font-weight: 700; font-size: 0.85rem; }
.h2-pos { top: 25%; left: 50%; }
.h3-pos { top: 25%; left: 25%; }
.h4-pos { top: 50%; left: 25%; }
.h5-pos { top: 75%; left: 25%; }
.h6-pos { top: 75%; left: 50%; }
.h7-pos { top: 75%; left: 75%; }
.h8-pos { top: 50%; left: 75%; }
.h9-pos { top: 25%; left: 75%; }
.h10-pos { top: 12%; left: 50%; }
.h11-pos { top: 50%; left: 88%; }
.h12-pos { top: 50%; left: 12%; }

/* ========================================================
   Redesigned Roadmap Timeline Section
======================================================== */
.roadmap-timeline-wrapper {
    position: relative;
    max-width: 850px;
    margin: 50px auto 0 auto;
    padding: 20px 0;
}

.roadmap-timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background: linear-gradient(to bottom, transparent 0%, var(--gold) 15%, var(--purple) 85%, transparent 100%);
}

.roadmap-node-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    position: relative;
    margin-bottom: 40px;
    width: 100%;
}

.roadmap-node-container:last-child {
    margin-bottom: 0;
}

.roadmap-node-content {
    width: auto;
    margin-left: 45px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: var(--transition);
}

.roadmap-node-content:hover {
    border-color: var(--gold-border);
    box-shadow: 0 15px 35px rgba(212,175,55,0.15);
    background: var(--bg-card-hover);
    transform: translateY(-3px);
}

.roadmap-node-indicator {
    width: 20px;
    height: 20px;
    background: var(--bg-dark);
    border: 3px solid var(--gold);
    border-radius: 50%;
    position: absolute;
    left: 20px;
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: 0 0 15px var(--gold);
    animation: goldPulse 2.5s infinite;
}

.roadmap-node-container:nth-child(even) .roadmap-node-indicator {
    border-color: var(--purple);
    box-shadow: 0 0 15px var(--purple);
    animation: purplePulse 2.5s infinite;
}

.roadmap-node-date {
    font-family: var(--font-alt);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold-premium);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.roadmap-node-container:nth-child(even) .roadmap-node-date {
    color: #a291ff;
}

.roadmap-node-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #fff;
}

.roadmap-node-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
}

/* ========================================================
   Social Proof Testimonials
======================================================== */
.testimonials-rating-box {
    text-align: center;
    margin-bottom: 45px;
}

.rating-stars {
    font-size: 2rem;
    color: var(--gold-premium);
    letter-spacing: 5px;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.rating-score {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(18px, 3vw, 30px);
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 260px;
    position: relative;
    border: 1px solid var(--glass-border) !important;
    border-left: 3px solid var(--gold) !important;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(16, 26, 48, 0.6) 0%, rgba(8, 14, 28, 0.8) 100%) !important;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 5rem;
    font-family: serif;
    color: var(--gold);
    opacity: 0.08;
    line-height: 1;
}

.testimonial-stars {
    color: var(--gold-premium);
    margin-bottom: 15px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
    font-weight: 300;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.user-avatar {
    width: 45px;
    height: 45px;
    background: var(--purple-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    border: 2px solid var(--gold);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.3), 0 4px 10px rgba(91, 61, 245, 0.3);
}

.user-details h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 3px;
    font-family: var(--font-body);
}

.user-tag {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 500;
}

.user-avatar-wrapper {
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

.avatar-check {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #080e1c;
    color: #fff;
    font-size: 9px;
    font-weight: bold;
    line-height: 1;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    color: #10b981;
    font-weight: 600;
    margin-top: 5px;
    background: rgba(16, 185, 129, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    width: fit-content;
}

.verified-badge svg {
    flex-shrink: 0;
}

/* ========================================================
   Payment Process Trust Badge Card
======================================================== */
.payment-info-card {
    background: rgba(16, 26, 48, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    margin-top: 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.payment-info-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-weight: 600;
}

.payment-methods-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.method-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.method-badge svg {
    color: var(--gold-premium);
}

.payment-security-note {
    font-size: 0.75rem;
    color: #10b981;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}


/* ========================================================
   Urgency Countdown Timer Scarcity Banner
======================================================== */
.scarcity-banner {
    background: linear-gradient(90deg, rgba(91, 61, 245, 0.15) 0%, rgba(212, 175, 55, 0.15) 50%, rgba(91, 61, 245, 0.15) 100%);
    border-top: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
    padding: 15px 0;
    text-align: center;
    position: sticky;
    bottom: 72px;
    z-index: 997;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
}

.scarcity-banner.active {
    display: block;
}

.scarcity-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 4px;
}

.scarcity-text {
    font-size: clamp(0.76rem, 2.6vw, 0.95rem);
    font-weight: 600;
    color: #fff;
}

.timer-box {
    display: inline-flex;
    gap: 5px;
    font-family: var(--font-alt);
    font-weight: 700;
    color: var(--gold-premium);
    font-size: 1.1rem;
}

/* ========================================================
   Form & Input Elements
======================================================== */
.form-section {
    position: relative;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid var(--gold-border);
    background: linear-gradient(180deg, rgba(11, 16, 32, 0.9) 0%, rgba(7, 11, 23, 0.98) 100%);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    overflow: hidden;
}

.form-header {
    text-align: center;
    margin-bottom: 35px;
}

.form-header h2 {
    font-size: clamp(1.45rem, 5vw, 2rem);
    color: var(--gold-premium);
    margin-bottom: 10px;
}

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

.order-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px 25px;
}

.form-group-full {
    grid-column: span 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.form-label {
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    color: var(--text-muted) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.form-input {
    background: rgba(124, 58, 237, 0.04) !important;
    border: 1px solid rgba(167, 139, 250, 0.25) !important;
    border-radius: 12px !important;
    padding: 14px 20px !important;
    color: var(--white) !important;
    outline: none !important;
    font-family: var(--font-body) !important;
    font-size: 0.95rem !important;
    transition: var(--transition) !important;
    width: 100% !important;
    min-height: 52px !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}

.form-input:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.25), inset 0 2px 4px rgba(0, 0, 0, 0.2) !important;
    background: rgba(10, 0, 21, 0.7) !important;
}

select.form-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23f59e0b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>") !important;
    background-repeat: no-repeat !important;
    background-position: right 18px center !important;
    background-size: 16px !important;
    padding-right: 45px !important;
}

select.form-input option {
    background: #0a0015 !important;
    color: var(--white) !important;
}

.form-error {
    font-size: 0.75rem;
    color: var(--error);
    margin-top: 3px;
    display: none;
}

.form-group.has-error .form-input {
    border-color: var(--error) !important;
}

.form-group.has-error .form-error {
    display: block;
}

.submit-btn, .order-form-element button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 32px;
    border-radius: 40px;
    background: var(--purple-gradient) !important;
    color: #ffffff !important;
    font-weight: 700;
    border: 1px solid var(--gold) !important;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.submit-btn:hover, .order-form-element button[type="submit"]:hover {
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.7), 0 0 15px rgba(245, 158, 11, 0.5);
    border-color: #ffffff !important;
}

.pulse-cta, .btn-pulse {
    animation: pulse-cta 2s infinite !important;
}

@keyframes pulse-cta {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(245, 158, 11, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

.order-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-security-badge {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 15px;
}

/* ========================================================
   Kundali Checkout Page (/get-your-kundali)
======================================================== */
.kundali-checkout-page {
    min-height: 60vh;
}

.kundali-checkout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}

.kundali-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.kundali-page-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    line-height: 1.2;
    color: #fff;
    margin-bottom: 14px;
}

.kundali-page-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 22px;
    max-width: 540px;
}

.kundali-trust-bar {
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-bottom: 24px;
}

.kundali-price-card {
    padding: 22px;
    margin-bottom: 20px;
    position: relative;
}

.kundali-benefits-list {
    margin-top: 14px;
    margin-bottom: 0;
}

.kundali-astro-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
}

.kundali-astro-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-border);
    flex-shrink: 0;
}

.kundali-astro-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(139, 92, 246, 0.2));
    color: var(--gold-premium);
    font-family: var(--font-heading, 'Cinzel', serif);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.kundali-astro-name {
    font-size: 1.1rem;
    color: var(--gold-premium);
    margin-bottom: 4px;
}

.kundali-astro-role {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.kundali-form-card {
    max-width: none;
    margin: 0;
}

.kundali-form-card .form-header {
    margin-bottom: 28px;
}

.kundali-submit-wrap {
    margin-top: 28px;
}

.kundali-form-col {
    scroll-margin-top: 100px;
}

@media (min-width: 992px) {
    .kundali-checkout-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
        gap: 40px;
    }

    .kundali-info-col {
        position: sticky;
        top: 100px;
    }

    .kundali-form-card .order-form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    .kundali-checkout-page .section-padding {
        padding-top: 28px;
        padding-bottom: 40px;
    }

    .kundali-price-card {
        padding: 18px;
    }

    .kundali-astro-card {
        flex-direction: column;
        text-align: center;
    }

    .kundali-form-card {
        padding: 22px 18px;
    }

    .kundali-submit-wrap .btn {
        font-size: 0.95rem;
        padding: 14px 16px;
    }
}

/* ========================================================
   Celestial Loading Overlay
======================================================== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 11, 23, 0.95);
    z-index: 10000;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loading-overlay.active {
    display: flex;
}

.mock-payment-modal {
    position: fixed;
    inset: 0;
    background: rgba(7, 11, 23, 0.92);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.mock-payment-modal.active {
    display: flex;
}

.mock-payment-card {
    background: linear-gradient(145deg, #12182b, #0a0f1e);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 16px;
    padding: 28px 24px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.mock-payment-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-premium);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.mock-payment-card h3 {
    color: #fff;
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.mock-payment-desc {
    color: var(--text-silver);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.mock-payment-details {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 20px;
    text-align: left;
}

.mock-payment-details div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 0;
    font-size: 0.9rem;
}

.mock-payment-details span {
    color: var(--text-silver);
}

.mock-payment-details strong {
    color: #fff;
    word-break: break-all;
    text-align: right;
}

.mock-payment-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.celestial-loader {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    border-top-color: var(--gold-premium);
    border-bottom-color: var(--purple);
    animation: spin 1.8s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    margin-bottom: 25px;
}

.loading-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-heading);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.loading-subtext {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* FAQs Section */
.faq-wrapper {
    max-width: 800px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border) !important;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
    border-color: rgba(167, 139, 250, 0.4) !important;
    background: rgba(124, 58, 237, 0.12);
}

.faq-item.active {
    border-color: var(--gold) !important;
    background: rgba(124, 58, 237, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(245, 158, 11, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    padding: 20px 25px;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--font-body);
    transition: color 0.3s ease;
}

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

.faq-question::after {
    content: '+';
    font-size: 1.6rem;
    color: var(--gold);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
    font-weight: 500;
    line-height: 1;
}

.faq-item.active .faq-question {
    color: var(--gold);
}

.faq-item.active .faq-question::after {
    transform: rotate(135deg);
    color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-content {
    padding: 0 25px 20px 25px;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
}

/* ========================================================
   Policy Modals Drawer
======================================================== */
.modal-overlay,
.policy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 20px;
}

.modal-overlay.active,
.policy-modal.active {
    display: flex;
}

.modal-content,
.policy-modal-content {
    background: var(--bg-void);
    border: 1px solid var(--gold-border);
    border-radius: 18px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    padding: clamp(24px, 4vw, 35px);
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
}

.modal-close,
.policy-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.modal-close:hover,
.policy-modal-close:hover {
    color: #fff;
}

.modal-inner-content,
.policy-modal-body {
    overflow-y: auto;
    flex-grow: 1;
    margin-top: 15px;
    padding-right: 10px;
}

.modal-inner-content h2,
.policy-modal-body h2 {
    color: var(--gold-premium);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.modal-inner-content h3,
.policy-modal-body h3 {
    font-size: 1.15rem;
    margin: 20px 0 10px 0;
    color: #fff;
}

.modal-inner-content p,
.policy-modal-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.modal-inner-content ul,
.policy-modal-body ul {
    margin-left: 20px;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.modal-inner-content li,
.policy-modal-body li {
    margin-bottom: 5px;
}

/* ========================================================
   Zodiac and Layout Spacing Constraints
======================================================== */
.hero-visual-container {
    max-width: 550px;
    margin: 0 auto;
}

/* ========================================================
   Why Choose Us Section (Comparison Table)
======================================================== */
.comparison-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: clamp(12px, 3vw, 34px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th, 
.comparison-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.95rem;
}

.comparison-table th {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(124, 58, 237, 0.05);
}

.comparison-table tbody tr:nth-child(even) {
    background: rgba(124, 58, 237, 0.02);
}

.comparison-table tbody tr:hover {
    background: rgba(167, 139, 250, 0.05);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td strong {
    color: var(--white);
}

.comparison-table .highlight-col {
    background: rgba(245, 158, 11, 0.04) !important;
    border-left: 2px solid var(--gold) !important;
    border-right: 2px solid var(--gold) !important;
    color: var(--gold-premium);
    font-weight: 600;
}

.comparison-table th.highlight-col {
    color: var(--gold-premium);
    background: rgba(245, 158, 11, 0.1) !important;
    border-top: 2px solid var(--gold) !important;
    border-bottom: 2px solid var(--gold) !important;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.2);
}

.comparison-table tr:last-child td.highlight-col {
    border-bottom: 2px solid var(--gold) !important;
}

.comparison-table td.check-item {
    color: var(--success) !important;
    font-weight: 500;
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.2);
}

.comparison-table td.cross-item {
    color: var(--text-muted) !important;
    opacity: 0.6;
}

/* ========================================================
   Report Preview Section (Premium 4-Column Grid & Modal)
   ======================================================== */
.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(18px, 3vw, 28px);
    margin-top: clamp(34px, 5vw, 48px);
}

.preview-card {
    background: rgba(11, 16, 32, 0.65) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(212, 175, 55, 0.15) !important;
    border-radius: 18px !important;
    padding: clamp(14px, 3vw, 22px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s !important;
    cursor: pointer !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.preview-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(212, 175, 55, 0.45) !important;
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.15) !important;
}

/* Trust Badges under Cards */
.preview-trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(10px, 2vw, 15px) clamp(15px, 3vw, 25px);
    margin-top: clamp(30px, 5vw, 50px);
    text-align: center;
}

.trust-badge-item {
    background: rgba(214, 175, 55, 0.05);
    border: 1px solid rgba(214, 175, 55, 0.15);
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gold-premium);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.trust-badge-item:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
}

/* Lightbox Modal for PDF Zoom/Page Switching */
.pdf-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 7, 16, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pdf-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.pdf-modal-container {
    position: relative;
    width: 90%;
    max-width: 750px;
    height: 75vh;
    display: flex;
    flex-direction: column;
    background: #080d1d;
    border: 1px solid var(--gold-border);
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 50px rgba(212, 175, 55, 0.1);
    padding: 50px 20px 20px 20px;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.pdf-modal-overlay.active .pdf-modal-container {
    transform: scale(1);
}

.pdf-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2.2rem;
    cursor: pointer;
    line-height: 1;
    z-index: 10002;
    transition: color 0.3s;
}

.pdf-modal-close:hover {
    color: var(--white);
}

.pdf-modal-nav {
    position: absolute;
    top: auto;
    bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.pdf-modal-nav:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    color: var(--gold-premium);
}

.pdf-modal-nav.prev {
    left: calc(50% - 60px);
}

.pdf-modal-nav.next {
    right: calc(50% - 60px);
}

.pdf-modal-zoom-controls {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 16px;
    border-radius: 30px;
    z-index: 10001;
}

.zoom-btn {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.zoom-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

#zoom-level {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: var(--font-alt);
    font-weight: 600;
    min-width: 45px;
    text-align: center;
}

.pdf-modal-content-wrapper {
    flex-grow: 1;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.pdf-modal-zoom-target {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease-out;
    transform-origin: center center;
}

.pdf-modal-zoom-target .pdf-mockup {
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* Media Queries for Grid Responsiveness removed - refactored to mobile-first auto-fit */

/* ========================================================
   Trust Section (5 stats, 4 per row, centered)
======================================================= */
.stats-grid, .stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
    gap: clamp(16px, 2.5vw, 24px);
    text-align: center;
}

.stat-card, .stat-block {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: clamp(20px, 4vw, 28px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card:hover, .stat-block:hover {
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.15), 0 0 10px rgba(245, 158, 11, 0.1);
    transform: translateY(-4px);
}

.stat-title, .stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
    font-weight: 600;
}

.stat-value, .stat-number {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
    font-weight: 800;
    color: var(--gold);
    font-family: var(--font-heading);
    text-shadow: 0 0 15px rgba(245, 158, 11, 0.25);
}

@media (max-width: 580px) {
    .stats-grid, .stats-bar {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .stats-grid .stat-card:last-child, .stats-bar .stat-block:last-child {
        grid-column: span 2;
    }
}

/* ========================================================
   Footer Section Styling
======================================================== */
.main-footer {
    background: #05000f;
    border-top: 1px solid var(--glass-border);
    padding: clamp(38px, 6vw, 56px) 0 24px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.main-footer .footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.main-footer .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vw, 36px);
    width: 100%;
}

.main-footer .footer-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-footer .brand-col {
    gap: 16px;
}

.main-footer .brand-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.main-footer .footer-title, .footer-title {
    font-family: var(--font-heading) !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
}

.main-footer .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.main-footer .footer-links a, .footer-links a {
    color: var(--text-muted);
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.main-footer .footer-links a:hover, .footer-links a:hover {
    color: var(--gold) !important;
    transform: translateX(6px);
}

.main-footer .contact-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.main-footer .contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.main-footer .contact-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.main-footer .contact-text a {
    color: var(--gold);
}

.main-footer .footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    width: 100%;
}

.main-footer .footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.2);
}

.main-footer .disclaimer {
    max-width: 100%;
    text-align: center;
    line-height: 1.4;
    font-size: 0.8rem;
}

/* Sticky Bottom Mobile CTA Bar */
.sticky-mobile-cta, .sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 0, 15, 0.95);
    border-top: 1px solid var(--gold-border);
    padding: 8px 16px;
    z-index: 998;
    display: flex;
    align-items: center;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    height: 68px; /* Mobile height under 75px */
    animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

body {
    padding-bottom: 68px; /* Offset for sticky mobile cta */
}

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

.sticky-pricing {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.sticky-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gold);
    font-family: var(--font-alt);
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.2);
}

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

.sticky-mobile-cta .btn, .sticky-btn {
    padding: 8px 20px !important;
    font-size: 0.85rem !important;
    flex-grow: 0 !important;
    width: auto !important;
    min-height: 42px !important;
}

/* ========================================================
   Floating WhatsApp Button Base (Mobile-First Default)
======================================================== */
.floating-whatsapp {
    position: fixed !important;
    bottom: calc(68px + 20px) !important; /* Positioned exactly 20px above cta */
    right: 15px !important;
    width: 50px !important; /* Compact size */
    height: 50px !important;
    border-radius: 50% !important;
    background: #25D366 !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 9999 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    cursor: pointer !important;
    text-decoration: none !important;
}

.floating-whatsapp:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6) !important;
}

.floating-whatsapp .whatsapp-svg {
    width: 26px !important;
    height: 26px !important;
    fill: #FFF !important;
    display: block !important;
}

/* ========================================================
   CSS Keyframes Animations
======================================================== */
@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes spinSlow {
    to { transform: rotate(360deg); }
}

@keyframes twinkle {
    0% { opacity: 0.3; }
    50% { opacity: 0.9; }
    100% { opacity: 0.4; }
}

@keyframes nebulaMove {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10%, 15%) scale(1.1); }
    100% { transform: translate(-5%, -5%) scale(0.95); }
}

@keyframes goldPulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

@keyframes purplePulse {
    0% { box-shadow: 0 0 0 0 rgba(91, 61, 245, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(91, 61, 245, 0); }
    100% { box-shadow: 0 0 0 0 rgba(91, 61, 245, 0); }
}

@keyframes cardBadgePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); box-shadow: 0 4px 20px rgba(255, 215, 0, 0.7); }
    100% { transform: scale(1); }
}

/* Scroll reveal for cards only — sections stay visible without JS */
.preview-card,
.testimonial-card {
    opacity: 0;
    transform: translate3d(0, 15px, 0);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal {
    opacity: 1;
    transform: none;
}

.preview-card.visible,
.testimonial-card.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* ========================================================
   Responsive Media Queries (Mobile-First Consolidation)
======================================================== */

@media (min-width: 481px) {
    .book-wrapper {
        --book-width: 250px;
        --book-height: 345px;
    }
    .book-trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 24px;
        max-width: 600px;
        text-align: left;
    }
    .main-footer .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (min-width: 581px) {
    .comparison-wrapper {
        margin: 0 auto;
    }
    .pdf-header,
    .pdf-footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .value-stack-item,
    .value-stack-total {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
    }
}

@media (min-width: 769px) {
    .section-padding {
        padding-top: clamp(60px, 8vw, 100px);
        padding-bottom: clamp(60px, 8vw, 100px);
    }
    .hero-grid {
        grid-template-columns: 1.15fr 0.85fr;
        gap: clamp(28px, 5vw, 46px);
        text-align: left;
    }
    .hero-content {
        align-items: flex-start;
        text-align: left;
        margin: 0;
    }
    .hero-trust-bar {
        justify-content: flex-start;
        width: auto;
    }
    .hero-actions {
        justify-content: flex-start;
        width: auto;
    }
    .hero-card-container {
        justify-content: flex-start;
    }
    .book-wrapper {
        --book-width: 270px;
        --book-height: 375px;
    }
    .cover-zodiac-wheel {
        width: 120px;
        height: 120px;
    }
    .order-form-grid {
        grid-template-columns: 1fr 1fr;
    }
    .form-group-full {
        grid-column: span 2;
    }
    .scarcity-banner {
        bottom: 0;
        z-index: 999;
    }
    .sticky-mobile-cta, .sticky-bar {
        display: none !important;
    }
    body {
        padding-bottom: 0 !important;
    }
    .floating-whatsapp {
        bottom: 24px !important;
        right: 24px !important;
        width: 55px !important;
        height: 55px !important;
    }
    .floating-whatsapp .whatsapp-svg {
        width: 30px !important;
        height: 30px !important;
    }
    .main-footer .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
    .main-footer .disclaimer {
        max-width: 60%;
        text-align: right;
    }
}

@media (min-width: 993px) {
    .pdf-modal-container {
        padding: 60px 40px 40px 40px;
        height: 85vh;
    }
    .pdf-modal-nav {
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
    }
    .pdf-modal-nav.prev {
        left: 20px;
    }
    .pdf-modal-nav.next {
        right: 20px;
    }
}

@media (min-width: 1025px) {
    .book-wrapper {
        --book-width: 310px;
        --book-height: 430px;
    }
    .cover-zodiac-wheel {
        width: 140px;
        height: 140px;
    }
    .main-footer .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
}

@media (min-width: 1441px) {
    .container {
        max-width: 1400px;
    }
}

/* ========================================================
   Scroll Progress Bar
======================================================== */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--gold-gradient);
    z-index: 10001;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
    transition: width 0.1s ease-out;
}

/* ========================================================
   Page Preloader
======================================================== */
.page-preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    padding: 20px;
}

.preloader-zodiac {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: spinSlow 3s linear infinite;
}

.preloader-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.preloader-bar-wrapper {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-bar {
    height: 100%;
    width: 40%;
    background: var(--gold-gradient);
    border-radius: 4px;
    animation: preloaderSlide 1.2s ease-in-out infinite;
}

@keyframes preloaderSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* ========================================================
   Policy & Error Pages
======================================================== */
.policy-container {
    padding: 120px 20px 60px 20px;
    max-width: 850px;
    margin: 0 auto;
}

.policy-content {
    background: linear-gradient(135deg, rgba(16, 26, 48, 0.6) 0%, rgba(8, 14, 28, 0.8) 100%) !important;
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: var(--gold-premium);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 20px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.back-link:hover {
    color: #ffffff;
    transform: translateX(-4px);
}

.policy-content h1 {
    color: var(--gold-premium);
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-family: var(--font-alt);
}

.policy-content h2 {
    color: #ffffff;
    font-size: 1.4rem;
    margin: 35px 0 15px 0;
    border-left: 3px solid var(--gold);
    padding-left: 12px;
    font-family: var(--font-alt);
}

.policy-content p {
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.7;
    font-size: 0.98rem;
}

.policy-content ul {
    margin-left: 20px;
    margin-bottom: 25px;
    color: var(--text-muted);
}

.policy-content li {
    margin-bottom: 10px;
    font-size: 0.98rem;
    line-height: 1.6;
}

.policy-content a {
    color: var(--gold-premium);
    text-decoration: none;
    transition: color 0.2s ease;
}

.policy-content a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.error-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px 20px;
}

.error-card {
    background: linear-gradient(135deg, rgba(16, 26, 48, 0.6) 0%, rgba(8, 14, 28, 0.8) 100%) !important;
    border: 1px solid var(--glass-border);
    padding: 50px 40px;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.error-icon {
    font-size: 4rem;
    color: var(--gold-premium);
    margin-bottom: 20px;
    display: inline-block;
    animation: floatZodiac 4s ease-in-out infinite;
}

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

.error-card h1 {
    font-family: var(--font-alt);
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.error-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

.error-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.error-actions .btn {
    max-width: 280px;
    width: 100%;
    justify-content: center;
}

.whatsapp-support-link {
    color: var(--success);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    margin-top: 20px;
    transition: color 0.2s ease;
}

.whatsapp-support-link:hover {
    color: #34d399;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .preview-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .policy-container {
        padding-top: 100px;
    }

    .policy-content {
        padding: 25px;
    }

    .policy-content h1 {
        font-size: 1.8rem;
    }

    .error-card {
        padding: 35px 20px;
    }

    .error-card h1 {
        font-size: 2rem;
    }

    /* ---- Global mobile layout fixes ---- */
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }

    .container,
    .header-container,
    .footer-container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero-section {
        padding: calc(var(--header-height, 48px) + 8px) 0 22px;
        overflow-x: clip;
    }

    .hero-grid {
        gap: 14px;
    }

    .hero-content {
        max-width: 100%;
        width: 100%;
        min-width: 0;
        align-items: stretch;
        text-align: left;
        display: flex;
        flex-direction: column;
    }

    .hero-title {
        order: 1;
        font-size: clamp(1.05rem, 4.8vw, 1.35rem) !important;
        line-height: 1.25 !important;
        text-transform: none;
        letter-spacing: 0;
        word-break: break-word;
        overflow-wrap: anywhere;
        hyphens: auto;
        -webkit-text-fill-color: var(--gold);
        background: none;
        color: var(--gold);
        text-align: left;
        margin-bottom: 8px !important;
    }

    .hero-subtitle {
        order: 3;
        font-size: 0.84rem !important;
        line-height: 1.5 !important;
        margin-bottom: 10px !important;
        text-align: left;
    }

    .trust-bar,
    .hero-trust-bar {
        order: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px 8px;
        width: 100%;
        max-width: 100%;
        white-space: normal;
        overflow-x: visible;
        margin: 0 0 10px !important;
        padding: 8px 10px !important;
        border-radius: 8px !important;
        justify-content: stretch;
    }

    .trust-item,
    .hero-trust-item {
        font-size: 0.62rem;
        line-height: 1.3;
        justify-content: flex-start;
        text-align: left;
        white-space: normal;
    }

    .trust-item::after,
    .hero-trust-item::after {
        display: none;
    }

    .hero-content .price-card,
    .glass-card.price-card {
        order: 4;
        width: 100%;
        max-width: 100%;
        margin: 0 0 10px 0 !important;
        padding: 12px !important;
        box-sizing: border-box;
    }

    .hero-actions .btn {
        width: 100%;
        padding: 11px 14px;
        font-size: 0.8rem;
        letter-spacing: 0.2px;
        min-height: 44px;
    }

    .hero-visual-container {
        order: 6;
        margin-top: 2px;
        max-width: 100%;
        overflow: hidden;
    }

    .book-wrapper {
        transform: scale(0.7);
        transform-origin: center top;
        margin: 0 auto;
        height: auto;
    }

    .sale-price {
        font-size: 1.65rem !important;
    }

    .offer-badge {
        font-size: 0.62rem !important;
        padding: 3px 8px !important;
        top: 6px !important;
        right: 6px !important;
    }

    .hero-actions {
        order: 5;
        flex-direction: column;
        gap: 8px;
        width: 100%;
        margin-top: 0;
    }

    .book-trust-badges {
        grid-template-columns: 1fr;
        gap: 6px;
        font-size: 0.72rem;
        margin-top: 8px;
        width: 100%;
        padding: 0;
    }

    .live-activity-wrapper {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        padding: 0 8px;
    }

    .live-activity-title {
        font-size: 0.68rem !important;
    }

    .live-activity-carousel {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 22px;
    }

    .live-item {
        font-size: 0.75rem !important;
        text-align: center;
        position: relative;
        white-space: normal;
    }

    .form-input,
    select.form-input {
        font-size: 16px !important;
    }

    .comparison-wrapper {
        padding: 10px;
        margin: 0;
        max-width: 100%;
    }

    .scarcity-banner {
        bottom: calc(var(--mobile-cta-height, 68px) + env(safe-area-inset-bottom, 0px));
        padding: 10px 12px;
    }

    .scarcity-container {
        flex-direction: column;
        gap: 6px;
    }

    .scarcity-text {
        font-size: 0.78rem;
        line-height: 1.4;
    }

    body {
        padding-bottom: calc(var(--mobile-cta-height, 68px) + env(safe-area-inset-bottom, 0px));
    }

    .floating-whatsapp {
        bottom: calc(var(--mobile-cta-height, 68px) + 14px + env(safe-area-inset-bottom, 0px)) !important;
        right: 12px !important;
    }

    .kundali-checkout-page .section-padding {
        padding-top: calc(var(--header-height, 58px) + 20px);
    }

    .kundali-page-title {
        font-size: clamp(1.45rem, 6.5vw, 1.85rem);
        word-break: break-word;
    }

    .kundali-trust-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        white-space: normal;
        overflow: visible;
    }

    .kundali-trust-bar .hero-trust-item::after {
        display: none;
    }

    .section-header h2 {
        font-size: clamp(1.35rem, 5.5vw, 1.75rem);
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    .hero-visual-container {
        display: none;
    }

    .hero-section {
        padding-bottom: 16px;
    }

    .hero-title {
        font-size: 1.02rem !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-delay: -1ms !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        background-attachment: initial !important;
        scroll-behavior: auto !important;
        transition-duration: 0s !important;
        transition-delay: 0s !important;
    }
}

/* Defer rendering of below-fold sections (desktop only — avoids mobile hero paint bugs) */
@media (min-width: 769px) {
    #benefits, #preview, #roadmap, #why-us, #trust-stats, #testimonials, #faq, #pricing {
        content-visibility: auto;
        contain-intrinsic-size: auto 600px;
    }
}
