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

:root {
    --primary: #374151;
    --primary-light: #4b5563;
    --primary-dark: #1f2937;
    --primary-darker: #111827;
    --secondary: #f3f4f6;
    --secondary-dark: #e5e7eb;
    --accent: #6b7280;
    --accent-glow: #00e5ff;
    --accent-glow-2: #7c3aed;
    --accent-glow-3: #f43f5e;
    --accent-glow-dim: rgba(0, 229, 255, 0.15);
    --accent-glow-dim-2: rgba(124, 58, 237, 0.1);
    --glow-shadow: 0 0 20px rgba(0, 229, 255, 0.3), 0 0 60px rgba(0, 229, 255, 0.1);
    --glow-shadow-sm: 0 0 10px rgba(0, 229, 255, 0.2);
    --glow-text: 0 0 10px rgba(0, 229, 255, 0.5);
    --white: #ffffff;
    --black: #000000;
    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
    --text-muted: #9ca3af;
    --text-dark: #1f2937;
    --text-dark-secondary: #4b5563;
    --bg-primary: #0f1117;
    --bg-secondary: #161922;
    --bg-card: #1c1f2e;
    --bg-card-hover: #242838;
    --bg-footer: #0a0c12;
    --blob-color: rgba(0, 229, 255, 0.04);
    --blob-color-2: rgba(124, 58, 237, 0.04);
    --border-color: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(0, 229, 255, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-mono: 'SF Mono', 'Fira Code', 'Fira Mono', Menlo, monospace;
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.5rem;
    --text-6xl: 4.5rem;
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    --header-height: 72px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
details summary:focus-visible {
    outline: 2px solid var(--accent-glow);
    outline-offset: 2px;
}

ul, ol {
    list-style: none;
}

address {
    font-style: normal;
}

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

/* =====================
   BUTTONS
   ===================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.75rem;
    font-size: var(--text-base);
    font-weight: 600;
    font-family: var(--font-sans);
    line-height: 1.4;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent-glow);
    color: var(--bg-primary);
    border-color: var(--accent-glow);
    box-shadow: var(--glow-shadow-sm);
}

.btn-primary:hover {
    background: var(--white);
    color: var(--bg-primary);
    border-color: var(--white);
    box-shadow: var(--glow-shadow);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: var(--accent-glow-dim);
    color: var(--accent-glow);
    border-color: var(--accent-glow);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* =====================
   HEADER / NAV
   ===================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(15, 17, 23, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
    background: rgba(15, 17, 23, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-primary);
    font-weight: 700;
    font-size: var(--text-lg);
    text-decoration: none;
    flex-shrink: 0;
}

.logo:hover {
    color: var(--accent-glow);
}

.logo-text {
    background: linear-gradient(135deg, var(--accent-glow), var(--accent-glow-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-secondary);
    font-size: var(--text-sm);
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-glow);
    background: var(--accent-glow-dim);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =====================
   HERO
   ===================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: calc(var(--header-height) + var(--space-3xl));
    padding-bottom: var(--space-5xl);
    overflow: hidden;
    background: linear-gradient(160deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--primary-darker) 100%);
}

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

.blob {
    position: absolute;
    opacity: 0.6;
}

.blob-1 {
    width: 700px;
    height: 700px;
    top: -10%;
    right: -10%;
    animation: blobFloat 20s ease-in-out infinite;
}

.blob-2 {
    width: 500px;
    height: 500px;
    bottom: -5%;
    left: -10%;
    animation: blobFloat 25s ease-in-out infinite reverse;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-glow);
    background: var(--accent-glow-dim);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
}

.hero-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--accent-glow), var(--accent-glow-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    max-width: 500px;
}

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

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

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

.stat-number {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--accent-glow);
    text-shadow: var(--glow-text);
    font-family: var(--font-mono);
}

.stat-label {
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.hero-image-frame img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    position: relative;
    z-index: 1;
}

.hero-image-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
    z-index: 0;
    animation: pulseGlow 4s ease-in-out infinite;
}

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

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* =====================
   SOCIAL PROOF TICKER
   ===================== */

.social-proof {
    background: var(--bg-primary);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--border-color);
}

.proof-ticker {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.proof-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.proof-live {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.live-count {
    font-weight: 700;
    color: var(--accent-glow);
    font-family: var(--font-mono);
}

/* =====================
   SECTION COMMON
   ===================== */

section {
    padding: var(--space-5xl) 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
}

.section-tag {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-glow);
    background: var(--accent-glow-dim);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =====================
   ABOUT
   ===================== */

.about {
    background: var(--bg-primary);
}

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

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

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

.about-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    transform: translateY(-4px);
    box-shadow: var(--glow-shadow);
}

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

.about-card-large {
    grid-column: span 3;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.about-card-large .about-card-icon {
    margin-bottom: 0;
}

.about-card-large h3 {
    grid-column: 1 / -1;
}

.about-card-large p {
    grid-column: 1 / -1;
}

.about-card-icon {
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--accent-glow-dim);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.about-card h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

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

/* =====================
   GALLERY / SCREENSHOTS
   ===================== */

.screenshots {
    background: var(--bg-secondary);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
    cursor: pointer;
}

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

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

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

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    font-size: var(--text-sm);
    font-weight: 600;
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

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

/* =====================
   FEATURES
   ===================== */

.features {
    background: var(--bg-primary);
}

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

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

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    transform: translateY(-4px);
    box-shadow: var(--glow-shadow);
}

.feature-number {
    font-size: var(--text-5xl);
    font-weight: 900;
    color: var(--accent-glow-dim);
    font-family: var(--font-mono);
    line-height: 1;
    margin-bottom: var(--space-md);
    transition: color var(--transition-base);
}

.feature-card:hover .feature-number {
    color: var(--accent-glow);
    text-shadow: var(--glow-text);
}

.feature-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.feature-text {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =====================
   TRUST
   ===================== */

.trust {
    background: var(--bg-secondary);
}

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

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

.trust-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-2px);
    box-shadow: var(--glow-shadow-sm);
}

.trust-card svg {
    margin: 0 auto var(--space-lg);
}

.trust-card h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.trust-card p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.faq {
    background: var(--bg-primary);
}

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

.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[open] {
    border-color: var(--border-glow);
    box-shadow: var(--glow-shadow-sm);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    cursor: pointer;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--white);
    list-style: none;
    transition: color var(--transition-fast);
    gap: var(--space-md);
}

