/* ===================================================================
   MACROEDGE LANDING PAGE DESIGN SYSTEM (INSPIRED BY REFERENCE IMAGE)
   Theme: High-Impact Dark Matrix / Brutalist Condensed Finance
   Colors: Pitch Black (#000000), Salmon/Terracotta (#D97757), Emerald (#10B981)
   Typography: Barlow Condensed, Anton, Plus Jakarta Sans, Space Mono
   =================================================================== */

:root {
    --bg-black: #000000;
    --bg-dark: #07080a;
    --bg-card: #0e1117;
    --bg-card-hover: #151922;
    --bg-card-border: rgba(255, 255, 255, 0.08);
    --bg-card-border-glow: rgba(217, 119, 87, 0.35);

    /* Exact Brand Accents */
    --accent-salmon: #D97757;        /* Exact match to the "WIN YOUR MONEY BACK" badge */
    --accent-salmon-hover: #E58767;
    --accent-salmon-light: rgba(217, 119, 87, 0.15);
    
    --accent-emerald: #00E676;       /* Matrix / Financial Green */
    --accent-emerald-dark: #059669;
    --accent-emerald-glow: rgba(0, 230, 118, 0.25);

    /* Text Colors */
    --text-white: #FFFFFF;
    --text-light: #F1F5F9;
    --text-muted: #94A3B8;
    --text-dim: #64748B;

    /* Fonts */
    --font-heading: 'Barlow Condensed', 'Anton', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'Space Mono', monospace;

    /* Spacing & Transitions */
    --transition-smooth: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --container-max: 1160px;
    --border-radius: 12px;
}

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

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

body.dark-theme {
    background-color: var(--bg-black);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Matrix & Binary Cyber Background */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    opacity: 0.04;
    background-image: 
        radial-gradient(rgba(0, 230, 118, 0.4) 1px, transparent 0),
        linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.95));
    background-size: 28px 28px, 100% 100%;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, .condensed-text {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-weight: 800;
}

.text-center { text-align: center; }
.text-emerald { color: var(--accent-emerald) !important; }
.text-salmon { color: var(--accent-salmon) !important; }
.text-white { color: var(--text-white) !important; }

/* ==================== BUTTONS & INTERACTIVE ==================== */
.btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-family: var(--font-body);
}

.btn-accent {
    background-color: var(--accent-salmon);
    color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(217, 119, 87, 0.35);
}

.btn-accent:hover {
    background-color: var(--accent-salmon-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(217, 119, 87, 0.55);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.9rem;
    border-radius: 6px;
}

.btn-xl {
    padding: 18px 36px;
    font-size: 1.25rem;
    font-weight: 800;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    letter-spacing: 0.02em;
}

.btn-subtext {
    font-size: 0.82rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 4px;
    text-transform: none;
}

.glow-effect {
    position: relative;
    overflow: hidden;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        60deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transform: rotate(30deg);
    animation: buttonShine 4s infinite;
}

@keyframes buttonShine {
    0% { transform: translateX(-100%) rotate(30deg); }
    30% { transform: translateX(100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}

/* ==================== TOP STICKY BAR ==================== */
.top-nav {
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 100;
    padding: 10px 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-white);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: var(--accent-emerald);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent-emerald);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.brand-tag {
    font-size: 0.75rem;
    background: var(--accent-salmon);
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 700;
    vertical-align: middle;
}

.nav-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.timer-countdown {
    font-family: var(--font-mono);
    color: var(--accent-salmon);
    font-weight: 700;
    font-size: 1.05rem;
    background: rgba(217, 119, 87, 0.12);
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(217, 119, 87, 0.3);
}

/* ==================== HERO SECTION (REFERENCE MATCH) ==================== */
.hero-section {
    padding: 60px 0 80px 0;
    text-align: center;
    position: relative;
}

/* Exactly matching the top badge from image */
.hero-top-badge-wrapper {
    margin-bottom: 20px;
}

.hero-top-badge {
    display: inline-block;
    background-color: var(--accent-salmon);
    color: #1a0b06;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.08em;
    padding: 6px 18px;
    text-transform: uppercase;
    border-radius: 2px;
    box-shadow: 0 2px 12px rgba(217, 119, 87, 0.4);
}

/* Uppercase subtitle tagline */
.hero-tagline {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    color: var(--text-white);
    text-transform: uppercase;
    margin-bottom: 25px;
}

/* Massive High-Impact Condensed Main Title */
.hero-main-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6.5vw, 5.8rem);
    font-weight: 900;
    line-height: 0.98;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 30px;
}

