/* -------------------------------------------------------------
   THE KARMIC PATTERN DECODE LANDING PAGE STYLESHEET
   Brand Style: Premium, Spiritual, Trustworthy, Sacred & Modern
   ------------------------------------------------------------- */


/* CSS Reset & Variable Definitions */
:root {
    /* Color Palette - Dark Theme */
    --color-bg-deep: #060b19;      /* Midnight Deep Navy */
    --color-bg-card: rgba(14, 26, 53, 0.75); /* Royal Navy Glass */
    --color-bg-card-hover: rgba(20, 35, 70, 0.9);
    --color-text-primary: #ffffff; /* Ivory White */
    --color-text-secondary: #ffffff; /* Pure White */
    --color-text-muted: #ffffff; /* Pure White */

    /* Light Theme Section Colors */
    --color-bg-light: #f9f5ee;          /* Warm Cream */
    --color-bg-light-alt: #fdf8f0;      /* Even softer cream */
    --color-bg-light-card: rgba(255,255,255,0.85); /* White glass card */
    --color-bg-light-card-hover: rgba(255,255,255,0.97);
    --color-text-light-primary: #1a1209;   /* Deep charcoal */
    --color-text-light-secondary: #281e0e; /* Rich dark warm brown */
    --color-text-light-muted: #7a6040;     /* Muted gold-brown */
    --border-light: 1px solid rgba(197, 168, 92, 0.25);
    --card-shadow-light: 0 8px 24px rgba(120, 80, 20, 0.1);
    
    /* Gold Theme Colors */
    --color-gold: #c5a85c;        /* Base Premium Gold */
    --color-gold-light: #e5c483;  /* Bright Light Gold */
    --color-gold-dark: #917637;   /* Deep Bronze Gold */
    --color-gold-bg: #1c1d1a;
    
    /* Gold Gradients */
    --gradient-gold: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
    --gradient-gold-hover: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-light) 100%);
    --gradient-cosmic: linear-gradient(180deg, var(--color-bg-deep) 0%, #0c142c 100%);
    
    /* Fonts */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Shadows & Borders */
    --gold-glow: 0 0 20px rgba(197, 168, 92, 0.25);
    --gold-glow-strong: 0 0 30px rgba(197, 168, 92, 0.55);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --border-glass: 1px solid rgba(197, 168, 92, 0.15);
    --border-glass-active: 1px solid rgba(197, 168, 92, 0.35);
    
    /* Layout Spacing */
    --container-width: 1140px;
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html, body {
    width: 100%;
    overflow-x: hidden;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-deep);
    color: var(--color-text-primary);
    line-height: 1.6;
    letter-spacing: 0.01em;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography styling */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.25;
}

p {
    font-size: 1rem;
    color: var(--color-text-secondary);
    font-weight: 300;
}

strong {
    font-weight: 600;
    color: var(--color-text-primary);
}

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

.text-danger {
    color: #ef4444 !important;
}

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

.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* Layout Containers */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-deep);
}
::-webkit-scrollbar-thumb {
    background: var(--color-gold-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* Decorative Ornaments & Common Elements */
.title-underline {
    width: 80px;
    height: 2px;
    background: var(--gradient-gold);
    margin: 1rem auto 1.5rem;
    position: relative;
}

.title-underline.left {
    margin: 1rem 0 1.5rem;
}

.title-underline::after {
    content: "✦";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-bg-deep);
    color: var(--color-gold-light);
    font-size: 0.8rem;
    padding: 0 0.5rem;
}

/* Override star badge background color for light theme sections */
.about-section .title-underline::after {
    background: var(--color-bg-light);
}

.different-section .title-underline.left::after {
    left: 40px;
}

.section-header {
    margin-bottom: 4rem;
}

.section-tag {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.microcopy {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    margin-top: 1.35rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 500;
}

.mobile-break {
    display: none;
}

/* Top Announcement Bar */
.top-bar {
    background: linear-gradient(90deg, #080d1a 0%, #0b0f19 50%, #080d1a 100%);
    border-bottom: 1px solid rgba(197, 168, 92, 0.18);
    padding: 0.45rem 2rem;
    width: 100%;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.top-bar-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 1.5rem;
}

.top-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 5px rgba(197, 168, 92, 0.15));
    transition: filter 0.3s ease;
}

.top-logo-img:hover {
    filter: drop-shadow(0 0 8px rgba(197, 168, 92, 0.4));
}

.top-bar-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.75rem;
    flex-wrap: wrap;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-gold-light);
}

.top-bar-spacer {
    display: none; /* no longer needed */
}

.top-bar-content .bullet {
    color: var(--color-gold);
    margin-right: 0.25rem;
    animation: pulse 2s infinite;
}

/* Header & Logo */
.header {
    background: rgba(6, 11, 25, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: var(--border-glass);
    padding: 1.25rem 0;
    position: relative;
    z-index: 99;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text-primary);
    text-decoration: none;
    letter-spacing: 0.05em;
}

.logo-accent {
    color: var(--color-gold-light);
}

/* Button UI Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition-smooth);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: none;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
}

.btn-md {
    padding: 0.9rem 2rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 0.95rem;
    border-radius: 6px;
}

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

.btn-gold {
    background: var(--gradient-gold);
    color: #0d0f12;
    box-shadow: var(--gold-glow);
    font-weight: 700;
}

.btn-gold:hover {
    background: var(--gradient-gold-hover);
    box-shadow: var(--gold-glow-strong);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-gold-light);
    border: 1px solid var(--color-gold);
}

.btn-outline:hover {
    background: rgba(197, 168, 92, 0.1);
    color: var(--color-text-primary);
    border-color: var(--color-gold-light);
    transform: translateY(-2px);
}

/* Keyframe Animations */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; box-shadow: var(--gold-glow-strong); }
    100% { transform: scale(1); opacity: 0.8; }
}

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

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

@keyframes rotateCenteredSlow {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes starGlow {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

.btn-pulse {
    animation: pulse 3s infinite ease-in-out;
}

/* ---------------- Hero Section ---------------- */
.hero-section {
    padding: 5.5rem 0 5rem;
    position: relative;
    background: radial-gradient(ellipse 120% 80% at 50% -10%, rgba(197, 168, 92, 0.07) 0%, transparent 60%),
                radial-gradient(ellipse 80% 60% at 0% 100%, rgba(14, 26, 90, 0.5) 0%, transparent 60%),
                linear-gradient(170deg, #07101f 0%, #060b19 40%, #0a0e20 100%);
    border-bottom: 1px solid rgba(197, 168, 92, 0.12);
    overflow: hidden;
}

/* Cosmic Stars Animation Background */
.cosmic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    animation: starGlow 4s infinite ease-in-out;
}

.star-1 { top: 15%; left: 12%; animation-delay: 0s; }
.star-2 { top: 35%; left: 85%; animation-delay: 1.5s; }
.star-3 { top: 75%; left: 20%; animation-delay: 0.7s; }
.star-4 { top: 80%; left: 75%; animation-delay: 2.2s; }
.star-5 { top: 25%; left: 50%; animation-delay: 1.1s; }
.star-6 { top: 60%; left: 90%; animation-delay: 2.7s; }

/* Blurry glowing nebulae */
.nebula {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    z-index: 1;
}

.nebula-gold {
    top: -10%;
    left: 25%;
    width: 350px;
    height: 350px;
    background: var(--color-gold);
    animation: pulseGlow 12s infinite alternate ease-in-out;
}

.nebula-blue {
    bottom: -15%;
    right: 5%;
    width: 450px;
    height: 450px;
    background: #1e3570;
    animation: pulseGlow 16s infinite alternate-reverse ease-in-out;
}

@keyframes pulseGlow {
    0% { transform: scale(1) translate(0, 0); opacity: 0.1; }
    50% { transform: scale(1.15) translate(30px, -15px); opacity: 0.16; }
    100% { transform: scale(1) translate(0, 0); opacity: 0.1; }
}

/* Floating light orbs */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 168, 92, 0.2) 0%, rgba(197, 168, 92, 0) 70%);
    filter: blur(15px);
    animation: floatOrb 12s infinite ease-in-out;
}

.orb-1 {
    width: 120px;
    height: 120px;
    top: 12%;
    left: 6%;
    animation-delay: 0s;
}

.orb-2 {
    width: 180px;
    height: 180px;
    bottom: 15%;
    right: 40%;
    animation-delay: -4s;
    animation-duration: 15s;
}

@keyframes floatOrb {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
    50% { transform: translateY(-15px) scale(1.08); opacity: 0.7; }
}

/* Floating sacred geometry vectors */
.sacred-shape {
    position: absolute;
    z-index: 2;
    transform-style: preserve-3d;
}

.shape-1 {
    top: 8%;
    right: 12%;
    animation: floatShape1 20s infinite linear;
}

.shape-2 {
    bottom: 10%;
    left: 4%;
    animation: floatShape2 25s infinite linear;
}

.shape-3 {
    top: 55%;
    left: 42%;
    animation: floatShape1 16s infinite linear reverse;
}