.faq-question::-webkit-details-marker {
    display: none;
}

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

.faq-arrow {
    flex-shrink: 0;
    transition: transform var(--transition-base);
    color: var(--accent-glow);
}

.faq-item[open] .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--space-xl) var(--space-lg);
}

.faq-answer p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.7;
}

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

/* =====================
   NEWSLETTER
   ===================== */

.newsletter {
    background: var(--bg-secondary);
    padding: var(--space-4xl) 0;
}

.newsletter-card {
    position: relative;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--primary-dark) 100%);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    text-align: center;
    overflow: hidden;
    box-shadow: var(--glow-shadow);
}

.newsletter-bg-shape {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    opacity: 0.3;
    pointer-events: none;
}

.newsletter-content {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.newsletter-text {
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1.25rem;
    font-size: var(--text-base);
    font-family: var(--font-sans);
    color: var(--white);
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    outline: none;
    transition: border-color var(--transition-fast);
}

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

.newsletter-input:focus {
    border-color: var(--accent-glow);
    box-shadow: var(--glow-shadow-sm);
}

.newsletter-note {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.newsletter-note a {
    color: var(--accent-glow);
    text-decoration: underline;
}

/* =====================
   CONTACT
   ===================== */

.contact {
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    font-size: var(--text-base);
    font-family: var(--font-sans);
    color: var(--white);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-glow);
    box-shadow: var(--glow-shadow-sm);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-info-card {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
    padding: var(--space-xl);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition-base);
}

.contact-info-card:hover {
    border-color: var(--border-glow);
}

.contact-info-card svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-card h3 {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

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

.contact-info-card a {
    display: block;
    font-size: var(--text-sm);
    color: var(--accent-glow);
    line-height: 1.8;
}

.contact-info-card a:hover {
    color: var(--white);
}

/* =====================
   FOOTER
   ===================== */

.site-footer {
    position: relative;
    background: var(--bg-footer);
    padding-top: var(--space-3xl);
}

.footer-wave {
    position: absolute;
    top: -79px;
    left: 0;
    right: 0;
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--border-color);
}

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

.footer-description {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 300px;
}

.footer-nav h3,
.footer-contact h3 {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.footer-nav ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

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

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--accent-glow);
}

