/* ==========================================================================
   DESIGN SYSTEM & CUSTOM VARIABLES
   ========================================================================== */
:root {
    --bg-primary: #08101E;     /* Dark Navy Background */
    --bg-secondary: #0B1626;   /* Lighter navy for alt sections */
    --bg-card: rgba(19, 34, 56, 0.6); /* Glassmorphic card background */
    --accent-neon: #9CFF00;    /* Neon Green */
    --accent-neon-dim: rgba(156, 255, 0, 0.12);
    --accent-cyan: #00F0FF;    /* Electric Cyan */
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;  /* Slate Gray */
    --border-color: rgba(255, 255, 255, 0.05);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius-lg: 24px;
    --radius-md: 12px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    position: relative;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-neon {
    color: var(--accent-neon);
}

.py-120 {
    padding: 120px 0;
}

.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }
.max-w-600 { max-width: 600px; margin-left: auto; margin-right: auto; }
.max-w-800 { max-width: 800px; margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.relative { position: relative; }
.relative-z { position: relative; z-index: 2; }

/* ==========================================================================
   RADIAL GLOW BACKGROUNDS
   ========================================================================== */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}
.bg-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(156,255,0,0.1) 0%, rgba(0,0,0,0) 70%);
    top: -100px;
    right: -100px;
}
.bg-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,240,255,0.08) 0%, rgba(0,0,0,0) 70%);
    top: 600px;
    left: -200px;
}
.bg-glow-3 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(156,255,0,0.05) 0%, rgba(0,0,0,0) 75%);
    top: 1600px;
    right: -300px;
}
.bg-glow-closing {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(156,255,0,0.12) 0%, rgba(0,0,0,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-size: 16px;
    gap: 10px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 8px;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 18px;
}

.btn-glow {
    background-color: var(--accent-neon);
    color: #08101E;
    box-shadow: 0 0 20px rgba(156, 255, 0, 0.25);
}

.btn-glow:hover {
    background-color: #aeff1a;
    box-shadow: 0 0 30px rgba(156, 255, 0, 0.45);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.badge {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.badge-neon {
    background-color: var(--accent-neon-dim);
    color: var(--accent-neon);
    border: 1px solid rgba(156, 255, 0, 0.25);
}

.animate-pulse {
    animation: ctaPulse 2s infinite;
}

@keyframes ctaPulse {
    0% { box-shadow: 0 0 0 0 rgba(156, 255, 0, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(156, 255, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(156, 255, 0, 0); }
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(8, 16, 30, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    display: flex;
    align-items: center;
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-svg {
    width: 38px;
    height: 38px;
}

.logo-path {
    stroke-dashoffset: 0;
    animation: drawPath 4s infinite linear;
}

@keyframes drawPath {
    0% { stroke-dashoffset: 100; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -100; }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    color: var(--text-primary);
}

.logo-subtitle {
    font-size: 10px;
    color: var(--accent-cyan);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

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

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
.section-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

.bg-dark-alt {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* ==========================================================================
   SECTION 1: HERO
   ========================================================================== */
.hero-section {
    padding-top: 150px;
    padding-bottom: 90px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    text-align: center;
}

.hero-badges-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
    margin: 0 auto 32px auto;
    max-width: 600px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.hero-pricing-box {
    display: flex;
    justify-content: center;
    gap: 32px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 36px;
    margin: 0 auto 24px auto;
    max-width: 500px;
    width: 100%;
}

.pricing-tier {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price-lbl {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.price-val-slashed {
    font-size: 18px;
    text-decoration: line-through;
    color: var(--text-secondary);
    font-weight: 600;
}

.price-val-neon {
    font-size: 26px;
    font-weight: 800;
    color: var(--accent-neon);
    font-family: var(--font-heading);
    line-height: 1.1;
}

.hero-countdown-box {
    background-color: var(--accent-neon-dim);
    border: 1px dashed rgba(156, 255, 0, 0.25);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    margin: 0 auto 32px auto;
    max-width: 500px;
    width: 100%;
}

.countdown-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.countdown-timer-inline {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
}

.countdown-timer-inline strong {
    color: var(--accent-neon);
    font-size: 18px;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
}

.ai-orb-container {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-orb-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(0, 240, 255, 0.15);
}

.ring-1 {
    width: 100%;
    height: 100%;
    animation: rotateRing 20s infinite linear;
}

.ring-2 {
    width: 80%;
    height: 80%;
    border-color: rgba(156, 255, 0, 0.1);
    border-style: dotted;
    animation: rotateRingRev 15s infinite linear;
}

.ring-3 {
    width: 60%;
    height: 60%;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.02);
}

.ai-orb {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(156,255,0,0.15) 0%, rgba(8,16,30,0.8) 100%);
    border: 2px solid var(--accent-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--accent-neon);
    box-shadow: 0 0 30px rgba(156, 255, 0, 0.25);
    animation: floatOrb 6s infinite ease-in-out;
}

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

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

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

.floating-card {
    position: absolute;
    background-color: rgba(19, 34, 56, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    gap: 12px;
    align-items: center;
    animation: floatCard 8s infinite ease-in-out;
}

.stat-card {
    top: 40px;
    left: -10px;
    z-index: 10;
}

.task-card {
    bottom: 30px;
    right: -10px;
    width: 240px;
    flex-direction: column;
    align-items: flex-start;
    animation-delay: 2s;
}

.task-user {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
}

.avatar-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.avatar-dot.online {
    background-color: var(--accent-neon);
    box-shadow: 0 0 8px var(--accent-neon);
}

.task-desc {
    font-size: 11px;
    color: var(--text-secondary);
}

.stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background-color: var(--accent-neon-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

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

.stat-val {
    font-weight: 750;
    font-size: 14px;
}

.stat-lbl {
    font-size: 10px;
    color: var(--text-secondary);
}

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

/* ==========================================================================
   SECTION 2: PROBLEM (APAKAH ANDA PERNAH MENGALAMI INI?)
   ========================================================================== */
.problem-simple-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 840px;
    margin: 0 auto;
}

.problem-simple-card:last-child {
    grid-column: span 2;
    max-width: 408px;
    margin: 0 auto;
    width: 100%;
}

.problem-simple-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: left;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.problem-simple-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background-color: rgba(19, 34, 56, 0.75);
    transform: translateY(-2px);
}

.card-num-badge {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    color: var(--accent-neon);
    flex-shrink: 0;
}

.problem-simple-card p {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ==========================================================================
   SECTION 3: DALAM WEBINAR INI ANDA AKAN BELAJAR
   ========================================================================== */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.material-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    text-align: left;
    transition: var(--transition-smooth);
}

.material-card:hover {
    border-color: var(--accent-neon-dim);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.material-icon {
    font-size: 32px;
    margin-bottom: 20px;
}

.material-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.material-card p {
    color: var(--text-secondary);
    font-size: 13.5px;
    line-height: 1.6;
}

.workflow-sublist {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.workflow-sublist li {
    color: var(--text-secondary);
    font-size: 13.5px;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
    text-align: left;
}

.workflow-sublist li::before {
    content: "•";
    color: var(--accent-neon);
    font-size: 18px;
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
}

/* ==========================================================================
   SECTION 4: WEBINAR COCOK UNTUK
   ========================================================================== */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.audience-card-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.audience-card-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    transform: translateY(-3px);
}

.audience-card-item i {
    font-size: 24px;
    color: var(--accent-neon);
}

/* ==========================================================================
   SECTION 5: TESTIMONI VIDEO (9:16 aspect ratio)
   ========================================================================== */
.testi-video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 720px;
    margin: 0 auto;
}

.video-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition-smooth);
}

.video-card:hover {
    border-color: rgba(156, 255, 0, 0.3);
    box-shadow: 0 0 30px rgba(156, 255, 0, 0.08);
    transform: translateY(-4px);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 177.78%; /* 9:16 aspect ratio */
    border-radius: 16px;
    overflow: hidden;
    background-color: #060B14;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.video-wrapper iframe {
    position: absolute;
    top: -60px; /* Crop top title and channel avatar bar */
    left: 0;
    width: 100%;
    height: calc(100% + 120px); /* Adjust height to cover shifted space and crop bottom logo */
    border: 0;
}

.video-card-info {
    text-align: left;
    padding: 0 8px;
}

.video-card-info h4 {
    font-size: 16px;
    margin-bottom: 6px;
}

.video-card-info p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.animate-glow-soft {
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.02);
    border-color: rgba(0, 240, 255, 0.08);
}

/* ==========================================================================
   SECTION 6: WEBINAR DETAILS & COUNTDOWN (PROMO)
   ========================================================================== */
.webinar-box {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.animate-glow-green {
    box-shadow: 0 0 40px rgba(156, 255, 0, 0.03);
    border-color: rgba(156, 255, 0, 0.15);
}

.webinar-main-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.info-meta-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 30px;
}

.meta-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.meta-item i {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent-cyan);
}

.meta-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.meta-val {
    font-size: 16px;
    font-weight: 600;
}

.webinar-features-inline {
    display: flex;
    gap: 20px;
    font-size: 13.5px;
    color: var(--text-secondary);
}

.countdown-wrapper {
    background-color: rgba(8, 16, 30, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
}

.countdown-wrapper h3 {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(19, 34, 56, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 12px 6px;
}

.time-num {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-neon);
    line-height: 1;
    margin-bottom: 4px;
}

.time-lbl {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.pricing-cta-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.price-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.old-price {
    font-size: 16px;
    text-decoration: line-through;
    color: var(--text-secondary);
    white-space: nowrap;
}

.current-price {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-neon);
    white-space: nowrap;
}

/* ==========================================================================
   SECTION 7: FAQ (ACCORDION)
   ========================================================================== */
.faq-accordion-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    gap: 20px;
}

.faq-arrow {
    font-size: 14px;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    padding: 0 30px;
}

.faq-content p {
    padding-bottom: 24px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.faq-item.active {
    border-color: var(--accent-neon-dim);
    background-color: rgba(19, 34, 56, 0.85);
}

.faq-item.active .faq-content {
    max-height: 300px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--accent-neon);
}

/* ==========================================================================
   SECTION 8: CLOSING CTA
   ========================================================================== */
.closing-section {
    position: relative;
    border-top: 1px solid var(--border-color);
}

.font-large {
    font-size: 48px;
    line-height: 1.15;
}

.closing-pricing-stack {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.closing-current-price {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-neon);
    line-height: 1.2;
}

.price-no-wrap {
    white-space: nowrap;
}

.closing-cta-group {
    display: flex;
    justify-content: center;
}

/* ==========================================================================
   STICKY BOTTOM CTA MOBILE
   ========================================================================== */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(8, 16, 30, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(156, 255, 0, 0.3);
    padding: 12px 24px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none; /* Hidden by default on desktop */
    animation: slideUp 0.4s ease-out;
}

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

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

.sticky-bar-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.sticky-promo-title {
    font-size: 11px;
    color: var(--text-secondary);
}

.sticky-countdown {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-neon);
}

.sticky-bar-btn {
    padding: 10px 16px;
    font-size: 13px;
    flex-shrink: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    background-color: #060B14;
    font-size: 13px;
    color: var(--text-secondary);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-divider {
    opacity: 0.2;
}

.footer-link:hover {
    color: var(--accent-neon);
}

.footer-socials {
    display: flex;
    gap: 18px;
}

.footer-socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-socials a:hover {
    background-color: var(--accent-neon-dim);
    border-color: var(--accent-neon);
    color: var(--accent-neon);
    transform: translateY(-2px);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Large Tablets & Small Desktops (max-width: 1024px) */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        height: 350px;
        order: -1;
    }
    
    .webinar-box {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    .py-120 {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .logo-title {
        font-size: 13.5px;
    }
    
    .logo-subtitle {
        font-size: 9px;
    }
    
    .nav-links, .nav-cta {
        display: none; /* Hide nav links and navbar button on mobile since we have the sticky bottom CTA */
    }
    
    .hero-pricing-box {
        gap: 16px;
        padding: 12px 16px;
        flex-direction: row;
        justify-content: space-around;
        width: 100%;
    }
    
    .hero-countdown-box {
        padding: 12px 16px;
        width: 100%;
    }
    
    .countdown-timer-inline {
        font-size: 13.5px;
    }
    
    .countdown-timer-inline strong {
        font-size: 15.5px;
    }
    
    .problem-simple-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .problem-simple-card:last-child {
        grid-column: span 1 !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    .materials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .material-card {
        grid-column: span 1 !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    .get-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .get-card {
        grid-column: span 1 !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .audience-card-item {
        grid-column: span 1 !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        width: 100% !important;
    }
    
    .testi-video-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 100%;
        width: 100%;
        padding: 0 10px;
    }
    
    .video-card {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .webinar-box {
        grid-template-columns: 1fr;
        padding: 30px 16px;
        gap: 30px;
    }
    
    .countdown-wrapper {
        padding: 24px 12px !important;
    }
    
    .countdown-timer {
        gap: 8px;
    }
    
    .time-block {
        padding: 8px 4px;
    }
    
    .time-num {
        font-size: 24px;
    }
    
    .time-lbl {
        font-size: 8px;
    }
    
    .hero-cta-group .btn {
        width: 100%;
    }
    
    .closing-pricing-stack {
        flex-direction: column;
        gap: 10px;
    }
    
    .closing-current-price {
        font-size: 20px !important;
        text-align: center;
    }
    
    .font-large {
        font-size: 30px;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    /* Display sticky bottom bar */
    .sticky-bottom-bar {
        display: block;
    }
    
    body {
        padding-bottom: 74px;
    }
}
