/* ===========================
   JLZ TUNING - Premium Automotive Dark Theme
   =========================== */

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #0f0f18;
    --bg-card: rgba(255, 255, 255, 0.03);
    --accent: #ff4d00;
    --accent-light: #ff6a2a;
    --accent-dark: #cc3d00;
    --accent-glow: rgba(255, 77, 0, 0.3);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    --border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-brand: 'Orbitron', sans-serif;
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 77, 0, 0.4);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

.text-accent { color: var(--accent) !important; }
.section-padding { padding: 100px 0; }
.section-dark { background: var(--bg-secondary); }

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}
.preloader-inner { text-align: center; }
.preloader-logo {
    font-family: var(--font-brand);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 30px;
    animation: pulse 1.5s ease-in-out infinite;
}
.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}
.preloader-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 3px;
    animation: preloaderFill 1.5s ease forwards;
}
@keyframes preloaderFill {
    to { width: 100%; }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ===== GLASSMORPHIC CARDS ===== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition);
}
.glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 77, 0, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 77, 0, 0.05);
}
.glass-card-sm {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

/* ===== NAVBAR ===== */
.navbar {
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}
.navbar-brand {
    font-family: var(--font-brand);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}
.brand-icon {
    font-size: 1.3rem;
    margin-right: 2px;
}
.brand-accent { color: var(--accent); }
.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 5px;
    padding: 8px 12px !important;
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--accent) !important; }
.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff !important;
    border: none;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 8px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-accent:hover {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--accent-glow);
}
.btn-outline-light {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 8px;
    padding: 10px 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ===== HERO - Premium Animated Background ===== */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 60px;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 77, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
        var(--bg-primary);
}

/* Animated grid overlay */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 77, 0, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 77, 0, 0.035) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    animation: gridMove 30s linear infinite;
    pointer-events: none;
    z-index: 0;
}
@keyframes gridMove {
    from { background-position: 0 0; }
    to { background-position: 60px 60px; }
}

/* Bottom fade overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, transparent 75%, rgba(10, 10, 15, 0.8) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Glowing orbs using separate elements */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}
.hero-particles::before {
    width: 450px;
    height: 450px;
    background: rgba(255, 77, 0, 0.25);
    top: -10%;
    left: -5%;
    animation: orbFloat1 18s ease-in-out infinite;
}
.hero-particles::after {
    width: 500px;
    height: 500px;
    background: rgba(255, 100, 0, 0.18);
    bottom: -15%;
    right: -8%;
    animation: orbFloat2 22s ease-in-out infinite;
}
@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(80px, 60px) scale(1.15); }
    66% { transform: translate(-50px, 90px) scale(0.95); }
}
@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-100px, -70px) scale(1.2); }
}

/* Light beam sweeping */
.hero-light-beam {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.hero-light-beam::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(110deg, transparent 45%, rgba(255, 77, 0, 0.08) 50%, transparent 55%);
    animation: beamSweep 10s ease-in-out infinite;
}
@keyframes beamSweep {
    0%, 100% { transform: translateX(-30%); opacity: 0; }
    50% { transform: translateX(30%); opacity: 1; }
}

/* Ensure content is on top of all background layers */
.hero-section .container {
    z-index: 5 !important;
}
.hero-section .container { z-index: 2; }
.hero-content { width: 100%; }
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}
.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}
@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 77, 0, 0.1);
    border: 1px solid rgba(255, 77, 0, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 15px;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 15px;
}
.hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    max-width: 700px;
}
.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}
.hero-stat { text-align: center; }
.stat-number {
    font-family: var(--font-brand);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    display: inline;
}
.stat-suffix {
    font-family: var(--font-brand);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent);
    display: inline;
}
.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-heading);
}

/* Hero Selector */
.hero-selector {
    max-width: 900px;
    margin: 0 auto;
}
.hero-selector .selector-card {
    padding: 25px 30px;
    border-color: rgba(255, 77, 0, 0.15);
    background: rgba(255, 255, 255, 0.03);
}
.selector-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.selector-title i { font-size: 1.2rem; }

