/* ==========================================
   Grepolis - Divine Strategy MMO
   Premium Greek Mythology Aesthetic
   ========================================== */

:root {
    /* Primary Palette - Mediterranean Mythology */
    --midnight: #0a0f1a;
    --navy: #0d1829;
    --navy-light: #142238;
    --gold: #c9a227;
    --gold-light: #e4c65b;
    --gold-dark: #9a7b1a;
    --bronze: #b87333;
    --marble: #f5f2eb;
    --marble-dark: #e8e4d9;
    --terracotta: #c45c26;
    --wine: #722f37;
    --sea: #1e4d6b;
    --sea-light: #2a6a8f;

    /* Typography */
    --font-display: 'Cinzel', serif;
    --font-body: 'Cormorant Garamond', serif;

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

    /* Effects */
    --glow-gold: 0 0 40px rgba(201, 162, 39, 0.3);
    --shadow-deep: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --border-gold: 1px solid rgba(201, 162, 39, 0.3);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    background: var(--midnight);
    color: var(--marble);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
}

::selection {
    background: var(--gold);
    color: var(--midnight);
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

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

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

/* ==========================================
   Greek Decorative Elements
   ========================================== */

.greek-pattern {
    position: absolute;
    left: 0;
    right: 0;
    height: 20px;
    background-image:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 10px,
            rgba(201, 162, 39, 0.1) 10px,
            rgba(201, 162, 39, 0.1) 20px
        );
    opacity: 0.5;
}

.greek-pattern.top { top: 0; }
.greek-pattern.bottom { bottom: 0; transform: rotate(180deg); }

/* Laurel Wreath */
.laurel {
    width: 30px;
    height: 50px;
    position: relative;
}

.laurel::before,
.laurel::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 20px;
    border: 2px solid var(--gold);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.laurel.left::before { transform: rotate(-30deg); left: 5px; top: 0; }
.laurel.left::after { transform: rotate(-50deg); left: 0; top: 15px; }
.laurel.right::before { transform: rotate(30deg); right: 5px; top: 0; }
.laurel.right::after { transform: rotate(50deg); right: 0; top: 15px; }

/* ==========================================
   Cookie Banner
   ========================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-inner {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border: var(--border-gold);
    border-radius: 12px;
    padding: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    box-shadow: var(--shadow-deep);
}

.cookie-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    color: var(--gold);
}

.cookie-inner p {
    flex: 1;
    font-size: 0.95rem;
    color: var(--marble-dark);
}

.cookie-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--midnight);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}

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

.btn-outline {
    background: transparent;
    color: var(--marble-dark);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}

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

/* ==========================================
   Navigation
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--space-sm) 0;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: var(--border-gold);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo img {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 2px solid rgba(201, 162, 39, 0.3);
}

.logo span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--marble);
    letter-spacing: 0.1em;
}

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

.nav-links a {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--marble-dark);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--midnight) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 4px;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-gold);
    color: var(--midnight) !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

/* ==========================================
   Hero Section
   ========================================== */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: var(--space-xl) 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(30, 77, 107, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(114, 47, 55, 0.2) 0%, transparent 40%),
        linear-gradient(180deg, var(--midnight) 0%, var(--navy) 50%, var(--midnight) 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Divine Badge */
.divine-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    animation: pulse 2s ease-in-out infinite;
}

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

.badge-content {
    text-align: center;
    padding: 0 var(--space-sm);
}

.badge-amount {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
}

.badge-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
}

/* Hero Title */
.hero-title {
    margin-bottom: var(--space-md);
}

.title-pre {
    display: block;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-xs);
}

.title-main {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--marble) 0%, var(--gold-light) 50%, var(--marble) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--marble-dark);
    margin-bottom: var(--space-lg);
    max-width: 520px;
    line-height: 1.8;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: rgba(201, 162, 39, 0.05);
    border: var(--border-gold);
    border-radius: 8px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--marble-dark);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

/* Hero CTA */
.hero-cta {
    margin-bottom: var(--space-md);
}

.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(--midnight);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-gold), 0 10px 40px rgba(201, 162, 39, 0.4);
    color: var(--midnight);
}

.btn-primary.large {
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
}

