/* ═══════════════════════════════════════════════════════════════════════
   PinoTransporte — Landing Page v2 Redesign
   Deep dark theme · Cool cyan/teal accent · Lagerplatz-inspired quality
   ═══════════════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ─────────────────────────────────────────────────── */
:root {
    /* Backgrounds – deep blue-black like lagerplatz */
    --bg:            #0b1120;
    --bg-raised:     #111827;
    --bg-card:       #151c2c;
    --bg-card-hover: #1a2336;
    --surface:       #1e2740;
    --surface-hover: #243050;

    /* Text – no pure white, layered hierarchy */
    --text:          #b8c4d6;
    --text-strong:   #e8edf5;
    --text-muted:    #5c6b82;
    --text-faint:    #3b4760;

    /* Accent – cool cyan/teal */
    --accent:        #06b6d4;
    --accent-hover:  #0891b2;
    --accent-light:  rgba(6, 182, 212, 0.10);
    --accent-glow:   rgba(6, 182, 212, 0.20);
    --accent-subtle: rgba(6, 182, 212, 0.06);

    /* Status */
    --success:  #10b981;
    --warning:  #f59e0b;
    --danger:   #ef4444;
    --info:     #0ea5e9;

    /* Borders – subtle, not white */
    --border:        rgba(255,255,255,0.06);
    --border-subtle: rgba(255,255,255,0.04);
    --border-hover:  rgba(255,255,255,0.10);
    --border-accent: rgba(6,182,212,0.25);

    /* Typography */
    --font:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --mono:  'JetBrains Mono', 'Fira Code', 'SF Mono', monospace;
    --text-xs:   clamp(0.7rem, 0.65rem + 0.25vw, 0.75rem);
    --text-sm:   clamp(0.8rem, 0.75rem + 0.25vw, 0.875rem);
    --text-base: clamp(0.9rem, 0.85rem + 0.25vw, 1rem);
    --text-lg:   clamp(1.05rem, 1rem + 0.25vw, 1.125rem);
    --text-xl:   clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
    --text-2xl:  clamp(1.5rem, 1.3rem + 1vw, 2rem);
    --text-3xl:  clamp(1.8rem, 1.5rem + 1.5vw, 2.5rem);

    /* Spacing */
    --space-2xs: 0.25rem;
    --space-xs:  0.5rem;
    --space-sm:  0.75rem;
    --space-md:  1rem;
    --space-lg:  1.5rem;
    --space-xl:  2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Radius */
    --radius-sm:   4px;
    --radius:      8px;
    --radius-md:   8px;
    --radius-lg:   12px;
    --radius-xl:   16px;
    --radius-pill: 9999px;

    /* Shadows */
    --shadow-sm:  0 1px 2px rgba(0,0,0,0.3);
    --shadow:     0 4px 12px rgba(0,0,0,0.25);
    --shadow-md:  0 4px 12px rgba(0,0,0,0.25);
    --shadow-lg:  0 8px 32px rgba(0,0,0,0.35);
    --shadow-glow:0 0 30px var(--accent-glow);

    /* Transitions */
    --transition:      200ms ease;
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms cubic-bezier(0.16, 1, 0.3, 1);

    /* Dot grid */
    --dot-color: rgba(6,182,212,0.04);
    --dot-size:  28px;
    --nav-blur-bg: rgba(11, 17, 32, 0.88);
    --glow-opacity: 0.06;
}

