/* ============================================================
   SOFT CLEAN — Spălătorie & Curățătorie București & Ilfov
   Design System & Layout
   ============================================================ */

:root {
    /* Colors */
    --primary: #0b7acb;
    --primary-dark: #08629f;
    --primary-darker: #064f80;
    --primary-light: #e6f3fc;
    --primary-soft: #f2f9fe;
    --cyan: #38bdf8;
    --cyan-glow: rgba(56, 189, 248, 0.4);
    --accent: #10b981;
    --accent-dark: #059669;
    --accent-light: #ecfdf5;
    --dark: #0f172a;
    --text: #334155;
    --muted: #64748b;
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --border: #e2e8f0;
    --star: #f59e0b;
    --white: #ffffff;

    /* Modern Gradients & Glassmorphism */
    --gradient-hero: linear-gradient(135deg, #074e82 0%, #0b7acb 45%, #0284c7 80%, #06b6d4 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.75));
    --glass-bg: rgba(255, 255, 255, 0.88);
    --glass-border: rgba(255, 255, 255, 0.5);

    /* Typography */
    --font-base: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-heading: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* Layout & Depth */
    --container: 1200px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-sm: 10px;
    --shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 25px 50px -12px rgba(15, 23, 42, 0.18);
    --shadow-glass: 0 20px 40px -15px rgba(11, 122, 203, 0.25);
    --transition: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-base);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

img,
svg {
    display: block;
    max-width: 100%;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 0.5em;
}

h1 {
    font-size: clamp(2rem, 4.5vw, 3.1rem);
}

h2 {
    font-size: clamp(1.6rem, 3.2vw, 2.3rem);
}

h3 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

ul,
ol {
    padding-left: 1.3rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.35rem;
}

strong {
    color: inherit;
    font-weight: 700;
}

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

.section {
    padding: 72px 0;
}

.section-soft {
    background: var(--bg-soft);
}

.section-tight {
    padding: 48px 0;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.98rem;
    padding: 13px 26px;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    white-space: nowrap;
    line-height: 1.2;
}

.btn svg {
    flex-shrink: 0;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp {
    background: var(--accent);
    color: #fff;
}

.btn-whatsapp:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--primary);
}

.btn-white:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 16px 34px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 9px 18px;
    font-size: 0.88rem;
}

.btn-block {
    width: 100%;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

/* ---------- Top bar ---------- */
.topbar {
    background: var(--dark);
    color: #cbd5e1;
    font-size: 0.82rem;
    padding: 8px 0;
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.topbar a {
    color: #e2e8f0;
}

.topbar a:hover {
    color: #fff;
}

/* NU inline-flex: textul din interior („Ridicare & Livrare Gratuită”, „pentru
   comenzi peste”, „300 lei”) devenea trei elemente flex separate, fiecare
   rupându-se pe rânduri proprii. Pe telefon ieșeau trei coloane de text
   îngrămădite. Ca text normal, fraza se rupe firesc, la spații. */
.topbar-item {
    display: block;
}

.topbar-item>svg {
    display: inline-block;
    vertical-align: -2px;
    margin-right: 4px;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.topbar .free {
    color: #4ade80;
    font-weight: 600;
}

/* ---------- Header ---------- */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.45rem;
    color: var(--dark);
    text-decoration: none;
    transition: transform var(--transition);
}

.logo:hover {
    transform: translateY(-1px);
}

.brand-logo-img {
    height: 58px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    display: block;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    background: #ffffff;
    padding: 6px 14px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Watermark Emblem Accent */
.hero-watermark {
    position: absolute;
    right: 5%;
    bottom: -10%;
    width: 480px;
    height: 480px;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
    background-image: url('../assets/favicon.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

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

.logo small {
    display: block;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--muted);
    text-transform: uppercase;
}

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

.nav a {
    padding: 9px 14px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text);
}

.nav a:hover {
    background: var(--primary-soft);
    color: var(--primary);
}

.nav a.active {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--dark);
}

.header-phone:hover {
    color: var(--primary);
}

.header-phone small {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--muted);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Hero & Rebranding Loop ---------- */
.hero {
    position: relative;
    color: #fff;
    padding: 76px 0 84px;
    overflow: hidden;
    background: #075e99;
}

/* ------------------------------------------------------------------
   Tranziția de rebranding: verde Crisbi Clean → albastru SoftClean.
   O SINGURĂ dată, la încărcarea paginii, și rămâne pe albastru.
   Nu e buclă: mesajul e "Crisbi Clean a devenit SoftClean", o transformare.

   Implementat 100% în CSS, cu animation-fill-mode: forwards, ca să nu
   depindă de JS — dacă scriptul e blocat, ecranul rămâne tot corect,
   iar la prefers-reduced-motion (vezi regula globală de mai jos)
   utilizatorul vede direct starea finală albastră.
   ------------------------------------------------------------------ */
.hero-bg-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-softclean {
    background:
        radial-gradient(1000px 500px at 85% -10%, rgba(56, 189, 248, 0.4), transparent 60%),
        radial-gradient(800px 420px at -10% 110%, rgba(8, 145, 178, 0.4), transparent 60%),
        linear-gradient(135deg, #075e99 0%, #0b7acb 55%, #0ea5b7 100%);
    opacity: 0;
    animation: softcleanFadeIn 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
}

.hero-bg-crisbi {
    background:
        radial-gradient(1000px 500px at 85% -10%, rgba(52, 211, 153, 0.45), transparent 60%),
        radial-gradient(800px 420px at -10% 110%, rgba(5, 150, 105, 0.45), transparent 60%),
        linear-gradient(135deg, #044e3b 0%, #047857 55%, #059669 100%);
    opacity: 1;
    animation: crisbiFadeOut 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
}

@keyframes softcleanFadeIn {
    to {
        opacity: 1;
    }
}

@keyframes crisbiFadeOut {
    to {
        opacity: 0;
    }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

/* Clean & Simple Rebranding Headline */
.hero-simple-title {
    font-size: clamp(2.4rem, 5.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 22px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Titlul urmează aceeași transformare unică: Crisbi se stinge, SoftClean se aprinde. */
.title-crisbi {
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 16px rgba(52, 211, 153, 0.8);
    animation: titleCrisbiOut 1.5s ease 0.9s forwards;
}

.title-devine {
    font-size: 0.75em;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
}

.title-softclean {
    font-weight: 900;
    color: rgba(255, 255, 255, 0.7);
    animation: titleSoftcleanIn 1.5s ease 0.9s forwards;
}

@keyframes titleCrisbiOut {
    to {
        color: rgba(255, 255, 255, 0.7);
        text-shadow: none;
    }
}

@keyframes titleSoftcleanIn {
    to {
        color: #ffffff;
        text-shadow: 0 0 18px rgba(56, 189, 248, 0.9);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 22px;
}

.hero h1 {
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    margin-bottom: 20px;
}

.hero p.lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 560px;
    margin-bottom: 30px;
}

.hero p.lead strong,
.hero strong,
.page-hero strong {
    color: #ffffff;
    font-weight: 800;
}

.hero-usp {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 26px;
    margin: 26px 0 34px;
}

.hero-usp li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 500;
    color: #fff;
}

.hero-usp svg {
    color: #6ee7b7;
    flex-shrink: 0;
}

.hero-stats {
    display: flex;
    gap: 34px;
    margin-top: 42px;
    flex-wrap: wrap;
}

.hero-stat strong {
    display: block;
    font-size: 1.8rem;
    color: #fff;
    font-weight: 800;
}

.hero-stat span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.hero-visual {
    position: relative;
    perspective: 1000px;
}

.hero-visual::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.35) 0%, rgba(11, 122, 203, 0) 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 1;
}

.hero-img-box {
    position: relative;
    z-index: 2;
    border-radius: 28px;
    overflow: hidden;
    box-shadow:
        0 30px 60px -12px rgba(7, 78, 130, 0.45),
        0 18px 36px -18px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.35) inset;
    transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
    background: rgba(255, 255, 255, 0.1);
}

.hero-img-box:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-6px);
    box-shadow:
        0 40px 80px -15px rgba(7, 78, 130, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.hero-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
}

.hero-badge-top {
    position: absolute;
    top: -16px;
    left: -16px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 18px;
    border-radius: 999px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--dark);
    animation: floatBadge 4s ease-in-out infinite alternate;
}

.hero-badge-bottom {
    position: absolute;
    bottom: -20px;
    right: -16px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 20px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
    animation: floatBadge 5s ease-in-out 1s infinite alternate;
}

@keyframes floatBadge {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-8px);
    }
}

