/* ============================================
   PODLOVIN — RETRO SYNTHWAVE THEME
   70s warmth meets 80s neon
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --sunset-orange: #FF6B35;
    --warm-gold: #FFB627;
    --hot-coral: #FF4365;
    --neon-pink: #FF2E97;
    --deep-purple: #1a0a2e;
    --mid-purple: #2d1b4e;
    --soft-purple: #4a2c6e;
    --neon-cyan: #00f0ff;
    --neon-green: #39FF14;
    --cream: #FFF8E7;
    --warm-white: #ffe8d6;
    --text-primary: #FFF8E7;
    --text-secondary: #c4a7d4;

    /* Typography */
    --font-display: 'Righteous', cursive;
    --font-body: 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
    --space-2xl: 8rem;

    /* Layout */
    --max-width: 1100px;
    --header-height: 68px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;

    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 100px;
}

html {
    scroll-behavior: smooth;
}

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

/* ============================================
   RETRO GRID BACKGROUND
   ============================================ */
.retro-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255,107,53,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,107,53,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Scanline overlay */
.retro-grid::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.05) 2px,
        rgba(0,0,0,0.05) 4px
    );
    pointer-events: none;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

section {
    position: relative;
    z-index: 1;
}

.section {
    padding: 100px 0;
}

/* ============================================
   HEADER
   ============================================ */
header,
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(26, 10, 46, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.15);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--cream);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark,
.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sunset-orange), var(--hot-coral), var(--neon-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
    animation: glow-pulse 3s ease-in-out infinite;
}

.logo-mark svg,
.logo-icon svg {
    width: 20px;
    height: 20px;
}

nav,
.nav-main {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav a,
.nav-main a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

nav a:hover,
.nav-main a:hover {
    color: var(--sunset-orange);
}

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    margin: 5px 0;
    transition: var(--transition-fast);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--sunset-orange), var(--hot-coral));
    color: white;
    box-shadow: 0 4px 24px rgba(255, 67, 101, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 32px rgba(255, 67, 101, 0.5);
    color: white;
}

.btn-secondary,
.btn-outline {
    background: transparent;
    color: var(--cream);
    border: 2px solid rgba(255, 232, 214, 0.3);
}

.btn-secondary:hover,
.btn-outline:hover {
    border-color: var(--sunset-orange);
    color: var(--sunset-orange);
}

.btn-accent,
.btn-neon {
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2), inset 0 0 15px rgba(0, 240, 255, 0.05);
}

.btn-accent:hover,
.btn-neon:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3), inset 0 0 30px rgba(0, 240, 255, 0.1);
    color: var(--neon-cyan);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: none;
}

.btn-ghost:hover {
    color: var(--sunset-orange);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-gold) 50%, var(--sunset-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--cream), var(--warm-white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h3 {
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 20px;
}

h4 {
    font-size: 1.15rem;
    color: var(--cream);
    margin-bottom: 12px;
}

p {
    margin-bottom: var(--space-md);
}

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

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

a {
    color: var(--sunset-orange);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--warm-gold);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,107,53,0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(255,67,101,0.1) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 20% 80%, rgba(0,240,255,0.05) 0%, transparent 50%);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--warm-gold);
    border: 1px solid rgba(255, 182, 39, 0.3);
    background: rgba(255, 182, 39, 0.08);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero sun decoration */
.hero-sun {
    width: 300px;
    height: 150px;
    margin: 48px auto 0;
    background: linear-gradient(
        to bottom,
        var(--sunset-orange) 0%,
        var(--hot-coral) 40%,
        var(--neon-pink) 70%,
        transparent 100%
    );
    border-radius: 300px 300px 0 0;
    position: relative;
    opacity: 0.15;
    overflow: hidden;
}

.hero-sun::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -20%;
    right: -20%;
    height: 80%;
    background:
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 8px,
            var(--deep-purple) 8px,
            var(--deep-purple) 14px
        );
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sunset-orange);
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 48px;
}

.section-alt,
.demo-section {
    background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(255,107,53,0.06) 0%, transparent 60%);
}

/* ============================================
   AUDIO DEMO
   ============================================ */
.demo-section {
    padding: 100px 0;
}