@keyframes floatShape1 {
    0% { transform: translateY(0) rotate(0deg) scale(0.9); }
    50% { transform: translateY(-12px) rotate(180deg) scale(1.03); }
    100% { transform: translateY(0) rotate(360deg) scale(0.9); }
}

@keyframes floatShape2 {
    0% { transform: translateY(0) rotate(360deg) scale(1); }
    50% { transform: translateY(15px) rotate(180deg) scale(0.88); }
    100% { transform: translateY(0) rotate(0deg) scale(1); }
}

/* Additional stars (7–15) */
.star-7  { top: 5%;  left: 40%;  animation-delay: 0.4s; width: 3px; height: 3px; }
.star-8  { top: 20%; left: 70%;  animation-delay: 1.9s; }
.star-9  { top: 45%; left: 5%;   animation-delay: 0.9s; width: 3px; height: 3px; }
.star-10 { top: 90%; left: 30%;  animation-delay: 3.1s; }
.star-11 { top: 10%; left: 92%;  animation-delay: 2.4s; width: 3px; height: 3px; }
.star-12 { top: 65%; left: 55%;  animation-delay: 1.2s; }
.star-13 { top: 50%; left: 80%;  animation-delay: 3.8s; width: 2px; height: 2px; }
.star-14 { top: 30%; left: 28%;  animation-delay: 0.6s; width: 3px; height: 3px; }
.star-15 { top: 82%; left: 48%;  animation-delay: 2.0s; }

/* New nebulae */
.nebula-purple {
    top: 40%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: #4a1080;
    animation: pulseGlow 18s infinite alternate ease-in-out;
    animation-delay: -5s;
}

.nebula-teal {
    top: 10%;
    right: 15%;
    width: 220px;
    height: 220px;
    background: #0d4f5c;
    opacity: 0.1;
    animation: pulseGlow 14s infinite alternate-reverse ease-in-out;
    animation-delay: -3s;
}

/* Extra floating orbs (3–5) */
.orb-3 {
    width: 90px;
    height: 90px;
    top: 70%;
    left: 60%;
    background: radial-gradient(circle, rgba(197, 168, 92, 0.18) 0%, rgba(197, 168, 92, 0) 70%);
    animation-delay: -2s;
    animation-duration: 10s;
}

.orb-4 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 3%;
    background: radial-gradient(circle, rgba(100, 160, 255, 0.15) 0%, rgba(0,0,0,0) 70%);
    animation-delay: -6s;
    animation-duration: 18s;
}

.orb-5 {
    width: 200px;
    height: 200px;
    bottom: 0%;
    left: 30%;
    background: radial-gradient(circle, rgba(197, 168, 92, 0.08) 0%, rgba(197, 168, 92, 0) 70%);
    animation-delay: -9s;
    animation-duration: 22s;
}

/* Floating gold dust particles */
.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--color-gold);
    opacity: 0;
    animation: particleDrift 8s infinite ease-in-out;
}

@keyframes particleDrift {
    0%   { transform: translateY(0) scale(1);   opacity: 0; }
    20%  { opacity: 0.6; }
    80%  { opacity: 0.4; }
    100% { transform: translateY(-60px) scale(0.5); opacity: 0; }
}

.p-1 { width: 3px; height: 3px; bottom: 30%; left: 15%; animation-delay: 0s;    animation-duration: 7s; }
.p-2 { width: 2px; height: 2px; bottom: 20%; left: 35%; animation-delay: 1.5s;  animation-duration: 9s; }
.p-3 { width: 4px; height: 4px; bottom: 40%; left: 55%; animation-delay: 3s;    animation-duration: 6s; }
.p-4 { width: 2px; height: 2px; bottom: 15%; left: 72%; animation-delay: 0.7s;  animation-duration: 11s; }
.p-5 { width: 3px; height: 3px; bottom: 50%; left: 85%; animation-delay: 2.3s;  animation-duration: 8s; }
.p-6 { width: 2px; height: 2px; bottom: 60%; left: 10%; animation-delay: 4.1s;  animation-duration: 10s; }
.p-7 { width: 4px; height: 4px; bottom: 25%; left: 45%; animation-delay: 1.9s;  animation-duration: 7.5s; }
.p-8 { width: 2px; height: 2px; bottom: 70%; left: 65%; animation-delay: 5.2s;  animation-duration: 12s; }

/* Glowing energy rings */
.energy-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(197, 168, 92, 0.12);
    animation: ringPulse 8s infinite ease-in-out;
    pointer-events: none;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1);    opacity: 0.5; }
    50%       { transform: scale(1.08); opacity: 0.15; }
}

.ring-1 {
    width: 300px; height: 300px;
    top: -80px; left: -80px;
    animation-delay: 0s;
    border-color: rgba(197, 168, 92, 0.1);
}

.ring-2 {
    width: 200px; height: 200px;
    bottom: 10%; right: 10%;
    animation-delay: -3s;
    animation-duration: 11s;
    border-color: rgba(100, 160, 255, 0.08);
}

.ring-3 {
    width: 160px; height: 160px;
    top: 40%; left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -5s;
    animation-duration: 14s;
}

/* Golden horizontal energy lines */
.gold-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 168, 92, 0.2), transparent);
    animation: lineFade 6s infinite ease-in-out;
    pointer-events: none;
}

@keyframes lineFade {
    0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
    50%       { opacity: 0.8; transform: scaleX(1); }
}

.line-1 { width: 40%; top: 28%; left: 0%;  animation-delay: 0s; }
.line-2 { width: 30%; top: 55%; right: 0%; animation-delay: 2s; }
.line-3 { width: 55%; top: 72%; left: 20%; animation-delay: 4s; }

/* New sacred geometry positions */
.shape-4 {
    top: 5%;
    left: 48%;
    opacity: 0.7;
    animation: floatShape1 30s infinite linear;
}

.shape-5 {
    bottom: 5%;
    right: 3%;
    opacity: 0.5;
    animation: floatShape2 35s infinite linear;
}

.shape-6 {
    top: 40%;
    left: 1%;
    opacity: 0.6;
    animation: floatShape1 22s infinite linear reverse;
}

.shape-7 {
    bottom: 8%;
    left: 48%;
    opacity: 0.6;
    animation: floatShape2 18s infinite linear;
}

.shape-8 {
    top: 12%;
    right: 28%;
    opacity: 0.5;
    animation: floatShape1 26s infinite linear reverse;
}

.hero-container {
    position: relative;
    z-index: 5;
}

.hero-split {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: auto auto auto auto auto auto;
    gap: 0 3.5rem;
    grid-template-areas:
        "badge video"
        "title video"
        "divider video"
        "subtitle schedule"
        "supporting schedule"
        "cta schedule";
    align-items: center;
    width: 100%;
}

.hero-badge { grid-area: badge; }
.hero-title { grid-area: title; }
.hero-divider { grid-area: divider; }
.hero-subtitle { grid-area: subtitle; }
.hero-supporting { grid-area: supporting; }
.hero-cta { grid-area: cta; }
.hero-video-wrapper { grid-area: video; }
.schedule-card { grid-area: schedule; }

.pre-header {
    font-size: 0.9rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

/* Hero premium badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, rgba(197, 168, 92, 0.12), rgba(197, 168, 92, 0.05));
    border: 1px solid rgba(197, 168, 92, 0.3);
    border-radius: 50px;
    padding: 0.45rem 1.1rem 0.45rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 20px rgba(197, 168, 92, 0.08);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gold-light);
    animation: pulse 2s infinite;
    flex-shrink: 0;
    box-shadow: 0 0 6px var(--color-gold);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

/* Gold gradient text */
.text-gold {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200%;
    animation: shimmerText 4s infinite linear;
}

@keyframes shimmerText {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Hero decorative gold divider */
.hero-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    width: 70%;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 168, 92, 0.5), transparent);
}

.divider-gem {
    color: var(--color-gold);
    font-size: 0.75rem;
    animation: pulse 3s infinite;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    max-width: 520px;
}

.hero-supporting {
    font-size: 0.97rem;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 2rem;
    border-left: 2px solid var(--color-gold);
    padding: 0.5rem 1rem;
    background: rgba(197, 168, 92, 0.04);
    border-radius: 0 6px 6px 0;
    line-height: 1.65;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    width: 100%;
}

/* Premium shimmer CTA button */
.btn-gold-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #b8902a 0%, #e5c483 40%, #c5a85c 65%, #b8902a 100%);
    background-size: 250% auto;
    color: #09090c;
    font-weight: 800;
    font-size: 0.92rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 1.1rem 2.4rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(197, 168, 92, 0.4), 0 0 0 1px rgba(197, 168, 92, 0.2), inset 0 1px 0 rgba(255,255,255,0.25);
    transition: all 0.4s ease;
    animation: goldShimmerBtn 3.5s infinite linear;
}

.btn-gold-premium:hover {
    box-shadow: 0 8px 35px rgba(197, 168, 92, 0.6), 0 0 0 2px rgba(197, 168, 92, 0.4);
    transform: translateY(-3px) scale(1.02);
    color: #09090c;
    text-decoration: none;
}

.btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: btnShimmerSweep 2.5s infinite;
    pointer-events: none;
}

@keyframes goldShimmerBtn {
    0% { background-position: 0% center; }
    100% { background-position: 250% center; }
}

@keyframes btnShimmerSweep {
    0% { left: -100%; }
    60%, 100% { left: 150%; }
}

.btn-icon {
    font-size: 1.05rem;
    flex-shrink: 0;
}

/* Trust strip beneath CTA */
.hero-trust-strip {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    color: #ffffff;
    font-weight: 500;
}

.trust-item svg {
    stroke: #ffffff;
}

.trust-sep {
    color: rgba(197, 168, 92, 0.4);
    font-size: 1rem;
    line-height: 1;
}

.hero-right {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-visual-card {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    width: 100%;
    max-width: 440px;
}

/* Hero Vimeo Video Embed */
.hero-video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: visible;
    border: 1px solid rgba(197, 168, 92, 0.35);
    box-shadow:
        0 25px 60px rgba(0,0,0,0.6),
        0 0 0 1px rgba(197, 168, 92, 0.08),
        0 0 40px rgba(197, 168, 92, 0.1);
    animation: float 7s infinite ease-in-out;
    background: #060b19;
    border-radius: 16px;
}

/* Decorative corner brackets */
.video-corner {
    position: absolute;
    width: 18px;
    height: 18px;
    border-color: var(--color-gold);
    border-style: solid;
    z-index: 10;
    pointer-events: none;
    opacity: 0.7;
}

.corner-tl { top: -4px; left: -4px; border-width: 2px 0 0 2px; border-radius: 4px 0 0 0; }
.corner-tr { top: -4px; right: -4px; border-width: 2px 2px 0 0; border-radius: 0 4px 0 0; }
.corner-bl { bottom: -4px; left: -4px; border-width: 0 0 2px 2px; border-radius: 0 0 0 4px; }
.corner-br { bottom: -4px; right: -4px; border-width: 0 2px 2px 0; border-radius: 0 0 4px 0; }
.hero-video-frame iframe {
    pointer-events: none;
}

/* Custom Play Overlay Styles */
.video-custom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 15;
    cursor: pointer;
    border-radius: 15px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow: hidden;
    pointer-events: auto;
}

.video-custom-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    border-radius: 15px;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.video-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(6, 11, 25, 0.15), rgba(6, 11, 25, 0.35));
    z-index: -1;
    border-radius: 15px;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
/* Pulse rings under play button */
.play-btn-pulse-ring {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(197, 168, 92, 0.25);
    animation: playRingPulse 2.5s infinite ease-out;
    pointer-events: none;
    z-index: 1;
}

.ring-two {
    animation-delay: 1.25s;
}

.play-btn-circle {
    position: relative;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 25px rgba(197, 168, 92, 0.5);
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, opacity 0.3s ease;
}

.play-icon {
    width: 26px;
    height: 26px;
    color: #060b19;
    transform: translateX(2px); /* shift slightly to visually center triangle */
}

.video-custom-overlay:hover .play-btn-circle {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(197, 168, 92, 0.7);
}

.video-custom-overlay:hover .play-btn-pulse-ring {
    background: rgba(197, 168, 92, 0.35);
}

/* Hide thumbnail image, play button, and gradient when video is playing */
.hero-video-wrapper.video-playing .video-custom-thumbnail,
.hero-video-wrapper.video-playing .video-overlay-gradient {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hero-video-wrapper.video-playing .video-custom-overlay {
    background: transparent;
    pointer-events: auto;
}

.hero-video-wrapper.video-playing .play-btn-circle {
    opacity: 0;
    transform: scale(0.6);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-video-wrapper.video-playing .play-btn-pulse-ring {
    opacity: 0;
    display: none;
}

.hero-video-wrapper.video-playing .video-live-tag {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

@keyframes playRingPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Watch Preview live label */
.video-live-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #b8902a, #e5c483);
    color: #09090c;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.25rem 0.85rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    z-index: 20;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(197, 168, 92, 0.4);
}

.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #09090c;
    animation: pulse 1.5s infinite;
    flex-shrink: 0;
}

.hero-video-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    background: #060b19;
    border-radius: 15px;
    overflow: hidden;
}

.hero-video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    border-radius: 15px;
}

.hero-video-glow {
    position: absolute;
    top: -40px;
    left: -40px;
    right: -40px;
    bottom: -40px;
    background: radial-gradient(ellipse at 50% 50%, rgba(197, 168, 92, 0.18) 0%, rgba(0, 0, 0, 0) 65%);
    z-index: -1;
    pointer-events: none;
    filter: blur(10px);
}

.hero-interactive {
    width: 100%;
}

.schedule-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(12px);
    border: var(--border-glass);
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    position: relative;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    width: 100%;
}

.schedule-card:hover {
    border-color: rgba(197, 168, 92, 0.3);
}

.schedule-card-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(197, 168, 92, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.schedule-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.schedule-header-text h3 {
    font-size: 1.35rem;
    color: var(--color-text-primary);
    font-weight: 500;
}

.schedule-header-text p {
    font-size: 1.1rem;
    color: var(--color-gold-light);
    font-weight: 700;
    margin-top: 0.2rem;
}

.countdown-wrapper {
    background: rgba(6, 11, 25, 0.4);
    border-radius: 6px;
    padding: 1.25rem;
    border-left: 3px solid var(--color-gold);
}

.countdown-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    background: rgba(14, 26, 53, 0.5);
    padding: 0.5rem;
    border-radius: 4px;
    border: 1px solid rgba(197, 168, 92, 0.1);
}

.countdown-time {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.2;
}

.countdown-label {
    font-size: 0.65rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.15rem;
}

/* ---------------- Section 2: Problem (Light Theme) ---------------- */
.problem-section {
    padding: 4.5rem 0 3.5rem;
    border-bottom: var(--border-light);
    background: radial-gradient(circle at 10% 10%, rgba(197, 168, 92, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 90% 90%, rgba(14, 26, 90, 0.02) 0%, transparent 60%),
                var(--color-bg-light);
    position: relative;
    overflow: hidden;
}

/* Background watermarks */
.problem-watermark {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.pm-left {
    top: 5%;
    left: -2%;
}

.pm-right {
    bottom: 5%;
    right: -2%;
}

/* Light theme text overrides for problem section */
.problem-section .section-tag {
    color: var(--color-gold-dark);
}

.problem-section .section-title {
    color: var(--color-text-light-primary);
    font-size: 2.8rem;
    margin-bottom: 1.25rem;
}

/* Creative underline */
.title-underline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.85rem auto 0;
    width: 150px;
}

.title-underline .u-line {
    flex: 1;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--color-gold-dark), transparent);
}

.title-underline .u-dot {
    color: var(--color-gold-dark);
    font-size: 0.75rem;
}

/* Creative Intro quote frame */
.problem-intro-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto 2.25rem;
    padding: 1.75rem 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.4));
    border: 1px dashed rgba(197, 168, 92, 0.3);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(120, 80, 20, 0.04);
    z-index: 2;
}

.intro-quote-left, .intro-quote-right {
    position: absolute;
    font-family: var(--font-heading);
    font-size: 3rem;
    color: rgba(197, 168, 92, 0.25);
    line-height: 1;
}

.intro-quote-left {
    top: 5px;
    left: 12px;
}

.intro-quote-right {
    bottom: -15px;
    right: 12px;
}

.problem-intro {
    max-width: 100%;
    margin: 0;
}

.problem-intro .highlight-text {
    font-size: 1.12rem;
    color: var(--color-text-light-secondary) !important;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    font-weight: 500;
}

.problem-intro .bold-text {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    color: var(--color-gold-dark) !important;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
}

.problem-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(253, 248, 240, 0.7) 100%);
    border: 1px solid rgba(197, 168, 92, 0.22);
    border-radius: 12px;
    padding: 1.4rem 1.6rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(120, 80, 20, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

/* Subtle graphic line at bottom of each card */
.problem-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(197, 168, 92, 0.3), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.problem-card:hover::after {
    transform: scaleX(1);
}

.problem-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(197, 168, 92, 0.5);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 25px rgba(120, 80, 20, 0.08);
}

/* Icon badge wrapper */
.card-icon {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(197, 168, 92, 0.12);
    border: 1px solid rgba(197, 168, 92, 0.25);
    transition: var(--transition-smooth);
}

.problem-card:hover .card-icon {
    background: var(--gradient-gold);
    border-color: transparent;
    box-shadow: 0 0 12px rgba(197, 168, 92, 0.35);
}

.problem-card:hover .card-icon svg {
    stroke: #09090c; /* dark color on hover for high contrast */
}

.problem-card h3 {
    font-size: 1.02rem;
    margin-bottom: 0;
    color: var(--color-text-light-primary) !important;
    font-weight: 700;
    line-height: 1.45;
    font-family: var(--font-body);
}