/* ─── Light Theme ───────────────────────────────────────────────────── */
[data-theme="light"] {
    --bg:            #f8f9fb;
    --bg-raised:     #ffffff;
    --bg-card:       #ffffff;
    --bg-card-hover: #f3f4f6;
    --surface:       #f0f1f4;
    --surface-hover: #e5e7eb;

    --text:          #374151;
    --text-strong:   #111827;
    --text-muted:    #6b7280;
    --text-faint:    #9ca3af;

    --accent:        #0891b2;
    --accent-hover:  #0e7490;
    --accent-light:  rgba(8, 145, 178, 0.08);
    --accent-glow:   rgba(8, 145, 178, 0.12);
    --accent-subtle: rgba(8, 145, 178, 0.04);

    --border:        rgba(0,0,0,0.08);
    --border-subtle: rgba(0,0,0,0.05);
    --border-hover:  rgba(0,0,0,0.12);
    --border-accent: rgba(8,145,178,0.2);

    --shadow-sm:  0 1px 2px rgba(0,0,0,0.06);
    --shadow:     0 4px 12px rgba(0,0,0,0.06);
    --shadow-md:  0 4px 12px rgba(0,0,0,0.06);
    --shadow-lg:  0 8px 32px rgba(0,0,0,0.08);
    --shadow-glow:0 0 30px var(--accent-glow);

    --dot-color: rgba(8,145,178,0.035);
    --nav-blur-bg: rgba(248, 249, 251, 0.88);
    --glow-opacity: 0.04;
}

[data-theme="light"] .nav--scrolled,
[data-theme="light"] .nav--solid {
    background: var(--nav-blur-bg);
    border-bottom-color: var(--border);
}

[data-theme="light"] .nav__logo { color: var(--text-strong); }

[data-theme="light"] .hero__glow--1 { opacity: 0.03; }
[data-theme="light"] .hero__glow--2 { opacity: 0.02; }

[data-theme="light"] .nav__burger span { background: var(--text-strong); }

[data-theme="light"] .hero__scroll-mouse { border-color: var(--text-muted); }

[data-theme="light"] .vehicle-3d__face { border-color: var(--accent); background: rgba(8,145,178,0.04); }
[data-theme="light"] .vehicle-3d__face--side { border-color: rgba(8,145,178,0.3); }
[data-theme="light"] .vehicle-3d__face--top { border-color: rgba(8,145,178,0.2); }

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

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

body {
    font-family: var(--font);
    font-size: var(--text-base);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    /* Dot-grid background like lagerplatz */
    background-image: radial-gradient(circle, var(--dot-color) 1px, transparent 1px);
    background-size: var(--dot-size) var(--dot-size);
}

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

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

::selection {
    background: var(--accent);
    color: #fff;
}

/* ─── Container ─────────────────────────────────────────────────────── */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ─── Buttons ───────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font);
    font-weight: 600;
    font-size: var(--text-sm);
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    line-height: 1.4;
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, var(--accent), #22d3ee);
    color: #fff;
    box-shadow: 0 4px 16px var(--accent-glow);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(6,182,212,0.35);
    color: #fff;
}

.btn--ghost {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-hover);
}
.btn--ghost:hover {
    border-color: var(--text-muted);
    color: var(--text-strong);
    background: rgba(255,255,255,0.03);
}

.btn--sm { padding: 7px 16px; font-size: var(--text-xs); }
.btn--lg { padding: 14px 30px; font-size: var(--text-base); }
.btn--full { width: 100%; justify-content: center; }

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* ─── Navigation ────────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all 0.4s ease;
    background: transparent;
}

.nav--scrolled, .nav--solid {
    background: var(--nav-blur-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-subtle);
    padding: var(--space-xs) 0;
}

.nav__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    text-decoration: none;
    color: var(--text-strong);
    font-weight: 700;
    font-size: 1.1rem;
}

.nav__logo-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), #22d3ee);
    border-radius: var(--radius-md);
    font-size: 1rem;
    box-shadow: 0 2px 8px var(--accent-glow);
}

.nav__logo-accent { color: var(--accent); }
.nav__logo-text { letter-spacing: -0.02em; }

.nav__links {
    display: flex;
    gap: var(--space-lg);
}

.nav__link {
    color: var(--text-muted);
    font-size: var(--text-sm);
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav__link:hover, .nav__link--active {
    color: var(--text-strong);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), #22d3ee);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav__link:hover::after { width: 100%; }

.nav__actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

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

.nav__burger span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
    .nav__links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-md);
        border-bottom: 1px solid var(--border-subtle);
    }
    .nav__links.open { display: flex; }
    .nav__burger { display: flex; }
    .nav__actions .btn { display: none; }
}