/* Quick Select in Hero */
.hero-selector .quick-select {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-bottom: 15px;
}
.hero-selector .quick-btn {
    padding: 5px 12px;
    font-size: 0.78rem;
    background: rgba(255, 77, 0, 0.06);
    border: 1px solid rgba(255, 77, 0, 0.15);
    color: var(--text-secondary);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-heading);
    font-weight: 500;
}
.hero-selector .quick-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(255, 77, 0, 0.12);
}

/* ===== TunerSuite-Style Selector ===== */
/* Step indicator */
.selector-steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.sel-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}
.sel-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-family: var(--font-brand);
    font-size: 0.75rem;
    font-weight: 800;
    transition: var(--transition);
}
.sel-step.active {
    background: rgba(255, 77, 0, 0.12);
    border-color: var(--accent);
    color: var(--accent);
}
.sel-step.active .sel-step-num {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 12px var(--accent-glow);
}
.sel-step.completed {
    background: rgba(0, 200, 100, 0.08);
    border-color: rgba(0, 200, 100, 0.3);
    color: #00c864;
}
.sel-step.completed .sel-step-num {
    background: #00c864;
    color: #fff;
}
.sel-step-line {
    width: 25px;
    height: 2px;
    background: var(--border);
    border-radius: 2px;
}

/* Search bar */
.selector-search-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 12px;
}
.selector-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 1rem;
    z-index: 2;
    pointer-events: none;
}
.selector-search {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 13px 45px 13px 48px;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 500;
    font-family: var(--font-body);
    transition: var(--transition);
}
.selector-search::placeholder { color: var(--text-muted); font-weight: 400; }
.selector-search:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 77, 0, 0.1);
}
.selector-search-clear {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}
.selector-search-clear:hover {
    background: rgba(255, 77, 0, 0.2);
    color: var(--accent);
}

/* Cascading dropdowns */
.selector-cascade {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}
.cascade-field label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.cascade-field label i { color: var(--accent); font-size: 0.8rem; }
.custom-select { position: relative; }
.custom-select::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    pointer-events: none;
    font-size: 0.9rem;
}
.custom-select select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 12px 40px 12px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: var(--font-body);
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}
.custom-select select:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 77, 0, 0.1);
}
.custom-select select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.custom-select select option {
    background: #15151e;
    color: var(--text-primary);
    padding: 10px;
}

/* Engine list */
.engine-list {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    animation: engineListFade 0.4s ease;
}
@keyframes engineListFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.engine-list-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.engine-list-header i { font-size: 1.1rem; }
.engine-count {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.8rem;
    margin-left: auto;
    text-transform: none;
    letter-spacing: 0;
}

/* Engine cards */
.engine-cards {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 380px;
    overflow-y: auto;
    padding-right: 4px;
}
.engine-cards::-webkit-scrollbar { width: 6px; }
.engine-cards::-webkit-scrollbar-track { background: transparent; }
.engine-cards::-webkit-scrollbar-thumb {
    background: rgba(255, 77, 0, 0.3);
    border-radius: 3px;
}
.engine-cards::-webkit-scrollbar-thumb:hover { background: var(--accent); }

.engine-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}
.engine-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent);
    opacity: 0;
    transition: var(--transition);
}
.engine-card:hover {
    background: rgba(255, 77, 0, 0.06);
    border-color: rgba(255, 77, 0, 0.3);
    transform: translateX(3px);
}
.engine-card:hover::before { opacity: 0.5; }
.engine-card.selected {
    background: rgba(255, 77, 0, 0.1);
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), 0 0 20px rgba(255, 77, 0, 0.15);
}
.engine-card.selected::before { opacity: 1; }