/* Hero Badges */
.hero-badges {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.badge {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 20px;
    color: var(--marble-dark);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.phone-frame {
    position: relative;
    width: 280px;
    background: linear-gradient(145deg, #1a1f2e 0%, #0d111a 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        var(--shadow-deep),
        0 0 60px rgba(201, 162, 39, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.phone-notch {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

.phone-screen {
    border-radius: 30px;
    overflow: hidden;
    background: #000;
}

.phone-screen img {
    width: 100%;
    display: block;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    inset: -40px;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    font-size: 2rem;
    animation: float 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(201, 162, 39, 0.5);
}

.float-icon.zeus {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.float-icon.shield {
    bottom: 20%;
    left: 5%;
    animation-delay: 1s;
}

.float-icon.trident {
    top: 50%;
    right: 0;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeIn 1s ease 1s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.scroll-indicator span {
    display: block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.scroll-arrow {
    width: 20px;
    height: 30px;
    border: 2px solid var(--gold);
    border-radius: 10px;
    margin: 0 auto;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollBounce 1.5s ease infinite;
}

@keyframes scrollBounce {
    0%, 100% { top: 6px; opacity: 1; }
    50% { top: 14px; opacity: 0.5; }
}

/* ==========================================
   Business Model Section
   ========================================== */

.business-section {
    padding: var(--space-xl) 0;
    background: var(--navy);
    position: relative;
}

.business-card {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.05) 0%, transparent 100%);
    border: var(--border-gold);
    border-radius: 12px;
    padding: var(--space-lg);
    text-align: center;
}

.card-decoration {
    position: absolute;
    top: -10px;
    width: 60px;
    height: 60px;
    border: 2px solid var(--gold);
    opacity: 0.3;
}

.card-decoration.left {
    left: -10px;
    border-right: none;
    border-bottom: none;
}

.card-decoration.right {
    right: -10px;
    border-left: none;
    border-bottom: none;
}

.card-content h2 {
    font-size: 1.75rem;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.card-content p {
    font-size: 1.15rem;
    color: var(--marble-dark);
    line-height: 1.9;
}

.card-content p strong {
    color: var(--gold-light);
}

.card-content p.small {
    font-size: 0.9rem;
    margin-top: var(--space-sm);
    opacity: 0.7;
}

/* ==========================================
   Section Headers
   ========================================== */

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-header.light .section-title,
.section-header.light .section-subtitle {
    color: var(--marble);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--gold);
    border-radius: 30px;
    margin-bottom: var(--space-md);
}

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

.section-subtitle {
    font-size: 1.15rem;
    color: var(--marble-dark);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   Features Section
   ========================================== */

.features-section {
    padding: var(--space-xl) 0;
    background: var(--midnight);
    position: relative;
}

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

.feature-card {
    background: linear-gradient(145deg, var(--navy-light) 0%, var(--navy) 100%);
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 12px;
    padding: var(--space-lg);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    animation: cardReveal 0.6s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes cardReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), var(--glow-gold);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, transparent 100%);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 12px;
    margin-bottom: var(--space-md);
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--gold-light);
    margin-bottom: var(--space-sm);
}

.feature-card p {
    color: var(--marble-dark);
    font-size: 1rem;
    line-height: 1.7;
}

/* ==========================================
   Gods Section
   ========================================== */

.gods-section {
    padding: var(--space-xl) 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(201, 162, 39, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--navy) 0%, var(--midnight) 100%);
}

.gods-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.god-card {
    flex: 0 1 200px;
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    background: rgba(10, 15, 26, 0.5);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 12px;
    transition: var(--transition);
}

.god-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.05);
}

.god-symbol {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
    text-shadow: 0 0 30px rgba(201, 162, 39, 0.5);
}

.god-card h3 {
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: var(--space-xs);
}

.god-card p {
    font-size: 0.9rem;
    color: var(--marble-dark);
    line-height: 1.6;
}

/* ==========================================
   Gallery Section
   ========================================== */

.gallery-section {
    padding: var(--space-xl) 0;
    background: var(--midnight);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: var(--space-sm);
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(201, 162, 39, 0.1);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover {
    border-color: var(--gold);
    box-shadow: var(--glow-gold);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ==========================================
   Audience Section
   ========================================== */

.audience-section {
    padding: var(--space-xl) 0;
    background: var(--navy);
}

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

.audience-card {
    position: relative;
    padding: var(--space-lg);
    background: var(--navy-light);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.card-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.audience-card:hover .card-border {
    transform: scaleX(1);
}

.audience-card:hover {
    transform: translateY(-5px);
}

.audience-card h3 {
    font-size: 1.15rem;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.audience-card p {
    color: var(--marble-dark);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================
   Tips Section
   ========================================== */

.tips-section {
    padding: var(--space-xl) 0;
    background:
        radial-gradient(ellipse at 80% 50%, rgba(114, 47, 55, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, var(--midnight) 0%, var(--navy) 100%);
}

.tips-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.tip-card {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-md);
    background: rgba(20, 34, 56, 0.5);
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 8px;
    transition: var(--transition);
}

.tip-card:hover {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.05);
}

.tip-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 50%;
}

.tip-content h3 {
    font-size: 1.15rem;
    color: var(--marble);
    margin-bottom: var(--space-xs);
}

.tip-content p {
    color: var(--marble-dark);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================
   FAQ Section
   ========================================== */

.faq-section {
    padding: var(--space-xl) 0;
    background: var(--midnight);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-item {
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover,
.faq-item.active {
    border-color: var(--gold);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md);
    background: var(--navy-light);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question span {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--marble);
    text-align: left;
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--gold);
    transition: var(--transition);
}

.faq-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.faq-icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.faq-item.active .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 var(--space-md) var(--space-md);
    color: var(--marble-dark);
    line-height: 1.8;
    font-size: 1rem;
}

/* ==========================================
   Final CTA Section
   ========================================== */

.final-cta {
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(201, 162, 39, 0.2) 0%, transparent 60%),
        linear-gradient(180deg, var(--navy) 0%, var(--midnight) 100%);
}

.cta-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--marble);
    margin-bottom: var(--space-sm);
}

.cta-content > p {
    font-size: 1.25rem;
    color: var(--marble-dark);
    margin-bottom: var(--space-lg);
}

.cta-note {
    margin-top: var(--space-md);
    font-size: 0.9rem;
    color: var(--marble-dark);
    opacity: 0.7;
}

/* ==========================================
   Footer
   ========================================== */

.footer {
    background: var(--midnight);
    border-top: var(--border-gold);
    padding: var(--space-xl) 0 var(--space-lg);
}

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

.footer-brand {
    display: flex;
    gap: var(--space-md);
}

.footer-brand img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    border: 2px solid rgba(201, 162, 39, 0.3);
}

.footer-brand h3 {
    font-size: 1.25rem;
    color: var(--marble);
    margin-bottom: var(--space-xs);
}

.footer-brand p {
    color: var(--marble-dark);
    font-size: 0.9rem;
}

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

.link-group h4 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: var(--space-sm);
}

.link-group a {
    color: var(--marble-dark);
    font-size: 0.95rem;
    transition: var(--transition);
}

.link-group a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(201, 162, 39, 0.1);
}

.footer-bottom p {
    color: var(--marble-dark);
    font-size: 0.9rem;
}

.cookie-btn {
    background: transparent;
    border: 1px solid rgba(201, 162, 39, 0.3);
    color: var(--marble-dark);
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

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

/* ==========================================
   Responsive Design
   ========================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero-subtitle {
        margin: 0 auto var(--space-lg);
    }

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

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

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

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

    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: var(--space-md);
        border-bottom: var(--border-gold);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding-top: 120px;
    }

    .phone-frame {
        width: 240px;
    }

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

    .gods-grid {
        gap: var(--space-sm);
    }

    .god-card {
        flex: 0 1 150px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

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

    .tip-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --space-lg: 2.5rem;
        --space-xl: 4rem;
    }

    .title-main {
        font-size: 2rem;
    }

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

    .stat-divider {
        width: 60px;
        height: 1px;
    }

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

    .gods-grid {
        flex-direction: column;
        align-items: center;
    }

    .god-card {
        width: 100%;
        max-width: 300px;
    }
}