/* Sub-quote layout */
.hero-sub-quote {
    max-width: 860px;
    margin: 0 auto 40px auto;
}

.text-nowrap {
    white-space: nowrap;
}

.sub-target {
    font-size: 1.18rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 4px;
}

.sub-highlight-wrap {
    margin-top: 16px;
}

.sub-highlight-line1,
.sub-highlight-line2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.4;
}

.sub-highlight-line1 {
    font-style: normal;
}

.sub-highlight-line2 {
    font-style: normal;
    color: #FFFFFF;
}

/* Featured Video Player Frame */
.hero-video-container {
    max-width: 960px;
    margin: 0 auto 40px auto;
}

.video-card-frame {
    background: #080a0e;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 230, 118, 0.06);
}

.video-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: #0c0f16;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-white);
    font-weight: 700;
    letter-spacing: 0.05em;
    font-family: var(--font-mono);
}

.rec-dot {
    width: 10px;
    height: 10px;
    background: #FF3B30;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.timestamp-tag {
    background: rgba(0, 230, 118, 0.15);
    color: var(--accent-emerald);
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 700;
    font-family: var(--font-mono);
    font-size: 0.75rem;
}

.video-preview-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.video-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    transition: transform 0.5s ease;
}

.video-preview-wrapper:hover .video-thumb-img {
    transform: scale(1.03);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.6) 100%);
}

.video-center-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 2;
}

.play-btn-pulse {
    width: 80px;
    height: 80px;
    background: var(--accent-salmon);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 0 0 0 rgba(217, 119, 87, 0.7);
    animation: pulseRing 1.8s infinite;
    transition: transform 0.2s ease;
}

.play-btn-pulse svg {
    margin-left: 4px;
}

.video-preview-wrapper:hover .play-btn-pulse {
    transform: scale(1.1);
    background: var(--accent-salmon-hover);
}

@keyframes pulseRing {
    0% { box-shadow: 0 0 0 0 rgba(217, 119, 87, 0.7); }
    70% { box-shadow: 0 0 0 22px rgba(217, 119, 87, 0); }
    100% { box-shadow: 0 0 0 0 rgba(217, 119, 87, 0); }
}

.video-cta-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-white);
    letter-spacing: 0.03em;
    margin-bottom: 14px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.video-meta-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.tag-pill {
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.video-bottom-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    background: rgba(0,0,0,0.85);
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.85rem;
    color: var(--text-muted);
    z-index: 2;
}

/* Trust Bar */
.hero-trust-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 35px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.2);
}

/* ==================== COMMON SECTION HEADERS ==================== */
section {
    padding: 90px 0;
    position: relative;
}

.badge-mini {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    color: var(--text-white);
    line-height: 1.05;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 980px;
    margin: 0 auto 50px auto;
}

.text-nowrap-desktop {
    display: inline-block;
}

@media (min-width: 992px) {
    .text-nowrap-desktop {
        white-space: nowrap;
    }
}

/* ==================== STATS & PROOF SECTION ==================== */
.section-proof {
    background: #040507;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--border-radius);
    padding: 30px 24px;
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 6px;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}