@media (max-width: 992px) {
    .hero-badge-top {
        top: 10px;
        left: 10px;
    }

    .hero-badge-bottom {
        bottom: 10px;
        right: 10px;
    }

    .hero-img-box {
        transform: none;
    }
}

.feature-banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.feature-banner-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

@media (max-width: 992px) {
    .feature-banner-grid {
        grid-template-columns: 1fr;
    }
}

.hero-card h3 {
    font-size: 1.05rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-card h3 svg {
    color: var(--primary);
}

.hero-card .row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border);
}

.hero-card .row:last-of-type {
    border-bottom: 0;
}

.hero-card .row-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--primary-light);
    color: var(--primary);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.hero-card .row small {
    display: block;
    color: var(--muted);
    font-size: 0.8rem;
}

.hero-card .row strong {
    font-size: 0.95rem;
}

.hero-card .price {
    margin-left: auto;
    font-weight: 800;
    color: var(--primary);
}

.hero-card .free {
    margin-left: auto;
    font-weight: 800;
    color: var(--accent);
    font-size: 0.9rem;
}

.hero-card .btn {
    margin-top: 16px;
}

.hero-card .note {
    font-size: 0.78rem;
    color: var(--muted);
    text-align: center;
    margin-top: 8px;
}

/* ---------- Section headers ---------- */
.sec-head {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.sec-head .eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-light);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.sec-head h2 {
    margin-bottom: 14px;
}

.sec-head p {
    color: var(--muted);
    font-size: 1.05rem;
}

.sec-head.left {
    text-align: left;
    margin-left: 0;
}

/* ---------- Cards / Grids ---------- */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

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

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

.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.card .icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary);
    display: grid;
    place-items: center;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.card p {
    color: var(--muted);
    font-size: 0.95rem;
}

.card .card-link {
    font-weight: 600;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
}

.card .card-link:hover {
    gap: 10px;
}