/* ─── Hero ──────────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: var(--space-4xl) var(--space-lg) var(--space-3xl);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Dot-grid hero background — inspired by lagerplatz */
.hero__grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--dot-color) 1.2px, transparent 1.2px);
    background-size: var(--dot-size) var(--dot-size);
    mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, black 20%, transparent 70%);
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
}

.hero__glow--1 {
    width: 700px;
    height: 700px;
    background: var(--accent);
    top: -250px;
    right: -150px;
    opacity: 0.06;
    animation: glowDrift 12s ease-in-out infinite alternate;
}

.hero__glow--2 {
    width: 500px;
    height: 500px;
    background: #a78bfa;
    bottom: -150px;
    left: -200px;
    opacity: 0.04;
    animation: glowDrift 12s ease-in-out 6s infinite alternate;
}

@keyframes glowDrift {
    0%   { opacity: 0.04; transform: scale(1) translate(0, 0); }
    100% { opacity: 0.08; transform: scale(1.15) translate(20px, -10px); }
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
}

.hero__chip {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 6px 16px;
    background: var(--accent-light);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-pill);
    font-family: var(--mono);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--accent);
    margin-bottom: var(--space-xl);
    animation: fadeDown 0.6s ease both;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero__title {
    font-size: clamp(2.2rem, 1.4rem + 3.5vw, 4rem);
    font-weight: 800;
    color: var(--text-strong);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-lg);
    animation: fadeUp 0.7s ease 0.15s both;
}

.hero__title-accent {
    background: linear-gradient(90deg, var(--accent), #22d3ee, var(--accent));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero__subtitle {
    font-size: var(--text-lg);
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto var(--space-xl);
    line-height: 1.7;
    animation: fadeUp 0.7s ease 0.3s both;
}

.hero__cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
    animation: fadeUp 0.7s ease 0.45s both;
}

.hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    animation: fadeUp 0.7s ease 0.6s both;
}

.hero__stat {
    text-align: center;
}

.hero__stat-value {
    display: block;
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--text-strong);
    font-family: var(--mono);
    line-height: 1.2;
}

.hero__stat-label {
    display: block;
    font-size: var(--text-xs);
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 2px;
    font-family: var(--mono);
}

.hero__stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border-hover);
}

/* Scroll indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2.5s ease-in-out infinite;
}

.hero__scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid var(--text-faint);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.hero__scroll-wheel {
    width: 3px;
    height: 7px;
    background: var(--accent);
    border-radius: 3px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

/* ─── Sections ──────────────────────────────────────────────────────── */
.section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.section--dark {
    background: var(--bg-raised);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
}

.section--dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
}

.section__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

/* Section chip — lagerplatz-style section label */
.section__chip {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--mono);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
    padding: 4px 14px;
    background: var(--accent-light);
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-accent);
}

.section__title {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--text-strong);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
}

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

.section__subtitle {
    font-size: var(--text-base);
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ─── Services Grid ─────────────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
}

/* Staggered reveal for service cards */
.services-grid > :nth-child(1) { transition-delay: 0ms; }
.services-grid > :nth-child(2) { transition-delay: 80ms; }
.services-grid > :nth-child(3) { transition-delay: 160ms; }
.services-grid > :nth-child(4) { transition-delay: 240ms; }
.services-grid > :nth-child(5) { transition-delay: 320ms; }
.services-grid > :nth-child(6) { transition-delay: 400ms; }

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

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

.service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(6,182,212,0.2);
    box-shadow: 0 8px 32px rgba(6,182,212,0.08), var(--shadow-md);
}

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

.service-card__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.service-card__title {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: var(--space-xs);
}

.service-card__desc {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.service-card__price {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: var(--space-2xs) var(--space-sm);
    background: var(--accent-light);
    border-radius: var(--radius-pill);
    font-family: var(--mono);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--accent);
}

/* ─── Vehicle Showcase ──────────────────────────────────────────────── */
.vehicle-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