.footer-contact address {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-bottom {
    padding: var(--space-xl) 0;
    text-align: center;
}

.footer-bottom p {
    font-size: var(--text-xs);
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-xs);
}

/* =====================
   COOKIE BANNER
   ===================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: var(--bg-card);
    border-top: 1px solid var(--border-glow);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
    padding: var(--space-xl);
    animation: slideUp 0.4s ease-out;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-text h3 {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.cookie-text p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.5;
}

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

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

/* =====================
   BACK TO TOP
   ===================== */

.back-to-top {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    z-index: 900;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    color: var(--bg-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--glow-shadow);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(20px);
}

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

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

/* =====================
   LEGAL PAGES
   ===================== */

.legal-hero {
    background: linear-gradient(160deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.legal-hero h1 {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.legal-hero p {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.legal-content {
    background: var(--bg-primary);
    padding: var(--space-3xl) 0 var(--space-5xl);
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-3xl);
    color: var(--text-dark);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.legal-body h2 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--primary-dark);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--secondary-dark);
}

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

.legal-body h3 {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--primary);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
}

.legal-body p {
    font-size: var(--text-base);
    color: var(--text-dark-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.legal-body ul,
.legal-body ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-xl);
}

.legal-body ul {
    list-style: disc;
}

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

.legal-body li {
    font-size: var(--text-base);
    color: var(--text-dark-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xs);
}

.legal-body a {
    color: #0369a1;
    text-decoration: underline;
}

.legal-body a:hover {
    color: var(--primary-dark);
}

.legal-body strong {
    color: var(--primary-dark);
}

/* =====================
   ANIMATIONS - SCROLL REVEAL
   ===================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* =====================
   RESPONSIVE
   ===================== */

@media (max-width: 1024px) {
    :root {
        --text-5xl: 2.75rem;
        --text-4xl: 2rem;
        --text-3xl: 1.75rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-2xl);
    }

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

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

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

    .hero-image-frame {
        max-width: 300px;
    }

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

    .about-card-large {
        grid-column: span 2;
        display: block;
    }

    .about-card-large .about-card-icon {
        margin-bottom: var(--space-md);
    }

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

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

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

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

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

@media (max-width: 768px) {
    :root {
        --text-5xl: 2.25rem;
        --text-4xl: 1.75rem;
        --text-3xl: 1.5rem;
        --space-5xl: 5rem;
        --space-4xl: 3.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        background: var(--bg-primary);
        padding: var(--space-xl);
        gap: var(--space-xs);
        transform: translateX(100%);
        transition: transform var(--transition-base);
        overflow-y: auto;
    }

    .nav-menu.open {
        min-height: 100vh;
        transform: translateX(0);
    }

    .nav-link {
        font-size: var(--text-lg);
        padding: var(--space-md);
        width: 100%;
        text-align: center;
    }

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

    .about-card-large {
        grid-column: span 1;
    }

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

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

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

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-lg);
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    :root {
        --text-5xl: 1.875rem;
        --text-4xl: 1.5rem;
        --space-5xl: 4rem;
    }

    .hero {
        padding-top: calc(var(--header-height) + var(--space-2xl));
        padding-bottom: var(--space-4xl);
    }

    .hero-image-frame {
        max-width: 220px;
    }

    .legal-body {
        padding: var(--space-xl);
    }

    .section-header {
        margin-bottom: var(--space-2xl);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