/* Service card */
.service-card {
    position: relative;
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.service-card .thumb {
    height: 180px;
    display: grid;
    place-items: center;
    color: #fff;
    position: relative;
}

.service-card .thumb svg {
    width: 64px;
    height: 64px;
    opacity: 0.95;
}

.service-card .body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card .body p {
    font-size: 0.92rem;
}

.service-card .price-line {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    margin: 10px 0 4px;
}

.service-card .price-line small {
    color: var(--muted);
    font-weight: 500;
    font-size: 0.82rem;
}

.service-card .meta {
    font-size: 0.8rem;
    color: var(--muted);
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 14px;
}

.service-card .meta svg {
    color: var(--accent);
}

/* Color helpers for service thumbs */
.t-blue {
    background: linear-gradient(135deg, #0b7acb, #38bdf8);
}

.t-green {
    background: linear-gradient(135deg, #0d9488, #34d399);
}

.t-indigo {
    background: linear-gradient(135deg, #4f46e5, #818cf8);
}

.t-violet {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.t-amber {
    background: linear-gradient(135deg, #d97706, #fbbf24);
}

.t-rose {
    background: linear-gradient(135deg, #e11d48, #fb7185);
}

.t-cyan {
    background: linear-gradient(135deg, #0891b2, #22d3ee);
}

.t-slate {
    background: linear-gradient(135deg, #475569, #94a3b8);
}

.t-fuchsia {
    background: linear-gradient(135deg, #c026d3, #e879f9);
}

/* ---------- Steps / How it works ---------- */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: step;
}

.step {
    position: relative;
    text-align: center;
    padding: 26px 18px;
}

.step .step-num {
    width: 54px;
    height: 54px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    font-size: 1.3rem;
    display: grid;
    place-items: center;
    box-shadow: 0 0 0 6px var(--primary-light);
}

.step h3 {
    font-size: 1.05rem;
}

.step p {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ---------- Features ---------- */
.feature-list {
    display: grid;
    gap: 18px;
}

.feature {
    display: flex;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px;
    align-items: flex-start;
}

.feature svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.feature p {
    color: var(--muted);
    font-size: 0.92rem;
    margin: 0;
}

/* ---------- Zone cards ---------- */
.zone-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
}

.zone-card .zone-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.zone-card h3 {
    margin-bottom: 2px;
    font-size: 1.1rem;
}

.zone-card p {
    color: var(--muted);
    font-size: 0.88rem;
    margin: 0;
}

.zone-card .zone-cta {
    margin-left: auto;
    flex-shrink: 0;
}

.zone-card .free {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
}

.zone-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow-sm);
}

.zone-strip a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
}

.zone-strip a:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

.zone-strip a.zone-other {
    background: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary-light);
}

/* ---------- Pricing ---------- */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.pricing-table th,
.pricing-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.pricing-table th {
    background: var(--dark);
    color: #fff;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.03em;
}

.pricing-table tr:hover td {
    background: var(--primary-soft);
}

.pricing-table td.price {
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.pricing-table td.free {
    color: var(--accent);
    font-weight: 700;
    white-space: nowrap;
}

.pricing-note {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 12px;
}

.pricing-note svg {
    vertical-align: -2px;
    color: var(--accent);
}

.price-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.95rem;
}

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

.review-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.review-card .stars {
    color: var(--star);
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.review-card p {
    font-size: 0.94rem;
    margin-bottom: 14px;
}

.review-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-card .avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.review-card .author strong {
    display: block;
    font-size: 0.92rem;
}

.review-card .author small {
    color: var(--muted);
    font-size: 0.78rem;
}

.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 10px 20px;
    box-shadow: var(--shadow-sm);
}

.google-rating strong {
    font-size: 1.3rem;
}

.google-rating .glogo {
    font-weight: 800;
    font-size: 1.2rem;
    background: conic-gradient(from -45deg, #ea4335 110deg, #4285f4 90deg 180deg, #34a853 180deg 270deg, #fbbc05 270deg);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ---------- Comparison (before/after) ---------- */
.ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ba-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.ba-card img,
.ba-card .ba-fill {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.ba-fill {
    display: grid;
    place-items: center;
    color: #fff;
}

.ba-fill svg {
    width: 54px;
    height: 54px;
    opacity: 0.9;
}

.ba-label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.75);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
}

.ba-label.done {
    background: rgba(22, 163, 74, 0.9);
}

/* ---------- CTA band ---------- */
.cta-band {
    background: linear-gradient(135deg, #075e99 0%, #0b7acb 55%, #0ea5b7 100%);
    color: #fff;
    padding: 64px 0;
    text-align: center;
}

.cta-band h2 {
    color: #fff;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 640px;
    margin: 0 auto 30px;
    font-size: 1.05rem;
}

/* ---------- Forms ---------- */
.form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.form-card h3 {
    margin-bottom: 6px;
}

.form-card .sub {
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 22px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-grid .full {
    grid-column: 1 / -1;
}

.field label {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 6px;
    color: var(--dark);
}

.field label .req {
    color: #dc2626;
}

.field label .opt {
    color: var(--muted);
    font-weight: 500;
    font-size: 0.8rem;
}

/* Câmpurile opționale, strânse într-un <details>: cine vrea completează,
   cine nu, trimite comanda cu telefon + zonă. */
.form-extra {
    margin-top: 16px;
    border-top: 1px solid var(--border);
    padding-top: 14px;
}

.form-extra summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--primary);
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-extra summary::-webkit-details-marker {
    display: none;
}

.form-extra summary::before {
    content: "+";
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 0.95rem;
    line-height: 1;
}

.form-extra[open] summary::before {
    content: "−";
}

.form-extra summary:hover {
    color: var(--primary-dark);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--dark);
    background: #fff;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 122, 203, 0.14);
}

.field textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    font-size: 0.8rem;
    color: var(--muted);
}

.form-success {
    display: none;
    text-align: center;
    padding: 24px;
}

.form-success svg {
    width: 56px;
    height: 56px;
    color: var(--accent);
    margin: 0 auto 14px;
}

.form-success h3 {
    margin-bottom: 6px;
}

/* ---------- FAQ ---------- */
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    background: #fff;
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 20px;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 1rem;
}

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

.faq-item summary::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary);
    transition: transform var(--transition);
    line-height: 1;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item .faq-body {
    padding: 0 20px 18px;
    color: var(--muted);
    font-size: 0.95rem;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumb {
    font-size: 0.82rem;
    color: var(--muted);
    padding: 16px 0;
}

.breadcrumb a {
    color: var(--muted);
}

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

.breadcrumb .sep {
    margin: 0 6px;
    opacity: 0.5;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
    background:
        radial-gradient(700px 320px at 90% -20%, rgba(56, 189, 248, 0.3), transparent 60%),
        linear-gradient(135deg, #075e99 0%, #0b7acb 60%, #0ea5b7 100%);
    color: #fff;
    padding: 56px 0 64px;
}

.page-hero h1 {
    color: #fff;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 640px;
    font-size: 1.08rem;
}

.page-hero strong {
    color: #fff;
    font-weight: 700;
}

.page-hero .breadcrumb {
    color: rgba(255, 255, 255, 0.7);
}

.page-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.page-hero .breadcrumb a:hover {
    color: #fff;
}

.page-hero .breadcrumb .sep {
    color: rgba(255, 255, 255, 0.5);
}

/* ---------- Content (article / prose) ---------- */
.prose {
    max-width: 760px;
}

.prose h2 {
    margin-top: 1.8em;
}

.prose h3 {
    margin-top: 1.4em;
}

.prose ul li,
.prose ol li {
    margin-bottom: 0.6rem;
}

.prose .callout {
    background: var(--primary-soft);
    border-left: 4px solid var(--primary);
    padding: 18px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1.4rem 0;
}

.prose .callout strong {
    color: var(--primary);
}

.tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 999px;
    padding: 4px 12px;
}

/* ---------- Blog ---------- */
.blog-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.blog-card .blog-thumb {
    height: 180px;
    display: grid;
    place-items: center;
    color: #fff;
}

.blog-card .blog-thumb svg {
    width: 52px;
    height: 52px;
    opacity: 0.95;
}

.blog-card .body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card .meta {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 8px;
    display: flex;
    gap: 10px;
}

.blog-card h3 {
    font-size: 1.12rem;
}

.blog-card h3 a {
    color: var(--dark);
}

.blog-card h3 a:hover {
    color: var(--primary);
}

/* ---------- Contact / info ---------- */
.info-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-card .info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.info-card h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.info-card p,
.info-card a {
    color: var(--muted);
    font-size: 0.95rem;
}

.info-card a {
    color: var(--primary);
    font-weight: 600;
}

/* ------------------------------------------------------------------
   Banda de încredere de sub hero: vechime | prezență | reputație | volum.
   ------------------------------------------------------------------ */
.trust-band {
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
    padding: 30px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0;
}

.trust-item {
    text-align: center;
    padding: 0 10px;
    border-left: 1px solid var(--border);
}

.trust-item:first-child {
    border-left: 0;
}

.trust-item dt {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.2vw, 1.7rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    font-variant-numeric: tabular-nums;
}

.trust-item dd {
    margin: 6px 0 0;
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.4;
}

.trust-sub {
    color: var(--primary);
}

@media (max-width: 860px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 12px;
    }

    /* pe două coloane, doar cardul din stânga fiecărui rând pierde separatorul */
    .trust-item:nth-child(odd) {
        border-left: 0;
    }
}

/* Map placeholder */
.map-placeholder {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
    background: linear-gradient(135deg, #e6f3fc, #f0f9ff);
    height: 360px;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--muted);
}

.map-placeholder svg {
    width: 64px;
    height: 64px;
    color: var(--primary);
    margin: 0 auto 10px;
    opacity: 0.7;
}

/* ------------------------------------------------------------------
   Harta cu cele 4 centre (Leaflet + OpenStreetMap, încărcată lazy).
   Cât timp Leaflet nu s-a încărcat — sau dacă nu se încarcă deloc —
   containerul rămâne un dreptunghi discret; adresele sunt oricum în
   carduri, harta e doar un plus.
   ------------------------------------------------------------------ */
.centre-map {
    margin-top: 32px;
    height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, #e6f3fc, #f0f9ff);
    z-index: 0;
    /* sub headerul sticky (z-index 100) și sub butoanele plutitoare */
}

@media (max-width: 640px) {
    .centre-map {
        height: 320px;
    }
}

/* Popup-ul unui centru: nume, adresă, program, buton de traseu */
.centre-map .leaflet-popup-content-wrapper {
    border-radius: 14px;
    box-shadow: var(--shadow-md);
}

.centre-map .leaflet-popup-content {
    margin: 14px 16px;
    font-family: var(--font-base);
    line-height: 1.5;
}

.map-pop-nume {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .02em;
    color: var(--dark);
    margin-bottom: 6px;
}

.map-pop-adr {
    display: block;
    font-size: .86rem;
    color: var(--text);
    margin-bottom: 8px;
}

.map-pop-prog {
    display: block;
    font-size: .82rem;
    color: var(--muted);
    margin-bottom: 12px;
}

.map-pop-act {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: .85rem;
    font-weight: 600;
}

/* ---------- Tables (zones) ---------- */
.simple-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.simple-table th,
.simple-table td {
    padding: 13px 16px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    font-size: 0.92rem;
}

.simple-table th {
    background: var(--bg-soft);
    color: var(--dark);
    font-weight: 600;
}

.simple-table tr:last-child td {
    border-bottom: 0;
}

/* ---------- Floating actions ---------- */
.floating {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Un singur CTA plutitor (telefonul), ~32% mai mic decât cele două cercuri de
   56px de dinainte. WhatsApp rămâne în header și în meniul mobil — două cercuri
   mari suprapuse acopereau conținutul pe telefon. */
.floating .f-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition);
}

.floating .f-btn:hover {
    transform: scale(1.08);
    color: #fff;
}

.floating .f-call {
    background: var(--primary);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--dark);
    color: #94a3b8;
    padding: 60px 0 0;
    font-size: 0.92rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 44px;
}

.footer h4 {
    color: #fff;
    font-size: 1.02rem;
    margin-bottom: 16px;
}

.footer .logo {
    color: #fff;
    margin-bottom: 14px;
}

.footer p {
    color: #94a3b8;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 9px;
}

.footer ul a {
    color: #94a3b8;
}

.footer ul a:hover {
    color: #fff;
}

.footer .contact-line {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
}

.footer .contact-line svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 18px 0;
    font-size: 0.82rem;
    text-align: center;
    color: #64748b;
}