@media (max-width: 768px) {
    .vehicle-showcase { grid-template-columns: 1fr; }
}

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

.vehicle-card:hover {
    border-color: rgba(6,182,212,0.15);
    box-shadow: var(--shadow-md);
}

.vehicle-card--main {
    border-color: rgba(6,182,212,0.2);
    box-shadow: 0 0 40px rgba(6,182,212,0.05);
}

.vehicle-card--main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #22d3ee);
}

.vehicle-card__badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--accent), #22d3ee);
    color: #fff;
    font-size: var(--text-xs);
    font-weight: 700;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    box-shadow: 0 2px 8px var(--accent-glow);
}

.vehicle-card__icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.vehicle-card__name {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: var(--space-lg);
}

.vehicle-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.vehicle-spec {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vehicle-spec__label {
    font-family: var(--mono);
    font-size: var(--text-xs);
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.vehicle-spec__value {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text-strong);
    font-family: var(--mono);
}

.vehicle-spec__value .unit {
    font-size: var(--text-xs);
    font-weight: 400;
    color: var(--text-muted);
}

/* Visual 3D box representation */
.vehicle-3d {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-3d__box {
    width: 200px;
    height: 100px;
    position: relative;
    transform: perspective(600px) rotateX(10deg) rotateY(-20deg);
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.vehicle-card:hover .vehicle-3d__box {
    transform: perspective(600px) rotateX(15deg) rotateY(-30deg);
}

.vehicle-3d__face {
    position: absolute;
    border: 2px solid var(--accent);
    background: rgba(6,182,212,0.04);
    border-radius: 4px;
}

.vehicle-3d__face--front {
    width: 200px;
    height: 100px;
    transform: translateZ(40px);
}

.vehicle-3d__face--side {
    width: 80px;
    height: 100px;
    right: -40px;
    transform: rotateY(90deg);
    border-color: rgba(6,182,212,0.3);
}

.vehicle-3d__face--top {
    width: 200px;
    height: 80px;
    top: -40px;
    transform: rotateX(90deg);
    border-color: rgba(6,182,212,0.2);
}

.vehicle-3d__label {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: var(--text-xs);
    color: var(--text-muted);
    white-space: nowrap;
    font-family: var(--mono);
}

/* Trailer variant — lower, open top */
.vehicle-3d__box--trailer {
    height: 50px;
}

.vehicle-3d__box--trailer .vehicle-3d__face--front {
    height: 50px;
    transform: translateZ(50px);
}

.vehicle-3d__box--trailer .vehicle-3d__face--side {
    width: 100px;
    height: 50px;
    right: -50px;
}

.vehicle-3d__box--trailer .vehicle-3d__face--top {
    height: 100px;
    top: -50px;
    border-style: dashed;
    background: rgba(6,182,212,0.02);
}

/* ─── Booking Wizard ─────────────────────────────────────────────────── */
.wizard {
    background: var(--bg-raised);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.wizard-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-subtle);
    gap: 0;
    overflow: hidden;
}

.wizard-step-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: var(--text-xs);
    font-weight: 600;
    white-space: nowrap;
    transition: all var(--transition-fast);
    color: var(--text-faint);
}

.wizard-step-indicator span:not(.wizard-step-indicator__num) {
    display: none;
}

.wizard-step-indicator.active span:not(.wizard-step-indicator__num) {
    display: inline;
}

.wizard-step-indicator__num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    background: var(--surface);
    color: var(--text-faint);
    transition: all var(--transition-fast);
}

.wizard-step-indicator.active {
    color: var(--accent);
    background: var(--accent-light);
}

.wizard-step-indicator.active .wizard-step-indicator__num {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.wizard-step-indicator.done {
    color: var(--success);
}

.wizard-step-indicator.done .wizard-step-indicator__num {
    background: var(--success);
    color: #fff;
}

.wizard-step-connector {
    width: 16px;
    height: 2px;
    background: var(--border-subtle);
    align-self: center;
    flex-shrink: 0;
    border-radius: 1px;
}

.wizard-step-connector.done {
    background: var(--success);
}

.wizard-body {
    padding: var(--space-xl);
    min-height: 300px;
}

.wizard-body__title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wizard-body__subtitle {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
}

.wizard-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-subtle);
}