.stat-detail {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Terminal Style Proof Box */
.proof-box {
    background: #0b0d13;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.proof-box-header {
    background: #121620;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.terminal-dot.red { background: #FF5F56; }
.terminal-dot.yellow { background: #FFBD2E; }
.terminal-dot.green { background: #27C93F; }

.terminal-title {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-left: 10px;
    letter-spacing: 0.05em;
}

.proof-box-body {
    padding: 30px;
}

.proof-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.timeline-step {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px;
    padding: 18px 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--text-dim);
}

.timeline-step.highlight-step {
    background: rgba(217, 119, 87, 0.08);
    border-left: 4px solid var(--accent-salmon);
}

.step-date {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-muted);
}

.alert-date {
    color: var(--accent-salmon);
    font-size: 1.1rem;
}

.step-content h4 {
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 6px;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ==================== PAIN POINTS ==================== */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 35px;
}

.pain-card {
    background: #0a0c10;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    padding: 30px 24px;
    transition: var(--transition-smooth);
}

.pain-card:hover {
    border-color: rgba(217, 119, 87, 0.4);
    transform: translateY(-4px);
}

.pain-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.pain-title {
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 12px;
}

.pain-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.pain-summary-alert {
    background: rgba(255, 59, 48, 0.08);
    border: 1px solid rgba(255, 59, 48, 0.3);
    border-radius: 8px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.alert-icon {
    font-size: 2rem;
}

.alert-text {
    font-size: 1.05rem;
    color: #ffd2cf;
}

/* ==================== SOLUTION SECTION ==================== */
.section-solution {
    background: #050608;
}

.solution-box {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 40px;
    align-items: center;
    background: #090c12;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 50px 40px;
}

.solution-heading {
    font-size: clamp(1.8rem, 3vw, 2.65rem);
    color: var(--accent-emerald);
    line-height: 1.15;
    margin-bottom: 20px;
}

.solution-body {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.solution-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sol-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1rem;
    color: var(--text-light);
}

.check-icon {
    width: 24px;
    height: 24px;
    background: rgba(0, 230, 118, 0.15);
    color: var(--accent-emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Macro Diagram Visual (Perfect Geometric Golden Triangle) */
.macro-diagram {
    background: #0b0e15;
    border: 1px solid rgba(0, 230, 118, 0.25);
    border-radius: 16px;
    padding: 30px 20px 24px 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(0, 230, 118, 0.03);
}

.macro-diagram-title {
    margin-bottom: 25px;
}

.diagram-tag {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent-emerald);
    background: rgba(0, 230, 118, 0.1);
    padding: 3px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 6px;
}

.macro-diagram-title h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 0.04em;
    color: var(--text-white);
}

.macro-triangle-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 350px;
    margin: 0 auto;
}

/* SVG Triangle Geometry */
.triangle-svg-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.triangle-polygon-glow {
    fill: rgba(0, 230, 118, 0.025);
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 2;
    stroke-dasharray: 6 6;
}

.triangle-wire {
    stroke-width: 2;
    stroke-linecap: round;
}

.wire-1 {
    stroke: rgba(217, 119, 87, 0.45);
}

.wire-2 {
    stroke: rgba(0, 230, 118, 0.45);
}

.wire-3 {
    stroke: rgba(255, 189, 46, 0.45);
}

/* Symmetrical Node Blocks (All Exactly Equal Size) */
.node-box {
    position: absolute;
    width: 170px;
    height: 110px;
    background: #11151f;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.node-box:hover {
    transform: translateY(-4px);
    background: #161c28;
}

.node-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-color: rgba(217, 119, 87, 0.6);
    box-shadow: 0 8px 25px rgba(217, 119, 87, 0.15);
}

.node-top:hover {
    transform: translateX(-50%) translateY(-4px);
}

.node-left {
    bottom: 0;
    left: 0;
    border-color: rgba(255, 189, 46, 0.6);
    box-shadow: 0 8px 25px rgba(255, 189, 46, 0.12);
}

.node-right {
    bottom: 0;
    right: 0;
    border-color: rgba(0, 230, 118, 0.6);
    box-shadow: 0 8px 25px rgba(0, 230, 118, 0.15);
}

/* Icon Frame - 20%+ Larger & Crisp */
.node-icon-frame {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.node-icon-frame.icon-salmon {
    background: rgba(217, 119, 87, 0.15);
    border-color: var(--accent-salmon);
}

.node-icon-frame.icon-amber {
    background: rgba(255, 189, 46, 0.15);
    border-color: #FFBD2E;
}

.node-icon-frame.icon-emerald {
    background: rgba(0, 230, 118, 0.15);
    border-color: var(--accent-emerald);
}

.node-symbol {
    font-size: 1.85rem; /* ~25% larger, ultra clear */
    line-height: 1;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.6));
}

.node-sublabel {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--text-dim);
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 2px;
}

.node-title {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    color: var(--text-white);
    letter-spacing: 0.02em;
    line-height: 1.15;
    margin: 0;
}

/* Center Core Badge */
.node-center-core {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    background: #07090e;
    border: 2px solid var(--accent-emerald);
    padding: 7px 15px;
    border-radius: 24px;
    box-shadow: 0 0 25px rgba(0, 230, 118, 0.4);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.core-pulse-ring {
    width: 8px;
    height: 8px;
    background: var(--accent-emerald);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-emerald);
    animation: pulse 1.5s infinite;
}