.footer-bottom a {
    color: #94a3b8;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 22px;
    margin-bottom: 12px;
}

.footer-legal a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
    color: #fff;
    text-decoration: underline;
}

/* ---------- Pagini legale ---------- */
.legal-doc h2 {
    font-size: 1.15rem;
    margin: 30px 0 10px;
}

.legal-doc p {
    margin: 0 0 12px;
    line-height: 1.75;
}

.legal-doc .legal-bullet {
    padding-left: 18px;
    margin-bottom: 8px;
}

.legal-doc a {
    word-break: break-word;
}

/* ---------- Badge / chips ---------- */
.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-light);
    color: var(--accent-dark);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 999px;
    padding: 5px 12px;
}

.chip-blue {
    background: var(--primary-light);
    color: var(--primary);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-card {
        margin: 0 auto;
    }

    .hero-visual {
        order: 2;
    }

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

@media (max-width: 860px) {

    .nav,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav.open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 12px 16px 20px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        gap: 4px;
    }

    .nav.open a {
        padding: 12px 16px;
        border-radius: 10px;
    }

    .nav.open .nav-cta {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        margin-top: 10px;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .review-grid,
    .ba-grid {
        grid-template-columns: 1fr;
    }

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

    .topbar-right {
        display: none;
    }

    .topbar {
        text-align: center;
    }

    .topbar .container {
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }

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

    .section {
        padding: 52px 0;
    }

    .header-phone {
        display: none;
    }

    /* ...dar în meniul hamburger deschis îl vrem vizibil: pe telefon mic e
       singurul loc din header unde mai încap ambele contacte. */
    .nav.open .header-phone {
        display: inline-flex;
    }

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

    .btn-group .btn {
        flex: 1 1 100%;
    }

    .hero-stats {
        gap: 20px;
    }
}

/* ---------- Print-friendly / reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    html {
        scroll-behavior: auto;
    }

    /* Fără animație, hero-ul ar rămâne blocat pe starea de pornire (verde Crisbi).
       Îi dăm direct starea finală: SoftClean, albastru. */
    .hero-bg-crisbi {
        opacity: 0;
    }

    .hero-bg-softclean {
        opacity: 1;
    }

    .title-crisbi {
        color: rgba(255, 255, 255, 0.7);
        text-shadow: none;
    }

    .title-softclean {
        color: #ffffff;
        text-shadow: 0 0 18px rgba(56, 189, 248, 0.9);
    }
}