.wizard-nav .btn--back {
    background: none;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.wizard-nav .btn--back:hover {
    border-color: var(--border-hover);
    color: var(--text-strong);
}

.wizard-nav .btn--next {
    background: linear-gradient(135deg, var(--accent), #22d3ee);
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 2px 8px var(--accent-glow);
}

.wizard-nav .btn--next:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--accent-glow);
}

.wizard-nav .btn--next:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

/* Booking wrapper (legacy compat) */
.booking-wrapper {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: var(--space-xl);
    align-items: start;
}

@media (max-width: 900px) {
    .booking-wrapper { grid-template-columns: 1fr; }
}

/* Calendar */
.booking-calendar {
    background: var(--bg-raised);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
}

.cal-header__title {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--text-strong);
}

.cal-header__nav {
    display: flex;
    gap: var(--space-xs);
}

.cal-nav-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 1rem;
}

.cal-nav-btn:hover {
    background: var(--surface-hover);
    border-color: var(--border-hover);
    color: var(--text-strong);
}

.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: var(--space-xs);
}

.cal-weekday {
    text-align: center;
    font-family: var(--mono);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: var(--space-xs);
}

.cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    font-weight: 500;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--text);
    border: none;
    background: none;
    position: relative;
}

.cal-day:hover:not(.cal-day--disabled):not(.cal-day--empty) {
    background: var(--surface);
    color: var(--text-strong);
}

.cal-day--today {
    color: var(--accent);
    font-weight: 700;
}

.cal-day--today::after {
    content: '';
    position: absolute;
    bottom: 4px;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
}

.cal-day--selected {
    background: linear-gradient(135deg, var(--accent), #22d3ee) !important;
    color: #fff !important;
    font-weight: 700;
    box-shadow: 0 2px 8px var(--accent-glow);
}

.cal-day--selected::after { display: none; }

.cal-day--disabled {
    color: var(--text-faint);
    opacity: 0.4;
    cursor: not-allowed;
}

.cal-day--empty { cursor: default; }

.cal-day--has-slots::before {
    content: '';
    position: absolute;
    bottom: 3px;
    width: 4px;
    height: 4px;
    background: var(--success);
    border-radius: 50%;
}

.cal-day--booked::before { background: var(--danger); }

/* Time slots */
.cal-slots {
    margin-top: var(--space-lg);
    border-top: 1px solid var(--border-subtle);
    padding-top: var(--space-lg);
}

.cal-slots__title {
    font-family: var(--mono);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--text-faint);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cal-slots__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: var(--space-xs);
}

.cal-slot {
    padding: 8px;
    text-align: center;
    font-family: var(--mono);
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid var(--border-subtle);
    background: var(--surface);
    color: var(--text);
}

.cal-slot:hover:not(.cal-slot--booked) {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-light);
}

.cal-slot--selected {
    background: linear-gradient(135deg, var(--accent), #22d3ee) !important;
    color: #fff !important;
    border-color: var(--accent) !important;
    box-shadow: 0 2px 8px var(--accent-glow);
}

.cal-slot--booked {
    opacity: 0.3;
    cursor: not-allowed;
    text-decoration: line-through;
}

.cal-no-slots {
    text-align: center;
    padding: var(--space-lg);
    color: var(--text-muted);
    font-size: var(--text-sm);
}

/* Booking Form */
.booking-form {
    background: var(--bg-raised);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.booking-form__title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.form-group { margin-bottom: var(--space-md); }

.form-label {
    display: block;
    font-family: var(--mono);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--text-faint);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 10px 14px;
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-strong);
    font-family: var(--font);
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-light);
}

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

