/* ============================================
   JOCA - Landing Page Institucional
   Design System: Dark theme + Green accent
   ============================================ */

/* Design Tokens */
:root {
    --color-bg: #000000;
    --color-bg-dark: #111111;
    --color-bg-card: #0a0a0a;
    --color-text: #ffffff;
    --color-text-muted: #aaaaaa;
    --color-text-subtle: #777777;
    --color-accent: #00c767;
    --color-accent-dark: #128a3f;
    --color-accent-hover: #0f6b32;
    --color-accent-light: rgba(0, 199, 103, 0.1);
    --color-accent-glow: rgba(0, 199, 103, 0.15);
    --color-border: #222222;
    --color-border-hover: #333333;
    --color-overlay: rgba(0, 0, 0, 0.8);
    --color-white-5: rgba(255, 255, 255, 0.05);
    --color-white-8: rgba(255, 255, 255, 0.08);
    --color-white-10: rgba(255, 255, 255, 0.1);

    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3.25rem;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    --spacing-4xl: 8rem;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s ease;

    --container-max: 1200px;
    --container-narrow: 800px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

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

/* ============================================
   GRADIENT TEXT
   ============================================ */
.text-gradient {
    background: linear-gradient(135deg, #00c767 0%, #00e87b 40%, #7dffc0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   GLOBAL FLOATING PARTICLES
   ============================================ */
.global-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0) scale(0);
    }
    8% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        transform: translateY(-50vh) translateX(var(--drift-x, 20px));
    }
    92% {
        opacity: 0.1;
    }
    100% {
        opacity: 0;
        transform: translateY(-110vh) translateX(var(--drift-x, 20px)) scale(0.5);
    }
}

/* ============================================
   LOADING SCREEN
   ============================================ */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-screen .loading-text {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    transition: background var(--transition-base), backdrop-filter var(--transition-base), padding var(--transition-base);
}

.nav.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    padding: 0.6rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-logo img {
    width: 36px;
    height: 36px;
}

.nav-logo span {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

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

.nav-links a {
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: color var(--transition-fast);
}

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

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

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

.mobile-menu a {
    color: var(--color-text);
    font-size: var(--font-size-2xl);
    font-weight: 500;
}

.mobile-menu a:hover {
    color: var(--color-accent);
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0, 199, 103, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(0, 199, 103, 0.05) 0%, transparent 60%),
        linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #050505 100%);
    z-index: 0;
    animation: heroGradient 12s ease-in-out infinite alternate;
}

@keyframes heroGradient {
    0% {
        background:
            radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0, 199, 103, 0.08) 0%, transparent 60%),
            radial-gradient(ellipse 60% 40% at 80% 60%, rgba(0, 199, 103, 0.05) 0%, transparent 60%),
            linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #050505 100%);
    }
    100% {
        background:
            radial-gradient(ellipse 80% 50% at 30% 50%, rgba(0, 199, 103, 0.1) 0%, transparent 60%),
            radial-gradient(ellipse 60% 40% at 70% 40%, rgba(0, 199, 103, 0.06) 0%, transparent 60%),
            linear-gradient(135deg, #050505 0%, #000000 50%, #0a0a0a 100%);
    }
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-accent-light);
    border: 1px solid rgba(0, 199, 103, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: var(--spacing-md);
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto var(--spacing-xl);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.hero-stores {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    justify-content: center;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--color-text);
    color: var(--color-bg);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: var(--font-size-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.store-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
    color: var(--color-bg);
}

.store-badge svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   HERO PHONE - Single prominent phone
   ============================================ */
.hero-phone {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-phone.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.hero-phone-glow {
    position: absolute;
    width: 300px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(0, 199, 103, 0.2) 0%, rgba(0, 199, 103, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    animation: phoneGlow 6s ease-in-out infinite alternate;
}

@keyframes phoneGlow {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
}

.hero-phone-frame {
    position: relative;
    z-index: 1;
    width: 220px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(0, 199, 103, 0.08);
    animation: phoneFloat 6s ease-in-out infinite;
}

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

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
    animation: scrollIndicatorFadeIn 1s ease 2s forwards;
}

.scroll-indicator-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--color-accent), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollIndicatorFadeIn {
    to { opacity: 0.6; }
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
    50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    50.01% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ============================================
   SECTION COMMONS
   ============================================ */
.section {
    padding: var(--spacing-4xl) 0;
    position: relative;
    z-index: 1;
}

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

.section-label {
    display: inline-block;
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    max-width: var(--container-narrow);
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-dark) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.feature-card {
    background: var(--color-white-5);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color var(--transition-base),
                box-shadow 0.4s ease,
                background 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 199, 103, 0.3);
    box-shadow: 0 16px 48px rgba(0, 199, 103, 0.08);
    background: var(--color-white-8);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--color-accent-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-accent);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    letter-spacing: -0.01em;
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    line-height: 1.7;
}

/* ============================================
   SCREENSHOTS CAROUSEL (Swiper)
   ============================================ */
.screenshots {
    background: var(--color-bg-dark);
    overflow: hidden;
}

.screenshots-swiper {
    padding-bottom: var(--spacing-2xl);
    overflow: visible;
    max-width: 720px;
    margin: 0 auto;
}

.screenshots-swiper .swiper-slide {
    text-align: center;
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0.4;
    transform: scale(0.85);
}