/* ============================================================
   MODERN 2026 DRIBBBLE DESIGN EXTENSIONS
   Glassmorphism, Bento Grid, Floating Badges, Live Estimator
   ============================================================ */

/* Glass Card & Overlays */
.glass-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.4) inset;
    transition: var(--transition);
}

.glass-card-dark {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: var(--radius-lg);
}

/* Floating Stat Badges & Pulse */
.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Floating Avatar Stack */
.avatar-stack-group {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-stack img,
.avatar-stack .avatar-chip {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -12px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.avatar-stack .avatar-chip:first-child {
    margin-left: 0;
}

.avatar-stack-text {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.9);
}

.avatar-stack-text strong {
    color: #fff;
}

/* Bento Grid System */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bento-card {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--border);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.bento-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--cyan));
    opacity: 0;
    transition: var(--transition);
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(11, 122, 203, 0.25);
}

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

.bento-lg {
    grid-column: span 2;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.bento-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #0b7acb, #0284c7);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(11, 122, 203, 0.25);
}

.bento-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-light), #e0f2fe);
    color: var(--primary);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.bento-card:hover .bento-icon-wrapper {
    transform: scale(1.08) rotate(-4deg);
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    color: #fff;
}

.bento-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.bento-desc {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.bento-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px dashed var(--border);
    margin-top: auto;
}

.bento-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
}

.bento-price small {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--muted);
}

.bento-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bento-card:hover .bento-link {
    color: var(--primary-dark);
    gap: 10px;
}

/* Interactive Price Calculator Widget */
.calc-section {
    background: linear-gradient(180deg, #f8fafc 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.calc-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.1);
    padding: 36px;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 36px;
    align-items: start;
}

.calc-items-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.calc-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: var(--transition);
}

.calc-item-row:hover {
    background: #fff;
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.calc-item-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.calc-item-icon {
    font-size: 1.4rem;
}

.calc-item-title {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.calc-item-price {
    font-size: 0.82rem;
    color: var(--muted);
}

.calc-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.calc-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: var(--transition);

    user-select: none;
}

.calc-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.calc-qty {
    font-weight: 700;
    font-size: 1rem;
    width: 24px;
    text-align: center;
    color: var(--dark);
}

/* Calculator Summary Box */
.calc-summary-box {
    background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
    color: #fff;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.calc-summary-box::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.25), transparent 70%);
    pointer-events: none;
}

.calc-summary-header {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.calc-total-display {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 20px;
}

.calc-total-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--cyan);
}

/* Progress bar for free shipping */
.progress-container {
    margin-bottom: 24px;
}

.progress-label {
    font-size: 0.82rem;
    color: #cbd5e1;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.progress-bar-bg {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #10b981, #34d399);
    border-radius: 999px;
    transition: width 0.4s ease;
}

/* Responsive adjustments for Bento and Calc */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-lg {
        grid-column: span 1;
    }

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

/* ============================================================
   Calculator de preț (price-bot.js) — chat local, fără AI
   ============================================================ */
.pb-fab {
    position: fixed;
    right: 20px;
    /* stă deasupra butonului plutitor de telefon: 20px offset + 38px buton + 12px spațiu */
    bottom: 70px;
    z-index: 95;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px 0 16px;
    height: 56px;
    border: 0;
    border-radius: 999px;
    background: var(--gradient-hero);
    color: #fff;
    font-family: var(--font-base);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition), opacity var(--transition);
}

.pb-fab:hover {
    transform: translateY(-2px) scale(1.03);
}

.pb-fab.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.85);
}

.pb-fab-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    line-height: 1;
}

.pb-fab-icon svg {
    display: block;
}

.floating.pb-hidden {
    opacity: 0;
    pointer-events: none;
}

.pb-panel {
    position: fixed;
    right: 20px;
    bottom: 20px;
    /* peste headerul sticky (100), altfel pe mobil headerul acoperea bara de
       titlu a panoului împreună cu butonul de închidere */
    z-index: 120;
    width: 380px;
    max-width: calc(100vw - 32px);
    height: 580px;
    max-height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(16px) scale(0.98);
    transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

/* `display: flex` de mai sus ar învinge stilul implicit al atributului hidden */
.pb-panel[hidden] {
    display: none;
}

.pb-panel.open {
    opacity: 1;
    transform: none;
}

.pb-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--gradient-hero);
    color: #fff;
}

.pb-avatar {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    font-size: 1.2rem;
}

.pb-head-txt {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    flex: 1;
}

.pb-head-txt strong {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.pb-head-txt span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.9);
}

.pb-close {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    transition: background var(--transition);
}

.pb-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.pb-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    background: var(--bg-soft);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pb-msg {
    max-width: 92%;
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--text);
    animation: pb-in 0.22s ease both;
}

@keyframes pb-in {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
}

.pb-bot {
    align-self: flex-start;
    background: var(--white);
    border: 1px solid var(--border);
    border-bottom-left-radius: 5px;
    box-shadow: var(--shadow-sm);
}

