/* ============================================
   Take Car — Dark Premium Style
   Inspired by WM-SOUTHERA Style Guide
   ============================================ */

:root {
    --bg-primary: #0A0A0A;
    --bg-secondary: #111111;
    --bg-elevated: #1A1A1A;
    --text-primary: #F5F5F5;
    --text-secondary: #A0A0A0;
    --text-muted: #666666;
    --accent-cyan: #00D4FF;
    --accent-teal: #00B4A0;
    --accent-amber: #FFB800;
    --border-subtle: #1F1F1F;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea { font-family: inherit; font-size: inherit; color: inherit; }

::selection { background: var(--accent-cyan); color: var(--bg-primary); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border-subtle); border-radius: 3px; }

/* ============================================
   Custom Cursor
   ============================================ */
.cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, opacity 0.2s;
}

.cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 40px; height: 40px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}

body.cursor-hover .cursor-dot { width: 0; height: 0; opacity: 0; }
body.cursor-hover .cursor-ring { width: 80px; height: 80px; border-color: rgba(0, 212, 255, 0.5); }

@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ============================================
   Scroll Progress
   ============================================ */
.scroll-progress {
    position: fixed; top: 0; left: 0; right: 0;
    height: 2px; z-index: 9999; background: transparent;
}
.scroll-progress-bar {
    height: 100%; width: 0%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-teal));
    transform-origin: left;
}

/* ============================================
   Typography
   ============================================ */
.heading-xl {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.heading-lg {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 0.95;
    letter-spacing: -0.02em;
}

h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.label {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    display: block;
    margin-bottom: 1rem;
}

.sub-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
}

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

/* ============================================
   Layout
   ============================================ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) { .container { padding: 0 3rem; } }

.container-narrow { max-width: 900px; }

.section {
    padding: 8rem 0;
    position: relative;
}

@media (min-width: 768px) { .section { padding: 11rem 0; } }

.section-alt { background: rgba(17, 17, 17, 0.3); }

.center-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.center-header .sub-text { margin: 1rem auto 0; }

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 9999px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    white-space: nowrap;
}

.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.8125rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-xl { padding: 1.25rem 2.75rem; font-size: 1.0625rem; }
.btn-block { width: 100%; }

.btn-primary {
    background: var(--accent-cyan);
    color: var(--bg-primary);
}
.btn-primary:hover {
    background: #33DDFF;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

.btn-warm {
    background: linear-gradient(135deg, var(--accent-amber), #FF9500);
    color: var(--bg-primary);
    font-weight: 600;
}
.btn-warm:hover {
    box-shadow: 0 0 30px rgba(255, 184, 0, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}
.btn-outline:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    background: rgba(0, 212, 255, 0.05);
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) { .nav-inner { padding: 0 3rem; } }

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-logo-icon { width: 52px; height: 52px; border-radius: 12px; }

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-link {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.2s;
}

.nav-link:hover { color: var(--accent-cyan); }

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1001;
}

@media (min-width: 1024px) { .nav-toggle { display: none; } }

.nav-toggle span {
    width: 24px; height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    z-index: 1000;
}

.nav-links.active .nav-link { font-size: 0.875rem; color: var(--text-secondary); }

/* ============================================
   Hero
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 0 3rem;
}

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

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}

.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    animation: blob-float 20s infinite ease-in-out;
    will-change: transform;
}

@keyframes blob-float {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(30px, -30px) scale(1.05) rotate(120deg); }
    66% { transform: translate(-20px, 20px) scale(0.95) rotate(240deg); }
}

.blob-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--accent-cyan), transparent 70%);
    top: -200px; right: -200px;
}

.blob-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--accent-teal), transparent 70%);
    bottom: -100px; left: -100px;
    animation-delay: -7s;
}

.blob-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--accent-amber), transparent 70%);
    top: 50%; left: 30%;
    opacity: 0.1;
    animation-delay: -13s;
}

.hero-inner {
    position: relative;
    text-align: center;
    max-width: 900px;
    padding: 0 1.5rem;
}

.hero-label { margin-bottom: 1.5rem; }

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 10vw, 6rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}

.title-line { display: block; }

.hero-title .gradient-text {
    display: inline;
    padding-bottom: 0.05em;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-meta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.meta-dot {
    width: 6px; height: 6px;
    background: var(--accent-teal);
    border-radius: 50%;
}

/* Launch Banner */
.launch-banner {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    background: rgba(0, 212, 255, 0.04);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.launch-badge {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--bg-primary);
    background: var(--accent-cyan);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    white-space: nowrap;
    animation: launch-pulse 2s ease-in-out infinite;
}