.engine-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.engine-icon-wrap {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: rgba(255, 77, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.95rem;
}
.engine-main { flex: 1; min-width: 0; }
.engine-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 2px;
}
.engine-fuel {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.engine-fuel i { margin-right: 4px; font-size: 0.7rem; color: var(--accent); }
.engine-check {
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: var(--transition);
}
.engine-card.selected .engine-check { color: var(--accent); }

.engine-specs {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 0.82rem;
}
.spec {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    flex: 1;
}
.spec-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-heading);
    font-weight: 600;
}
.spec-val {
    color: var(--text-secondary);
    font-weight: 600;
    font-family: var(--font-heading);
}
.spec-tuned .spec-label { color: var(--accent); }
.spec-tuned .spec-val { color: var(--accent); }
.spec-arrow {
    color: var(--accent);
    font-size: 0.85rem;
    opacity: 0.6;
}
.engine-gains {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.gain-chip {
    background: rgba(255, 77, 0, 0.08);
    border: 1px solid rgba(255, 77, 0, 0.15);
    color: var(--accent);
    padding: 3px 10px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.gain-chip i { font-size: 0.65rem; }
.gain-chip.gain-percent {
    background: linear-gradient(135deg, rgba(255, 77, 0, 0.2), rgba(255, 140, 0, 0.15));
    border-color: rgba(255, 77, 0, 0.3);
}

/* Hero Results */
.selector-results { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.results-grid { display: flex; flex-direction: column; gap: 15px; }
.gain-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.gain-card-hero {
    background: rgba(255, 77, 0, 0.06);
    border: 1px solid rgba(255, 77, 0, 0.15);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
}
.gain-icon {
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 5px;
    opacity: 0.7;
}
.gain-value-hero {
    font-family: var(--font-brand);
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.2;
}
.gain-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.results-bars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.bar-header {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.btn-whatsapp {
    background: #25d366;
    color: #fff !important;
    border: none;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 8px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

/* Results CTA */
.results-cta {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    text-align: center;
}
.results-cta-text {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 15px;
}
.results-cta-text i { margin-right: 5px; }
.results-cta-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.results-cta-buttons .btn { font-size: 0.85rem; padding: 10px 18px; }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: var(--transition);
}
.scroll-indicator:hover { opacity: 1; }
.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}
.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--accent);
    border-radius: 3px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
    0%, 100% { opacity: 1; top: 6px; }
    50% { opacity: 0.3; top: 18px; }
}
.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* ===== SECTION HEADERS ===== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 77, 0, 0.1);
    border: 1px solid rgba(255, 77, 0, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 15px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 50px;
}

/* ===== SERVICES ===== */
.services-filter {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.filter-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 8px 24px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
    background: rgba(255, 77, 0, 0.15);
    border-color: var(--accent);
    color: var(--accent);
}
.service-card { position: relative; overflow: hidden; height: 100%; }
.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(255, 77, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}
.service-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.tag-orange { background: rgba(255, 77, 0, 0.15); color: var(--accent); border: 1px solid rgba(255, 77, 0, 0.3); }
.tag-red { background: rgba(255, 30, 30, 0.15); color: #ff4444; border: 1px solid rgba(255, 30, 30, 0.3); }
.tag-green { background: rgba(0, 200, 100, 0.1); color: #00c864; border: 1px solid rgba(0, 200, 100, 0.2); }
.tag-blue { background: rgba(0, 120, 255, 0.1); color: #0088ff; border: 1px solid rgba(0, 120, 255, 0.2); }
.tag-purple { background: rgba(150, 50, 255, 0.1); color: #a855f7; border: 1px solid rgba(150, 50, 255, 0.2); }
.tag-cyan { background: rgba(0, 200, 255, 0.1); color: #00c8ff; border: 1px solid rgba(0, 200, 255, 0.2); }
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}
.service-item { transition: var(--transition); }
.service-item.hidden {
    display: none !important;
}

/* ===== SELECTOR AUTO ===== */
.quick-select { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px; }
.quick-label {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.85rem;
}
.quick-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}
.quick-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.selector-card { padding: 40px; }
.form-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 6px;
}
.form-select, .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 10px 15px;
    border-radius: 8px;
    font-family: var(--font-body);
    transition: var(--transition);
}
.form-select:focus, .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(255, 77, 0, 0.1);
    color: var(--text-primary);
}
.form-select option { background: var(--bg-primary); color: var(--text-primary); }

