/* ============================================
   VARIABLES & RESET
   ============================================ */
:root {
    --primary: #ef4444;
    --primary-dark: #dc2626;
    --primary-light: #fca5a5;
    --secondary: #fbbf24;
    --secondary-dark: #f59e0b;
    --secondary-light: #fde68a;
    --accent: #3b82f6;
    --accent-dark: #2563eb;
    --accent-light: #93c5fd;

    --bg-dark: #0f0f14;
    --bg-darker: #0a0a0e;
    --bg-card: #1a1a24;
    --bg-card-hover: #22222f;
    --bg-elevated: #252535;

    --text-primary: #f8f8fc;
    --text-secondary: #a8a8b8;
    --text-muted: #6b6b7b;
    --text-dark: #1a1a2e;

    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-light: rgba(255, 255, 255, 0.15);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    --shadow-glow-primary: 0 0 30px rgba(239, 68, 68, 0.3);
    --shadow-glow-secondary: 0 0 30px rgba(251, 191, 36, 0.3);
    --shadow-glow-accent: 0 0 30px rgba(59, 130, 246, 0.3);

    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    --header-height: 80px;
    --container-max: 1280px;
    --container-padding: 24px;
}

*, *::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-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

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

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

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

ul {
    list-style: none;
}

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

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }

.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    border: 2px solid transparent;
}

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

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

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 6px 25px rgba(239, 68, 68, 0.4);
    transform: translateY(-2px);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-color-light);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(239, 68, 68, 0.05);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    padding: 10px 16px;
}

.btn-ghost:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

.btn-full {
    width: 100%;
}

.btn-nav {
    padding: 10px 24px;
    font-size: 14px;
}

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    animation: slideUpCookie 0.5s ease forwards;
}

@keyframes slideUpCookie {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

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

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    min-width: 280px;
}

.cookie-icon {
    flex-shrink: 0;
    color: var(--secondary);
    margin-top: 2px;
}

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

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

.cookie-buttons {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-settings-panel {
    max-width: var(--container-max);
    margin: 16px auto 0;
    padding: 16px var(--container-padding) 0;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-setting-item {
    display: flex;
    align-items: center;
}

.cookie-setting-item label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
}

.cookie-setting-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
}

/* ============================================
   AGE VERIFICATION MODAL
   ============================================ */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 11000;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.age-modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: scaleInModal 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes scaleInModal {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.age-modal-geo {
    margin-bottom: 24px;
}

.age-modal-content h2 {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.age-modal-content p {
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-size: 15px;
}

.age-modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.age-modal-buttons .btn {
    flex: 1;
    min-width: 140px;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: all var(--transition-base);
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 20, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.header.scrolled::before {
    opacity: 1;
}

.header-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.header-triangle {
    position: absolute;
    width: 0;
    height: 0;
}

.header-triangle-1 {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 40px solid rgba(239, 68, 68, 0.03);
    top: -10px;
    left: 10%;
}

.header-triangle-2 {
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 30px solid rgba(251, 191, 36, 0.03);
    top: 5px;
    right: 20%;
}

.header-circle-1 {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.05);
    top: 10px;
    right: 35%;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo:hover {
    color: var(--text-primary);
}

.logo-hex {
    width: 44px;
    height: 44px;
    background: var(--primary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-hex span {
    font-family: var(--font-display);
    font-size: 18px;
    color: #fff;
    letter-spacing: 1px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    border-radius: var(--radius-sm);
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-base);
}

.nav-link:hover::after {
    width: 24px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

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

.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 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(15, 15, 20, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-links {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-links a {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 3px;
    color: var(--text-primary);
    transition: color var(--transition-fast);
    display: block;
    padding: 8px 24px;
}

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

.mobile-nav-links .btn {
    margin-top: 16px;
    font-family: var(--font-body);
    font-size: 16px;
    letter-spacing: 0;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.geo-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-hex {
    position: absolute;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hero-hex-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.08), transparent);
    top: 10%;
    right: -5%;
    animation: floatSlow 20s ease-in-out infinite;
}

.hero-hex-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.06), transparent);
    bottom: 15%;
    left: -3%;
    animation: floatSlow 25s ease-in-out infinite reverse;
}

.hero-hex-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06), transparent);
    top: 30%;
    left: 20%;
    animation: floatSlow 18s ease-in-out infinite;
}