/* Problem Section Bridge */
.problem-bridge {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 1rem 2rem 1.5rem;
    background: radial-gradient(circle, rgba(197, 168, 92, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    position: relative;
    z-index: 2;
}

.bridge-highlight {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--color-text-light-secondary) !important;
    margin-bottom: 0.25rem;
    font-weight: 500;
    opacity: 0.85;
}

.bridge-main {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--color-text-light-primary) !important; /* deep high contrast charcoal */
    margin-bottom: 1.25rem;
    line-height: 1.25;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

/* ---------------- Section 3: Why This Is Different ---------------- */
.different-section {
    padding: 5.5rem 0;
    background: radial-gradient(circle at 80% 20%, rgba(197, 168, 92, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(14, 26, 90, 0.4) 0%, transparent 60%),
                var(--color-bg-deep);
    border-bottom: var(--border-glass);
    position: relative;
    overflow: hidden;
}

.diff-wrapper {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    grid-template-rows: auto auto;
    gap: 1.5rem 4rem;
    grid-template-areas:
        "heading visual"
        "content visual";
    align-items: center;
}

.diff-heading-group {
    grid-area: heading;
}

.diff-content-group {
    grid-area: content;
    position: relative;
    z-index: 2;
}

.diff-visual {
    grid-area: visual;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.diff-heading-group .pre-header {
    color: var(--color-gold);
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.diff-desc {
    font-size: 1.12rem;
    line-height: 1.65;
    color: var(--color-text-secondary);
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}

/* Callout box for highlighted block text */
.diff-callout {
    display: flex;
    gap: 1rem;
    background: linear-gradient(90deg, rgba(197, 168, 92, 0.08) 0%, rgba(197, 168, 92, 0.02) 100%);
    border-left: 3px solid var(--color-gold);
    padding: 1rem 1.5rem;
    border-radius: 0 8px 8px 0;
    margin-bottom: 2rem;
    box-shadow: inset 0 0 10px rgba(197, 168, 92, 0.05);
}

.callout-spark {
    color: var(--color-gold);
    font-size: 0.9rem;
    margin-top: 0.2rem;
    animation: pulse 2.5s infinite;
}

.diff-deschighlight {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-gold-light);
    line-height: 1.55;
    margin: 0;
}

.diff-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Creative pills / badge container */
.diff-pills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.diff-pill {
    background: rgba(197, 168, 92, 0.06);
    border: 1px solid rgba(197, 168, 92, 0.22);
    border-radius: 50px;
    padding: 0.5rem 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: #f8fafc;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.diff-pill:hover {
    background: rgba(197, 168, 92, 0.12);
    border-color: rgba(197, 168, 92, 0.45);
    transform: scale(1.05) translateY(-1px);
    box-shadow: 0 4px 15px rgba(197, 168, 92, 0.2);
}

.pill-spark {
    color: var(--color-gold);
    font-size: 0.7rem;
}

.diff-footer {
    border-top: 1px solid rgba(197, 168, 92, 0.12);
    padding-top: 1.5rem;
}

.key-line {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold-light);
    font-style: italic;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Sacred Cosmic Visual Art */
.sacred-art {
    position: relative;
    width: 280px; /* slightly smaller */
    height: 280px;
}

.circle-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(197, 168, 92, 0.12);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 { width: 100%; height: 100%; animation: rotateCenteredSlow 40s infinite linear; }
.orbit-2 { width: 75%; height: 75%; animation: rotateCenteredSlow 30s infinite linear reverse; border-style: dashed; }
.orbit-3 { width: 50%; height: 50%; }

.gold-seal-image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 82%;
    height: 82%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.gold-seal-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 0 20px rgba(197, 168, 92, 0.45)) drop-shadow(0 10px 30px rgba(0, 0, 0, 0.6));
    border: 1px solid rgba(197, 168, 92, 0.3);
    background: rgba(6, 11, 25, 0.4);
    animation: rotateSlow 35s infinite linear;
}

/* ---------------- Section 4: What You'll Learn (Light Theme) ---------------- */
.learn-section {
    padding: 4.5rem 0;
    background: radial-gradient(circle at 85% 15%, rgba(197, 168, 92, 0.05) 0%, transparent 45%),
                radial-gradient(circle at 15% 85%, rgba(14, 26, 90, 0.02) 0%, transparent 55%),
                var(--color-bg-light-alt);
    border-bottom: var(--border-light);
    position: relative;
    overflow: hidden;
}

/* Background watermarks for learn section */
.learn-watermark {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.lm-left {
    top: 6%;
    left: -3%;
}

.lm-right {
    bottom: 6%;
    right: -3%;
}

/* Light theme text overrides for learn section */
.learn-section .section-tag {
    color: var(--color-gold-dark);
}

.learn-section .section-title {
    color: var(--color-text-light-primary);
    font-size: 2.3rem; /* balanced heading size */
    margin-bottom: 1.25rem;
}

.learn-section .learn-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(253, 248, 240, 0.75) 100%);
    border: 1px solid rgba(197, 168, 92, 0.18);
    box-shadow: 0 4px 15px rgba(120, 80, 20, 0.03), inset 0 1px 0 rgba(255,255,255,0.8);
    border-radius: 12px;
}

.learn-section .learn-card:hover {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(197, 168, 92, 0.45);
    box-shadow: 0 12px 30px rgba(120, 80, 20, 0.12);
}

.learn-section .learn-card h3 {
    color: var(--color-text-light-primary) !important;
}

.learn-section .learn-card p {
    color: var(--color-text-light-secondary) !important;
}

.learn-section .learn-footer .note {
    color: var(--color-gold-dark);
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; /* tighter gaps */
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.learn-card {
    background: var(--color-bg-card);
    border: var(--border-glass);
    border-radius: 12px;
    padding: 2.25rem 1.75rem 1.75rem; /* adjusted margins for top-right crest */
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: var(--card-shadow);
}

.learn-card:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: rgba(197, 168, 92, 0.35);
}

/* Floating top-right crest badge for card numbers */
.card-num {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(197, 168, 92, 0.3);
    background: rgba(197, 168, 92, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-gold-dark);
    transition: var(--transition-smooth);
    z-index: 5;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
}

.learn-card:hover .card-num {
    background: var(--gradient-gold);
    color: #09090c;
    border-color: transparent;
    transform: rotate(360deg);
    box-shadow: 0 0 12px rgba(197, 168, 92, 0.4);
}

.learn-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.65rem;
    padding-right: 2rem; /* prevent overlap with card number */
    font-weight: 700;
    line-height: 1.4;
    font-family: var(--font-body);
}

.learn-card p {
    font-size: 0.88rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}



.learn-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.learn-footer .note {
    font-size: 0.85rem;
    color: var(--color-gold);
    letter-spacing: 0.05em;
}

/* ---------------- Section 5: Free Live Bonus ---------------- */
.bonus-section {
    padding: 7rem 0;
    background: var(--color-bg-deep);
    border-bottom: var(--border-glass);
    position: relative;
    overflow: hidden;
}

/* Floating background elements for Bonus */
.bonus-orb-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.6;
    z-index: 1;
}

.bg-orb-1 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(197, 168, 92, 0.14) 0%, transparent 70%);
    top: 5%;
    left: -5%;
}

.bg-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(14, 26, 90, 0.35) 0%, transparent 70%);
    bottom: -10%;
    right: -5%;
}

.bonus-shape {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.7;
}

.bs-shape-1 {
    top: 12%;
    left: 4%;
    animation: floatShape1 28s infinite linear;
}

.bs-shape-2 {
    bottom: 8%;
    right: 6%;
    animation: floatShape2 35s infinite linear;
}

.bonus-star {
    position: absolute;
    color: var(--color-gold-light);
    font-size: 0.9rem;
    opacity: 0.18;
    pointer-events: none;
    z-index: 1;
    animation: pulse 3.5s infinite ease-in-out;
}

.b-star-1 {
    top: 15%;
    left: 45%;
    animation-delay: 0.3s;
}

.b-star-2 {
    top: 38%;
    right: 22%;
    animation-delay: 1.8s;
}

.b-star-3 {
    bottom: 28%;
    left: 14%;
    animation-delay: 0.9s;
}

.b-star-4 {
    bottom: 12%;
    left: 55%;
    animation-delay: 2.5s;
}

.bonus-wrapper {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    grid-template-rows: auto auto;
    gap: 0.5rem 5rem;
    grid-template-areas:
        "image heading"
        "image content";
    align-items: center;
}

.bonus-image-side {
    grid-area: image;
    display: flex;
    justify-content: center;
}

.bonus-heading-group {
    grid-area: heading;
}

.bonus-content-group {
    grid-area: content;
}

.ebook-container {
    position: relative;
    width: 100%;
    max-width: 320px;
    perspective: 1000px;
    animation: float 6s infinite ease-in-out;
}

.ebook-glow {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(197, 168, 92, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(15px);
    z-index: -1;
}

.ebook-img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(197, 168, 92, 0.15);
    display: block;
    transition: var(--transition-smooth);
}

