/* ============================================
   Guilda do Hábito - Landing Page CSS
   Paleta: Dourado #FBBF24, Roxo #7C3AED, 
   Preto Azulado #050816, Superfície #111827
   ============================================ */

/* CSS Reset & Variables */
:root {
    /* Colors */
    --gold: #FBBF24;
    --gold-light: #FCD34D;
    --gold-dark: #D97706;
    --purple: #7C3AED;
    --purple-light: #A78BFA;
    --purple-dark: #5B21B6;
    --bg-dark: #050816;
    --surface: #111827;
    --surface-light: #1F2937;
    --success: #10B981;
    --error: #EF4444;
    --border: #4B5563;
    --text-primary: #FFFFFF;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;

    /* Typography */
    --font-title: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;

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

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

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 0 30px rgba(251, 191, 36, 0.3);
    --shadow-purple: 0 0 30px rgba(124, 58, 237, 0.3);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-title);
    font-weight: 600;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition-normal);
    background: transparent;
}

.header.scrolled {
    background: rgba(5, 8, 22, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

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

.btn-login {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg-dark) !important;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(80px + var(--space-3xl)) var(--space-lg) var(--space-3xl);
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at top right, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
        var(--bg-dark);
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(251, 191, 36, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--gold);
    margin-bottom: var(--space-lg);
    width: fit-content;
}

.hero-badge i {
    font-size: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg-dark);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: transparent;
    color: var(--text-primary);
    padding: var(--space-md) var(--space-xl);
    border: 2px solid var(--border);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
}

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

.stat-value {
    font-family: var(--font-title);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.phone-mockup {
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 0 0 3px rgba(251, 191, 36, 0.2),
        0 25px 50px -12px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--surface);
    border-radius: 32px;
    overflow: hidden;
}

.app-preview {
    padding: var(--space-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.preview-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border);
}

.preview-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.preview-info {
    flex: 1;
}

.preview-name {
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 4px;
}

.preview-xp-bar {
    width: 100%;
    height: 8px;
    background: var(--surface-light);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 4px;
}

.xp-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: var(--radius-full);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

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

.preview-missions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    flex: 1;
}

.mission-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--surface-light);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
}

.mission-item.completed {
    opacity: 0.8;
}

.mission-item.completed i {
    color: var(--success);
}

.mission-item.pending i {
    color: var(--text-muted);
}

.xp-reward {
    margin-left: auto;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.75rem;
}

.preview-streak {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--gold);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.float-badge {
    position: absolute;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.badge-xp {
    top: 15%;
    right: -10%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg-dark);
    animation-delay: 0s;
}

.badge-level {
    top: 40%;
    left: -15%;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
    color: white;
    animation-delay: 1s;
}

.badge-streak {
    bottom: 20%;
    right: -5%;
    background: linear-gradient(135deg, #EF4444 0%, #F97316 100%);
    color: white;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(3deg);
    }
}

/* ============================================
   Sections Common Styles
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Features Section
   ============================================ */
.features {
    padding: var(--space-3xl) 0;
    background:
        radial-gradient(ellipse at center, rgba(17, 24, 39, 0.8) 0%, transparent 70%),
        var(--bg-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    position: relative;
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.feature-card.featured {
    border-color: var(--gold);
    background: linear-gradient(145deg, var(--surface) 0%, rgba(251, 191, 36, 0.05) 100%);
}

.featured-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg-dark);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: var(--space-lg);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    font-size: 0.95rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: var(--space-sm);
}

.feature-list li i {
    color: var(--success);
    font-size: 0.75rem;
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works {
    padding: var(--space-3xl) 0;
    background: var(--surface);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(251, 191, 36, 0.1) 100%);
    border: 2px solid var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--purple-light);
    margin-bottom: var(--space-md);
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    font-family: var(--font-body);
}

.step p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.step-connector {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--purple) 100%);
    margin: 0 var(--space-md);
    opacity: 0.5;
}

/* ============================================
   XP Section
   ============================================ */
.xp-section {
    padding: var(--space-3xl) 0;
    background:
        radial-gradient(ellipse at bottom right, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        var(--bg-dark);
}

.xp-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.xp-text .section-tag {
    text-align: left;
}

.xp-text .section-title {
    text-align: left;
}

.xp-text p {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.titles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.title-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-normal);
}

.title-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.title-item:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.title-item.legendary {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-color: var(--gold);
}

.title-icon {
    font-size: 1.5rem;
}

.title-name {
    flex: 1;
    font-weight: 600;
    font-size: 0.9rem;
}

.title-xp {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
}

/* Level Card Visual */
.xp-visual {
    display: flex;
    justify-content: center;
}

.level-card {
    width: 280px;
    background: linear-gradient(145deg, var(--surface) 0%, var(--surface-light) 100%);
    border: 2px solid var(--gold);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.level-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.level-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 2rem;
    color: white;
    position: relative;
}

.level-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    font-family: var(--font-title);
}