@keyframes launch-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4); }
    50% { box-shadow: 0 0 16px 4px rgba(0, 212, 255, 0.15); }
}

.launch-dates {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.launch-date {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.launch-date-label {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.launch-date-value {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.launch-divider {
    width: 1px;
    height: 32px;
    background: var(--border-subtle);
}

@media (max-height: 750px) {
    .launch-banner {
        margin-top: 1.5rem;
        padding: 0.75rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .launch-banner {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    .launch-dates {
        gap: 1rem;
    }
    .launch-date-value {
        font-size: 0.875rem;
    }
}

/* Hero chars for split animation */
.hero-char {
    display: inline-block;
    will-change: transform;
}

.hero-sub {
    clip-path: inset(0 100% 0 0);
}

/* Floating geometric shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border: 1px solid rgba(0, 212, 255, 0.08);
    border-radius: 4px;
    opacity: 0;
    will-change: transform;
}

.hero-shape--1 {
    width: 60px; height: 60px;
    top: 20%; right: 12%;
    transform: rotate(45deg);
}

.hero-shape--2 {
    width: 40px; height: 40px;
    bottom: 25%; left: 8%;
    border-radius: 50%;
    border-color: rgba(0, 180, 160, 0.1);
}

.hero-shape--3 {
    width: 80px; height: 80px;
    top: 30%; left: 15%;
    transform: rotate(15deg);
}

.hero-shape--4 {
    width: 30px; height: 30px;
    bottom: 35%; right: 20%;
    border-radius: 50%;
    border-color: rgba(255, 184, 0, 0.08);
}

/* Line draw decoration */
.line-draw {
    position: absolute;
    width: 1px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--accent-cyan), transparent);
    opacity: 0.15;
    transform: scaleY(0);
    transform-origin: top;
    will-change: transform;
}

.hero .line-draw--left { left: 5%; top: 20%; }
.hero .line-draw--right { right: 8%; top: 40%; }

/* Active nav link */
.nav-link.active { color: var(--accent-cyan); }

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-current {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0.375rem 0.75rem;
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.lang-current::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 3.5px solid transparent;
    border-right: 3.5px solid transparent;
    border-top: 4px solid var(--text-muted);
    transition: transform 0.2s;
}

.lang-current:hover {
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
}

.lang-switcher.open .lang-current::after {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 100%;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all 0.2s ease;
    z-index: 100;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.lang-switcher.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown button {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
    transition: all 0.15s;
    background: none;
    border: none;
    cursor: pointer;
}

.lang-dropdown button:hover {
    background: rgba(0, 212, 255, 0.08);
    color: var(--text-primary);
}

.lang-dropdown button.lang-active {
    color: var(--accent-cyan);
    background: rgba(0, 212, 255, 0.05);
}

/* Mobile: show in mobile menu too */
.nav-links.active .lang-switcher {
    align-self: center;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.mouse {
    width: 20px; height: 32px;
    border: 1.5px solid var(--text-muted);
    border-radius: 10px;
    position: relative;
}

.mouse-dot {
    width: 3px; height: 6px;
    background: var(--accent-cyan);
    border-radius: 2px;
    position: absolute;
    left: 50%; top: 6px;
    transform: translateX(-50%);
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
    0%, 100% { top: 6px; opacity: 1; }
    50% { top: 16px; opacity: 0.3; }
}

/* ============================================
   Horizontal Scroll Text
   ============================================ */
.hscroll-text {
    padding: 2rem 0;
    overflow: hidden;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.hscroll-track {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    will-change: transform;
}

.hscroll-track span {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    -webkit-text-stroke: 1px var(--border-subtle);
    color: transparent;
    flex-shrink: 0;
    line-height: 1;
}

.hscroll-reverse { animation-direction: reverse; }

/* ============================================
   Problem Section
   ============================================ */
.problem-grid {
    display: grid;
    gap: 4rem;
}

@media (min-width: 1024px) { .problem-grid { grid-template-columns: 1fr 1fr; gap: 6rem; } }

.problem-left { position: relative; }

.deco-number {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 15vw, 10rem);
    font-weight: 700;
    color: var(--text-primary);
    opacity: 0.03;
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.problem-left .label,
.problem-left .heading-lg {
    position: relative;
    z-index: 1;
}

.problem-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.problem-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 1px solid var(--border-subtle);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.problem-item:hover {
    border-color: rgba(0, 212, 255, 0.2);
    background: rgba(0, 212, 255, 0.02);
}

.problem-num {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent-cyan);
    flex-shrink: 0;
    padding-top: 0.25rem;
}

.problem-item h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.problem-item p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.6; }

/* ============================================
   Solution Section
   ============================================ */
.solution-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.solution-center .heading-xl { margin-bottom: 1.5rem; }
.solution-center .sub-text { margin: 0 auto; }

/* ============================================
   Services Section (Horizontal Scroll)
   ============================================ */
.services-section {
    padding: 0;
    overflow: hidden;
}

.services-wrapper {
    min-height: calc(100vh - 80px);
    padding: 3rem 0 4rem;
}

.services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 1.5rem 3rem;
    max-width: 1280px;
    margin: 0 auto;
}

@media (min-width: 768px) { .services-header { padding: 0 3rem 3rem; } }

.services-counter {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.services-counter #servicesCurrent { color: var(--accent-cyan); }

.services-track {
    display: flex;
    gap: 1.5rem;
    padding: 0 1.5rem;
    padding-right: calc(100vw - 300px - 1.5rem);
    will-change: transform;
}

@media (min-width: 768px) { .services-track { gap: 2rem; padding: 0 3rem; padding-right: calc(100vw - 380px - 3rem); } }

.service-card {
    flex: 0 0 300px;
    padding: 2rem;
    border: 1px solid var(--border-subtle);
    border-radius: 1.5rem;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

@media (min-width: 768px) { .service-card { flex: 0 0 380px; padding: 2.5rem; } }

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.card-deco-num {
    position: absolute;
    top: -1rem; right: -0.5rem;
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 700;
    color: var(--text-primary);
    opacity: 0.04;
    line-height: 1;
    pointer-events: none;
}

.card-icon {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.card-icon svg { width: 24px; height: 24px; color: var(--accent-cyan); }

.service-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1.5rem; }

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.card-tags span {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--border-subtle);
    border-radius: 9999px;
}

.services-progress {
    max-width: 1280px;
    margin: 2rem auto 0;
    padding: 0 1.5rem;
    height: 2px;
    background: var(--border-subtle);
}

@media (min-width: 768px) { .services-progress { padding: 0 3rem; } }

.services-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-teal));
    transition: width 0.1s;
}

/* ============================================
   Stats Section
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-block { text-align: center; padding: 2rem 1rem; }

.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-value .counter { font-variant-numeric: tabular-nums; }

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ============================================
   App Showcase
   ============================================ */
.showcase-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) { .showcase-grid { grid-template-columns: 1fr 1fr; gap: 6rem; } }

.showcase-content .heading-lg { margin-bottom: 1.5rem; }
.showcase-content .sub-text { margin-bottom: 2.5rem; }

.free-badge-inline {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #00c853;
    background: rgba(0, 200, 83, 0.08);
    border: 1px solid rgba(0, 200, 83, 0.25);
    border-radius: 100px;
    padding: 0.375rem 1rem;
    margin-bottom: 1rem;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.showcase-features li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.sf-icon {
    width: 40px; height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.sf-icon svg { width: 20px; height: 20px; color: var(--accent-cyan); }

.showcase-features strong {
    display: block;
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.showcase-features span { font-size: 0.875rem; color: var(--text-muted); }

.showcase-visual {
    display: flex;
    justify-content: center;
}

/* Phone Mockup */
.phone-mockup { position: relative; }

.phone-frame {
    width: 280px;
    background: var(--bg-elevated);
    border-radius: 36px;
    padding: 10px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.03) inset;
}

.phone-notch {
    width: 90px; height: 24px;
    background: var(--bg-elevated);
    border-radius: 0 0 16px 16px;
    margin: 0 auto -12px;
    position: relative; z-index: 2;
}

.phone-screen {
    background: var(--bg-secondary);
    border-radius: 28px;
    padding: 0;
    min-height: 440px;
    position: relative;
    overflow: hidden;
}

.phone-screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    border-radius: 28px;
}

.app-header-mock {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-primary);
    font-weight: 600;
}

.app-logo-mock {
    width: 28px; height: 28px;
    background: var(--accent-cyan);
    color: var(--bg-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
}

.app-notif-mock {
    margin-left: auto;
    width: 20px; height: 20px;
    background: var(--accent-amber);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
}

.app-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stat-box {
    text-align: center;
    padding: 0.5rem;
    background: rgba(255,255,255,0.03);
    border-radius: 0.5rem;
    border: 1px solid var(--border-subtle);
}

.stat-box.stat-hl { border-color: var(--accent-cyan); background: rgba(0, 212, 255, 0.05); }
.stat-box .sn { display: block; font-size: 1.25rem; font-weight: 700; color: var(--text-primary); }
.stat-box .st { font-size: 0.6rem; color: var(--text-muted); }

.app-section-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.app-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem;
    border: 1px solid var(--border-subtle);
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}

.ac-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.ac-progress { background: var(--accent-amber); }
.ac-waiting { background: var(--accent-cyan); }
.ac-done { background: var(--accent-teal); }
.ac-body { flex: 1; }
.ac-title { font-size: 0.75rem; font-weight: 600; color: var(--text-primary); }
.ac-meta { font-size: 0.625rem; color: var(--text-muted); }
.ac-time { font-family: var(--font-mono); font-size: 0.65rem; color: var(--text-muted); }
.ac-badge { font-size: 0.6rem; padding: 2px 6px; background: rgba(0,212,255,0.1); color: var(--accent-cyan); border-radius: 4px; }
.ac-price { font-family: var(--font-mono); font-size: 0.7rem; color: var(--accent-teal); font-weight: 600; }

/* ============================================
   For Who Section
   ============================================ */
.forwho-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) { .forwho-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .forwho-grid { grid-template-columns: repeat(4, 1fr); } }

