/* ============================
   Jewel Ancient 3: Atlantis Gems
   Premium Landing Page Styles
   Atlantis Underwater Theme
   ============================ */

:root {
    /* Ocean Depths Color Palette */
    --ocean-deep: #0a1628;
    --ocean-mid: #0f2847;
    --ocean-light: #1a3a5c;
    --ocean-surface: #2d5a7b;

    /* Atlantis Gold Accents */
    --gold-primary: #d4a853;
    --gold-light: #f0d78c;
    --gold-dark: #a67c2a;

    /* Gem Colors */
    --gem-ruby: #e63946;
    --gem-sapphire: #4895ef;
    --gem-emerald: #2ec4b6;
    --gem-amethyst: #9b5de5;
    --gem-topaz: #ff9f1c;

    /* Neutrals */
    --white: #ffffff;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-20: rgba(255, 255, 255, 0.2);
    --white-10: rgba(255, 255, 255, 0.1);

    /* Backgrounds */
    --bg-primary: var(--ocean-deep);
    --bg-secondary: #0d1f35;
    --bg-card: rgba(15, 40, 71, 0.6);

    /* Typography */
    --font-display: 'Cinzel', serif;
    --font-accent: 'Cormorant Garamond', serif;
    --font-body: 'DM Sans', sans-serif;

    /* Spacing */
    --container-max: 1280px;
    --section-padding: 100px;
    --card-radius: 20px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
}

/* ============================
   Reset & Base
   ============================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--white-90);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================
   Cookie Banner
   ============================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ocean-mid);
    border-top: 1px solid var(--white-20);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform var(--transition-medium);
    backdrop-filter: blur(20px);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    color: var(--white-70);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-fast);
}

.cookie-btn.accept {
    background: var(--gold-primary);
    color: var(--ocean-deep);
}

.cookie-btn.accept:hover {
    background: var(--gold-light);
}

.cookie-btn.decline {
    background: var(--white-10);
    color: var(--white-90);
    border: 1px solid var(--white-20);
}

.cookie-btn.decline:hover {
    background: var(--white-20);
}

/* ============================
   Navigation
   ============================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: transparent;
    transition: var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--white-10);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--gold-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--white-70);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    padding: 10px 24px !important;
    border-radius: 8px;
    color: var(--ocean-deep) !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 168, 83, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    padding: 12px 0;
    font-size: 18px;
    color: var(--white-90);
    border-bottom: 1px solid var(--white-10);
}

/* ============================
   Hero Section
   ============================ */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(180deg, var(--ocean-deep) 0%, var(--ocean-mid) 50%, var(--ocean-light) 100%);
    overflow: hidden;
    padding: 120px 0 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Animated Bubbles */
.bubble {
    position: absolute;
    background: radial-gradient(circle at 30% 30%, var(--white-20), transparent);
    border-radius: 50%;
    animation: bubbleRise linear infinite;
}

.bubble-1 { width: 20px; height: 20px; left: 10%; bottom: -50px; animation-duration: 15s; animation-delay: 0s; }
.bubble-2 { width: 15px; height: 15px; left: 25%; bottom: -50px; animation-duration: 12s; animation-delay: 2s; }
.bubble-3 { width: 25px; height: 25px; left: 60%; bottom: -50px; animation-duration: 18s; animation-delay: 4s; }
.bubble-4 { width: 12px; height: 12px; left: 75%; bottom: -50px; animation-duration: 14s; animation-delay: 1s; }
.bubble-5 { width: 18px; height: 18px; left: 90%; bottom: -50px; animation-duration: 16s; animation-delay: 3s; }

@keyframes bubbleRise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-120vh) scale(0.5);
        opacity: 0;
    }
}

/* Light Rays */
.light-ray {
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(180deg, rgba(212, 168, 83, 0.1) 0%, transparent 70%);
    transform: skewX(-15deg);
    animation: rayPulse 8s ease-in-out infinite;
}