.core-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 900;
    color: var(--accent-emerald);
    letter-spacing: 0.05em;
}

/* Responsive adjustment for Triangle */
@media (max-width: 540px) {
    .macro-triangle-container {
        height: 330px;
    }
    .node-box {
        width: 145px;
        height: 105px;
        padding: 10px 6px;
    }
    .node-icon-frame {
        width: 38px;
        height: 38px;
    }
    .node-symbol {
        font-size: 1.5rem;
    }
    .node-title {
        font-size: 0.85rem;
    }
    .node-center-core {
        padding: 5px 12px;
    }
    .core-title {
        font-size: 0.8rem;
    }
}

/* ==================== MODULES / CURRICULUM ==================== */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.module-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--border-radius);
    padding: 32px 28px;
    transition: var(--transition-smooth);
}

.module-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    background: var(--bg-card-hover);
}

.module-num {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-salmon);
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.module-title {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 18px;
    line-height: 1.2;
}

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

.module-list li {
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 20px;
}

.module-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-emerald);
    font-size: 1.2rem;
    line-height: 1;
}

/* ==================== INSTRUCTOR SECTION ==================== */
.section-instructor {
    background: #040507;
}

.instructor-card {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 50px;
    background: #090c12;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    align-items: center;
}

.instructor-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.instructor-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.exp-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--accent-salmon);
    color: var(--accent-salmon);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    text-align: center;
    padding: 8px 0;
    border-radius: 6px;
}

.instructor-name {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--text-white);
    margin-bottom: 6px;
}

.instructor-title {
    font-size: 1rem;
    color: var(--accent-salmon);
    font-weight: 600;
    margin-bottom: 20px;
}

.instructor-bio p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.65;
}

.instructor-quotes {
    margin-top: 20px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--accent-emerald);
    color: var(--text-white);
    font-size: 1.05rem;
}

/* ==================== TARGET AUDIENCE ==================== */
.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.audience-box {
    border-radius: var(--border-radius);
    padding: 36px 30px;
}

.audience-box.fit {
    background: rgba(0, 230, 118, 0.03);
    border: 1px solid rgba(0, 230, 118, 0.25);
}

.audience-box.unfit {
    background: rgba(255, 59, 48, 0.03);
    border: 1px solid rgba(255, 59, 48, 0.2);
}

.aud-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.aud-header h3 {
    font-size: 1.35rem;
    color: var(--text-white);
    letter-spacing: 0.02em;
}

.aud-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.aud-list li {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ==================== REAL FEEDBACK SCREENSHOTS GALLERY ==================== */
.feedback-screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 20px;
}

.feedback-img-card {
    background: #0d1017;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.feedback-img-card:hover {
    border-color: var(--accent-salmon);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(217, 119, 87, 0.18);
}

.feedback-img-wrap {
    position: relative;
    background: #151a24;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fb-screenshot {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.feedback-img-wrap:hover .fb-screenshot {
    transform: scale(1.02);
}

.fb-zoom-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.feedback-img-wrap:hover .fb-zoom-badge {
    background: var(--accent-salmon);
    color: #fff;
    border-color: var(--accent-salmon);
}

.feedback-card-footer {
    padding: 18px 20px;
    background: #090c12;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fb-student-tag {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--accent-salmon);
    letter-spacing: 0.03em;
}

.fb-highlight-quote {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
    font-style: italic;
}

/* Lightbox Modal */
.lightbox-dialog {
    max-width: 680px;
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: center;
}

.lightbox-content {
    position: relative;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-full-img {
    max-width: 100%;
    max-height: 82vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testi-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--border-radius);
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testi-card.highlight-testi {
    border-color: rgba(217, 119, 87, 0.4);
    background: #11141c;
}

.testi-stars {
    color: #FFB800;
    font-size: 1.1rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testi-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-salmon);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--font-heading);
}

.author-info b {
    display: block;
    color: var(--text-white);
    font-size: 0.95rem;
}

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

/* ==================== PRICING & 3 BONUSES (CORE CONVERSION) ==================== */
.section-pricing {
    background: #050609;
}

.pricing-card-wrapper {
    background: #090c12;
    border: 2px solid var(--accent-salmon);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(217, 119, 87, 0.15);
}