.ebook-img:hover {
    transform: rotateY(-5deg) rotateX(5deg);
}

.badge-bonus {
    display: inline-block;
    background: var(--gradient-gold);
    color: #0b0f19;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.ebook-title {
    font-size: 1.8rem;
    color: var(--color-gold-light);
    margin: 0.75rem 0 1.5rem;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.bonus-desc {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    margin-bottom: 1.75rem;
}

.bonus-important-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(197, 168, 92, 0.08);
    border: 1px solid rgba(197, 168, 92, 0.2);
    border-radius: 6px;
    padding: 1rem;
    
}

.bonus-important-box p {
    font-size: 0.88rem;
    color: var(--color-text-secondary);
}

/* ---------------- Section 6: About Jaya (Light Theme) ---------------- */
.about-section {
    padding: 6.5rem 0;
    background: radial-gradient(circle at 10% 10%, rgba(197, 168, 92, 0.04) 0%, transparent 40%),
                var(--color-bg-light);
    border-bottom: var(--border-light);
    position: relative;
    overflow: hidden;
}

/* Light theme text overrides for about section */
.about-section .pre-header {
    color: var(--color-gold-dark);
}

.about-section .section-title,
.about-section h2 {
    color: var(--color-text-light-primary);
}

.about-section .about-text {
    color: var(--color-text-light-secondary);
}

.about-section strong {
    color: var(--color-text-light-primary) !important;
}

.about-section .stat-num {
    color: var(--color-text-light-primary);
}

.about-section .stat-lbl {
    color: var(--color-gold-dark);
}

.about-section .credibility-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(253, 248, 240, 0.6) 100%);
    border: 1px solid rgba(197, 168, 92, 0.18);
    box-shadow: 0 4px 15px rgba(120, 80, 20, 0.03), inset 0 1px 0 rgba(255,255,255,0.7);
}

.about-section .personal-line {
    color: var(--color-text-light-secondary);
    border-left-color: var(--color-gold-dark);
}

.about-section .quote-container {
    background: rgba(255, 255, 255, 0.8);
    border: var(--border-light);
    box-shadow: var(--card-shadow-light);
}

.about-section .quote-container blockquote {
    color: var(--color-text-light-primary);
}

.about-section .quote-container cite {
    color: var(--color-gold-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: auto auto;
    gap: 1.5rem 4.5rem;
    grid-template-areas:
        "heading visual"
        "content visual";
    align-items: center;
}

.about-heading-group {
    grid-area: heading;
}

.about-content-group {
    grid-area: content;
}

.about-text {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    line-height: 1.65;
}

.credibility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns for horizontal badges */
    gap: 1rem 1.25rem;
    margin: 2rem 0;
}

.credibility-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(253, 248, 240, 0.6) 100%);
    border: 1px solid rgba(197, 168, 92, 0.18);
    border-radius: 12px;
    padding: 0.85rem 1.15rem;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(120, 80, 20, 0.03), inset 0 1px 0 rgba(255,255,255,0.7);
    display: flex;
    flex-direction: row; /* horizontal profile badges */
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    text-align: left;
}

.credibility-item:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(197, 168, 92, 0.4);
    box-shadow: 0 10px 25px rgba(120, 80, 20, 0.08);
    background: rgba(255, 255, 255, 0.95);
}

.credibility-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(197, 168, 92, 0.05);
    border: 1px solid rgba(197, 168, 92, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.credibility-item:hover .credibility-icon {
    background: var(--gradient-gold);
    border-color: transparent;
    box-shadow: 0 0 10px rgba(197, 168, 92, 0.3);
}

.credibility-item:hover .credibility-icon svg {
    stroke: #09090c;
    transform: scale(1.05);
}

.credibility-icon svg {
    transition: var(--transition-smooth);
}

.stat-info-group {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-text-light-primary) !important;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.15rem;
}

.stat-lbl {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-gold-dark);
    font-weight: 600;
    line-height: 1.2;
}

.personal-line {
    max-width: 760px;
    margin: 3.5rem auto 0;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--color-text-light-secondary) !important;
    text-align: center;
    line-height: 1.75;
    position: relative;
    padding: 0 2.5rem;
}

.personal-line::before {
    content: '“';
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--color-gold-dark);
    opacity: 0.2;
    position: absolute;
    top: -1rem;
    left: 0;
    line-height: 1;
}

.personal-line::after {
    content: '”';
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--color-gold-dark);
    opacity: 0.2;
    position: absolute;
    bottom: -2.25rem;
    right: 0;
    line-height: 1;
}

/* Avatar Graphics side - Light Champagne Portal Card */
.about-visual-side {
    grid-area: visual;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-visual-side::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(197, 168, 92, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.guru-avatar-container {
    position: relative;
    width: 460px;
    height: 460px;
    z-index: 2;
}

.avatar-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(197, 168, 92, 0.35); /* high contrast gold rings */
    border-radius: 24px;
    transform: translate(-50%, -50%);
}

.avatar-ring.ring-1 { width: 106%; height: 106%; border-style: dashed; }
.avatar-ring.ring-2 { width: 112%; height: 112%; opacity: 0.65; }

.avatar-art {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(197, 168, 92, 0.25);
    background: rgba(6, 11, 25, 0.4);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 3px solid var(--color-gold);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.avatar-img:hover {
    transform: scale(1.04);
    filter: brightness(1.05);
}

/* Personal Quote Box */
.quote-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--color-bg-card);
    border: var(--border-glass);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    position: relative;
}

.quote-icon {
    margin: 0 auto 1.5rem;
    display: block;
}

.quote-container blockquote {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--color-text-primary);
    line-height: 1.4;
    margin-bottom: 1rem;
}

.quote-container cite {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold-light);
    font-style: normal;
    font-weight: 600;
}

/* ---------------- Section 7: Final Offer + FAQ ---------------- */
.offer-section {
    padding: 4rem 0;
    background: radial-gradient(circle at 50% 50%, rgba(197, 168, 92, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 10% 90%, rgba(14, 26, 90, 0.4) 0%, transparent 50%),
                var(--color-bg-deep);
    border-bottom: var(--border-glass);
    position: relative;
    overflow: hidden;
}

/* Floating background elements for Offer Section */
.offer-orb-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(85px);
    pointer-events: none;
    opacity: 0.55;
    z-index: 1;
}

.o-orb-1 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(197, 168, 92, 0.12) 0%, transparent 70%);
    top: 8%;
    right: -5%;
}

.o-orb-2 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(14, 26, 90, 0.3) 0%, transparent 70%);
    bottom: 5%;
    left: -5%;
}

.offer-shape {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.65;
}

.os-shape-1 {
    top: 15%;
    right: 6%;
    animation: floatShape1 26s infinite linear reverse;
}

.os-shape-2 {
    bottom: 15%;
    left: 8%;
    animation: floatShape2 32s infinite linear;
}

.offer-star {
    position: absolute;
    color: var(--color-gold-light);
    font-size: 0.85rem;
    opacity: 0.16;
    pointer-events: none;
    z-index: 1;
    animation: pulse 3s infinite ease-in-out;
}

.o-star-1 {
    top: 8%;
    left: 18%;
    animation-delay: 0.5s;
}

.o-star-2 {
    top: 35%;
    right: 15%;
    animation-delay: 2.1s;
}

.o-star-3 {
    bottom: 22%;
    left: 22%;
    animation-delay: 1.1s;
}

.o-star-4 {
    bottom: 8%;
    right: 45%;
    animation-delay: 2.8s;
}

.offer-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.offer-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(197, 168, 92, 0.28);
    border-radius: 20px;
    width: 100%;
    max-width: 560px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(197, 168, 92, 0.12);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.offer-card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 168, 92, 0.5);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.65), 0 0 50px rgba(197, 168, 92, 0.22);
}

.offer-card-header {
    background: linear-gradient(180deg, rgba(197, 168, 92, 0.12) 0%, rgba(197, 168, 92, 0.03) 100%);
    border-bottom: 1px solid rgba(197, 168, 92, 0.22);
    padding: 1.5rem 1.5rem;
    text-align: center;
}

.offer-card-header h3 {
    font-size: 1.35rem;
    color: var(--color-text-primary);
    margin-bottom: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.price-box {
    display: inline-flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.2rem;
    background: rgba(197, 168, 92, 0.08);
    border: 1px solid rgba(197, 168, 92, 0.3);
    padding: 0.3rem 1.4rem;
    border-radius: 50px;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

.price-box .currency {
    font-size: 1.4rem;
    color: var(--color-gold-light);
    font-weight: 700;
}

.price-box .amount {
    font-family: var(--font-heading);
    font-size: 3.3rem;
    font-weight: 700;
    color: var(--color-gold-light);
    line-height: 1;
    text-shadow: 0 0 15px rgba(197, 168, 92, 0.3);
}

.price-box .gst {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-left: 0.2rem;
}

.offer-card-body {
    padding: 1.8rem 1.8rem;
}

.offer-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.offer-details li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.45;
}

/* Custom design for no-replay warning row */
.offer-details li:has(.text-danger) {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.18);
    border-radius: 8px;
    padding: 0.6rem 0.85rem;
    margin: 0.25rem 0;
}