.ray-1 { left: 15%; animation-delay: 0s; }
.ray-2 { left: 45%; animation-delay: 2s; }
.ray-3 { left: 75%; animation-delay: 4s; }

@keyframes rayPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-container {
    position: relative;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 200px);
}

.hero-content {
    z-index: 2;
}

.bonus-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gem-topaz), var(--gold-primary));
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    color: var(--ocean-deep);
    margin-bottom: 24px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.bonus-icon {
    font-size: 18px;
}

.hero-title {
    margin-bottom: 24px;
}

.title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
}

.title-accent {
    display: block;
    font-family: var(--font-accent);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 500;
    font-style: italic;
    color: var(--gold-primary);
    margin-top: 8px;
}

.hero-description {
    font-size: 18px;
    color: var(--white-70);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 36px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold-primary);
}

.stat-label {
    font-size: 13px;
    color: var(--white-50);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--white-20);
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--gem-ruby), #c62836);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
    transition: var(--transition-medium);
    box-shadow: 0 8px 32px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(230, 57, 70, 0.4);
}

.btn-primary.large {
    padding: 20px 40px;
    font-size: 18px;
}

.play-icon {
    width: 24px;
    height: 24px;
}

.cta-note {
    font-size: 14px;
    color: var(--white-50);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white-10);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--white-70);
}

.badge-icon {
    font-size: 16px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    z-index: 2;
}

.phone-frame {
    position: relative;
    width: 280px;
    padding: 12px;
    background: linear-gradient(145deg, #1a1a2e, #0f0f1a);
    border-radius: 40px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.phone-screen {
    border-radius: 30px;
    overflow: hidden;
    background: #000;
}

.phone-screen img {
    width: 100%;
    height: auto;
}

.phone-glow {
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle at center, var(--gem-sapphire), transparent 60%);
    opacity: 0.3;
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.1); }
}

/* Floating Gems */
.floating-gems {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.gem {
    position: absolute;
    width: 40px;
    height: 40px;
    animation: gemFloat 6s ease-in-out infinite;
}

.gem::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.gem-1 { top: 10%; left: -20%; animation-delay: 0s; }
.gem-1::before { background: linear-gradient(135deg, var(--gem-ruby), #ff6b7a); }

.gem-2 { top: 60%; right: -15%; animation-delay: 2s; }
.gem-2::before { background: linear-gradient(135deg, var(--gem-sapphire), #7ab8ff); }

.gem-3 { bottom: 15%; left: -10%; animation-delay: 4s; }
.gem-3::before { background: linear-gradient(135deg, var(--gem-emerald), #5fe0d0); }

@keyframes gemFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 120px;
}

/* ============================
   Business Model Section
   ============================ */
.business-model {
    background: var(--bg-secondary);
    padding: 80px 0;
}

.model-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--bg-card), rgba(26, 58, 92, 0.4));
    border: 1px solid var(--white-10);
    border-radius: var(--card-radius);
    padding: 48px;
    text-align: center;
}

.model-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.model-card h2 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.model-card p {
    color: var(--white-70);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.bonus-highlight {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    padding: 20px 40px;
    border-radius: 16px;
    color: var(--ocean-deep);
}

.bonus-amount {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
}

.bonus-desc {
    font-size: 14px;
    font-weight: 600;
}

/* ============================
   Section Common Styles
   ============================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--gem-sapphire), var(--gem-amethyst));
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 18px;
    color: var(--white-50);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================
   Features Section
   ============================ */
.features {
    background: var(--bg-primary);
    padding: var(--section-padding) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--white-10);
    border-radius: var(--card-radius);
    padding: 36px;
    transition: var(--transition-medium);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--white-50);
    font-size: 15px;
    line-height: 1.7;
}

/* ============================
   Screenshots Gallery
   ============================ */
.screenshots {
    background: var(--bg-secondary);
    padding: var(--section-padding) 0;
}

.gallery-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-slide {
    flex: 0 0 280px;
    margin-right: 20px;
}

.gallery-slide img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--gold-primary);
    color: var(--ocean-deep);
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    transition: var(--transition-fast);
    z-index: 10;
}