/* Power Bars */
.power-bar-group h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-secondary);
}
.power-bar { margin-bottom: 10px; }
.bar-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.bar-track {
    width: 100%;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    overflow: hidden;
}
.bar-fill {
    height: 100%;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.bar-original { background: rgba(255, 255, 255, 0.15); }
.bar-tuned { background: linear-gradient(90deg, var(--accent), var(--accent-light)); }
.bar-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
}
.gain-value {
    font-family: var(--font-brand);
    font-size: 1.8rem;
    font-weight: 800;
}
.gain-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== CUM FUNCȚIONEAZĂ ===== */
.step-card { position: relative; overflow: hidden; height: 100%; }
.step-number {
    font-family: var(--font-brand);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 77, 0, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
}
.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 77, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    margin: 0 auto 15px;
}
.step-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.step-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}
.domiciliu-banner { padding: 30px 40px; }
.domiciliu-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 12px;
    background: rgba(255, 77, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    margin-right: 20px;
}
.domiciliu-banner h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 5px;
}
.domiciliu-banner p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== ACOPERIRE ===== */
.coverage-card { text-align: center; height: 100%; }
.coverage-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 77, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
    margin: 0 auto 15px;
}
.coverage-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}
.coverage-list {
    list-style: none;
    text-align: left;
    padding: 0;
}
.coverage-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}
.coverage-list li:last-child { border-bottom: none; }
.coverage-list li i { color: var(--accent); font-size: 0.8rem; }
.badge-home {
    background: rgba(255, 77, 0, 0.15);
    color: var(--accent);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    margin-left: auto;
}

/* ===== PREȚURI ===== */
.discount-banner {
    background: linear-gradient(135deg, rgba(255, 77, 0, 0.08), rgba(255, 77, 0, 0.03)) !important;
    border-color: rgba(255, 77, 0, 0.3) !important;
    padding: 35px;
    position: relative;
    overflow: hidden;
}
.discount-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 77, 0, 0.05) 0%, transparent 70%);
    animation: discountPulse 3s ease-in-out infinite;
}
@keyframes discountPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}
.discount-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 5px 20px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
}
.discount-banner h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 8px;
    position: relative;
}
.discount-banner p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    position: relative;
}
.discount-code {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed var(--accent);
    padding: 8px 25px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-secondary);
    position: relative;
}
.price-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.price-featured {
    border-color: rgba(255, 77, 0, 0.4) !important;
    background: rgba(255, 77, 0, 0.05) !important;
}
.price-popular {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent);
    color: #fff;
    padding: 4px 40px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 2px;
    transform: rotate(45deg);
}
.price-best {
    background: #00c864 !important;
}
.price-header {
    text-align: center;
    margin-bottom: 20px;
}
.price-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 77, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    margin: 0 auto 15px;
}
.price-header h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 5px;
}
.price-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}
.price-body {
    text-align: center;
    flex: 1;
}
.price-old {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 1rem;
    font-family: var(--font-heading);
}
.price-current {
    margin-bottom: 20px;
}
.price-amount {
    font-family: var(--font-brand);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--accent);
}
.price-currency {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-left: 5px;
}
.price-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 25px;
}
.price-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.price-features li:last-child { border-bottom: none; }
.price-features li i { color: var(--accent); font-size: 0.8rem; }

/* Price Table */
.price-table {
    width: 100%;
    border-collapse: collapse;
}
.price-table th {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
    text-align: left;
}
.price-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.price-table td i {
    margin-right: 6px;
    width: 16px;
    text-align: center;
}
.price-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}
.text-line-through {
    text-decoration: line-through;
    color: var(--text-muted) !important;
}

/* ===== TESTIMONIALE ===== */
.testimonial-card { height: 100%; }
.testimonial-stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 1rem;
    display: flex;
    gap: 3px;
}
.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}
.author-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
}
.author-car {
    color: var(--text-muted);
    font-size: 0.85rem;
}
.author-car i { color: var(--accent); margin-right: 5px; }

/* ===== BOOKING FORM ===== */
.booking-card { padding: 40px; }
.booking-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    gap: 0;
}
.booking-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.booking-step span {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-brand);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition);
}
.booking-step.active .step-circle {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 0 20px var(--accent-glow);
}
.booking-step.active span { color: var(--accent); }
.booking-step.completed .step-circle {
    background: rgba(255, 77, 0, 0.2);
    border-color: var(--accent);
    color: var(--accent);
}
.step-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    margin: 0 15px;
    margin-bottom: 25px;
    max-width: 80px;
}
.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Service Checkboxes */
.services-checkboxes { display: flex; flex-wrap: wrap; gap: 10px; }
.checkbox-card {
    cursor: pointer;
}
.checkbox-card input { display: none; }
.checkbox-card span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: var(--transition);
}
.checkbox-card input:checked + span {
    background: rgba(255, 77, 0, 0.15);
    border-color: var(--accent);
    color: var(--accent);
}
.checkbox-card span:hover {
    border-color: rgba(255, 77, 0, 0.5);
}
.checkbox-gdpr {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.checkbox-gdpr input {
    margin-top: 3px;
    accent-color: var(--accent);
}
.success-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 20px;
}

