/* ============================================
   DramaBox - Landing Page Styles
   Indian Short Drama App
   FB Ad Compliant · Modern · Responsive
   ============================================ */

/* ============ CSS VARIABLES ============ */
:root {
    /* Primary Palette */
    --color-primary: #7c3aed;
    --color-primary-dark: #6d28d9;
    --color-primary-light: #a78bfa;
    --color-primary-glow: rgba(124, 58, 237, 0.35);

    /* Accent */
    --color-accent: #f97316;
    --color-accent-dark: #ea580c;
    --color-accent-light: #fdba74;

    /* Neutrals */
    --color-bg: #0f0b1a;
    --color-bg-alt: #1a1530;
    --color-bg-card: #1e1940;
    --color-bg-card-hover: #25204d;
    --color-surface: #2a2555;
    --color-border: #3d3770;
    --color-border-light: #4c4680;

    /* Text */
    --color-text: #f1f0f9;
    --color-text-secondary: #b4b0d0;
    --color-text-muted: #7e78a8;
    --color-heading: #ffffff;

    /* Semantic */
    --color-success: #4ade80;
    --color-warning: #fbbf24;
    --color-danger: #f87171;
    --color-info: #60a5fa;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #6366f1 100%);
    --gradient-accent: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
    --gradient-dark: linear-gradient(180deg, #0f0b1a 0%, #1a1540 50%, #0f0b1a 100%);
    --gradient-hero: linear-gradient(135deg, #1a0933 0%, #0f0b1a 30%, #0d1320 70%, #1a0933 100%);
    --gradient-card: linear-gradient(145deg, #1e1940 0%, #231d4a 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 30px var(--color-primary-glow);
    --shadow-glow-orange: 0 0 30px rgba(249, 115, 22, 0.3);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Layout */
    --header-height: 72px;
    --container-max: 1200px;
    --section-padding: 100px;
}

/* ============ RESET & BASE ============ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(ellipse 80% 60% at 50% -20%, rgba(124, 58, 237, 0.08), transparent),
        radial-gradient(ellipse 60% 50% at 80% 60%, rgba(249, 115, 22, 0.05), transparent),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(99, 102, 241, 0.04), transparent);
    pointer-events: none;
    z-index: -1;
}

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

a {
    color: var(--color-primary-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ============ CONTAINER ============ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ SECTION HEADER ============ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header__tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-header__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-header__desc {
    font-size: 17px;
    color: var(--color-text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

/* ============ HEADER / NAV ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.header.scrolled {
    background: rgba(15, 11, 26, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-heading);
    text-decoration: none;
}

.nav__logo i {
    font-size: 26px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav__logo span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
    transition: width var(--transition-base);
}

.nav__link:hover {
    color: var(--color-heading);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    padding: 8px 20px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    color: #fff !important;
    font-weight: 600;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-1px);
}

.nav__toggle {
    display: none;
    font-size: 22px;
    color: var(--color-heading);
}

/* ============ HERO SECTION ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--gradient-hero);
}

.hero__gradient {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(circle 600px at 20% 30%, rgba(124, 58, 237, 0.15), transparent),
        radial-gradient(circle 400px at 80% 70%, rgba(249, 115, 22, 0.1), transparent);
}

.hero__particles span {
    position: absolute;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.3);
    animation: float 8s infinite ease-in-out;
}

.hero__particles span:nth-child(1) { width: 6px; height: 6px; top: 20%; left: 10%; animation-delay: 0s; }
.hero__particles span:nth-child(2) { width: 4px; height: 4px; top: 60%; left: 80%; animation-delay: 1s; }
.hero__particles span:nth-child(3) { width: 8px; height: 8px; top: 30%; left: 70%; animation-delay: 2s; }
.hero__particles span:nth-child(4) { width: 5px; height: 5px; top: 80%; left: 20%; animation-delay: 3s; }
.hero__particles span:nth-child(5) { width: 3px; height: 3px; top: 50%; left: 40%; animation-delay: 4s; }
.hero__particles span:nth-child(6) { width: 7px; height: 7px; top: 15%; left: 50%; animation-delay: 5s; }
.hero__particles span:nth-child(7) { width: 4px; height: 4px; top: 70%; left: 60%; animation-delay: 6s; }
.hero__particles span:nth-child(8) { width: 6px; height: 6px; top: 40%; left: 30%; animation-delay: 7s; }

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-40px) scale(1.5); opacity: 0.7; }
}

.hero__content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-accent-light);
    margin-bottom: 24px;
}

.hero__badge i {
    color: var(--color-accent);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.5vw, 60px);
    font-weight: 900;
    color: var(--color-heading);
    line-height: 1.1;
    margin-bottom: 20px;
}

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

.hero__subtitle {
    font-size: 17px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero__stats {
    display: flex;
    gap: 40px;
    margin-bottom: 36px;
}

.hero__stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--color-heading);
    line-height: 1;
}

.hero__stat-label {
    display: block;
    font-size: 13px;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.hero__stat-label i {
    font-size: 12px;
    color: var(--color-warning);
}

.hero__cta-note {
    margin-top: 12px;
    font-size: 12px;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero__cta-note i {
    color: var(--color-success);
}

/* Hero Visual - Phone Mockup */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__phone-mockup {
    position: relative;
    z-index: 2;
}

.hero__phone-frame {
    width: 260px;
    height: 520px;
    background: linear-gradient(145deg, #2a2555, #1a1540);
    border-radius: 36px;
    border: 3px solid #3d3770;
    padding: 16px;
    box-shadow: var(--shadow-xl), 0 0 60px rgba(124, 58, 237, 0.2);
    position: relative;
    overflow: hidden;
}

.hero__phone-notch {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 24px;
    background: #0f0b1a;
    border-radius: 0 0 16px 16px;
    z-index: 3;
}

.hero__phone-screen {
    width: 100%;
    height: 100%;
    background: #0f0b1a;
    border-radius: 22px;
    overflow: hidden;
}

.hero__phone-content {
    padding: 40px 12px 12px;
}

.mockup-header {
    text-align: center;
    margin-bottom: 16px;
}

.mockup-logo {
    font-size: 16px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mockup-poster {
    height: 100px;
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    animation: pulse-glow 2s infinite;
}

.mockup-poster--1 {
    background: linear-gradient(135deg, #e11d48, #be123c);
    animation-delay: 0s;
}

.mockup-poster--2 {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    animation-delay: 0.3s;
    height: 80px;
}

.mockup-poster--3 {
    background: linear-gradient(135deg, #0891b2, #0e7490);
    animation-delay: 0.6s;
    height: 110px;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 8px rgba(124, 58, 237, 0.2); }
    50% { box-shadow: 0 0 16px rgba(124, 58, 237, 0.4); }
}

/* Floating Cards */
.hero__floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(30, 25, 64, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-heading);
    box-shadow: var(--shadow-md);
    animation: float-card 4s infinite ease-in-out;
    z-index: 3;
}

.hero__floating-card--1 {
    top: 10%;
    right: -10px;
    animation-delay: 0s;
}

.hero__floating-card--1 i {
    color: var(--color-warning);
    font-size: 18px;
}

.hero__floating-card--2 {
    bottom: 15%;
    left: -20px;
    animation-delay: 2s;
}

.hero__floating-card--2 i {
    font-size: 16px;
}

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

/* Hero Wave */
.hero__wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 1;
}

.hero__wave svg {
    width: 100%;
    height: 100px;
    fill: var(--color-bg);
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn--primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
}

.btn--primary:hover {
    box-shadow: 0 6px 30px rgba(124, 58, 237, 0.5);
    transform: translateY(-2px);
    color: #fff;
}

.btn--android {
    background: linear-gradient(135deg, #3ddc84 0%, #00c853 100%);
    color: #000;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(61, 220, 132, 0.25);
}

.btn--android:hover {
    box-shadow: 0 6px 30px rgba(61, 220, 132, 0.4);
    transform: translateY(-2px);
    color: #000;
}

.btn--android i {
    font-size: 22px;
}

.btn--large {
    padding: 18px 40px;
    font-size: 17px;
    border-radius: var(--radius-lg);
}

.btn--large small {
    display: block;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

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

.pulse-animation {
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 4px 20px rgba(61, 220, 132, 0.25); }
    50% { box-shadow: 0 4px 40px rgba(61, 220, 132, 0.5), 0 0 0 15px rgba(61, 220, 132, 0); }
}

/* ============ FEATURES SECTION ============ */
.features {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
    position: relative;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle 200px at 50% -20%, var(--card-glow, transparent), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-border-light);
    box-shadow: var(--shadow-lg);
    background: var(--color-bg-card-hover);
}

.feature-card__icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.feature-card__icon--purple {
    background: rgba(124, 58, 237, 0.15);
    color: #a78bfa;
    --card-glow: rgba(124, 58, 237, 0.08);
}

.feature-card__icon--pink {
    background: rgba(236, 72, 153, 0.15);
    color: #f472b6;
    --card-glow: rgba(236, 72, 153, 0.08);
}

.feature-card__icon--orange {
    background: rgba(249, 115, 22, 0.15);
    color: #fdba74;
    --card-glow: rgba(249, 115, 22, 0.08);
}

.feature-card__icon--blue {
    background: rgba(96, 165, 250, 0.15);
    color: #93c5fd;
    --card-glow: rgba(96, 165, 250, 0.08);
}

.feature-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.feature-card__text {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ============ SHOWS / TRENDING SECTION ============ */
.shows {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
    position: relative;
}

.shows__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.show-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
    cursor: pointer;
}

.show-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-border-light);
}

.show-card__poster {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.show-card__poster--1 { background: linear-gradient(135deg, #e11d48, #f43f5e, #fb7185); }
.show-card__poster--2 { background: linear-gradient(135deg, #1e40af, #2563eb, #60a5fa); }
.show-card__poster--3 { background: linear-gradient(135deg, #854d0e, #b45309, #d97706); }
.show-card__poster--4 { background: linear-gradient(135deg, #6d28d9, #8b5cf6, #a78bfa); }
.show-card__poster--5 { background: linear-gradient(135deg, #0f766e, #0d9488, #2dd4bf); }
.show-card__poster--6 { background: linear-gradient(135deg, #4c1d95, #6d28d9, #8b5cf6); }

.show-card__overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.show-card__overlay i {
    font-size: 40px;
    color: #fff;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.show-card:hover .show-card__overlay {
    opacity: 1;
}

.show-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.show-card__badge--hot {
    background: #e11d48;
    color: #fff;
}

.show-card__badge--new {
    background: #2563eb;
    color: #fff;
}

.show-card__badge--trending {
    background: #f97316;
    color: #fff;
}

.show-card__info {
    padding: 16px;
}

.show-card__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 6px;
}

.show-card__meta {
    font-size: 13px;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ============ HOW IT WORKS ============ */
.how-it-works {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
    position: relative;
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step__number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: var(--shadow-glow);
}

.step__icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
    position: relative;
}

.step__icon--purple { background: rgba(124, 58, 237, 0.12); color: #a78bfa; }
.step__icon--pink { background: rgba(236, 72, 153, 0.12); color: #f472b6; }
.step__icon--orange { background: rgba(249, 115, 22, 0.12); color: #fdba74; }

.step__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 8px;
}

.step__text {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.step__connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    flex-shrink: 0;
    width: 60px;
}

.step__connector i {
    font-size: 20px;
    color: var(--color-border-light);
}

/* ============ REVIEWS ============ */
.reviews {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
    position: relative;
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition-base);
}

.review-card:hover {
    border-color: var(--color-border-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.review-card__stars {
    margin-bottom: 14px;
}

.review-card__stars i {
    color: var(--color-warning);
    font-size: 16px;
    margin-right: 2px;
}

.review-card__text {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
}

.review-card__avatar--1 { background: linear-gradient(135deg, #7c3aed, #e11d48); }
.review-card__avatar--2 { background: linear-gradient(135deg, #2563eb, #0891b2); }
.review-card__avatar--3 { background: linear-gradient(135deg, #f97316, #e11d48); }

.review-card__author strong {
    display: block;
    font-size: 14px;
    color: var(--color-heading);
    font-weight: 600;
}

.review-card__author span {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* ============ DOWNLOAD CTA ============ */
.download {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
    position: relative;
}

.download__card {
    background: linear-gradient(135deg, #1a1540 0%, #231d4a 40%, #1e1940 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.download__card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1), transparent);
    border-radius: 50%;
}

.download__content {
    position: relative;
    z-index: 1;
}

.download__tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(61, 220, 132, 0.12);
    border: 1px solid rgba(61, 220, 132, 0.25);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: #4ade80;
    margin-bottom: 16px;
}

.download__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 16px;
}

.download__desc {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 500px;
}

.download__features {
    margin-bottom: 28px;
}

.download__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 10px;
}

.download__features li i {
    color: var(--color-success);
    font-size: 16px;
    flex-shrink: 0;
}

.download__buttons {
    margin-bottom: 16px;
}

.download__note {
    font-size: 12px;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.download__note a {
    color: var(--color-primary-light);
    text-decoration: underline;
}

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

.download__qr-code {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.download__qr span {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* Download Phone Stack */
.download__visual {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download__phone-stack {
    position: relative;
    width: 200px;
    height: 400px;
}

.download__phone {
    position: absolute;
    width: 200px;
    height: 400px;
    border-radius: 28px;
    border: 2px solid var(--color-border);
    overflow: hidden;
}

.download__phone--1 {
    background: linear-gradient(180deg, #1e1940, #0f0b1a);
    z-index: 2;
    left: 0;
}

.download__phone--1::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg,
        rgba(124, 58, 237, 0.2) 0%,
        rgba(99, 102, 241, 0.1) 30%,
        rgba(15, 11, 26, 0.9) 100%);
}

.download__phone--2 {
    background: linear-gradient(180deg, #231d4a, #1a1540);
    z-index: 1;
    left: 40px;
    top: 20px;
    transform: rotate(5deg);
    opacity: 0.6;
}

.download__phone--2::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg,
        rgba(249, 115, 22, 0.15) 0%,
        rgba(245, 158, 11, 0.08) 30%,
        rgba(15, 11, 26, 0.9) 100%);
}

/* ============ FAQ ============ */
.faq {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
    position: relative;
}

.faq__list {
    max-width: 700px;
    margin: 0 auto;
}

.faq__item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq__item:hover {
    border-color: var(--color-border-light);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-heading);
    text-align: left;
    transition: color var(--transition-fast);
}

.faq__question:hover {
    color: var(--color-primary-light);
}

.faq__question i {
    font-size: 14px;
    flex-shrink: 0;
    transition: transform var(--transition-base);
    color: var(--color-text-muted);
}

.faq__item.active .faq__question i {
    transform: rotate(45deg);
    color: var(--color-primary-light);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq__answer p {
    padding: 0 24px 18px;
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.faq__item.active .faq__answer {
    max-height: 300px;
}

/* ============ STICKY BAR ============ */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 11, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--color-border);
    padding: 12px 0;
    z-index: 999;
    transform: translateY(100%);
    transition: transform var(--transition-base);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.sticky-bar.visible {
    transform: translateY(0);
}

.sticky-bar__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sticky-bar__info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-bar__icon {
    font-size: 28px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sticky-bar__info strong {
    display: block;
    font-size: 15px;
    color: var(--color-heading);
    font-weight: 700;
}

.sticky-bar__info span {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* ============ FOOTER ============ */
.footer {
    padding: 60px 0 30px;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
}

.footer__main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 16px;
}

.footer__logo i {
    font-size: 24px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer__logo span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer__desc {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 320px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
    font-size: 16px;
}

.footer__social a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer__col h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 16px;
}

.footer__col ul li {
    margin-bottom: 10px;
}

.footer__col ul li a {
    font-size: 13px;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

.footer__col ul li a:hover {
    color: var(--color-primary-light);
}

.footer__bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.footer__bottom p {
    font-size: 13px;
    color: var(--color-text-muted);
}

.footer__disclaimer {
    margin-top: 8px;
    font-size: 11px !important;
    color: var(--color-text-muted) !important;
}

/* ============ MODALS ============ */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal__content {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-surface);
    color: var(--color-text);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast);
}

.modal__close:hover {
    background: var(--color-danger);
    color: #fff;
}

.modal__content h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 20px;
}

.modal__body h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-heading);
    margin-top: 20px;
    margin-bottom: 8px;
}

.modal__body p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.modal__content .btn {
    margin-top: 20px;
    width: 100%;
}

/* ============ TOAST ============ */
.toast {
    position: fixed;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    background: var(--color-success);
    color: #000;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3000;
    opacity: 0;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
    pointer-events: none;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ============ SCROLL TO TOP ============ */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    box-shadow: var(--shadow-glow);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all var(--transition-base);
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.5);
}

/* ============ ANIMATIONS ============ */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ============ RESPONSIVE ============ */

/* Desktop - Medium */
@media (max-width: 1200px) {
    .hero__content {
        gap: 40px;
    }
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .download__card {
        padding: 40px;
    }
}

/* Tablet */
@media (max-width: 968px) {
    :root {
        --section-padding: 70px;
    }

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

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__stats {
        justify-content: center;
    }

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

    .hero__visual {
        display: none;
    }

    .features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .shows__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .steps {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .step__connector {
        transform: rotate(90deg);
        width: auto;
        padding-top: 0;
    }

    .download__card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px 24px;
    }

    .download__desc {
        margin-left: auto;
        margin-right: auto;
    }

    .download__features {
        text-align: left;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .download__note {
        justify-content: center;
    }

    .download__qr {
        justify-content: center;
    }

    .download__visual {
        display: none;
    }

    .footer__main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__links {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-bg-card);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 24px;
        transition: right var(--transition-base);
        border-left: 1px solid var(--color-border);
        z-index: 1001;
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__toggle {
        display: block;
        z-index: 1002;
    }
}

/* Mobile */
@media (max-width: 640px) {
    :root {
        --section-padding: 50px;
    }

    .container {
        padding: 0 16px;
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + 40px);
        padding-bottom: 60px;
    }

    .hero__title {
        font-size: 30px;
    }

    .hero__subtitle {
        font-size: 15px;
    }

    .hero__stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .hero__stat-number {
        font-size: 22px;
    }

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

    .shows__grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }

    .download__card {
        padding: 24px 16px;
        border-radius: var(--radius-lg);
    }

    .download__title {
        font-size: 24px;
    }

    .download__features li {
        font-size: 13px;
    }

    .btn--large {
        width: 100%;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-header__title {
        font-size: 24px;
    }

    .sticky-bar__info span {
        display: none;
    }

    .sticky-bar__info strong {
        font-size: 13px;
    }

    .sticky-bar .btn--sm {
        padding: 8px 16px;
        font-size: 12px;
    }

    .footer__links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .modal__content {
        padding: 24px 16px;
    }
}