.screenshots-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.screenshots-swiper .swiper-slide-prev,
.screenshots-swiper .swiper-slide-next {
    opacity: 0.6;
    transform: scale(0.9);
}

.screenshot-phone {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    margin: 0 auto var(--spacing-sm);
    max-width: 200px;
    transition: box-shadow 0.4s ease;
}

.screenshots-swiper .swiper-slide-active .screenshot-phone {
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 199, 103, 0.08);
}

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

.screenshot-caption {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-subtle);
    transition: color 0.4s ease;
}

.screenshots-swiper .swiper-slide-active .screenshot-caption {
    color: var(--color-text);
}

/* Swiper pagination override */
.screenshots-swiper .swiper-pagination {
    position: relative;
    bottom: auto;
    margin-top: var(--spacing-md);
}

.screenshots-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--color-border-hover);
    opacity: 1;
    transition: background 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
}

.screenshots-swiper .swiper-pagination-bullet-active {
    background: var(--color-accent);
    width: 24px;
    border-radius: 4px;
}

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

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.step-number {
    width: 56px;
    min-width: 56px;
    height: 56px;
    background: var(--color-accent-light);
    border: 1px solid rgba(0, 199, 103, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-accent);
    flex-shrink: 0;
    transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
}

.step-item:hover .step-number {
    background: rgba(0, 199, 103, 0.2);
    border-color: var(--color-accent);
    transform: scale(1.08);
}

.step-item h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.step-item p {
    color: var(--color-text-muted);
    font-size: var(--font-size-base);
    line-height: 1.7;
}

/* ============================================
   HIGHLIGHT / QUOTE SECTION
   ============================================ */
.highlight-section {
    background:
        radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0, 199, 103, 0.06) 0%, transparent 70%),
        var(--color-bg-dark);
    text-align: center;
    padding: var(--spacing-4xl) 0;
    position: relative;
    z-index: 1;
}

.highlight-quote {
    font-size: var(--font-size-3xl);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    max-width: var(--container-narrow);
    margin: 0 auto var(--spacing-md);
}

.highlight-sub {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--color-bg);
    text-align: center;
    padding: var(--spacing-4xl) 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    opacity: 0.3;
}

.cta-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-sm);
}

.cta-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-stores {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-bg-dark);
    border-top: 1px solid var(--color-border);
    padding: var(--spacing-2xl) 0;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo img {
    width: 32px;
    height: 32px;
}

.footer-logo span {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-text);
}

.footer-links {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

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

.footer-contact {
    color: var(--color-text-subtle);
    font-size: var(--font-size-sm);
}

.footer-contact a {
    color: var(--color-text-muted);
}

.footer-copyright {
    color: var(--color-text-subtle);
    font-size: var(--font-size-xs);
    margin-top: var(--spacing-sm);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* Scale reveal variant */
.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--color-border);
    padding: var(--spacing-md);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

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

.cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.cookie-text h3 {
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cookie-text p {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}

.cookie-actions {
    display: flex;
    gap: var(--spacing-xs);
}

.cookie-btn {
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
    font-weight: 600;
    font-family: var(--font-family);
    cursor: pointer;
    border: none;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.cookie-accept {
    background: var(--color-accent-dark);
    color: var(--color-text);
}

.cookie-accept:hover {
    background: var(--color-accent-hover);
}

.cookie-reject {
    background: var(--color-white-10);
    color: var(--color-text-muted);
}

.cookie-reject:hover {
    background: var(--color-white-8);
}

/* ============================================
   RESPONSIVE - TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

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

    .hero-title {
        font-size: var(--font-size-4xl);
    }

    .hero-subtitle {
        margin: 0 0 var(--spacing-xl);
    }

    .hero-actions {
        align-items: flex-start;
    }

    .hero-stores {
        justify-content: flex-start;
    }

    .hero-phone-frame {
        width: 260px;
    }

    .hero-phone-glow {
        width: 360px;
        height: 480px;
    }

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

    .steps-grid {
        gap: var(--spacing-2xl);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ============================================
   RESPONSIVE - DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    .hamburger {
        display: none !important;
    }

    .hero-title {
        font-size: var(--font-size-5xl);
    }

    .hero-phone-frame {
        width: 280px;
    }

    .hero-phone-glow {
        width: 400px;
        height: 520px;
    }

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

    .section-title {
        font-size: var(--font-size-4xl);
    }

    .highlight-quote {
        font-size: var(--font-size-4xl);
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-2xl);
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (<480px)
   ============================================ */
@media (max-width: 480px) {
    .hero-title {
        font-size: var(--font-size-3xl);
    }

    .hero-subtitle {
        font-size: var(--font-size-base);
    }

    .section-title {
        font-size: var(--font-size-2xl);
    }

    .hero-phone-frame {
        width: 180px;
    }

    .hero-phone-glow {
        width: 240px;
        height: 320px;
    }

    .highlight-quote {
        font-size: var(--font-size-2xl);
    }

    .store-badge {
        padding: 0.65rem 1.25rem;
        font-size: var(--font-size-sm);
    }

    .feature-card {
        padding: var(--spacing-lg);
    }
}

/* ============================================
   RESPONSIVE - NAV MOBILE (<768px)
   ============================================ */
@media (max-width: 767px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }
}