/* ===== FAQ ===== */
.accordion-item {
    margin-bottom: 10px;
    border: none !important;
}
.accordion-button {
    background: transparent !important;
    color: var(--text-primary) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: none !important;
    padding: 20px 30px;
}
.accordion-button::after {
    filter: invert(1);
}
.accordion-button:not(.collapsed) {
    color: var(--accent) !important;
}
.accordion-body {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    padding: 0 30px 20px;
}

/* ===== CONTACT ===== */
.contact-card { height: 100%; }
.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 77, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
    margin: 0 auto 15px;
}
.contact-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 10px;
}
.contact-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
}
.contact-link:hover { color: var(--accent-light); }
.contact-schedule {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0;
}
.map-container {
    padding: 10px;
    overflow: hidden;
}
.map-container iframe {
    border-radius: 12px;
}

/* ===== FOOTER ===== */
.footer-section {
    background: var(--bg-secondary);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border);
}
.footer-brand h3 {
    font-family: var(--font-brand);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}
.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.footer-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-primary);
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--accent); padding-left: 5px; }
.footer-seo li { margin-bottom: 5px; }
.footer-seo a { font-size: 0.82rem; }
.footer-bottom {
    border-top: 1px solid var(--border);
    margin-top: 40px;
    padding-top: 20px;
}
.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 24, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}
.cookie-consent.show { transform: translateY(0); }
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-content p {
    margin-bottom: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    flex: 1;
}
.cookie-content p i { color: var(--accent); margin-right: 8px; }
.cookie-buttons { display: flex; gap: 10px; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    text-decoration: none;
    z-index: 9998;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}
@keyframes whatsappPulse {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 34px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 77, 0, 0.2);
    border: 1px solid rgba(255, 77, 0, 0.3);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

/* ===== SEO SECTION ===== */
.seo-section { background: var(--bg-secondary); }
.seo-card {
    height: 100%;
}
.seo-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent);
}
.seo-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 12px;
}
.seo-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.seo-tags span {
    background: rgba(255, 77, 0, 0.08);
    border: 1px solid rgba(255, 77, 0, 0.15);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-title { font-size: 2.5rem; }
    .hero-stats { gap: 25px; }
    .stat-number { font-size: 2rem; }
    .section-title { font-size: 2rem; }
    .section-padding { padding: 70px 0; }
    .navbar-collapse {
        background: rgba(10, 10, 15, 0.98);
        padding: 20px;
        border-radius: 12px;
        margin-top: 10px;
    }
    .domiciliu-banner { padding: 25px; }
    .selector-cascade { grid-template-columns: 1fr; }
    .sel-step { font-size: 0.7rem; padding: 4px 10px; }
    .sel-step-line { width: 15px; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 1.8rem; }
    .hero-stats { flex-direction: row; gap: 15px; }
    .stat-number { font-size: 1.6rem; }
    .section-title { font-size: 1.7rem; }
    .section-padding { padding: 50px 0; }
    .booking-steps { gap: 0; }
    .booking-step span { font-size: 0.65rem; display: none; }
    .step-line { margin: 0 8px; }
    .selector-card { padding: 20px 15px; }
    .booking-card { padding: 25px; }
    .cookie-content { flex-direction: column; text-align: center; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1.4rem; }
    .back-to-top { bottom: 80px; right: 24px; }
    .services-filter { gap: 6px; }
    .filter-btn { padding: 6px 16px; font-size: 0.8rem; }
    .gain-cards { grid-template-columns: repeat(3, 1fr); gap: 6px; }
    .gain-value-hero { font-size: 1.2rem; }
    .results-bars { grid-template-columns: 1fr; }
    .hero-selector .quick-select { gap: 4px; }
    .hero-selector .quick-btn { padding: 4px 9px; font-size: 0.7rem; }
    .selector-title { font-size: 0.85rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.5rem; }
    .hero-stats { gap: 8px; }
    .stat-number { font-size: 1.3rem; }
    .stat-suffix { font-size: 0.9rem; }
    .gain-value-hero { font-size: 1rem; }
    .gain-label { font-size: 0.6rem; }
}