.offer-details li:has(.text-danger) .text-danger {
    color: #fca5a5 !important;
}

.offer-details li .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
}

.offer-cta-box {
    text-align: center;
}

.secure-checkout {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    margin-top: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* FAQ Accordion Section (Light Theme) */
.faq-section {
    padding: 5.5rem 0;
    background: radial-gradient(circle at 10% 85%, rgba(197, 168, 92, 0.04) 0%, transparent 40%),
                var(--color-bg-light);
    border-bottom: var(--border-light);
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-section .section-title {
    color: var(--color-text-light-primary) !important;
}

.faq-section strong {
    color: var(--color-text-light-primary) !important;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
    align-items: start;
}

@media (min-width: 769px) {
    .faq-list .faq-item:last-child {
        grid-column: span 2;
    }
}

.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(253, 248, 240, 0.65) 100%);
    border: 1px solid rgba(197, 168, 92, 0.2);
    border-left: 3.5px solid rgba(197, 168, 92, 0.45);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(120, 80, 20, 0.02), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.faq-item:hover {
    border-color: rgba(197, 168, 92, 0.42);
    border-left-color: rgba(197, 168, 92, 0.8);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 25px rgba(120, 80, 20, 0.07);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--color-text-light-primary) !important;
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 600;
    text-align: left;
    padding: 1.15rem 1.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
}

.faq-question .arrow {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--color-gold-dark);
    border-bottom: 2px solid var(--color-gold-dark);
    transform: rotate(45deg);
    transition: var(--transition-smooth);
    margin-left: 1rem;
    flex-shrink: 0;
}

.faq-item.active {
    border-color: rgba(197, 168, 92, 0.45);
    border-left-color: var(--color-gold) !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(250, 240, 225, 0.4) 100%) !important;
    box-shadow: 0 8px 25px rgba(120, 80, 20, 0.08);
}

.faq-item.active .faq-question .arrow {
    transform: rotate(-135deg);
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}

.faq-answer p {
    padding: 0 1.6rem 1.15rem;
    font-size: 0.92rem;
    color: #281e0e !important;
    line-height: 1.6;
}

.faq-answer a {
    color: var(--color-gold-dark) !important;
    font-weight: 600;
    text-decoration: underline;
    background: none !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
    display: inline !important;
    animation: none !important;
}

.faq-answer a:hover {
    color: var(--color-text-light-primary) !important;
}

/* ---------------- Final CTA Strip Section (Dark Theme) ---------------- */
.final-strip-section {
    padding: 6rem 0;
    background: radial-gradient(circle at 50% 50%, rgba(197, 168, 92, 0.06) 0%, transparent 65%),
                var(--color-bg-deep);
    border-top: var(--border-glass);
    border-bottom: var(--border-glass);
    position: relative;
    overflow: hidden;
}

.final-strip-section h2 {
    color: #ffffff;
    font-size: 2.8rem;
    max-width: 800px;
    margin: 0 auto 1.25rem;
}

.final-strip-section .final-body {
    color: var(--color-text-secondary);
}

.final-strip-section .microcopy {
    color: var(--color-text-muted);
}

.final-strip-section .microcopy .bullet {
    color: var(--color-gold);
}