.pricing-badge-top {
    background: var(--accent-salmon);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    text-align: center;
    padding: 12px 20px;
    letter-spacing: 0.05em;
}

.pricing-content {
    padding: 50px 40px;
}

.pricing-title {
    font-size: clamp(1.75rem, 3.1vw, 2.75rem);
    color: var(--text-white);
    margin-bottom: 12px;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 980px;
    margin: 0 auto 35px auto;
    line-height: 1.6;
}

/* Price Box */
.price-display-box {
    background: #0f141f;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px auto;
}

.price-original {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 6px;
}

.price-original del {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: 8px;
}

.price-discounted {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.price-label {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 6vw, 4.8rem);
    font-weight: 900;
    color: var(--accent-salmon);
    line-height: 1;
}

.price-amount small {
    font-size: 2rem;
    font-weight: 700;
}

.price-vat {
    font-size: 0.95rem;
    color: var(--accent-emerald);
    font-weight: 600;
}

.price-save-tag {
    margin-top: 14px;
    display: inline-block;
    background: rgba(0, 230, 118, 0.12);
    color: var(--accent-emerald);
    border: 1px solid rgba(0, 230, 118, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
}

/* 3 Big Bonuses */
.bonuses-section {
    margin-bottom: 45px;
}

.bonuses-heading {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 24px;
    text-align: center;
}

.bonus-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 920px;
    margin: 0 auto;
}

.bonus-item {
    background: #0d1118;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 24px;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    align-items: flex-start;
}

.bonus-tag {
    background: var(--accent-salmon);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    padding: 6px 10px;
    text-align: center;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.bonus-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 6px;
}

.bonus-name {
    font-size: 1.25rem;
    color: var(--text-white);
    line-height: 1.3;
}

.bonus-val {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent-emerald);
    background: rgba(0, 230, 118, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.bonus-author {
    font-size: 0.9rem;
    color: var(--accent-salmon);
    font-weight: 600;
    margin-bottom: 6px;
}

.bonus-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Registration Form */
.checkout-form-container {
    background: #0f141f;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 35px 30px;
    max-width: 680px;
    margin: 0 auto;
}

.form-title {
    font-size: 1.3rem;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 24px;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

.form-group input {
    background: #07090e;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 14px 16px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: var(--transition-smooth);
    font-family: var(--font-body);
}

.form-group input:focus {
    border-color: var(--accent-salmon);
    box-shadow: 0 0 0 3px rgba(217, 119, 87, 0.2);
}

.order-summary-box {
    background: #07090e;
    border-radius: 8px;
    padding: 18px;
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.95rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
}

.summary-row.total-row {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--text-white);
}

.total-price {
    color: var(--accent-salmon);
    font-family: var(--font-heading);
    font-size: 1.4rem;
}

.btn-submit {
    background: var(--accent-salmon);
    color: #fff;
    padding: 18px;
    font-size: 1.25rem;
    margin-top: 10px;
    width: 100%;
}

.btn-submit:hover {
    background: var(--accent-salmon-hover);
}

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

/* ==================== 24H GUARANTEE SECTION ==================== */
.section-guarantee {
    background: #040507;
}

.guarantee-box {
    background: #0a0d14;
    border: 1px solid rgba(0, 230, 118, 0.3);
    border-radius: 16px;
    padding: 45px 40px;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 35px;
    align-items: center;
}

.badge-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(0, 230, 118, 0.1);
    border: 2px dashed var(--accent-emerald);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--accent-emerald);
    font-family: var(--font-heading);
    font-weight: 900;
    text-align: center;
}

.badge-circle span {
    font-size: 2.4rem;
    line-height: 1;
}

.badge-circle small {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.guarantee-title {
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    color: var(--accent-emerald);
    margin-bottom: 12px;
}

.guarantee-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.guarantee-action {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 16px;
    border-radius: 6px;
    border-left: 3px solid var(--accent-emerald);
    margin: 14px 0 !important;
}

.guarantee-strong {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-white);
    letter-spacing: 0.03em;
}

/* ==================== FAQ ACCORDION ==================== */
.faq-accordion {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

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

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-white);
    user-select: none;
}

.faq-toggle {
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--accent-salmon);
    transition: transform 0.25s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 20px 24px;
    display: none;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ==================== FINAL CTA ==================== */