.level-progress {
    margin-bottom: var(--space-md);
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: var(--surface-light);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--space-xs);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: var(--radius-full);
}

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

.level-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid var(--gold);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.achievements-preview {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.achievement {
    background: var(--surface-light);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
}

/* ============================================
   Screenshots Section
   ============================================ */
.screenshots-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.screenshots-carousel {
    display: flex;
    gap: var(--space-xl);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-2xl);
}

.screenshot-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slow);
}

.screenshot-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.screenshot-frame {
    width: 180px;
    height: 360px;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 25px;
    padding: 10px;
    box-shadow:
        0 0 0 2px rgba(251, 191, 36, 0.2),
        0 20px 40px -10px rgba(0, 0, 0, 0.6);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.screenshot-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.screenshot-item:hover .screenshot-frame {
    transform: translateY(-10px) scale(1.05);
    box-shadow:
        0 0 0 2px var(--gold),
        0 25px 50px -10px rgba(251, 191, 36, 0.3);
}

.screenshot-item:hover .screenshot-frame::before {
    opacity: 1;
}

.screenshot-content {
    width: 100%;
    height: 100%;
    background: var(--surface);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    position: relative;
    z-index: 1;
}

.screenshot-content p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.screenshot-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
    padding: var(--space-3xl) 0;
    background:
        radial-gradient(ellipse at top left, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
        var(--surface);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.testimonial-card {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    position: relative;
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateY(20px);
}

.testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.testimonial-card.featured-testimonial {
    border-color: var(--gold);
    background: linear-gradient(145deg, var(--bg-dark) 0%, rgba(251, 191, 36, 0.05) 100%);
    box-shadow: var(--shadow-gold);
}

.testimonial-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg-dark);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.testimonial-rating {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

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

.author-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

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

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(251, 191, 36, 0.3);
}

.faq-item.active {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.15);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: var(--space-lg);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question i {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease;
}

.faq-answer p {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ============================================
   Premium Section
   ============================================ */
.premium-section {
    padding: var(--space-3xl) 0;
}

.premium-card {
    background: linear-gradient(145deg, var(--surface) 0%, rgba(124, 58, 237, 0.1) 100%);
    border: 2px solid var(--purple);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    overflow: hidden;
}

.premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg-dark);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-weight: 600;
}

.premium-content h2 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.premium-content>p {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.premium-features {
    list-style: none;
}

.premium-features li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.premium-features li i {
    width: 40px;
    height: 40px;
    background: rgba(124, 58, 237, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-light);
}

.premium-features li span {
    font-size: 1rem;
}

.premium-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.crown-animation {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--bg-dark);
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 60px rgba(251, 191, 36, 0.4);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 60px rgba(251, 191, 36, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 80px rgba(251, 191, 36, 0.6);
    }
}

/* ============================================
   Download Section
   ============================================ */
.download-section {
    padding: var(--space-3xl) 0;
    text-align: center;
    background:
        radial-gradient(ellipse at center, rgba(251, 191, 36, 0.05) 0%, transparent 50%),
        var(--surface);
}

.download-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--space-md);
}

.download-content>p {
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.store-button {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--bg-dark);
    border: 2px solid var(--border);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition-normal);
}

.store-button:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.store-button i {
    font-size: 2rem;
    color: var(--gold);
}

.store-text {
    text-align: left;
}

.store-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.store-name {
    font-size: 1.25rem;
    font-weight: 600;
}

.download-decoration {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.3;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-dark);
    padding: var(--space-3xl) 0 var(--space-xl);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    font-family: var(--font-title);
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--space-lg);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: var(--space-md);
    font-family: var(--font-body);
    color: var(--gold);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: var(--space-sm);
}

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================
   Mobile Menu
   ============================================ */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(5, 8, 22, 0.98);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links li {
    margin-bottom: var(--space-xl);
}

.mobile-nav-links a {
    font-size: 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-title);
    transition: color var(--transition-fast);
}

.mobile-nav-links a:hover {
    color: var(--gold);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: calc(80px + var(--space-2xl)) var(--space-lg) var(--space-2xl);
    }

    .hero-content {
        align-items: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        margin-top: var(--space-2xl);
    }

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

    .xp-content {
        grid-template-columns: 1fr;
    }

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

    .xp-text .section-tag,
    .xp-text .section-title {
        text-align: center;
    }

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

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

    .footer-brand {
        margin-bottom: var(--space-xl);
    }

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

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

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

    .screenshots-carousel {
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

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

    .steps-container {
        flex-direction: column;
    }

    .step {
        max-width: 100%;
        margin-bottom: var(--space-xl);
    }

    .step-connector {
        width: 2px;
        height: 40px;
        margin: var(--space-md) 0;
    }

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

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

    .footer-column {
        margin-bottom: var(--space-lg);
    }

    .phone-mockup {
        width: 240px;
        height: 500px;
    }

    .floating-elements {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}