.form-select {
    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='%235c6b82' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

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

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

@media (max-width: 500px) {
    .form-row { grid-template-columns: 1fr; }
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: var(--text-sm);
    color: var(--text);
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    cursor: pointer;
}

/* ─── Address Autocomplete ──────────────────────────────────────────── */
.address-wrap {
    position: relative;
}

.address-wrap .form-input {
    padding-right: 36px;
}

.address-spinner {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    display: none;
}

.address-wrap.loading .address-spinner {
    display: block;
}

@keyframes spin {
    to { transform: translateY(-50%) rotate(360deg); }
}

.address-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--bg-card);
    border: 1px solid var(--border-hover);
    border-top: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    max-height: 220px;
    overflow-y: auto;
    display: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.address-suggestions.open {
    display: block;
}

.address-suggestion {
    padding: 10px 14px;
    font-size: var(--text-sm);
    color: var(--text);
    cursor: pointer;
    border-bottom: 1px solid var(--border-subtle);
    transition: background var(--transition-fast);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.address-suggestion:last-child {
    border-bottom: none;
}

.address-suggestion:hover,
.address-suggestion.active {
    background: var(--accent-light);
    color: var(--text-strong);
}

.address-suggestion__icon {
    flex-shrink: 0;
    font-size: 14px;
    margin-top: 1px;
    opacity: 0.6;
}

.address-suggestion__text {
    line-height: 1.4;
}

.address-no-results {
    padding: 12px 14px;
    font-size: var(--text-sm);
    color: var(--text-muted);
    text-align: center;
}

/* ─── Estimated Price Display ──────────────────────────────────────── */
.price-estimate {
    background: var(--accent-subtle);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    margin-bottom: var(--space-md);
    display: none;
}

.price-estimate.visible {
    display: block;
}

.price-estimate__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.price-estimate__label {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.price-estimate__price {
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--text-strong);
}

.price-estimate__details {
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-top: 4px;
}

.price-estimate__note {
    font-size: 0.7rem;
    color: var(--text-faint);
    margin-top: 6px;
    font-style: italic;
}

.form-error {
    padding: var(--space-md);
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-md);
    color: var(--danger);
    font-size: var(--text-sm);
    margin-bottom: var(--space-md);
}

.form-success {
    padding: var(--space-xl);
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-md);
    color: var(--success);
    text-align: center;
}

.form-success__icon {
    font-size: 3rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.form-success__title {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

/* Success steps */
.form-success__steps {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: var(--bg);
    border-radius: var(--radius-md);
}

.success-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
}

.success-step__num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.success-step--done {
    color: var(--success);
}

.success-step--done .success-step__num {
    background: var(--success);
    color: #fff;
}

.success-step--pending {
    color: var(--accent);
}

.success-step--pending .success-step__num {
    background: var(--accent);
    color: #fff;
    animation: pulse-accent 2s infinite;
}

@keyframes pulse-accent {
    0%, 100% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(6, 182, 212, 0); }
}

/* ─── OTP Step ─────────────────────────────────────────────── */

/* ─── Done / Success Page ──────────────────────────────────── */
.done-page { text-align: center; }
.done-page__header { margin-bottom: var(--space-lg); }
.done-page__icon { font-size: 3rem; display: block; margin-bottom: var(--space-xs); }
.done-page__title { font-size: var(--text-xl); font-weight: 800; color: var(--text-strong); margin-bottom: 4px; }
.done-page__subtitle { font-size: var(--text-sm); color: var(--text-muted); }

.done-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-lg);
    text-align: left;
}
.done-card__accent {
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--success));
}
.done-card__body { padding: 20px; }
.done-card__id {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--accent-subtle);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}
.done-card__id-label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: var(--text-muted);
}
.done-card__id-value {
    font-family: var(--mono);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.04em;
}
.done-card__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.done-card__item-label {
    display: block;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    color: var(--text-faint);
    margin-bottom: 2px;
}
.done-card__item-value {
    display: block;
    font-size: var(--text-sm);
    color: var(--text-strong);
    font-weight: 500;
    word-break: break-word;
}