.demo-grid,
.audio-demos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.demo-card,
.audio-demo-set {
    background: rgba(45, 27, 78, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s;
}

.demo-card:hover,
.audio-demo-set:hover {
    border-color: rgba(255, 107, 53, 0.35);
    box-shadow: 0 8px 40px rgba(255, 107, 53, 0.1);
}

.demo-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.demo-card:nth-child(odd) .demo-card-label {
    color: var(--text-secondary);
}

.demo-card:nth-child(even) .demo-card-label {
    color: var(--sunset-orange);
}

.demo-card h4 {
    margin-bottom: 12px;
}

.demo-card audio,
.audio-demo-set audio {
    width: 100%;
    height: 40px;
    border-radius: var(--radius-md);
    margin-bottom: 8px;
}

.demo-note,
.audio-caption {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Audio demo alternate layout */
.audio-demo-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.audio-demo-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.audio-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--cream);
}

/* ============================================
   PROBLEM / SOLUTION
   ============================================ */
.problem-section {
    padding: 100px 0;
}

.comparison-grid,
.problem-solution {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-divider {
    width: 2px;
    height: 100%;
    min-height: 300px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--sunset-orange),
        transparent
    );
    position: relative;
    margin-top: 40px;
}

.comparison-divider::after {
    content: 'VS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--deep-purple);
    padding: 12px 8px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: var(--sunset-orange);
    letter-spacing: 2px;
}

.comparison-card {
    padding: 32px;
    border-radius: var(--radius-lg);
}

.comparison-card.old {
    background: rgba(255, 67, 101, 0.05);
    border: 1px solid rgba(255, 67, 101, 0.15);
}

.comparison-card.old h3,
.comparison-card.old h4 {
    color: var(--hot-coral);
}

.comparison-card.new {
    background: rgba(0, 240, 255, 0.03);
    border: 1px solid rgba(0, 240, 255, 0.15);
}

.comparison-card.new h3,
.comparison-card.new h4 {
    color: var(--neon-cyan);
}

.comparison-list,
.problem-list,
.solution-list {
    list-style: none;
}

.comparison-list li,
.problem-list li,
.solution-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.comparison-card.old .comparison-list li::before,
.problem-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--hot-coral);
    font-weight: 700;
}

.comparison-card.new .comparison-list li::before,
.solution-list li::before {
    content: '+';
    position: absolute;
    left: 2px;
    color: var(--neon-cyan);
    font-weight: 700;
    font-family: var(--font-mono);
}

/* ============================================
   HOW IT WORKS — STEPS
   ============================================ */
.how-section {
    padding: 100px 0;
    background: radial-gradient(ellipse 60% 40% at 30% 50%, rgba(0,240,255,0.04) 0%, transparent 50%);
}

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

.step-card,
.step {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    background: rgba(45, 27, 78, 0.4);
    border: 1px solid rgba(255, 232, 214, 0.06);
    position: relative;
    transition: all 0.3s;
}

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

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    background: linear-gradient(135deg, var(--sunset-orange), var(--warm-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.step-card p,
.step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   FEATURES
   ============================================ */
.features-section {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(45,27,78,0.6), rgba(26,10,46,0.8));
    border: 1px solid rgba(255, 232, 214, 0.06);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--sunset-orange), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover::before {
    opacity: 1;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.feature-card:nth-child(1) .feature-icon {
    background: rgba(255, 107, 53, 0.15);
    color: var(--sunset-orange);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.1);
}

.feature-card:nth-child(2) .feature-icon {
    background: rgba(0, 240, 255, 0.1);
    color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.feature-card:nth-child(3) .feature-icon {
    background: rgba(255, 182, 39, 0.12);
    color: var(--warm-gold);
    box-shadow: 0 0 20px rgba(255, 182, 39, 0.1);
}

.feature-card:nth-child(4) .feature-icon {
    background: rgba(255, 46, 151, 0.1);
    color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 46, 151, 0.1);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   MONEY SECTION
   ============================================ */
.money-section {
    padding: 100px 0;
    background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(255,182,39,0.05) 0%, transparent 60%);
}

.money-card {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(45, 27, 78, 0.5);
    border: 1px solid rgba(255, 182, 39, 0.2);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
}

.money-card .big-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(135deg, var(--warm-gold), var(--sunset-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin: 24px 0 8px;
}

.money-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 32px 0;
    text-align: left;
}

.money-col {
    padding: 20px;
    border-radius: 12px;
}

.money-col.them {
    background: rgba(255, 67, 101, 0.08);
    border: 1px solid rgba(255, 67, 101, 0.15);
}

.money-col.us {
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.15);
}