.pb-user {
    align-self: flex-end;
    background: var(--primary);
    color: #fff;
    border-bottom-right-radius: 5px;
}

.pb-msg p+p,
.pb-msg ul+p,
.pb-msg p+ul {
    margin-top: 8px;
}

/* :not(.pb-btn) — altfel regula asta (specificitate mai mare decât .pb-btn-wa)
   sublinia și colora butonul „Trimite comanda pe WhatsApp”, care arăta a link rupt. */
.pb-msg a:not(.pb-btn) {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

.pb-msg em {
    color: var(--dark);
    font-style: normal;
    background: var(--primary-light);
    border-radius: 4px;
    padding: 1px 5px;
}

.pb-list {
    list-style: none;
    margin: 8px 0 0;
    border-top: 1px solid var(--border);
}

.pb-list li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
}

.pb-list li span {
    display: flex;
    flex-direction: column;
    color: var(--dark);
    font-weight: 600;
}

.pb-list li em {
    background: none;
    padding: 0;
    font-size: 0.76rem;
    font-weight: 500;
    color: var(--muted);
}

.pb-list li b {
    white-space: nowrap;
    color: var(--primary);
    font-weight: 800;
}

.pb-list-compact li span {
    font-weight: 500;
    color: var(--text);
}

.pb-total {
    margin-top: 10px;
    font-weight: 700;
    color: var(--dark);
}

.pb-total b {
    float: right;
    font-size: 1.05rem;
    color: var(--primary-dark);
}

.pb-ok,
.pb-note {
    margin-top: 10px;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
}

.pb-ok {
    background: var(--accent-light);
    color: var(--accent-dark);
}

.pb-note {
    background: var(--primary-soft);
    color: var(--primary-darker);
}

.pb-small {
    margin-top: 8px;
    font-size: 0.76rem;
    color: var(--muted);
}

.pb-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.pb-btn {
    flex: 1 1 auto;
    padding: 10px 14px;
    border: 0;
    border-radius: 999px;
    font-family: var(--font-base);
    font-size: 0.82rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: filter var(--transition), background var(--transition);
}

.pb-btn-wa {
    background: var(--accent);
    color: #fff;
}

.pb-btn-wa:hover {
    filter: brightness(1.08);
    color: #fff;
    text-decoration: none;
}

.pb-btn-ghost {
    flex: 0 0 auto;
    background: var(--bg-soft);
    color: var(--muted);
    border: 1px solid var(--border);
}

.pb-btn-ghost:hover {
    background: var(--border);
}

.pb-typing {
    display: inline-flex;
    gap: 4px;
    padding: 2px 0;
}

.pb-typing i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--muted);
    animation: pb-blink 1s infinite;
}

.pb-typing i:nth-child(2) {
    animation-delay: 0.15s;
}

.pb-typing i:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes pb-blink {

    0%,
    60%,
    100% {
        opacity: 0.25;
    }

    30% {
        opacity: 1;
    }
}

/* Sugestiile derulează orizontal; wrapper-ul poartă fade-urile de la margini,
   ca ultimul chip să arate a „mai e” și nu a „tăiat”. */
.pb-chips-wrap {
    position: relative;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.pb-chips-wrap::before,
.pb-chips-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 28px;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition);
    z-index: 1;
}

.pb-chips-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), rgba(255, 255, 255, 0));
}

.pb-chips-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), rgba(255, 255, 255, 0));
}

.pb-chips-wrap.has-start::before,
.pb-chips-wrap.has-end::after {
    opacity: 1;
}

.pb-chips {
    display: flex;
    gap: 8px;
    padding: 10px 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.pb-chips::-webkit-scrollbar {
    display: none;
}

.pb-chip {
    flex: 0 0 auto;
    padding: 7px 13px;
    border: 1px solid var(--primary-light);
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-family: var(--font-base);
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.pb-chip:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}

.pb-form {
    display: flex;
    gap: 8px;
    padding: 12px;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.pb-text {
    flex: 1;
    min-width: 0;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--bg-soft);
    font-family: var(--font-base);
    font-size: 0.88rem;
    color: var(--dark);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.pb-text:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}

.pb-send {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: #fff;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

/* iconița de trimitere „zboară” ușor spre dreapta-sus, ca un avion de hârtie */
.pb-send svg {
    transform: translate(-1px, 1px);
}

.pb-send:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

@media (max-width: 640px) {
    /* Pe telefon vrem un singur element plutitor: două-trei butoane acopereau
       conținutul. Păstrăm „Calculează prețul”, redus la un buton rotund, și
       ascundem cercul de telefon — numărul rămâne în header, în meniul mobil
       și în footer. Textul butonului rămâne în aria-label pentru cititoarele
       de ecran. */
    .floating {
        display: none;
    }

    .pb-fab {
        bottom: 20px;
        right: 20px;
        width: 38px;
        height: 38px;
        padding: 0;
        justify-content: center;
        gap: 0;
        border-radius: 50%;
    }

    .pb-fab-label {
        display: none;
    }

    .pb-fab-icon {
        font-size: 1rem;
        line-height: 1;
    }

    /* Pe telefon panoul e o foaie aproape pe tot ecranul. Înainte lăsa o fâșie
       de ~72px sus, în care se vedea headerul site-ului tăiat pe jumătate. */
    .pb-panel {
        top: 8px;
        right: 8px;
        bottom: 8px;
        left: 8px;
        width: auto;
        height: auto;
        max-height: none;
    }
}

@media (prefers-reduced-motion: reduce) {

    .pb-panel,
    .pb-fab,
    .pb-msg,
    .pb-typing i {
        transition: none;
        animation: none;
    }
}
/* ===== Date articol blog ===== */
.article-dates {
    font-size: .88rem;
    color: rgba(255, 255, 255, .82);
    margin: 10px 0 0;
}

/* ==========================================================
   ZONE ACOPERITE — carduri detaliate pe sector
   ========================================================== */
.zone-detail {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 32px;
    margin-bottom: 20px;
    scroll-margin-top: 96px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, .04);
    transition: box-shadow .25s ease, border-color .25s ease;
}

.zone-detail:hover {
    border-color: #c7dff2;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .07);
}

.zone-detail:target {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.zone-detail>h3 {
    font-size: 1.3rem;
    line-height: 1.3;
    margin: 0 0 12px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.zone-detail>h3::before {
    content: "";
    flex: 0 0 auto;
    width: 8px;
    height: 22px;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--primary), var(--cyan));
}

.zone-answer {
    margin: 0 0 24px;
    line-height: 1.7;
    color: var(--text);
    max-width: 70ch;
}

.zone-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(240px, .95fr);
    gap: 32px;
    align-items: start;
}