.forwho-card {
    padding: 2rem;
    border: 1px solid var(--border-subtle);
    border-radius: 1.5rem;
    transition: all 0.4s ease;
}

.forwho-card:hover {
    border-color: rgba(0, 212, 255, 0.2);
    background: rgba(0, 212, 255, 0.02);
    transform: translateY(-4px);
}

.forwho-icon {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    margin-bottom: 1.5rem;
}

.forwho-icon svg { width: 24px; height: 24px; color: var(--accent-cyan); }
.forwho-card h3 { font-size: 1.125rem; margin-bottom: 0.75rem; }
.forwho-card p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.6; }

/* ============================================
   Pricing
   ============================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tgl-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.tgl-label.active { color: var(--text-primary); font-weight: 600; }

.tgl-badge {
    background: var(--accent-teal);
    color: var(--bg-primary);
    padding: 2px 8px;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 600;
}

.tgl-switch { position: relative; width: 44px; height: 24px; }
.tgl-switch input { opacity: 0; width: 0; height: 0; }

.tgl-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--border-subtle);
    border-radius: 9999px;
    transition: all 0.3s;
}

.tgl-slider::before {
    content: '';
    position: absolute;
    height: 18px; width: 18px;
    left: 3px; bottom: 3px;
    background: var(--text-primary);
    border-radius: 50%;
    transition: all 0.3s;
}

.tgl-switch input:checked + .tgl-slider { background: var(--accent-cyan); }
.tgl-switch input:checked + .tgl-slider::before { transform: translateX(20px); }

.pricing-cards { display: grid; gap: 1.5rem; }
.pricing-3 { max-width: 1100px; margin: 0 auto; }
.pricing-2 { max-width: 750px; margin: 0 auto; }
.pricing-1 { max-width: 550px; margin: 0 auto; }

@media (min-width: 768px) {
    .pricing-3 { grid-template-columns: repeat(3, 1fr); }
    .pricing-2 { grid-template-columns: repeat(2, 1fr); }
}

.p-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.p-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }

.p-featured { border-color: var(--accent-cyan); box-shadow: 0 0 0 1px var(--accent-cyan); }

@media (min-width: 768px) {
    .p-featured { transform: scale(1.05); z-index: 1; }
    .p-featured:hover { transform: scale(1.07); }
}

.p-badge {
    position: absolute;
    top: -10px; left: 50%;
    transform: translateX(-50%);
    background: var(--accent-cyan);
    color: var(--bg-primary);
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-family: var(--font-mono);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.p-card h3 { font-size: 1.375rem; margin-bottom: 0.25rem; text-align: center; }
.p-desc { font-size: 0.8125rem; color: var(--text-muted); text-align: center; margin-bottom: 1.5rem; }

.p-price { text-align: center; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border-subtle); }
.p-amount { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; color: var(--text-primary); }
.p-currency { font-size: 1.25rem; color: var(--text-muted); }
.p-period { font-size: 0.8125rem; color: var(--text-muted); }

.p-features { margin-bottom: 1.5rem; flex: 1; }

.p-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.p-features li::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--accent-teal);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Pricing bonus badge */
.p-bonus {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 184, 0, 0.08);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent-amber);
}