.gallery-btn:hover {
    background: var(--gold-light);
    transform: translateY(-50%) scale(1.1);
}

.gallery-btn.prev { left: 20px; }
.gallery-btn.next { right: 20px; }

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--white-20);
    cursor: pointer;
    transition: var(--transition-fast);
}

.gallery-dot.active {
    background: var(--gold-primary);
    transform: scale(1.2);
}

/* ============================
   Audience Section
   ============================ */
.audience {
    background: var(--bg-primary);
    padding: var(--section-padding) 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.audience-card {
    background: linear-gradient(135deg, var(--ocean-mid), var(--ocean-light));
    border: 1px solid var(--white-10);
    border-radius: var(--card-radius);
    padding: 36px;
    text-align: center;
    transition: var(--transition-medium);
}

.audience-card:hover {
    transform: translateY(-5px);
}

.audience-emoji {
    font-size: 48px;
    margin-bottom: 16px;
}

.audience-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--gold-primary);
    margin-bottom: 12px;
}

.audience-card p {
    color: var(--white-70);
    font-size: 15px;
}

/* ============================
   Tips Section
   ============================ */
.tips {
    background: var(--bg-secondary);
    padding: var(--section-padding) 0;
}

.tips-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.tip-card {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--white-10);
    border-radius: var(--card-radius);
    padding: 28px;
    transition: var(--transition-medium);
}

.tip-card:hover {
    border-color: var(--gem-emerald);
}

.tip-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: var(--gem-emerald);
    opacity: 0.3;
    line-height: 1;
}

.tip-content h3 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 8px;
}

.tip-content p {
    font-size: 14px;
    color: var(--white-50);
    line-height: 1.6;
}

/* ============================
   Advantages Section
   ============================ */
.advantages {
    background: var(--bg-primary);
    padding: var(--section-padding) 0;
}

.advantages-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.advantages-text .section-tag {
    margin-bottom: 16px;
}

.advantages-text .section-title {
    text-align: left;
    margin-bottom: 32px;
}

.advantages-list {
    list-style: none;
}

.advantages-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--white-70);
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--gem-emerald);
    color: var(--ocean-deep);
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.advantages-visual img {
    border-radius: var(--card-radius);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

/* ============================
   FAQ Section
   ============================ */
.faq {
    background: var(--bg-secondary);
    padding: var(--section-padding) 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    background: var(--bg-card);
    border: 1px solid var(--white-10);
    border-radius: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    font-size: 17px;
    font-weight: 500;
    color: var(--white);
    text-align: left;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--gold-primary);
}

.faq-icon {
    font-size: 24px;
    color: var(--gold-primary);
    transition: var(--transition-fast);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--white-70);
    font-size: 15px;
    line-height: 1.7;
}

/* ============================
   CTA Section
   ============================ */
.cta-section {
    background: linear-gradient(135deg, var(--ocean-mid), var(--gem-sapphire));
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: var(--white-70);
    margin-bottom: 32px;
}

/* ============================
   Footer
   ============================ */
.footer {
    background: var(--ocean-deep);
    padding: 80px 0 40px;
    border-top: 1px solid var(--white-10);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    margin-bottom: 16px;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--gold-primary);
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--white-50);
    font-size: 14px;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: var(--white-50);
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-contact p {
    color: var(--white-50);
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--white-10);
}

.footer-bottom p {
    color: var(--white-50);
    font-size: 14px;
}

.cookie-settings {
    color: var(--white-50);
    font-size: 14px;
    text-decoration: underline;
}

.cookie-settings:hover {
    color: var(--gold-primary);
}

/* ============================
   Responsive Design
   ============================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 0;
        margin-bottom: 40px;
    }

    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .advantages-content {
        grid-template-columns: 1fr;
    }

    .advantages-text .section-title {
        text-align: center;
    }

    .advantages-visual {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .phone-frame {
        width: 220px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .gallery-slide {
        flex: 0 0 220px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