.done-steps {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: var(--space-lg);
    padding: 16px;
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    text-align: left;
}
.done-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
}
.done-step__icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
    color: #fff;
}
.done-step__text {
    font-size: var(--text-sm);
    font-weight: 500;
}
.done-step--done .done-step__icon { background: var(--success); }
.done-step--done .done-step__text { color: var(--success); }
.done-step--active .done-step__icon { background: var(--accent); animation: pulse-accent 2s infinite; }
.done-step--active .done-step__text { color: var(--text-strong); }
.done-step--pending .done-step__icon { background: var(--text-faint); }
.done-step--pending .done-step__text { color: var(--text-faint); }

.done-actions {
    display: flex;
    gap: 10px;
    margin-bottom: var(--space-lg);
}
.done-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}
.done-btn--primary {
    background: var(--accent);
    color: #fff;
}
.done-btn--primary:hover { background: var(--accent-hover); }
.done-btn--secondary {
    background: var(--surface);
    color: var(--text-strong);
    border: 1px solid var(--border);
}
.done-btn--secondary:hover { border-color: var(--accent); color: var(--accent); }
.done-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.done-note {
    font-size: var(--text-xs);
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─── OTP Step (original) ──────────────────────────────────── */
.otp-step {
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
}

.otp-step__icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    display: block;
}

.otp-step__title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: var(--space-sm);
}

.otp-step__desc {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-xl);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.otp-step__desc strong {
    color: var(--accent);
    font-weight: 600;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: var(--space-lg);
}

.otp-digit {
    width: 48px;
    height: 56px;
    background: var(--bg-hover);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--mono);
    color: var(--text-strong);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    caret-color: var(--accent);
}

.otp-digit:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.otp-digit:not(:placeholder-shown),
.otp-digit:not([value=""]) {
    border-color: var(--accent);
}

.otp-separator {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 300;
    user-select: none;
}

.otp-resend {
    margin-top: var(--space-lg);
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.otp-resend__btn {
    background: none;
    border: none;
    color: var(--accent);
    font-size: var(--text-sm);
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    font-weight: 500;
    transition: opacity 0.2s;
}

.otp-resend__btn:hover {
    opacity: 0.8;
}

.otp-resend__btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.otp-resend__timer {
    display: none;
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.otp-expiry {
    margin-top: var(--space-md);
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.7;
}

/* Responsive OTP */
@media (max-width: 480px) {
    .otp-digit {
        width: 40px;
        height: 48px;
        font-size: 1.2rem;
    }
    .otp-inputs {
        gap: 6px;
    }
    .form-success__steps {
        flex-direction: column;
        gap: 4px;
    }
    .done-card__grid {
        grid-template-columns: 1fr;
    }
    .done-actions {
        flex-direction: column;
    }
}

/* Selected booking summary */
.booking-summary {
    background: var(--accent-light);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.booking-summary__icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent), #22d3ee);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px var(--accent-glow);
}

.booking-summary__text {
    font-size: var(--text-sm);
    color: var(--text-strong);
    font-weight: 600;
}

.booking-summary__sub {
    font-size: var(--text-xs);
    color: var(--text-muted);
    font-weight: 400;
}

/* ─── Reviews ───────────────────────────────────────────────────────── */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.review-card {
    background: var(--bg-raised);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-base);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: var(--space-md);
    right: var(--space-lg);
    font-size: 4rem;
    color: var(--accent-subtle);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-2px);
    border-color: rgba(6,182,212,0.15);
    box-shadow: var(--shadow-md);
}

.review-card__stars {
    color: #f59e0b;
    font-size: var(--text-sm);
    margin-bottom: var(--space-md);
    letter-spacing: 2px;
}

.review-card__text {
    font-size: var(--text-sm);
    color: var(--text);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    font-style: italic;
}

.review-card__author {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--text-strong);
}

.review-card__date {
    font-family: var(--mono);
    font-size: var(--text-xs);
    color: var(--text-faint);
    margin-top: 2px;
}

.reviews-empty {
    text-align: center;
    padding: var(--space-3xl);
    color: var(--text-muted);
}