.hero-tri {
    position: absolute;
    width: 0;
    height: 0;
}

.hero-tri-1 {
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 120px solid rgba(239, 68, 68, 0.04);
    top: 15%;
    left: 8%;
    animation: rotateSlow 30s linear infinite;
}

.hero-tri-2 {
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 80px solid rgba(251, 191, 36, 0.04);
    bottom: 20%;
    right: 15%;
    animation: rotateSlow 25s linear infinite reverse;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
}

.hero-circle-1 {
    width: 200px;
    height: 200px;
    border: 1px solid rgba(59, 130, 246, 0.08);
    top: 20%;
    right: 25%;
    animation: pulseSlow 8s ease-in-out infinite;
}

.hero-circle-2 {
    width: 100px;
    height: 100px;
    border: 1px solid rgba(239, 68, 68, 0.08);
    bottom: 30%;
    left: 15%;
    animation: pulseSlow 10s ease-in-out infinite reverse;
}

.hero-diamond {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(251, 191, 36, 0.1);
    transform: rotate(45deg);
}

.hero-diamond-1 {
    top: 25%;
    left: 35%;
    animation: floatSlow 15s ease-in-out infinite;
}

.hero-diamond-2 {
    bottom: 25%;
    right: 30%;
    animation: floatSlow 12s ease-in-out infinite reverse;
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(-10px) translateX(-15px); }
    75% { transform: translateY(-25px) translateX(5px); }
}

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

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 90px);
    line-height: 0.95;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    color: var(--primary);
    position: relative;
}

.hero-title-accent::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary);
    opacity: 0.2;
    border-radius: 4px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

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

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

.hero-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.hero-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color-light);
}

/* Hero Phone Frame */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-phone-frame {
    width: 280px;
    height: 560px;
    background: var(--bg-card);
    border-radius: 36px;
    border: 3px solid var(--border-color-light);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg), 0 0 60px rgba(239, 68, 68, 0.1);
}

.hero-phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: var(--bg-card);
    border-radius: 0 0 16px 16px;
    z-index: 2;
}

.hero-phone-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    animation: floatCard 6s ease-in-out infinite;
}

.hero-floating-card-1 {
    top: 20%;
    right: -20px;
    animation-delay: 0s;
}

.hero-floating-card-2 {
    bottom: 25%;
    left: -30px;
    animation-delay: 3s;
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 40px; }
    50% { opacity: 0.3; height: 20px; }
}

.hero-scroll-indicator span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* ============================================
   SOCIAL PROOF TICKER
   ============================================ */
.social-proof {
    padding: 20px 0;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.ticker-wrapper {
    overflow: hidden;
    position: relative;
}

.ticker-wrapper::before,
.ticker-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
}

.ticker-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-darker), transparent);
}

.ticker-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-darker), transparent);
}

.ticker {
    display: flex;
    gap: 48px;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.ticker-item .ticker-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ticker-dot-red { background: var(--primary); }
.ticker-dot-yellow { background: var(--secondary); }
.ticker-dot-blue { background: var(--accent); }

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--bg-darker);
}