.p-bonus svg { flex-shrink: 0; color: var(--accent-amber); }

/* VAT & trial notes */
.pricing-vat {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 2rem;
}

.pricing-trial {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}

/* Addons section */
.addons-section {
    margin-top: 4rem;
}

.addons-heading {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1.5rem;
}

.addons-grid {
    display: grid;
    gap: 1rem;
    max-width: 750px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .addons-grid { grid-template-columns: repeat(3, 1fr); }
}

.addon-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.addon-card:hover { border-color: rgba(0, 212, 255, 0.2); transform: translateY(-2px); }

.addon-info { display: flex; flex-direction: column; gap: 0.25rem; }
.addon-info strong { font-size: 0.875rem; color: var(--text-primary); }
.addon-info span { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; }

.addon-price {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.addon-price small {
    font-size: 0.6875rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* Branches section */
.branches-section {
    margin-top: 3rem;
}

.branches-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.branch-tag {
    padding: 0.4rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 9999px;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.branch-tag:hover {
    border-color: rgba(0, 212, 255, 0.3);
    color: var(--text-primary);
}

/* Comparison table */
.comparison-section {
    margin-top: 3rem;
}

.comparison-table-wrap {
    overflow-x: auto;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 1rem;
    border: 1px solid var(--border-subtle);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.comparison-table thead {
    background: var(--bg-secondary);
}

.comparison-table th {
    padding: 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    border-bottom: 1px solid var(--border-subtle);
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td {
    padding: 0.75rem 1rem;
    text-align: center;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
}

.comparison-table td:first-child {
    text-align: left;
    color: var(--text-primary);
    font-weight: 500;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.cmp-yes {
    color: var(--accent-teal) !important;
    font-weight: 600;
}

.cmp-no {
    color: var(--text-muted) !important;
    opacity: 0.5;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
    padding: 2rem;
    border: 1px solid var(--border-subtle);
    border-radius: 1.5rem;
    background: var(--bg-secondary);
    transition: all 0.3s ease;
}

.testimonial-card:hover { border-color: rgba(0, 212, 255, 0.15); transform: translateY(-4px); }

.tc-stars { color: var(--accent-amber); font-size: 0.875rem; margin-bottom: 1rem; letter-spacing: 2px; }

.testimonial-card > p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.tc-author { display: flex; align-items: center; gap: 0.75rem; }

.tc-avatar {
    width: 40px; height: 40px;
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
}

.tc-author strong { display: block; font-size: 0.875rem; color: var(--text-primary); }
.tc-author span { font-size: 0.75rem; color: var(--text-muted); }

/* ============================================
   FAQ
   ============================================ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
    transition: color 0.2s;
}

.faq-q:hover { color: var(--accent-cyan); }

.faq-icon {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: transform 0.3s, color 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--accent-cyan); }

.faq-a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.faq-item.active .faq-a { grid-template-rows: 1fr; }

.faq-a > p {
    overflow: hidden;
    padding: 0 0 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item.active .faq-a > p { padding-bottom: 1.5rem; }

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.blob-cta-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--accent-cyan), transparent 70%);
    top: -200px; right: -200px;
    opacity: 0.15;
}

.blob-cta-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--accent-amber), transparent 70%);
    bottom: -150px; left: -150px;
    opacity: 0.1;
}

.cta-content { max-width: 700px; margin: 0 auto; position: relative; }

.cta-heading { margin-bottom: 1.5rem; }
.cta-sub { margin: 0 auto 2.5rem; }

.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* CTA Launch Dates */
.cta-launch {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.cta-launch-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
}

.cta-launch-icon {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 8px;
    color: var(--accent-cyan);
    flex-shrink: 0;
}

.cta-launch-icon svg { width: 18px; height: 18px; }

.cta-launch-item div {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.cta-launch-item strong {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.cta-launch-item span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent-cyan);
    letter-spacing: 0.05em;
}

@media (max-width: 480px) {
    .cta-launch { gap: 1rem; }
    .cta-launch-item { padding: 0.625rem 1rem; }
}

/* ============================================
   Contact
   ============================================ */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row { display: grid; gap: 1rem; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { margin-bottom: 1.5rem; }

.form-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 0.75rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
}

.form-group textarea { resize: vertical; }

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-subtle);
}

.footer-top {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) { .footer-top { grid-template-columns: 2fr 3fr; } }

.footer-brand > p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-top: 1rem; }

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

.footer-col h4 {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--accent-cyan); }

.footer-address {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 0.25rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.8125rem;
    color: var(--text-muted);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
}

/* ============================================
   3D Card Perspective
   ============================================ */
.service-card,
.forwho-card,
.testimonial-card,
.p-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* ============================================
   Transition Dividers
   ============================================ */
.section-divider {
    position: relative;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-line {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), var(--accent-teal), transparent);
}

.divider-dot {
    position: absolute;
    width: 6px; height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 20px var(--accent-cyan);
}

/* ============================================
   Code snippet decorations
   ============================================ */
.code-snippet {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border-subtle);
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(8px);
    font-family: var(--font-mono);
    font-size: 0.625rem;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    position: absolute;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
}