.zone-detail-grid h4 {
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 14px;
}

/* Lista de cartiere */
.hood-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 22px;
}

.hood-list li {
    position: relative;
    padding-left: 20px;
    font-size: .94rem;
    line-height: 1.45;
    color: var(--text);
}

.hood-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .5em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 0 3px var(--primary-light);
}

/* Panoul cu date rapide */
.zone-facts {
    background: var(--primary-soft);
    border: 1px solid var(--primary-light);
    border-radius: 14px;
    padding: 20px;
}

.zone-facts>div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 14px;
    padding: 11px 0;
    border-bottom: 1px dashed rgba(11, 122, 203, .18);
}

.zone-facts>div:first-child {
    padding-top: 0;
}

.zone-facts>div:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
}

.zone-facts>div span {
    color: var(--muted);
    font-size: .84rem;
    white-space: nowrap;
}

.zone-facts>div strong {
    color: var(--dark);
    font-size: .95rem;
    text-align: right;
}

.zone-facts .btn {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 18px;
}

@media (max-width: 900px) {
    .zone-detail-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .zone-detail {
        padding: 24px 22px;
    }
}

@media (max-width: 520px) {
    .hood-list {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .zone-detail>h3 {
        font-size: 1.15rem;
    }
}

/* ==========================================================
   BLOC DE RĂSPUNS DIRECT (AI / featured snippet)
   ========================================================== */
.answer-box {
    background: var(--primary-soft);
    border: 1px solid var(--primary-light);
    border-left: 4px solid var(--primary);
    border-radius: 14px;
    padding: 26px 30px;
}

.answer-q {
    font-size: 1.14rem;
    line-height: 1.4;
    margin: 0 0 10px;
    color: var(--dark);
}

.answer-a {
    margin: 0;
    font-size: 1.03rem;
    line-height: 1.7;
    color: var(--text);
    max-width: 78ch;
}

.answer-meta {
    margin: 15px 0 0;
    font-size: .86rem;
    color: var(--muted);
}

@media (max-width: 640px) {
    .answer-box {
        padding: 20px;
    }

    .answer-q {
        font-size: 1.04rem;
    }
}

/* ==========================================================
   LOCAȚII FIZICE (NAP)
   ========================================================== */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.location-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.location-card:hover {
    border-color: #c7dff2;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .07);
}

.location-card h3 {
    font-size: 1.05rem;
    margin: 0 0 10px;
    color: var(--dark);
}

.location-card address {
    font-style: normal;
    font-size: .93rem;
    line-height: 1.6;
    color: var(--text);
    margin: 0 0 14px;
}

.location-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    font-size: .88rem;
}

.loc-rating {
    color: var(--star);
    font-weight: 700;
}

.loc-rating small {
    color: var(--muted);
    font-weight: 500;
}

.loc-hours {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.5;
    margin: 0 0 14px;
}

.location-card address small {
    color: var(--muted);
    font-size: .85em;
}

/* ===== Bloc de orientare între servicii înrudite ===== */
.crosslink-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    flex-wrap: wrap;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 28px;
}

.crosslink-box h3 {
    font-size: 1.05rem;
    margin: 0 0 6px;
    color: var(--dark);
}

.crosslink-box p {
    margin: 0;
    color: var(--muted);
    font-size: .94rem;
    max-width: 62ch;
}

.crosslink-box .btn {
    flex: 0 0 auto;
}

@media (max-width: 700px) {
    .crosslink-box {
        padding: 20px;
    }

    .crosslink-box .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== Notă tarif unitate ===== */
.price-disclaimer {
    margin: 18px 0 0;
    padding: 14px 18px;
    background: var(--bg-soft);
    border-left: 3px solid var(--primary);
    border-radius: 8px;
    font-size: .9rem;
    line-height: 1.6;
    color: var(--muted);
}

.price-disclaimer strong {
    color: var(--dark);
}

/* ==========================================================
   CENTRE — carduri locație
   ========================================================== */
/* Patru centre => 2x2. Cu auto-fit ieșea 3+1, cu un card singur pe rândul doi. */
.centre-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 700px) {
    .centre-grid {
        grid-template-columns: 1fr;
    }
}

.centru-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    scroll-margin-top: 96px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.centru-card:hover {
    border-color: #c7dff2;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .08);
}

.centru-card:target {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.centru-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.centru-head h3 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--dark);
}

.centru-rating {
    color: var(--star);
    font-weight: 700;
    font-size: .9rem;
    white-space: nowrap;
}

.centru-rating small {
    color: var(--muted);
    font-weight: 500;
}

.centru-rating--none {
    color: var(--muted);
    font-weight: 600;
}

.centru-adresa {
    font-style: normal;
    line-height: 1.6;
    color: var(--text);
    margin: 0 0 12px;
    font-size: .95rem;
}

.centru-reper {
    color: var(--muted);
    display: block;
    font-size: .86rem;
}

.centru-cartiere {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.55;
    margin: 0 0 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.centru-cartiere strong {
    color: var(--text);
}

.centru-program>div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 0;
    font-size: .9rem;
}

.centru-program span {
    color: var(--muted);
}

.centru-program strong {
    color: var(--dark);
}

.centru-actiuni {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.centru-actiuni .btn {
    flex: 1 1 auto;
    justify-content: center;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 18px 0;
}

.check-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 9px;
    line-height: 1.5;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--accent);
    font-weight: 800;
}

/* ==========================================================
   APLICAȚIE MOBILĂ
   ========================================================== */