.money-col h4 {
    font-size: 0.9rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.money-col.them h4 { color: var(--hot-coral); }
.money-col.us h4 { color: var(--neon-cyan); }

.money-col p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
}

.money-col .amount {
    font-family: var(--font-mono);
    font-weight: 600;
}

.money-col.them .amount { color: var(--hot-coral); }
.money-col.us .amount { color: var(--neon-cyan); }

/* ============================================
   CODE BLOCK
   ============================================ */
.code-block {
    max-width: 650px;
    margin: 0 auto;
    background: rgba(10, 5, 20, 0.8);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 12px;
    overflow: hidden;
}

.code-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 107, 53, 0.06);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.code-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.code-dot:nth-child(1) { background: var(--hot-coral); }
.code-dot:nth-child(2) { background: var(--warm-gold); }
.code-dot:nth-child(3) { background: var(--neon-green); }

.code-title {
    margin-left: 8px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.code-block pre {
    padding: 24px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    line-height: 1.8;
    overflow-x: auto;
    margin: 0;
}

.code-block .comment { color: #6a6a8a; }
.code-block .keyword { color: var(--neon-cyan); }
.code-block .string { color: var(--warm-gold); }
.code-block .key { color: var(--sunset-orange); }

/* ============================================
   PRICING
   ============================================ */
.pricing-section {
    padding: 100px 0;
}

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

.pricing-card {
    padding: 36px;
    border-radius: var(--radius-lg);
    background: rgba(45, 27, 78, 0.4);
    border: 1px solid rgba(255, 232, 214, 0.06);
    text-align: center;
    transition: all 0.3s;
}

.pricing-card.featured {
    border-color: var(--sunset-orange);
    background: rgba(255, 107, 53, 0.06);
    position: relative;
}

.pricing-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--sunset-orange), var(--hot-coral));
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 16px;
    border-radius: var(--radius-full);
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-tier {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.pricing-price,
.price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--cream);
    margin-bottom: 4px;
}

.pricing-unit {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}

.pricing-features li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pricing-features li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--sunset-orange);
    font-family: var(--font-mono);
    font-weight: 700;
}

/* Pricing table (alternate) */
.pricing-table {
    width: 100%;
    max-width: 800px;
    margin: var(--space-xl) auto;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    border-bottom: 1px solid rgba(255, 107, 53, 0.15);
}

.pricing-table th {
    background: rgba(45, 27, 78, 0.6);
    font-weight: 600;
    color: var(--cream);
}

.pricing-table tr:hover td {
    background: rgba(45, 27, 78, 0.4);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 120px 0;
    text-align: center;
    background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(255,107,53,0.08) 0%, transparent 60%);
}

.cta-section h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    margin-bottom: 16px;
}

.cta-section p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.cta-tagline {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--sunset-orange);
    margin-bottom: 40px;
}

/* ============================================
   FOOTER
   ============================================ */
footer,
.site-footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    z-index: 1;
    background: transparent;
}

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

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--sunset-orange);
}

.footer-copy,
.footer-legal {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
    color: var(--cream);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: var(--font-body);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-md);
    background: rgba(45, 27, 78, 0.6);
    color: var(--cream);
    transition: border-color var(--transition-fast);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-secondary);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--sunset-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Login box */
.login-box {
    max-width: 400px;
    margin: 0 auto;
    background: rgba(45, 27, 78, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.error-message {
    background: rgba(255, 67, 101, 0.1);
    border: 1px solid rgba(255, 67, 101, 0.3);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    color: var(--hot-coral);
    margin-bottom: var(--space-md);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes glow-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .demo-grid,
    .comparison-grid,
    .problem-solution,
    .features-grid,
    .money-comparison,
    .audio-demo-row {
        grid-template-columns: 1fr;
    }

    .steps-grid,
    .steps,
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .comparison-divider {
        display: none;
    }

    nav,
    .nav-main {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding-top: calc(var(--header-height) + var(--space-xl));
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .money-card {
        padding: 32px 24px;
    }

    .section,
    .demo-section,
    .problem-section,
    .how-section,
    .features-section,
    .money-section,
    .pricing-section {
        padding: var(--space-xl) 0;
    }

    .audio-demo-item {
        padding-bottom: var(--space-md);
        border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    }

    .audio-demo-item:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }
}