.code-snippet .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent-teal);
}

.code-snippet--1 { top: 15%; right: 5%; }
.code-snippet--2 { bottom: 20%; left: 3%; }

/* ============================================
   Glow orb on service cards
   ============================================ */
.card-glow {
    position: absolute;
    top: -40px; right: -40px;
    width: 120px; height: 120px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.service-card:hover .card-glow { opacity: 0.15; }

.service-card[data-color="#00D4FF"] .card-glow { background: #00D4FF; }
.service-card[data-color="#00B4A0"] .card-glow { background: #00B4A0; }
.service-card[data-color="#FFB800"] .card-glow { background: #FFB800; }
.service-card[data-color="#8B5CF6"] .card-glow { background: #8B5CF6; }
.service-card[data-color="#FF4444"] .card-glow { background: #FF4444; }
.service-card[data-color="#FF6B00"] .card-glow { background: #FF6B00; }

/* ============================================
   Notify / Signup Form
   ============================================ */
.notify-form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.notify-form .notify-input,
.notify-form .notify-select {
    padding: 0.875rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 0.75rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    transition: border-color 0.2s;
}

.notify-form .notify-input {
    min-width: 220px;
    flex: 1;
}

.notify-form .notify-select {
    min-width: 180px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.25rem;
    cursor: pointer;
}

.notify-form .notify-select option {
    background: var(--bg-elevated);
    color: var(--text-primary);
}

.notify-form .notify-input:focus,
.notify-form .notify-select:focus {
    outline: none;
    border-color: var(--accent-cyan);
}

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

.notify-form .btn-notify-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, var(--accent-amber), #FF9500);
    color: var(--bg-primary);
    border: none;
    border-radius: 0.75rem;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.notify-form .btn-notify-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 184, 0, 0.3);
}

.notify-form .btn-notify-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.notify-form .btn-notify-submit svg {
    width: 18px;
    height: 18px;
}

.notify-hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

.notify-msg {
    width: 100%;
    text-align: center;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    min-height: 1.25rem;
}

.notify-msg.success {
    color: #00c853;
}

.notify-msg.error {
    color: #ff4444;
}

/* Compact variant (CTA section) */
.notify-form--compact {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}

.notify-form--compact .notify-label {
    width: 100%;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

/* Start page variant */
.notify-form--start {
    margin-top: 2rem;
}

@media (max-width: 600px) {
    .notify-form {
        flex-direction: column;
    }
    .notify-form .notify-input,
    .notify-form .notify-select,
    .notify-form .btn-notify-submit {
        width: 100%;
        min-width: unset;
    }
}

/* ============================================
   Blog Preview (homepage)
   ============================================ */
.blog-preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .blog-preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-preview-card {
    display: block;
    padding: 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.blog-preview-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, 0.2);
}

.blog-preview-tag {
    font-family: var(--font-mono);
    font-size: 0.5625rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bg-primary);
    background: var(--accent-cyan);
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    font-weight: 600;
    display: inline-block;
}

.blog-preview-card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1rem 0 0.5rem;
    line-height: 1.3;
}

.blog-preview-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   Cookie Consent Banner
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border-subtle);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    transform: translateY(100%);
    animation: cookieSlideUp 0.4s ease forwards;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
}

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

.cookie-banner p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 600px;
    margin: 0;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.cookie-accept {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-teal));
    color: var(--bg-primary);
}

.cookie-accept:hover {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    transform: translateY(-1px);
}

.cookie-reject {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
}

.cookie-reject:hover {
    border-color: var(--text-muted);
    color: var(--text-primary);
}

.cookie-link {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.cookie-link:hover {
    color: var(--accent-cyan);
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 1rem;
    }
    .cookie-actions {
        justify-content: center;
    }
}

/* ============================================
   Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