.section-final-cta {
    background: radial-gradient(circle at center, rgba(217, 119, 87, 0.15) 0%, #000 70%);
    padding: 110px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.final-title {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    color: var(--text-white);
    line-height: 1.05;
    margin-bottom: 20px;
}

.final-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.final-btn-wrap {
    margin-bottom: 16px;
}

.final-guarantee-note {
    font-size: 0.9rem;
    color: var(--accent-emerald);
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: #030406;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 50px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand h3 {
    color: var(--text-white);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.copyright {
    margin-top: 14px;
    font-size: 0.8rem;
    color: var(--text-dim);
}

.footer-links p {
    margin-bottom: 6px;
}

/* ==================== MODALS ==================== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.open {
    display: flex !important;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.modal-dialog {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 880px;
    background: #0d1017;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
}

/* Simulated Player Modal Screen */
.simulated-player {
    background: #000;
    color: #fff;
}

.sim-player-header {
    background: #111520;
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-family: var(--font-mono);
}

.sim-tag { color: var(--accent-salmon); font-weight: 700; }
.sim-live { color: #FF3B30; font-weight: 700; }

.sim-player-screen {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.sim-chart-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.sim-screen-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.sim-alert-banner {
    background: rgba(255, 59, 48, 0.25);
    border: 1px solid #FF3B30;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    padding: 8px 18px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.sim-waveform {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 40px;
    margin-bottom: 16px;
}

.sim-waveform .bar {
    width: 6px;
    background: var(--accent-emerald);
    border-radius: 3px;
    animation: wave 1.2s infinite ease-in-out;
}

.sim-waveform .bar:nth-child(2) { animation-delay: 0.1s; height: 35px; }
.sim-waveform .bar:nth-child(3) { animation-delay: 0.2s; height: 25px; }
.sim-waveform .bar:nth-child(4) { animation-delay: 0.3s; height: 38px; }
.sim-waveform .bar:nth-child(5) { animation-delay: 0.4s; height: 20px; }
.sim-waveform .bar:nth-child(6) { animation-delay: 0.5s; height: 32px; }
.sim-waveform .bar:nth-child(7) { animation-delay: 0.6s; height: 18px; }
.sim-waveform .bar:nth-child(8) { animation-delay: 0.7s; height: 28px; }

@keyframes wave {
    0%, 100% { height: 10px; }
    50% { height: 38px; }
}

.sim-voice-text {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    font-style: italic;
}

.sim-player-controls {
    background: #0b0e14;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.sim-play-pause {
    background: var(--accent-salmon);
    border: none;
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
}

.sim-progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    overflow: hidden;
}

.sim-progress-filled {
    width: 35%;
    height: 100%;
    background: var(--accent-emerald);
}

.sim-time {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Success Modal */
.success-dialog {
    max-width: 520px;
    padding: 40px 30px;
    text-align: center;
}

.success-icon {
    font-size: 3.5rem;
    margin-bottom: 14px;
}

.success-title {
    font-size: 2.2rem;
    color: var(--accent-emerald);
    margin-bottom: 10px;
}

.success-msg {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.success-details {
    background: #07090e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 16px;
    text-align: left;
    margin-bottom: 20px;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.success-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ==================== FLOATING STICKY CTA BAR ==================== */
.floating-bar {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: rgba(10, 13, 19, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 12px 0;
    z-index: 99;
    transition: bottom 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.6);
}

.floating-bar.show {
    bottom: 0;
}

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

.floating-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.floating-title {
    font-weight: 700;
    color: var(--text-white);
    font-size: 0.95rem;
}

.floating-price del {
    color: var(--text-dim);
    margin-right: 6px;
    font-size: 0.9rem;
}

.floating-price b {
    color: var(--accent-salmon);
    font-family: var(--font-heading);
    font-size: 1.3rem;
}

/* ==================== RESPONSIVE BREAKPOINTS ==================== */
@media (max-width: 992px) {
    .stats-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .solution-box, .instructor-card {
        grid-template-columns: 1fr;
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .badge-circle {
        margin: 0 auto;
    }

    .timeline-step {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .bonus-item {
        grid-template-columns: 1fr;
    }

    .bonus-title-row {
        flex-direction: column;
    }
}

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

    .hero-tagline {
        font-size: 0.95rem;
    }

    .floating-info {
        display: none;
    }

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

    .nav-timer {
        display: none;
    }
}