.app-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}

.app-qr-row {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.app-qr {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    text-align: center;
    flex: 1 1 150px;
}

.app-qr svg {
    display: block;
    width: 100%;
    height: auto;
    max-width: 150px;
    margin: 0 auto 10px;
}

.app-qr strong {
    display: block;
    font-size: .92rem;
    color: var(--dark);
}

.app-qr small {
    color: var(--muted);
    font-size: .82rem;
}

/* Mențiune discretă: aplicația e încă publicată sub numele Crisbi Clean. */
.app-note {
    font-size: .88rem;
    color: var(--muted);
}

.app-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

@media (max-width: 860px) {
    .app-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* Pe telefon codurile QR nu au sens — nu-ți scanezi ecranul cu propriul
   telefon. Rămân doar butoanele către Google Play și App Store. */
@media (max-width: 640px) {
    .app-qr-row {
        display: none;
    }
}

/* ===== Social în footer ===== */
.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    font-size: .88rem;
    font-weight: 600;
    transition: background .2s ease, border-color .2s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .3);
}

/* ===== Centre — carduri compacte pe homepage ===== */
.centre-mini-grid {
    display: grid;
    /* patru centre, patru coloane egale; cardurile sunt identice ca structură */
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

@media (max-width: 1024px) {
    .centre-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .centre-mini-grid {
        grid-template-columns: 1fr;
    }
}

.centru-mini {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.centru-mini:hover {
    border-color: #c7dff2;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .07);
}

/* Numele zonei e cel mai vizibil element din card — după el caută clientul. */
.centru-mini h3 {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
    margin: 0 0 10px;
    color: var(--dark);
}

.centru-mini-adr {
    font-size: .88rem;
    line-height: 1.5;
    color: var(--text);
    margin: 0 0 10px;
}

.centru-mini-adr span {
    color: var(--muted);
}

/* Programul, pe două rânduri L–V / S: fiecare centru îl are pe al lui. */
.centru-mini-prog {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: .82rem;
    color: var(--muted);
    margin: 0 0 4px;
    line-height: 1.5;
}

.centru-mini-prog strong {
    color: var(--text);
    font-weight: 600;
}

/* ultimul rând de program poartă separatorul către zona de acțiuni */
.centru-mini-prog:last-of-type {
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.centru-mini-act {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: .87rem;
    font-weight: 600;
}

/* ==========================================================
   GEOLOCAȚIE & CEL MAI APROPIAT CENTRU SOFTCLEAN
   ========================================================== */
.geo-finder-box {
    margin: 0 auto 28px;
    max-width: 680px;
    text-align: center;
}

.btn-geo-detect {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    font-family: var(--font-base);
    font-size: 0.93rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(11, 122, 203, 0.12);
    transition: all 0.25s ease;
}

.btn-geo-detect:hover {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(11, 122, 203, 0.25);
    transform: translateY(-1px);
}

.btn-geo-detect:active {
    transform: translateY(0);
}

.btn-geo-detect.loading {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: var(--muted);
    cursor: wait;
}

.btn-geo-detect.located {
    background: #f0fdf4;
    border-color: #22c55e;
    color: #15803d;
    cursor: default;
}

.geo-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(11, 122, 203, 0.25);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: geo-spin 0.8s linear infinite;
}

@keyframes geo-spin {
    to { transform: rotate(360deg); }
}

/* Banner de status după localizare */
.geo-status-banner {
    margin-top: 14px;
    border-radius: 14px;
    animation: geoFadeIn 0.3s ease;
}

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

.geo-status-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    padding: 12px 18px;
    border-radius: 12px;
    text-align: left;
}

.geo-status-error {
    background: #fffbeb;
    border-color: #fde68a;
    color: #92400e;
    font-size: 0.9rem;
    justify-content: center;
}

.geo-status-icon {
    display: flex;
    align-items: center;
    color: var(--primary);
}

.geo-status-text {
    flex: 1 1 auto;
    font-size: 0.92rem;
    color: var(--dark);
}

.geo-status-name {
    color: var(--primary);
    font-weight: 800;
}

.geo-status-dist {
    color: var(--muted);
    font-weight: 600;
}

.geo-status-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 600px) {
    .geo-status-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .geo-status-actions {
        width: 100%;
    }
    .geo-status-actions .btn {
        flex: 1;
        text-align: center;
        justify-content: center;
    }
}

/* Badge și taguri pe carduri */
.centru-closest-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #0b7acb 0%, #0284c7 100%);
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(11, 122, 203, 0.25);
    animation: geoFadeIn 0.3s ease;
}

.closest-star {
    font-size: 0.85rem;
}

.centru-dist-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(11, 122, 203, 0.08);
    padding: 2px 7px;
    border-radius: 6px;
    margin-left: 6px;
    vertical-align: middle;
}

.centru-dist-tag--closest {
    background: #e0f2fe;
    color: #0369a1;
    font-weight: 700;
}

/* Evidențiere card cel mai apropiat */
.centru-mini--closest,
.centru-card--closest,
.location-card--closest {
    border-color: #0284c7 !important;
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.16), 0 0 0 2px rgba(2, 132, 199, 0.25) !important;
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%) !important;
}

/* Radar pin pentru locația utilizatorului pe Leaflet */
.map-user-pin {
    position: relative;
    width: 24px;
    height: 24px;
}

.map-user-pin .user-dot {
    width: 14px;
    height: 14px;
    background: #0284c7;
    border: 2.5px solid #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    z-index: 2;
}

.map-user-pin .user-pulse {
    width: 24px;
    height: 24px;
    background: rgba(2, 132, 199, 0.4);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    animation: map-user-radar 2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
    z-index: 1;
}

@keyframes map-user-radar {
    0% { transform: scale(0.6); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.map-pop-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0b7acb, #0284c7);
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.map-pop-dist {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.map-pop-route-info {
    display: flex;
    align-items: center;
    font-size: 0.84rem;
    font-weight: 700;
    color: #0369a1;
    background: #e0f2fe;
    padding: 4px 9px;
    border-radius: 6px;
    margin-bottom: 8px;
}