.about-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(239, 68, 68, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

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

.about-card-main:hover {
    border-color: var(--border-color-light);
    box-shadow: var(--shadow-md);
}

.about-card-image {
    padding: 40px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(251, 191, 36, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-card-image img {
    width: 160px;
    height: 160px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about-card-content {
    padding: 32px 40px 40px;
}

.about-card-content h3 {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.about-card-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.about-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all var(--transition-base);
}

.about-info-card:hover {
    border-color: var(--border-color-light);
    transform: translateX(8px);
    box-shadow: var(--shadow-sm);
}

.about-info-icon {
    flex-shrink: 0;
}

.about-info-card h4 {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.about-info-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    background: var(--bg-dark);
}

.gallery-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.gallery-hex {
    position: absolute;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.gallery-hex-1 {
    width: 180px;
    height: 180px;
    background: rgba(239, 68, 68, 0.04);
    top: 5%;
    right: 5%;
}

.gallery-hex-2 {
    width: 120px;
    height: 120px;
    background: rgba(251, 191, 36, 0.04);
    bottom: 10%;
    left: 3%;
}

.gallery-tri-1 {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 90px solid rgba(59, 130, 246, 0.03);
    top: 40%;
    left: 8%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

.gallery-item-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 280px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.gallery-item-large .gallery-item-inner {
    min-height: 100%;
}

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

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.gallery-item-inner:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-label {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 1px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    background: var(--bg-darker);
}

.features-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 10%, rgba(251, 191, 36, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(239, 68, 68, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

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

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

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

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

.feature-card-number {
    font-family: var(--font-display);
    font-size: 48px;
    color: rgba(255, 255, 255, 0.04);
    position: absolute;
    top: 16px;
    right: 24px;
    letter-spacing: 2px;
}

.feature-card-icon {
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   LIVE COUNTERS SECTION
   ============================================ */
.live-section {
    background: var(--bg-dark);
    padding: 60px 0;
}

.live-banner {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.live-banner-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.live-hex {
    position: absolute;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.live-hex-1 {
    width: 200px;
    height: 200px;
    background: rgba(239, 68, 68, 0.04);
    top: -60px;
    right: -40px;
}

.live-hex-2 {
    width: 120px;
    height: 120px;
    background: rgba(59, 130, 246, 0.04);
    bottom: -30px;
    left: -20px;
}

.live-tri-1 {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 60px solid rgba(251, 191, 36, 0.04);
    top: 20%;
    left: 40%;
}

.live-banner-content {
    position: relative;
    z-index: 1;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 16px;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
}

.live-banner h3 {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 32px;
}

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

.live-counter {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.live-counter-number {
    display: block;
    font-family: var(--font-display);
    font-size: 40px;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 4px;
}

.live-counter-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   SIGNUP / LEAD FORM SECTION
   ============================================ */
.signup {
    background: var(--bg-dark);
}

.signup-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.signup-hex {
    position: absolute;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.signup-hex-1 {
    width: 250px;
    height: 250px;
    background: rgba(239, 68, 68, 0.04);
    top: -50px;
    left: -50px;
}

.signup-hex-2 {
    width: 180px;
    height: 180px;
    background: rgba(251, 191, 36, 0.04);
    bottom: -40px;
    right: -30px;
}

.signup-hex-3 {
    width: 100px;
    height: 100px;
    background: rgba(59, 130, 246, 0.04);
    top: 30%;
    right: 10%;
}

.signup-tri {
    position: absolute;
    width: 0;
    height: 0;
}

.signup-tri-1 {
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 75px solid rgba(239, 68, 68, 0.03);
    top: 10%;
    right: 25%;
}

.signup-tri-2 {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 50px solid rgba(251, 191, 36, 0.03);
    bottom: 15%;
    left: 20%;
}

.signup-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.signup-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: 2px;
    margin-bottom: 16px;
    line-height: 1.1;
}

.signup-description {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.signup-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.signup-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.signup-benefits li svg {
    flex-shrink: 0;
}

/* Form Styles */
.signup-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
}

.signup-form h3 {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 28px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.required {
    color: var(--primary);
}

.optional {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 12px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper svg {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    pointer-events: none;
    z-index: 1;
}

.input-wrapper input {
    width: 100%;
    padding: 14px 14px 14px 44px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 15px;
    transition: all var(--transition-fast);
    outline: none;
}

.input-wrapper input::placeholder {
    color: var(--text-muted);
}

.input-wrapper input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.input-wrapper input.error {
    border-color: var(--primary);
}

.form-error {
    display: none;
    font-size: 12px;
    color: var(--primary);
    margin-top: 6px;
}

.form-error.visible {
    display: block;
}

/* Checkbox Styles */
.form-checkbox {
    margin-bottom: 16px;
}

.form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.form-checkbox input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--border-color-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    margin-top: 1px;
    position: relative;
}

.form-checkbox input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary);
    border-color: var(--primary);
}

.form-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    display: block;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.form-checkbox a {
    color: var(--primary);
    text-decoration: underline;
}

.btn-loader {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Success State */
.signup-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    margin-bottom: 24px;
    animation: successBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successBounce {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.signup-success h3 {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.signup-success p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    background: var(--bg-dark);
}

.faq-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 30%, rgba(59, 130, 246, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 20% 70%, rgba(239, 68, 68, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: all var(--transition-fast);
    gap: 16px;
}

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

.faq-chevron {
    flex-shrink: 0;
    transition: transform var(--transition-base);
    color: var(--text-muted);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

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

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

.faq-answer p {
    padding: 0 28px 22px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--primary);
    text-decoration: underline;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--bg-darker);
}

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

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    transition: all var(--transition-base);
}

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

.contact-card-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.contact-card h4 {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 14px;
    word-break: break-all;
}

.contact-card-note {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust {
    background: var(--bg-dark);
    padding: 60px 0;
}

.trust-banner {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 48px;
}

.trust-content h3 {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.trust-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 700px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.footer-hex {
    position: absolute;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.footer-hex-1 {
    width: 150px;
    height: 150px;
    background: rgba(239, 68, 68, 0.03);
    top: 10%;
    right: 5%;
}

.footer-hex-2 {
    width: 100px;
    height: 100px;
    background: rgba(59, 130, 246, 0.03);
    bottom: 20%;
    left: 10%;
}

.footer-tri-1 {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 60px solid rgba(251, 191, 36, 0.02);
    top: 30%;
    left: 40%;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    position: relative;
    z-index: 1;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-color);
}

.footer-brand-text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 16px;
    margin-bottom: 20px;
}

.footer-age-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

.footer-links-group h4 {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-group a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: color var(--transition-fast);
}

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

.footer-links-group li {
    font-size: 14px;
    color: var(--text-secondary);
    word-break: break-all;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 16px;
}

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

.footer-address {
    margin-top: 4px;
}

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

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md), var(--shadow-glow-primary);
    z-index: 100;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-base);
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-hero {
    padding: 140px 0 60px;
    background: var(--bg-darker);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.legal-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    letter-spacing: 3px;
    margin-bottom: 12px;
    position: relative;
}

.legal-hero p {
    color: var(--text-secondary);
    font-size: 16px;
    position: relative;
}

.legal-content {
    padding: 80px 0;
    background: var(--bg-dark);
}

.legal-content .container {
    max-width: 800px;
}

.legal-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 48px;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
}

.legal-card h2 {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-card p {
    color: #4a4a5a;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-card ul,
.legal-card ol {
    margin: 12px 0;
    padding-left: 24px;
    list-style: disc;
}

.legal-card ol {
    list-style: decimal;
}

.legal-card li {
    color: #4a4a5a;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-card a {
    color: var(--primary);
    text-decoration: underline;
}

.legal-card strong {
    color: var(--text-dark);
}

.legal-card .legal-info-box {
    background: #f8f8fc;
    border-left: 4px solid var(--primary);
    padding: 20px 24px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 20px 0;
}

.legal-card .legal-info-box p {
    margin-bottom: 4px;
}

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

[data-animate="fade-in"] {
    transform: none;
}

[data-animate="slide-up"] {
    transform: translateY(40px);
}

[data-animate="slide-right"] {
    transform: translateX(-40px);
}

[data-animate="scale-in"] {
    transform: scale(0.9);
}

[data-animate].animated {
    opacity: 1;
    transform: none;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-visual {
        order: -1;
    }

    .hero-phone-frame {
        width: 240px;
        height: 480px;
    }

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

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

    .signup-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

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

@media (max-width: 768px) {
    :root {
        --header-height: 68px;
        --container-padding: 16px;
    }

    .section {
        padding: 72px 0;
    }

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

    .nav-links {
        display: none;
    }

    .btn-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-scroll-indicator {
        display: none;
    }

    .hero-floating-card {
        display: none;
    }

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

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

    .gallery-item-inner {
        min-height: 220px;
    }

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

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

    .live-counters {
        grid-template-columns: 1fr 1fr;
    }

    .live-banner {
        padding: 32px 24px;
    }

    .signup-form-wrapper {
        padding: 28px 20px;
    }

    .trust-banner {
        padding: 32px 24px;
    }

    .trust-badges {
        flex-direction: column;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cookie-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        flex-wrap: wrap;
    }

    .age-modal-content {
        padding: 32px 24px;
    }

    .age-modal-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-phone-frame {
        width: 200px;
        height: 400px;
    }

    .live-counters {
        grid-template-columns: 1fr;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 14px;
    }

    .legal-card {
        padding: 28px 20px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .header,
    .cookie-banner,
    .age-modal,
    .back-to-top,
    .hero-bg,
    .social-proof {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .section {
        padding: 20px 0;
    }
}