.final-body {
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

.justify-center {
    justify-content: center;
}

/* Footer Section */
.footer {
    padding: 2.5rem 0 8.5rem;
    background: #03060d;
}

.footer-logo {
    margin-bottom: 0.85rem;
    display: flex;
    justify-content: center;
}

.footer-logo-img {
    max-height: 48px;
    width: auto;
    object-fit: contain;
}

.footer-tagline {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

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

.copyright a {
    color: var(--color-gold-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.copyright a:hover {
    text-decoration: underline;
}

/* Sticky Bottom Bar CTA (Frosted Gold Capsule for Desktop) */
.floating-cta {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    z-index: 999;
    background: linear-gradient(135deg, rgba(6, 11, 25, 0.95) 0%, rgba(3, 6, 13, 0.98) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 168, 92, 0.35);
    border-radius: 100px;
    padding: 0.5rem 0.5rem 0.5rem 1.75rem;
    width: max-content;
    max-width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(197, 168, 92, 0.15);
    transform: translateX(-50%) translateY(180%);
    transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.45s;
    opacity: 0;
    pointer-events: none;
}

.floating-cta.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.floating-cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.floating-cta-info-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.floating-cta-timer {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(197, 168, 92, 0.08);
    border: 1px solid rgba(197, 168, 92, 0.2);
    padding: 0.35rem 0.85rem;
    border-radius: 30px;
    font-size: 0.8rem;
}

.cta-timer-label {
    color: var(--color-gold-light);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.cta-timer-values {
    display: flex;
    align-items: center;
    font-family: var(--font-body);
    font-weight: 700;
    color: #ffffff;
    gap: 0.1rem;
}

.cta-timer-num {
    color: #ffffff;
    min-width: 18px;
    text-align: center;
}

.cta-timer-unit {
    color: var(--color-gold-light);
    font-size: 0.7rem;
    margin-right: 0.15rem;
}

.cta-timer-sep {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    margin: 0 0.15rem;
}

.floating-cta-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-bullet {
    color: var(--color-gold);
    font-size: 0.8rem;
    animation: pulse 2.5s infinite;
}

.cta-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
}

.cta-price {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.cta-btn {
    padding: 0.6rem 1.5rem !important;
    font-size: 0.85rem !important;
    border-radius: 50px !important;
    margin: 0 !important;
}

/* ---------------- Responsive Styles (Mobile-First approach overrides) ---------------- */

/* Medium Devices (Tablets, 992px and down) */
@media (max-width: 992px) {
    /* Compact top bar — logo left, text hidden on very small or shown smaller */
    .top-bar-content {
        gap: 0.85rem;
        font-size: 0.6rem;
    }

    .top-logo-img {
        height: 26px;
    }
    .hero-split {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto auto auto auto auto;
        grid-template-areas:
            "badge"
            "title"
            "divider"
            "video"
            "schedule"
            "subtitle"
            "supporting"
            "cta";
        gap: 1.25rem;
        text-align: center;
    }
    
    .hero-badge,
    .hero-title,
    .hero-divider,
    .hero-subtitle,
    .hero-supporting,
    .hero-cta {
        justify-self: center;
        text-align: center;
    }
    
    .hero-cta {
        align-items: center;
    }

    .hero-title {
        font-size: 3rem;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .diff-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        grid-template-areas:
            "heading"
            "visual"
            "content";
        gap: 1.25rem;
    }
    
    .diff-heading-group {
        text-align: center;
    }
    
    .different-section .title-underline.left {
        margin: 1rem auto 1.25rem;
    }
    
    .diff-visual {
        grid-area: visual;
        margin: 0.25rem 0;
    }
    
    .diff-desc {
        margin-top: 0.5rem;
        margin-bottom: 1rem;
        font-size: 1rem;
    }
    
    .diff-deschighlight {
        font-size: 1.02rem;
    }
    
    .key-line {
        font-size: 1.25rem;
    }
    
    .diff-content-group {
        text-align: center;
    }
    
    .diff-callout {
        justify-content: center;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(197, 168, 92, 0.3);
        border-bottom: 1px solid rgba(197, 168, 92, 0.3);
        border-radius: 4px;
        padding: 0.85rem 1rem;
    }
    
    .diff-pills-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .diff-footer {
        padding-top: 1rem;
    }
    
    .diff-pill {
        display: flex;
        justify-content: center;
        text-align: center;
        font-size: 0.82rem;
        padding: 0.5rem 0.75rem;
    }
    
    .diff-pill:last-child {
        grid-column: span 2;
        justify-self: center;
        max-width: max-content;
        padding: 0.5rem 1.1rem;
    }
    
    .learn-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bonus-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        grid-template-areas:
            "heading"
            "image"
            "content";
        gap: 1.5rem;
        text-align: center;
    }
    
    .about-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        grid-template-areas:
            "heading"
            "visual"
            "content";
        gap: 1.5rem;
    }
    
    .about-heading-group {
        text-align: center;
    }
    
    .about-content-group {
        text-align: center;
    }
    
    .about-section .title-underline.left {
        margin: 1rem auto 1.5rem;
    }
    
    .about-visual-side {
        grid-area: visual;
        margin: 0.5rem 0;
    }
    
    .about-visual-side::before {
        width: 200px;
        height: 200px;
    }

    .guru-avatar-container {
        width: 240px;
        height: 240px;
    }
    
    .credibility-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .credibility-item {
        justify-content: center;
    }
}

/* Small Devices (Mobile, 768px and down) */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    .btn-lg {
        padding: 1rem 1rem !important;
        font-size: 0.88rem;
    }
    
    .problem-section {
        padding: 3rem 0 2rem;
    }
    
    .problem-intro-container {
        margin: 0 auto 1.5rem;
        padding: 1.25rem 1.75rem;
    }
    
    .intro-quote-left, .intro-quote-right {
        font-size: 2.25rem;
    }
    
    .problem-intro .highlight-text {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .problem-intro .bold-text {
        font-size: 1.05rem;
    }
    
    .problem-grid {
        margin-bottom: 2rem;
        gap: 0.75rem;
    }
    
    .problem-card {
        padding: 0.85rem 1.15rem;
        gap: 0.85rem;
        border-radius: 10px;
    }
    
    .card-icon {
        width: 36px;
        height: 36px;
    }
    
    .card-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .problem-card h3 {
        font-size: 0.92rem;
    }
    
    .mobile-break {
        display: inline;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }

    .about-section {
        padding: 3.5rem 0;
    }
    
    .different-section {
        padding: 3.5rem 0;
    }
    
    .sacred-art {
        width: 220px;
        height: 220px;
    }
    
    .credibility-grid {
        margin: 1.25rem 0;
        gap: 0.75rem;
    }
    
    .credibility-item {
        padding: 0.6rem 0.85rem;
        gap: 0.75rem;
        border-radius: 10px;
    }
    
    .credibility-icon {
        width: 34px;
        height: 34px;
    }
    
    .credibility-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .stat-num {
        font-size: 1.3rem;
    }
    
    .stat-lbl {
        font-size: 0.65rem;
        letter-spacing: 0.04em;
    }

    /* Mobile Responsive Bonus Section */
    .bonus-section {
        padding: 4rem 0;
    }
    
    .ebook-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .ebook-container {
        max-width: 240px;
        margin: 0 auto;
    }
    
    .bonus-shape, .bonus-star {
        display: none !important;
    }
    
    .bonus-desc {
        margin-bottom: 1.25rem;
    }
    
    .bonus-important-box {
        margin-bottom: 1.25rem;
        padding: 0.85rem 1rem;
    }
    
    .bonus-content-group .btn {
        margin-top: 1rem !important;
    }
    
    .hide-mobile {
        display: none !important;
    }
    
    .top-bar {
        padding: 0.5rem 0.8rem;
    }
    
    .top-bar-inner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.4rem;
        padding: 0.2rem 0;
    }
    
    .top-bar-logo {
        margin-right: 0;
        flex-shrink: 0;
    }
    
    .top-logo-img {
        height: 30px;
    }
    
    .top-bar-content {
        flex: none;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 0.3rem 1rem;
        flex-wrap: wrap;
        font-size: 0.68rem;
        letter-spacing: 0.08em;
    }
    
    .hero-section {
        padding: 2rem 0 2rem;
    }
    
    /* Hide heavy decorative background elements on mobile */
    .nebula,
    .floating-orb,
    .sacred-shape,
    .energy-ring,
    .gold-line,
    .hero-particle {
        display: none !important;
    }
    
    /* Keep stars but reduce opacity */
    .star {
        opacity: 0.3;
    }
    
    /* Tighten the hero grid gap so video appears close to heading */
    .hero-split {
        gap: 0.75rem;
    }
    
    .hero-badge {
        font-size: 0.68rem;
        padding: 0.35rem 0.85rem 0.35rem 0.6rem;
        margin-bottom: 0rem;
    }
    
    .hero-title, .hero-left .hero-title {
        font-size: 1.85rem;
        margin-bottom: 0rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-divider {
        margin: 0.25rem auto 0.75rem !important;
        width: 60%;
    }
    
    .hero-supporting {
        border: none;
        padding: 0;
        background: none;
        text-align: center;
        margin-bottom: 1.5rem;
        font-size: 0.88rem;
    }
    
    .hero-trust-strip {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.4rem 0.8rem;
    }
    
    .trust-item {
        font-size: 0.65rem;
        gap: 0.25rem;
        white-space: nowrap;
    }
    
    .trust-item svg {
        width: 11px;
        height: 11px;
    }
    
    .trust-sep {
        display: none !important;
    }
    
    /* Compact video on mobile */
    .hero-video-wrapper {
        animation: none;
    }
    
    .hero-video-frame {
        padding-top: 50%;
    }
    
    /* Compact schedule card on mobile */
    .schedule-card {
        padding: 0.85rem 1rem;
        text-align: center;
    }
    
    .schedule-header {
        gap: 0.65rem;
        margin-bottom: 0.75rem;
        justify-content: center;
    }
    
    .schedule-header svg {
        width: 20px;
        height: 20px;
    }
    
    .schedule-header-text h3 {
        font-size: 0.88rem;
    }
    
    .schedule-header-text p {
        font-size: 0.82rem;
        font-weight: 700;
    }
    
    .countdown-wrapper {
        padding: 0.65rem 0.75rem;
    }
    
    .countdown-title {
        font-size: 0.65rem;
        margin-bottom: 0.4rem;
    }
    
    .countdown-grid {
        gap: 0.4rem;
    }
    
    .countdown-time {
        font-size: 1.15rem;
    }
    
    .countdown-label {
        font-size: 0.55rem;
    }
    
    .decoder-card {
        padding: 1.5rem;
    }
    
    .section-tag {
        font-size: 0.78rem;
        letter-spacing: 0.12em;
    }

    .problem-section .section-title,
    .learn-section .section-title,
    .different-section .section-title,
    .about-section .section-title,
    .faq-section .section-title,
    .section-title {
        font-size: 1.65rem;
    }
    
    .problem-bridge {
        margin: 1.25rem auto 0;
        padding: 0.5rem 1rem 1rem;
    }
    
    .problem-bridge .mt-2 {
        margin-top: 1.25rem !important;
    }
    
    .bridge-highlight {
        font-size: 0.92rem;
    }
    
    .bridge-main {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }
    
    .learn-section {
        padding: 3rem 0;
    }
    
    .learn-grid {
        grid-template-columns: 1fr;
        gap: 1.15rem;
        margin-bottom: 1.75rem;
    }
    
    .learn-card {
        padding: 1.85rem 1.25rem 1.25rem;
    }

    .learn-card h3 {
        font-size: 1.12rem;
    }
    
    .learn-card p {
        font-size: 0.82rem;
        line-height: 1.5;
    }
    
    .learn-footer {
        gap: 0.85rem;
    }
    
    .learn-footer .mt-2 {
        margin-top: 0.75rem !important;
    }
    
    .credibility-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .personal-line {
        margin: 2rem auto 0;
        font-size: 1rem;
        padding: 0 1.75rem;
    }
    
    .personal-line::before {
        font-size: 2.25rem;
        top: -0.5rem;
        left: 0.25rem;
    }
    
    .personal-line::after {
        font-size: 2.25rem;
        bottom: -1rem;
        right: 0.25rem;
    }
    
    .quote-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0.85rem;
    }
    
    .quote-container {
        margin: 1.75rem auto 0 !important;
        padding: 1.5rem 1.25rem;
    }
    
    .quote-container blockquote {
        font-size: 1.35rem;
        margin-bottom: 0.65rem;
    }
    
    .offer-section {
        padding: 2.5rem 1rem 1.25rem;
    }
    
    .offer-wrapper {
        margin-bottom: 0.75rem;
    }
    
    .offer-card-header {
        padding: 1.25rem 1.25rem;
    }
    
    .offer-card-header h3 {
        font-size: 1.2rem;
        margin-bottom: 0.65rem;
    }
    
    .price-box .amount {
        font-size: 2.6rem;
    }
    
    .offer-card-body {
        padding: 1.25rem;
    }
    
    .offer-details {
        gap: 0.65rem;
        margin-bottom: 1.25rem;
    }
    
    .offer-details li {
        font-size: 0.88rem;
    }
    
    .offer-cta-box .btn {
        margin-top: 1rem !important;
        padding: 0.9rem 1.5rem !important;
        font-size: 0.88rem !important;
    }
    
    .secure-checkout {
        margin-top: 0.6rem;
    }
    
    .faq-section {
        padding: 2rem 1rem 3rem;
    }

    .faq-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }

    .faq-question {
        padding: 0.95rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .faq-answer p {
        padding: 0 1.2rem 0.95rem;
        font-size: 0.86rem;
    }
    
    .final-strip-section {
        padding: 4rem 1.25rem;
    }
    
    .final-strip-section h2 {
        font-size: 1.7rem;
        line-height: 1.35;
        margin-bottom: 1rem;
    }
    
    .final-body {
        font-size: 1rem;
        margin-bottom: 1.75rem;
        line-height: 1.5;
    }
    
    .final-strip-section .btn {
        padding: 1rem 1.5rem;
        font-size: 0.88rem;
        width: 100%;
        max-width: 400px;
        margin: 0.5rem auto 0.5rem;
        justify-content: center;
    }

    .microcopy {
        font-size: 0.72rem;
        gap: 0.4rem;
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        letter-spacing: 0.06em;
    }
    
    .floating-cta {
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        min-width: 100%;
        border-radius: 0;
        border: none;
        border-top: 1px solid rgba(197, 168, 92, 0.25);
        padding: 0.6rem 1rem;
        transform: translateY(120%);
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
    }
    
    .floating-cta.show {
        transform: translateY(0);
    }
    
    .floating-cta-container {
        flex-direction: column;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
    }
    
    .floating-cta-info-wrapper {
        width: 100%;
        justify-content: center;
    }
    
    .cta-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 0.75rem 1.5rem !important;
    }
    
    .hero-cta {
        margin-bottom: 2rem; /* Add padding for floating CTA spacing */
    }

    /* Responsive Footer for Mobile */
    .footer {
        padding: 2rem 1rem 6.5rem;
    }
    
    .footer-logo {
        margin-bottom: 0.65rem;
    }
    
    .footer-logo-img {
        max-height: 38px;
    }
    
    .footer-tagline {
        font-size: 0.78rem;
        margin-bottom: 1rem;
        letter-spacing: 0.08em;
        line-height: 1.4;
    }
    
    .copyright {
        font-size: 0.72rem;
        line-height: 1.5;
    }
}

/* Extra Small Devices (480px and down) */
@media (max-width: 480px) {
    .hero-title, .hero-left .hero-title {
        font-size: 1.6rem;
    }
    
    .btn-lg {
        padding: 0.9rem 0.6rem !important;
        font-size: 0.8rem;
    }
    
    .hero-section {
        padding: 2.25rem 0 2rem;
    }
    
    .hero-badge {
        font-size: 0.62rem;
        padding: 0.3rem 0.75rem 0.3rem 0.55rem;
    }
    
    .hero-subtitle {
        font-size: 0.88rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-divider {
        margin: 0.2rem auto 0.5rem !important;
        width: 55%;
    }
    
    .hero-supporting {
        font-size: 0.82rem;
        margin-bottom: 1.25rem;
    }
    
    .problem-section {
        padding: 2.5rem 0 1.5rem;
    }
    
    .problem-intro-container {
        margin: 0 auto 1.25rem;
        padding: 1rem 1.25rem;
    }
    
    .intro-quote-left, .intro-quote-right {
        font-size: 1.85rem;
    }
    
    .problem-intro .highlight-text {
        font-size: 0.88rem;
    }
    
    .problem-intro .bold-text {
        font-size: 1rem;
    }
    
    .problem-grid {
        margin-bottom: 1.5rem;
        gap: 0.65rem;
    }
    
    .problem-card {
        padding: 0.75rem 0.85rem;
        gap: 0.65rem;
    }
    
    .card-icon {
        width: 32px;
        height: 32px;
    }
    
    .card-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .problem-card h3 {
        font-size: 0.85rem;
    }
    
    .problem-bridge {
        margin: 1rem auto 0;
        padding: 0.5rem 0.5rem 0.75rem;
    }
    
    .problem-bridge .mt-2 {
        margin-top: 1rem !important;
    }
    
    .bridge-highlight {
        font-size: 0.85rem;
    }
    
    .bridge-main {
        font-size: 1.19rem;
        margin-bottom: 0.65rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .top-logo-img {
        height: 26px;
    }
    
    .top-bar-content {
        font-size: 0.64rem;
        gap: 0.4rem 0.65rem;
    }

    .about-section {
        padding: 2.5rem 0;
    }
    
    .different-section {
        padding: 2.5rem 0;
    }
    
    .diff-pill {
        font-size: 0.75rem;
        padding: 0.45rem 0.65rem;
    }
    
    .diff-desc {
        font-size: 0.95rem;
    }
    
    .diff-deschighlight {
        font-size: 0.98rem;
    }
    
    .key-line {
        font-size: 1.15rem;
    }
    
    .diff-pill:last-child {
        padding: 0.45rem 1rem;
    }
    
    .diff-pills-container {
        margin-bottom: 1.25rem;
    }
    
    .diff-footer {
        padding-top: 0.75rem;
    }
    
    .sacred-art {
        width: 190px;
        height: 190px;
    }
    
    .credibility-grid {
        margin: 1rem 0;
        gap: 0.65rem;
    }
    
    .credibility-item {
        padding: 0.55rem 0.75rem;
        gap: 0.65rem;
    }
    
    .credibility-icon {
        width: 30px;
        height: 30px;
    }
    
    .credibility-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .stat-num {
        font-size: 1.2rem;
    }

    .personal-line {
        margin: 1.5rem auto 0;
        font-size: 0.92rem;
        padding: 0 1.5rem;
    }
    
    .personal-line::before {
        font-size: 1.85rem;
        top: -0.4rem;
        left: 0.2rem;
    }
    
    .personal-line::after {
        font-size: 1.85rem;
        bottom: -0.85rem;
        right: 0.2rem;
    }
    
    .quote-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 0.75rem;
    }
    
    .quote-container {
        margin: 1.5rem auto 0 !important;
        padding: 1.25rem 1rem;
    }
    
    .quote-container blockquote {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    /* Extra Small Responsive Learn Section spacing */
    .learn-section {
        padding: 2.5rem 0;
    }
    
    .learn-section .section-tag {
        font-size: 0.72rem;
    }
    
    .problem-section .section-title,
    .learn-section .section-title,
    .different-section .section-title,
    .about-section .section-title,
    .faq-section .section-title,
    .section-title {
        font-size: 1.45rem;
    }
    
    .learn-grid {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .learn-card {
        padding: 1.65rem 1rem 1rem;
    }

    .learn-card h3 {
        font-size: 1.05rem;
    }
    
    .learn-card p {
        font-size: 0.78rem;
    }
    
    .learn-footer {
        gap: 0.75rem;
    }
    
    .learn-footer .mt-2 {
        margin-top: 0.5rem !important;
    }

    /* Extra Small Responsive Bonus Section spacing */
    .bonus-section {
        padding: 3rem 0;
    }
    
    .ebook-title {
        font-size: 1.25rem;
        margin-bottom: 0.85rem;
    }
    
    .ebook-container {
        max-width: 200px;
    }
    
    .bonus-desc {
        margin-bottom: 1rem;
    }
    
    .bonus-important-box {
        margin-bottom: 1rem;
        padding: 0.75rem 0.85rem;
    }
    
    .bonus-content-group .btn {
        margin-top: 0.85rem !important;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .input-wrapper {
        flex-direction: column;
    }
    
    .btn-decode {
        width: 100%;
        padding: 0.75rem 0;
    }
    
    .credibility-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Extra Small Responsive Footer for Phones */
    .footer {
        padding: 1.75rem 0.75rem 6rem;
    }
    
    .footer-logo-img {
        max-height: 32px;
    }
    
    .footer-tagline {
        font-size: 0.72rem;
        margin-bottom: 0.85rem;
        letter-spacing: 0.06em;
    }
    
    .copyright {
        font-size: 0.68rem;
    }

    /* Extra Small Responsive Final CTA Strip */
    .final-strip-section {
        padding: 3rem 1rem;
    }
    
    .final-strip-section h2 {
        font-size: 1.45rem;
    }
    
    .final-body {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .final-strip-section .btn {
        padding: 0.85rem 1.25rem;
        font-size: 0.8rem;
    }

    .microcopy {
        font-size: 0.64rem;
        gap: 0.3rem;
        margin-top: 0.85rem;
        letter-spacing: 0.04em;
    }

    /* Extra Small Responsive FAQ Accordion spacing */
    .faq-section {
        padding: 1.5rem 0.75rem 2.5rem;
    }
    
    .faq-list {
        gap: 0.65rem;
        margin-top: 1.25rem;
    }
    
    .faq-question {
        padding: 0.85rem 1rem;
        font-size: 0.88rem;
    }
    
    .faq-answer p {
        padding: 0 1rem 0.85rem;
        font-size: 0.84rem;
    }

    /* Extra Small Responsive Final Offer Spacing */
    .offer-section {
        padding: 2rem 0.75rem 1rem;
    }
    
    .offer-wrapper {
        margin-bottom: 0.5rem;
    }
    
    .offer-card-header {
        padding: 1rem 1rem;
    }
    
    .offer-card-header h3 {
        font-size: 1.08rem;
        margin-bottom: 0.5rem;
    }
    
    .price-box {
        padding: 0.2rem 1rem;
    }
    
    .price-box .amount {
        font-size: 2.2rem;
    }
    
    .price-box .currency {
        font-size: 1.15rem;
    }
    
    .offer-card-body {
        padding: 1rem;
    }
    
    .offer-details {
        gap: 0.55rem;
        margin-bottom: 1rem;
    }
    
    .offer-details li {
        font-size: 0.82rem;
    }
    
    .offer-cta-box .btn {
        margin-top: 0.85rem !important;
        padding: 0.8rem 1rem !important;
        font-size: 0.82rem !important;
    }
}

/* Animations for element entrance */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

/* Animation Delays */
.hero-title { animation-delay: 0.2s; }
.hero-subtitle { animation-delay: 0.4s; }
.hero-interactive { animation-delay: 0.6s; }
.hero-supporting { animation-delay: 0.7s; }
.hero-cta { animation-delay: 0.8s; }

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}