/* ─── Contact ───────────────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-lg);
}

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

.contact-card:hover {
    transform: translateY(-2px);
    border-color: rgba(6,182,212,0.15);
    box-shadow: var(--shadow-md);
}

.contact-card__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-md);
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.contact-card__title {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: var(--space-2xs);
}

.contact-card__value {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.contact-card__value a {
    color: var(--accent);
    transition: color var(--transition-fast);
}
.contact-card__value a:hover { color: var(--accent-hover); }

/* Social buttons */
.social-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-top: var(--space-xl);
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 10px 22px;
    background: var(--bg-raised);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-pill);
    color: var(--text);
    font-weight: 600;
    font-size: var(--text-sm);
    text-decoration: none;
    transition: all var(--transition-base);
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--text-strong);
}

.social-btn--instagram:hover { border-color: #E1306C; color: #E1306C; }
.social-btn--whatsapp:hover  { border-color: #25D366; color: #25D366; }
.social-btn--facebook:hover  { border-color: #1877F2; color: #1877F2; }
.social-btn--tiktok:hover    { border-color: #00f2ea; color: #00f2ea; }

.social-btn svg { width: 18px; height: 18px; }

/* ─── Footer ────────────────────────────────────────────────────────── */
.footer {
    border-top: 1px solid var(--border-subtle);
    padding: var(--space-xl) 0;
}

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

.footer__social {
    display: flex;
    gap: var(--space-md);
}

.footer__social a {
    color: var(--text-faint);
    transition: color var(--transition-fast);
}

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

.footer__copy {
    font-size: var(--text-xs);
    color: var(--text-faint);
}

@media (max-width: 600px) {
    .footer__inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ─── Toasts ────────────────────────────────────────────────────────── */
.toast-container {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    z-index: 10000;
    display: flex;
    flex-direction: column-reverse;
    gap: var(--space-xs);
}

.toast {
    padding: 12px 18px;
    background: var(--bg-raised);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-strong);
    font-size: var(--text-sm);
    box-shadow: var(--shadow-lg);
    animation: toastSlideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 360px;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.toast--success { border-left: 3px solid var(--success); }
.toast--error   { border-left: 3px solid var(--danger); }
.toast--info    { border-left: 3px solid var(--info); }

@keyframes toastSlideIn {
    from { transform: translateX(100%); opacity: 0; }
    to   { transform: translateX(0); opacity: 1; }
}

/* ─── Animations — lagerplatz-inspired ──────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.scroll-fade {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Utilities ─────────────────────────────────────────────────────── */
.input-password-wrap {
    position: relative;
}

.input-password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-faint);
    cursor: pointer;
    padding: 4px;
}

.input-password-toggle:hover { color: var(--text); }

/* ─── Theme Toggle ──────────────────────────────────────────────────── */
.theme-toggle {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-hover);
    background: var(--bg-raised);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.theme-toggle:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-light);
}

.theme-toggle__icon--light { display: none; }
[data-theme="light"] .theme-toggle__icon--dark { display: none; }
[data-theme="light"] .theme-toggle__icon--light { display: block; }

/* ─── Hero Trust Items ──────────────────────────────────────────────── */
.hero__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-muted);
    padding: var(--space-xs) var(--space-md);
    background: var(--bg-raised);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-pill);
}

.hero__trust-item svg { color: var(--success); flex-shrink: 0; }

/* ─── Wizard Responsive ─────────────────────────────────────────────── */
@media (max-width: 600px) {
    .wizard-stepper {
        padding: 10px 12px;
    }
    .wizard-step-indicator.active span:not(.wizard-step-indicator__num) {
        display: none;
    }
    .wizard-step-connector {
        width: 10px;
    }
    .wizard-body {
        padding: var(--space-lg) var(--space-md);
    }
    .wizard-body__title {
        font-size: var(--text-lg);
    }
    .wizard-nav .btn--next {
        padding: 10px 18px;
    }
}

/* ─── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 600px) {
    .hero__trust {
        flex-direction: column;
        gap: var(--space-sm);
    }
    .services-grid { grid-template-columns: 1fr; }
    .contact-grid  { grid-template-columns: 1fr; }
}
