/* ============================================================
   Sales Vibe — Închideri terase folie transparentă · Iași
   TEMĂ: „Nocturn indigo" — indigo profund + chihlimbar + cer deschis
   Fonturi: Fraunces (display) + Inter (text)
   ============================================================ */

:root {
  --bg:        #0b1230;   /* fundal cel mai adânc */
  --bg-2:      #101a3d;   /* secțiuni alternante */
  --panel:     #16224b;   /* carduri / panouri */
  --panel-2:   #1c2a58;   /* hover / accente panou */
  --glass:     rgba(143,180,255,.06);
  --glass-bd:  rgba(143,180,255,.16);

  --ink:       #eef1ff;   /* text principal */
  --muted:     #a8b2db;   /* text secundar */
  --faint:     #6f7aa8;   /* hint */

  --accent:    #ffb454;   /* chihlimbar (CTA, accente) */
  --accent-2:  #ffd089;
  --accent-dp: #e89a30;
  --sky:       #8fb4ff;   /* accent secundar rece */
  --wa:        #25d366;

  --nav-bg:    rgba(11,18,48,.78);  /* fundal nav la scroll (per temă) */
  --footer-bg: #070c20;             /* footer (per temă) */

  --line:      rgba(143,180,255,.14);
  --r: 16px;
  --r-lg: 26px;
  --maxw: 1180px;
  --shadow:    0 30px 70px -34px rgba(0,0,0,.7);
  --shadow-sm: 0 14px 36px -20px rgba(0,0,0,.6);
  --glow:      0 0 0 1px rgba(255,180,84,.4), 0 14px 40px -12px rgba(255,180,84,.45);

  --font-display: "Fraunces", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #2a1a00; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.05; letter-spacing: -.015em; color: var(--ink); }
em { font-style: italic; color: var(--accent); font-weight: 500; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2.4rem); }
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; position: relative; }
.section.alt { background: var(--bg-2); }

.eyebrow { font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: .55rem; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--accent); border-radius: 2px; }
.section-head { max-width: 660px; margin-bottom: clamp(2rem, 5vw, 3.4rem); }
.section-head h2 { font-size: clamp(2.1rem, 5vw, 3.6rem); margin: .9rem 0 .7rem; }
.section-head .lead { color: var(--muted); font-size: 1.12rem; }

/* ---------- Butoane ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .6rem; font-weight: 600; font-size: 1rem; padding: .95rem 1.6rem; border-radius: 999px; border: 1.5px solid transparent; cursor: pointer; transition: transform .18s ease, box-shadow .25s ease, background .2s, color .2s; white-space: nowrap; }
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--accent); color: #2a1a00; box-shadow: 0 14px 30px -12px rgba(255,180,84,.6); }
.btn-primary:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: var(--glow); }
.btn-wa { background: var(--wa); color: #06311b; }
.btn-wa:hover { filter: brightness(1.07); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--glass-bd); }
.btn-ghost:hover { background: var(--glass); border-color: var(--sky); }
.btn-lg { padding: 1.1rem 2rem; font-size: 1.06rem; }

/* ---------- Navigație ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1.1rem clamp(1.1rem, 4vw, 2.4rem); transition: background .3s ease, box-shadow .3s ease, padding .3s ease; }
.nav.scrolled { background: var(--nav-bg); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); padding-top: .8rem; padding-bottom: .8rem; }
/* peste hero/antet întunecat (nav transparent), textul rămâne alb pe orice temă */
.nav:not(.scrolled) .nav-brand, .nav:not(.scrolled) .nav-links a:not(.btn) { color: #fff; }
.nav:not(.scrolled) .theme-tgl { color: #fff; border-color: rgba(255,255,255,.32); }
.nav-brand { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; color: var(--ink); display: flex; align-items: center; gap: .55rem; }
.nav-brand .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 14px 2px rgba(255,180,84,.6); }
.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links a:not(.btn) { font-size: .96rem; font-weight: 500; color: var(--ink); opacity: .82; transition: opacity .2s, color .2s; }
.nav-links a:not(.btn):hover, .nav-links a.is-current { opacity: 1; color: var(--accent); }
.nav-burger { display: none; background: none; border: 0; font-size: 1.7rem; color: var(--ink); cursor: pointer; }

/* ============================================================
   HERO + animația-semnătură (folia care coboară la amurg)
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; isolation: isolate; }
.hero-scene { position: absolute; inset: 0; z-index: -2; }
.scene-sky { position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 78% 8%, rgba(255,180,84,.28) 0%, rgba(255,140,90,.12) 26%, transparent 58%),
    linear-gradient(180deg, #16224f 0%, #101a3d 44%, #0b1230 100%); }
.scene-garden { position: absolute; left: 0; right: 0; bottom: 0; height: 44%;
  background:
    radial-gradient(60% 130% at 10% 100%, rgba(16,30,40,.9) 0%, transparent 60%),
    radial-gradient(55% 130% at 90% 100%, rgba(12,24,34,.9) 0%, transparent 58%),
    linear-gradient(180deg, transparent, #060b1c 88%); }
.scene-deck { position: absolute; left: 0; right: 0; bottom: 0; height: 26%;
  background: linear-gradient(180deg, #1a1530, #0c0a1c);
  box-shadow: inset 0 16px 40px -18px rgba(255,180,84,.18); }
.scene-deck::before { content: ""; position: absolute; inset: 0; opacity: .3;
  background: repeating-linear-gradient(90deg, transparent 0 58px, rgba(0,0,0,.5) 58px 60px); }

/* PLOAIA */
.rain { position: absolute; inset: 0; z-index: -1; opacity: 0; transition: opacity 1.1s ease; pointer-events: none; }
.hero.raining .rain { opacity: .5; }
.rain i { position: absolute; top: -12%; width: 1.4px; height: 64px; background: linear-gradient(transparent, rgba(143,180,255,.8)); border-radius: 2px; animation: rainFall linear infinite; }
@keyframes rainFall { to { transform: translateY(118vh); } }

/* FOLIA */
.folie { position: absolute; inset: 0; z-index: -1; transform: translateY(-101%); will-change: transform;
  background: linear-gradient(115deg, rgba(143,180,255,.05) 0%, rgba(220,235,255,.16) 40%, rgba(143,180,255,.04) 60%, rgba(220,235,255,.12) 100%);
  border-bottom: 2px solid rgba(220,235,255,.45);
  box-shadow: 0 30px 60px -28px rgba(0,0,0,.6), inset 0 2px 34px rgba(255,255,255,.12);
  backdrop-filter: blur(1.4px) saturate(1.05); }
.folie::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(95deg, transparent 0 92px, rgba(255,255,255,.04) 92px 94px); }
.folie-sheen { position: absolute; inset: 0; z-index: -1; transform: translateX(-120%); pointer-events: none; background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,.28) 50%, transparent 62%); }
.hero.closed .folie { animation: folieDrop 2.1s cubic-bezier(.5,0,.18,1) forwards; }
.hero.closed .folie-sheen { animation: folieSheen 2.1s cubic-bezier(.5,0,.3,1) .25s forwards; }
@keyframes folieDrop { 0% { transform: translateY(-101%); } 78% { transform: translateY(0); } 88% { transform: translateY(-1.4%); } 100% { transform: translateY(0); } }
@keyframes folieSheen { 0% { transform: translateX(-120%); } 60%,100% { transform: translateX(120%); } }

/* lumină caldă interioară după închidere */
.scene-warm { position: absolute; inset: 0; z-index: -1; opacity: 0; transition: opacity 1.4s ease 1.2s; background: radial-gradient(95% 75% at 50% 92%, rgba(255,180,84,.3), transparent 70%); }
.hero.closed .scene-warm { opacity: 1; }

/* lumină pe cursor */
.hero-glow { position: absolute; width: 460px; height: 460px; transform: translate(-50%,-50%); border-radius: 50%; pointer-events: none; z-index: -1; opacity: 0; transition: opacity .45s ease; background: radial-gradient(circle, rgba(255,180,84,.22), transparent 64%); }

/* condens pe folie */
.droplets { position: absolute; inset: 0; z-index: -1; opacity: 0; transition: opacity 1.3s ease 1.5s; pointer-events: none; }
.hero.closed .droplets { opacity: .85; }
.droplets span { position: absolute; border-radius: 52% 52% 56% 56%; background: radial-gradient(circle at 34% 28%, rgba(255,255,255,.55), rgba(143,180,255,.12) 70%); box-shadow: inset 0 -1px 2px rgba(255,255,255,.4), 0 1px 3px rgba(0,0,0,.3); }
.droplets span.drip { animation: dripDown linear infinite; }
@keyframes dripDown { 0%,64% { transform: translateY(0); opacity: .85; } 100% { transform: translateY(70px); opacity: 0; } }

.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; background: linear-gradient(100deg, rgba(6,11,28,.72) 0%, rgba(6,11,28,.4) 44%, transparent 74%); }
.hero-inner { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 7rem clamp(1.1rem, 4vw, 2.4rem) 4rem; }
.hero-content { max-width: 620px; }
.hero-title { font-size: clamp(2.9rem, 7.6vw, 5.6rem); color: var(--ink); margin: 1.1rem 0 0; text-wrap: balance; }
.hero-title .accent { color: var(--accent); font-style: italic; }
.hero-sub { color: rgba(238,241,255,.9); font-size: clamp(1.05rem, 2.2vw, 1.32rem); margin-top: 1.3rem; max-width: 36ch; }
.hero-bullets { list-style: none; display: flex; flex-wrap: wrap; gap: .7rem 1.4rem; margin: 1.6rem 0 2rem; }
.hero-bullets li { color: var(--ink); font-size: .95rem; font-weight: 500; display: flex; align-items: center; gap: .5rem; }
.hero-bullets li svg { width: 18px; height: 18px; color: var(--accent); flex: none; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-scroll { position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); z-index: 2; color: var(--ink); opacity: .6; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: .4rem; animation: bob 2.4s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(7px); } }

/* ---------- Bară cifre ---------- */
.stats-band { background: var(--bg-2); padding: clamp(2.2rem,5vw,3.4rem) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; z-index: 1; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.stat { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: clamp(2.3rem,5vw,3.4rem); font-weight: 600; line-height: 1; color: var(--accent); letter-spacing: -.02em; }
.stat-label { font-size: .92rem; color: var(--muted); margin-top: .55rem; }

/* ---------- Carduri glass (beneficii / servicii) ---------- */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; perspective: 1100px; }
.servicii-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; perspective: 1100px; }
.benefit, .serviciu { position: relative; background: var(--glass); border: 1px solid var(--glass-bd); border-radius: var(--r); padding: 1.7rem 1.5rem; transition: transform .25s ease, box-shadow .25s ease, border-color .25s; transform-style: preserve-3d; will-change: transform; overflow: hidden; }
.benefit:hover, .serviciu:hover { border-color: var(--sky); box-shadow: var(--shadow); }
.benefit::after, .serviciu::after { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; background: radial-gradient(170px 170px at var(--mx,50%) 0%, rgba(255,255,255,.1), transparent 68%); opacity: 0; transition: opacity .3s ease; }
.benefit:hover::after, .serviciu:hover::after { opacity: 1; }
.benefit-ic { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: rgba(255,180,84,.14); color: var(--accent); margin-bottom: 1.1rem; }
.benefit-ic svg { width: 26px; height: 26px; }
.benefit h3 { font-size: 1.18rem; margin-bottom: .45rem; }
.benefit p, .serviciu p { color: var(--muted); font-size: .96rem; }
.serviciu .num { font-family: var(--font-display); font-size: .95rem; color: var(--accent); font-weight: 600; }
.serviciu h3 { font-size: 1.22rem; margin: .5rem 0 .55rem; }
.serviciu:first-child { grid-column: span 3; display: flex; gap: 2rem; align-items: center; background: linear-gradient(110deg, var(--panel), rgba(255,180,84,.1)); }
@media (min-width: 781px){ .serviciu:first-child h3{ font-size:1.7rem } }

/* ---------- Configurator ---------- */
.config-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1.6rem; }
.config-form { background: var(--panel); border: 1px solid var(--glass-bd); border-radius: var(--r-lg); padding: clamp(1.4rem,3vw,2.2rem); box-shadow: var(--shadow-sm); }
.config-row { margin-bottom: 1.5rem; }
.config-row > label { display: block; font-weight: 600; color: var(--ink); margin-bottom: .7rem; font-size: .98rem; }
.chips { display: flex; flex-wrap: wrap; gap: .55rem; }
.chip { border: 1.5px solid var(--glass-bd); background: var(--glass); border-radius: 999px; padding: .5rem 1rem; font-size: .92rem; font-weight: 500; color: var(--ink); cursor: pointer; transition: all .18s; }
.chip:hover { border-color: var(--accent); }
.chip.on { background: var(--accent); color: #2a1a00; border-color: var(--accent); }
.config-dims { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.dim label { font-size: .82rem; color: var(--muted); display: block; margin-bottom: .35rem; }
.dim .range-row { display: flex; align-items: center; gap: .8rem; }
.dim input[type=range] { flex: 1; accent-color: var(--accent); }
.dim .val { font-family: var(--font-display); font-weight: 600; color: var(--ink); min-width: 3.4ch; text-align: right; }
.config-extra { display: flex; flex-wrap: wrap; gap: .55rem; }
.config-out { background: linear-gradient(150deg, var(--panel-2), var(--panel)); border: 1px solid var(--glass-bd); border-radius: var(--r-lg); padding: clamp(1.4rem,3vw,2.2rem); display: flex; flex-direction: column; }
.config-out .out-label { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.config-out .price { font-family: var(--font-display); font-size: clamp(2.6rem,6vw,3.8rem); font-weight: 600; line-height: 1; margin: .5rem 0; color: var(--ink); }
.config-out .price small { font-size: 1rem; opacity: .7; font-family: var(--font-sans); }
.config-out .out-area { color: var(--muted); font-size: .96rem; }
.config-out .out-note { font-size: .82rem; color: var(--faint); margin: 1.1rem 0 1.4rem; line-height: 1.5; }
.config-out .out-actions { margin-top: auto; display: flex; flex-direction: column; gap: .7rem; }

/* ---------- Pași ---------- */
.pasi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.pas { position: relative; padding-top: 1rem; }
.pas .pnum { font-family: var(--font-display); font-size: 3.4rem; font-weight: 600; color: rgba(255,180,84,.32); line-height: 1; }
.pas h3 { font-size: 1.3rem; margin: .3rem 0 .5rem; }
.pas p { color: var(--muted); }

/* ---------- Galerie (sloturi de poze) ---------- */
.gal-filtre { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1.6rem; }
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gal-item { position: relative; aspect-ratio: 3/4; border-radius: var(--r); overflow: hidden; border: 1px solid var(--glass-bd); background: var(--panel); cursor: pointer; }
.gal-item.big { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.gal-item:hover img { transform: scale(1.07); }
.gal-ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem; color: var(--faint); background: repeating-linear-gradient(135deg, rgba(143,180,255,.04) 0 14px, transparent 14px 28px), var(--panel); }
.gal-ph svg { width: 34px; height: 34px; opacity: .7; }
.gal-ph small { font-size: .78rem; letter-spacing: .04em; }
.gal-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 1rem .9rem; background: linear-gradient(transparent, rgba(6,11,28,.86)); color: var(--ink); font-size: .92rem; font-weight: 500; transform: translateY(8px); opacity: 0; transition: .3s; }
.gal-item:hover .gal-cap { transform: none; opacity: 1; }
.gal-tag { position: absolute; top: .7rem; left: .7rem; font-size: .72rem; font-weight: 600; background: rgba(255,180,84,.92); color: #2a1a00; padding: .25rem .6rem; border-radius: 999px; }

/* ---------- Before / After (folie trasă cu cursorul) ---------- */
.ba { position: relative; aspect-ratio: 3/4; max-width: 460px; margin-inline: auto; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--glass-bd); user-select: none; touch-action: none; }
.ba .ba-img { position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 16px; font-family: var(--font-display); font-size: 1.4rem; color: var(--ink); }
.ba .ba-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ba .ba-before { background: linear-gradient(160deg,#13203f,#0a1226); justify-content: flex-start; padding-left: 14px; }
.ba .ba-after  { background: linear-gradient(160deg,#2a3566,#16224b); clip-path: inset(0 0 0 50%); justify-content: flex-end; padding-right: 14px; }
.ba .ba-after::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 70% at 50% 90%, rgba(255,180,84,.25), transparent 70%); }
.ba .ba-img span { position: relative; z-index: 3; background: rgba(6,11,28,.7); padding: .4rem .9rem; border-radius: 999px; font-size: .9rem; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--accent); cursor: ew-resize; }
.ba-handle::after { content: "⇆"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 42px; height: 42px; border-radius: 50%; background: var(--accent); color: #2a1a00; display: grid; place-items: center; font-size: 1.1rem; box-shadow: var(--glow); }

/* ---------- Recenzii ---------- */
.rec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.rec { background: var(--glass); border: 1px solid var(--glass-bd); border-radius: var(--r); padding: 1.6rem 1.5rem; }
.rec .stars { color: var(--accent); font-size: .95rem; letter-spacing: .12em; margin-bottom: .7rem; }
.rec h4 { font-family: var(--font-display); font-size: 1.12rem; margin-bottom: .5rem; color: var(--ink); }
.rec p { color: var(--muted); font-size: .96rem; }
.rec .who { display: flex; align-items: center; gap: .7rem; margin-top: 1.1rem; }
.rec .av { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,180,84,.16); color: var(--accent); display: grid; place-items: center; font-weight: 600; font-size: .9rem; }
.rec .who b { color: var(--ink); font-size: .92rem; font-weight: 600; }
.rec .who small { color: var(--faint); display: block; font-size: .8rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; color: var(--ink); font-family: var(--font-sans); font-size: 1.08rem; font-weight: 600; padding: 1.2rem 0; cursor: pointer; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq-q .ic { color: var(--accent); transition: transform .3s; flex: none; font-size: 1.4rem; line-height: 1; }
.faq-item.open .faq-q .ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; color: var(--muted); }
.faq-a p { padding: 0 0 1.2rem; }

/* ---------- Despre / split cu poză ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.split .img-slot { aspect-ratio: 4/5; }
.despre-txt p { color: var(--muted); font-size: 1.08rem; margin-top: 1rem; }

/* ---------- Slot generic de poză ---------- */
.img-slot { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px dashed var(--glass-bd); background: repeating-linear-gradient(135deg, rgba(143,180,255,.04) 0 16px, transparent 16px 32px), var(--panel); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .6rem; color: var(--faint); }
.img-slot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.img-slot svg { width: 40px; height: 40px; opacity: .7; }
.img-slot small { font-size: .8rem; }

/* ---------- Contact form ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.contact-card { background: var(--panel); border: 1px solid var(--glass-bd); border-radius: var(--r-lg); padding: clamp(1.4rem,3vw,2.2rem); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .85rem; color: var(--muted); margin-bottom: .4rem; }
.field input, .field textarea, .field select { width: 100%; background: var(--glass); border: 1px solid var(--glass-bd); border-radius: 12px; padding: .8rem 1rem; color: var(--ink); font-family: inherit; font-size: 1rem; transition: border-color .2s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.field select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.field select option { color: #182143; }
.field textarea { min-height: 110px; resize: vertical; }
.contact-info { display: flex; flex-direction: column; gap: 1.1rem; }
.ci-row { display: flex; gap: .9rem; align-items: flex-start; background: var(--glass); border: 1px solid var(--glass-bd); border-radius: var(--r); padding: 1.1rem 1.2rem; }
.ci-row .ic { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,180,84,.14); color: var(--accent); display: grid; place-items: center; flex: none; }
.ci-row .ic svg { width: 22px; height: 22px; }
.ci-row b { color: var(--ink); display: block; font-size: .95rem; }
.ci-row span { color: var(--muted); font-size: .9rem; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 9000; background: rgba(6,11,28,.94); display: flex; align-items: center; justify-content: center; padding: 4vw; opacity: 0; pointer-events: none; transition: opacity .3s; }
.lightbox.on { opacity: 1; pointer-events: auto; }
.lightbox img, .lightbox .lb-ph { max-width: 90vw; max-height: 86vh; border-radius: var(--r); }
.lightbox .lb-ph { width: min(900px,90vw); aspect-ratio: 4/3; }
.lightbox .lb-close { position: absolute; top: 1.4rem; right: 1.6rem; font-size: 2rem; color: var(--ink); background: none; border: 0; cursor: pointer; }

/* ---------- Antet sub-pagini ---------- */
.page-hero { position: relative; padding: 9rem clamp(1.1rem,4vw,2.4rem) 4rem; overflow: hidden; isolation: isolate; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(110% 90% at 80% 0%, rgba(255,180,84,.18), transparent 55%), linear-gradient(180deg,#16224f,#0b1230); }
.page-hero h1 { font-size: clamp(2.4rem,6vw,4rem); }
.page-hero p { color: var(--muted); font-size: 1.12rem; margin-top: .8rem; max-width: 50ch; }
.page-hero .crumbs { font-size: .85rem; color: var(--faint); margin-bottom: 1rem; }
.page-hero .crumbs a:hover { color: var(--accent); }

/* ---------- Bandă CTA ---------- */
.cta-band { background: linear-gradient(110deg, var(--panel-2), rgba(255,180,84,.12)); border-top: 1px solid var(--line); }
.cta-band .container { text-align: center; }
.cta-band h2 { font-size: clamp(2rem,4.6vw,3rem); }
.cta-band p { color: var(--muted); margin: .8rem auto 1.6rem; max-width: 50ch; }

/* ---------- Footer ---------- */
.footer { background: var(--footer-bg); color: var(--muted); padding: clamp(3rem,6vw,4.5rem) 0 2rem; border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; padding-bottom: 2.4rem; border-bottom: 1px solid var(--line); }
.footer-brand { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); display: flex; align-items: center; gap: .5rem; margin-bottom: .8rem; }
.footer-brand .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); }
.footer p { max-width: 38ch; font-size: .95rem; }
.footer h4 { color: var(--ink); font-family: var(--font-sans); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col a, .footer-col span { display: block; padding: .3rem 0; opacity: .85; font-size: .96rem; }
.footer-col a:hover { opacity: 1; color: var(--accent); }
.footer-bottom { padding-top: 1.6rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .85rem; opacity: .7; }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- WhatsApp plutitor ---------- */
.fab-wa { position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: var(--wa); color: #fff; display: grid; place-items: center; box-shadow: 0 14px 30px -10px rgba(37,211,102,.6); transition: transform .2s; }
.fab-wa:hover { transform: scale(1.08); }
.fab-wa svg { width: 30px; height: 30px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .servicii-grid { grid-template-columns: repeat(2,1fr); }
  .config-wrap, .contact-wrap, .split { grid-template-columns: 1fr; }
  .pasi-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .gal-grid, .rec-grid { grid-template-columns: repeat(2,1fr); }
  .gal-item.big { grid-column: span 2; grid-row: auto; aspect-ratio: 16/9; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-links { position: fixed; top: 0; left: 0; right: 0; bottom: 0; width: 100vw; height: 100dvh; flex-direction: column; justify-content: center; align-items: center; gap: 1.9rem; background: rgba(8,13,32,.98); backdrop-filter: blur(12px); transform: translateX(100%); transition: transform .35s cubic-bezier(.5,0,.2,1); padding: 2rem; z-index: 99; }
  .nav-links.open { transform: none; }
  .nav-links a:not(.btn) { font-size: 1.35rem; opacity: 1; color: #fff; }
  .nav-burger { display: block; z-index: 101; position: relative; }
  .benefits-grid, .servicii-grid, .gal-grid, .rec-grid { grid-template-columns: 1fr; }
  .serviciu:first-child { grid-column: auto; flex-direction: column; align-items: flex-start; gap: .6rem; }
  .config-dims { grid-template-columns: 1fr; }
  .gal-item.big { grid-column: auto; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.7rem; }
  .footer-top { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .hero.closed .folie { animation: none; transform: translateY(0); }
  .rain i, .droplets span.drip { animation: none; }
  .rain i { display: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .benefit, .serviciu { transform: none !important; }
  .cb-typing span { animation: none !important; }
}

/* ---------- Asistent (chatbot în pagină) ---------- */
.cb { max-width: 740px; margin: 0 auto; background: var(--panel); border: 1px solid var(--glass-bd); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.cb-head { display: flex; align-items: center; gap: .8rem; padding: 1rem 1.3rem; background: linear-gradient(110deg, var(--panel-2), rgba(255,180,84,.12)); border-bottom: 1px solid var(--glass-bd); }
.cb-head .ava { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: #2a1a00; display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; flex: none; }
.cb-head b { color: var(--ink); font-size: 1rem; display: block; }
.cb-head small { color: var(--muted); font-size: .82rem; display: flex; align-items: center; gap: .4rem; }
.cb-head small::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #3ddc84; box-shadow: 0 0 8px #3ddc84; }
.cb-msgs { padding: 1.3rem; display: flex; flex-direction: column; gap: .7rem; min-height: 240px; max-height: 440px; overflow-y: auto; }
.cb-msg { max-width: 84%; padding: .72rem 1rem; border-radius: 16px; font-size: .96rem; line-height: 1.5; animation: cbIn .25s ease; }
@keyframes cbIn { from { opacity: 0; transform: translateY(8px); } }
.cb-msg.bot { background: var(--glass); border: 1px solid var(--glass-bd); color: var(--ink); border-bottom-left-radius: 5px; align-self: flex-start; }
.cb-msg.user { background: var(--accent); color: #2a1a00; border-bottom-right-radius: 5px; align-self: flex-end; font-weight: 500; }
.cb-msg .cb-cta { display: inline-block; margin-top: .7rem; font-size: .86rem; font-weight: 600; background: var(--wa); color: #06311b; padding: .45rem .9rem; border-radius: 999px; }
.cb-msg .cb-cta.ghost { background: transparent; color: var(--accent); border: 1px solid var(--accent); margin-right: .45rem; }
.cb-typing span { display: inline-block; width: 7px; height: 7px; margin: 0 1.5px; border-radius: 50%; background: var(--muted); animation: cbBlink 1.2s infinite; }
.cb-typing span:nth-child(2) { animation-delay: .2s; } .cb-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes cbBlink { 0%,60%,100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
.cb-chips { display: flex; flex-wrap: wrap; gap: .5rem; padding: 0 1.3rem 1rem; }
.cb-chips button { font-size: .84rem; font-weight: 500; color: var(--ink); background: var(--glass); border: 1px solid var(--glass-bd); border-radius: 999px; padding: .45rem .9rem; cursor: pointer; transition: .18s; }
.cb-chips button:hover { border-color: var(--accent); color: var(--accent); }
.cb-input { display: flex; gap: .6rem; padding: 1rem 1.3rem; border-top: 1px solid var(--glass-bd); background: var(--bg-2); }
.cb-input input { flex: 1; background: var(--glass); border: 1px solid var(--glass-bd); border-radius: 999px; padding: .72rem 1.1rem; color: var(--ink); font-family: inherit; font-size: 1rem; }
.cb-input input:focus { outline: none; border-color: var(--accent); }
.cb-input button { width: 46px; height: 46px; border-radius: 50%; border: 0; background: var(--accent); color: #2a1a00; font-size: 1.1rem; cursor: pointer; flex: none; transition: transform .15s; }
.cb-input button:hover { transform: scale(1.08); }

/* ---------- Hero cu poză reală (stock Pexels, înlocuiește referința) ---------- */
.hero-scene { background: #0b1230 url(../poze/hero.jpg) center/cover no-repeat; }
.scene-sky, .scene-garden, .scene-deck { display: none; }
.hero-scene::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,18,48,.42) 0%, rgba(11,18,48,.28) 45%, rgba(11,18,48,.82) 100%); }

/* ---------- Intro animat (cortina se ridică) ---------- */
.intro { position: fixed; inset: 0; z-index: 9000; background: linear-gradient(180deg, #1a2a5e, #0b1230); display: grid; place-items: center; transition: transform 1s cubic-bezier(.7,0,.2,1); }
.intro.lift { transform: translateY(-100%); }
.intro-inner { display: flex; flex-direction: column; align-items: center; }
.intro-logo { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.1rem, 7vw, 3.6rem); color: var(--ink); display: flex; align-items: center; gap: .7rem; opacity: 0; animation: introIn .85s cubic-bezier(.2,.8,.2,1) forwards; }
.intro-logo .dot { width: 14px; height: 14px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 20px 4px rgba(255,180,84,.7); }
.intro .ln { height: 2px; width: 0; max-width: 220px; background: var(--accent); margin-top: 1.1rem; border-radius: 2px; animation: introLn 1s ease .35s forwards; }
.intro .tag { color: var(--muted); font-size: .9rem; letter-spacing: .14em; text-transform: uppercase; margin-top: 1rem; opacity: 0; animation: introIn .8s ease .5s forwards; }
@keyframes introIn { from { opacity: 0; transform: translateY(14px) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes introLn { to { width: 220px; } }
@media (prefers-reduced-motion: reduce) { .intro { display: none; } }

/* ============================================================
   COMUTATOR TEMĂ + tema „Zi"  (semnătură: două teme dintr-un site)
   ============================================================ */
.theme-tgl { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--glass-bd); background: var(--glass); color: var(--ink); display: grid; place-items: center; cursor: pointer; transition: transform .25s ease, border-color .2s, color .2s; flex: none; margin-left: .3rem; }
.theme-tgl:hover { border-color: var(--accent); color: var(--accent); transform: rotate(-18deg); }
.theme-tgl svg { width: 19px; height: 19px; }

/* animația lină DOAR în timpul comutării (nu afectează hover-urile restul timpului) */
html.theme-anim, html.theme-anim * { transition: background-color .45s ease, background .45s ease, border-color .45s ease, color .35s ease, box-shadow .45s ease !important; }

/* ----- Tema ZI: indigo cald → crem luminos, accentul chihlimbar rămâne ----- */
:root[data-theme="zi"] {
  --bg:        #faf6ee;
  --bg-2:      #f2ece0;
  --panel:     #ffffff;
  --panel-2:   #fbf3e6;
  --glass:     rgba(20,34,75,.035);
  --glass-bd:  rgba(20,34,75,.12);

  --ink:       #182143;
  --muted:     #56608a;
  --faint:     #8b94b4;

  --accent:    #df8612;
  --accent-2:  #f0a637;
  --accent-dp: #c4730a;
  --sky:       #3f63c8;

  --line:      rgba(20,34,75,.10);
  --shadow:    0 30px 70px -34px rgba(24,33,67,.30);
  --shadow-sm: 0 14px 36px -20px rgba(24,33,67,.22);
  --glow:      0 0 0 1px rgba(223,134,18,.4), 0 14px 40px -12px rgba(223,134,18,.4);

  --nav-bg:    rgba(255,255,255,.85);
  --footer-bg: #ece4d4;
}
/* hero are poză întunecată cu overlay → textul rămâne alb pe tema Zi */
:root[data-theme="zi"] .hero-title,
:root[data-theme="zi"] .hero-sub,
:root[data-theme="zi"] .hero-bullets li,
:root[data-theme="zi"] .hero-scroll { color: #fff; }
:root[data-theme="zi"] .hero-sub { color: rgba(255,255,255,.92); }
/* footer pe Zi: crem → liniile de jos au nevoie de puțin mai mult contrast */
:root[data-theme="zi"] .footer-bottom { opacity: .85; }
:root[data-theme="zi"] ::selection { background: var(--accent); color: #fff; }
/* antetul sub-paginilor se deschide pe Zi (altfel textul devine ilizibil) */
:root[data-theme="zi"] .page-hero::before { background: radial-gradient(110% 90% at 80% 0%, rgba(223,134,18,.15), transparent 55%), linear-gradient(180deg, #ffffff, var(--bg)); }

/* Tema schimbă AMBIANȚA hero-ului: Noapte = seară rece, Zi = amiază caldă/aurie */
.hero-scene { transition: filter .55s ease; }
.hero-scene::after { transition: background .55s ease; }
:root[data-theme="zi"] .hero-scene { filter: brightness(1.16) saturate(1.14) contrast(1.02); }
:root[data-theme="zi"] .hero-scene::after {
  background:
    linear-gradient(108deg, rgba(40,21,5,.5) 0%, rgba(255,176,84,.16) 42%, rgba(255,214,150,.05) 72%, transparent 100%),
    linear-gradient(180deg, transparent 32%, rgba(30,17,6,.52) 100%);
}

/* ============================================================
   ANIMAȚII — titluri pe cuvinte · bandă rulantă · tranziție pagină
   ============================================================ */
/* Titluri care se compun la scroll (cuvânt cu cuvânt) */
.split-words .word { display: inline-block; opacity: 0; transform: translateY(.55em) rotate(2.5deg); transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1); will-change: transform, opacity; }
.split-words.in .word { opacity: 1; transform: none; }

/* Bandă rulantă (servicii + zone) */
.marquee { overflow: hidden; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.05rem 0; position: relative; z-index: 1; }
.marquee::before, .marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-2), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--bg-2), transparent); }
.marquee-track { display: flex; align-items: center; gap: 2.6rem; width: max-content; animation: marqueeMove 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { font-family: var(--font-display); font-size: clamp(1.1rem, 2.4vw, 1.5rem); font-weight: 600; color: var(--ink); opacity: .72; white-space: nowrap; display: flex; align-items: center; gap: 2.6rem; }
.marquee-item::after { content: "✦"; color: var(--accent); font-size: .8em; opacity: .9; }
@keyframes marqueeMove { to { transform: translateX(-50%); } }

/* Tranziție de pagină (perdea care apare la plecare) */
.page-veil { position: fixed; inset: 0; z-index: 8000; background: var(--bg); opacity: 0; pointer-events: none; transition: opacity .42s ease; }
.page-veil.show { opacity: 1; pointer-events: all; }

/* Butoane mari magnetice (transformul vine din JS, aici doar revenirea lină) */
.btn.magnetic { transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease, background .2s, color .2s; }

/* ============================================================
   ADĂUGIRI: sezoane · galerie animată · lightbox nav ·
   configurator vizual SVG · soluții (hub + pagini pe tip)
   ============================================================ */

/* ---------- Secțiune nouă: terasa în fiecare sezon ---------- */
.seasons-band { background: linear-gradient(180deg, var(--bg-2), var(--bg)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.seasons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.season { background: var(--glass); border: 1px solid var(--glass-bd); border-radius: var(--r); padding: 1.5rem 1.4rem; transition: transform .25s ease, border-color .25s, box-shadow .25s; }
.season:hover { border-color: var(--sky); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.season-ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,180,84,.14); color: var(--accent); margin-bottom: .9rem; }
.season-ic svg { width: 24px; height: 24px; }
.season h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.season p { color: var(--muted); font-size: .93rem; }
.reveal.d4 { transition-delay: .32s; }

/* ---------- Galerie: intrare cu stagger + tilt (fără conflict cu tilt) ---------- */
.gal-item { transition: transform .16s ease, box-shadow .25s ease; will-change: transform; }
.gal-item:hover { box-shadow: var(--shadow); z-index: 2; }
.gal-item.reveal { opacity: 0; transform: none; transition: opacity .55s ease var(--gd, 0s), transform .16s ease; }
.gal-item.reveal.in { opacity: 1; }

/* ---------- Lightbox: caption + navigare prev/next ---------- */
.lb-stage { position: relative; display: flex; flex-direction: column; align-items: center; gap: .8rem; max-width: 92vw; }
.lb-stage img { max-width: 90vw; max-height: 80vh; border-radius: var(--r); }
.lb-cap { color: var(--ink); font-size: .96rem; display: flex; align-items: center; gap: .6rem; }
.lb-tag { background: var(--accent); color: #2a1a00; font-size: .72rem; font-weight: 600; padding: .2rem .6rem; border-radius: 999px; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--glass-bd); background: rgba(6,11,28,.6); color: var(--ink); font-size: 1.7rem; line-height: 1; cursor: pointer; display: grid; place-items: center; z-index: 2; transition: border-color .2s, color .2s; }
.lb-nav:hover { border-color: var(--accent); color: var(--accent); }
.lb-prev { left: .8rem; } .lb-next { right: .8rem; }

/* ---------- Configurator: scenă SVG live ---------- */
.config-stage { grid-column: 1 / -1; background: var(--bg); border: 1px solid var(--glass-bd); border-radius: var(--r-lg); padding: 1rem 1.2rem .5rem; }
.config-stage svg { display: block; width: 100%; height: auto; max-height: 300px; }
.stage-hint { text-align: center; color: var(--faint); font-size: .8rem; margin-top: .1rem; }

/* ---------- Soluții: hub (grilă) ---------- */
.sol-hub { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.sol-card { display: flex; flex-direction: column; background: var(--glass); border: 1px solid var(--glass-bd); border-radius: var(--r-lg); padding: 1.7rem 1.5rem; transition: transform .25s ease, border-color .25s, box-shadow .25s; }
.sol-card:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: var(--shadow); }
.sol-ic { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: rgba(255,180,84,.14); color: var(--accent); margin-bottom: 1.1rem; }
.sol-ic svg { width: 28px; height: 28px; }
.sol-card h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.sol-card p { color: var(--muted); font-size: .95rem; flex: 1; }
.sol-go { margin-top: 1rem; color: var(--accent); font-weight: 600; font-size: .92rem; }

/* ---------- Soluții: pagină pe tip (split text + poză) ---------- */
.sol-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,5vw,3.5rem); align-items: center; }
.sol-body .lead-intro { color: var(--muted); font-size: 1.08rem; margin: 1rem 0 1.5rem; }
.sol-puncte { list-style: none; display: flex; flex-direction: column; gap: .85rem; }
.sol-puncte li { display: flex; gap: .7rem; align-items: flex-start; color: var(--ink); font-size: 1rem; }
.sol-puncte li svg { width: 20px; height: 20px; color: var(--accent); flex: none; margin-top: .18rem; }
.sol-img { aspect-ratio: 4/3; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--glass-bd); background: var(--panel); }
.sol-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Responsive pentru adăugiri ---------- */
@media (max-width: 980px) {
  .seasons-grid { grid-template-columns: repeat(2,1fr); }
  .sol-hub { grid-template-columns: repeat(2,1fr); }
  .sol-split { grid-template-columns: 1fr; }
  .config-stage svg { max-height: 240px; }
}
@media (max-width: 680px) {
  .seasons-grid, .sol-hub { grid-template-columns: 1fr; }
}

/* ---------- Montaje reale (clipuri video) ---------- */
.mnt-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.2rem; }
.mnt-item { flex: 0 0 clamp(230px, 30vw, 300px); position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid var(--glass-bd); background: #05070f; aspect-ratio: 9/16; }
.mnt-item img, .mnt-item video { width: 100%; height: 100%; object-fit: contain; display: block; }
.mnt-item.reveal { opacity: 0; transition: opacity .55s ease; }
.mnt-item.reveal.in { opacity: 1; }
.mnt-empty { flex: 1 1 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .8rem; text-align: center; padding: clamp(2.5rem,6vw,4rem) 1.5rem; color: var(--faint); border: 1px dashed var(--glass-bd); border-radius: var(--r-lg); background: repeating-linear-gradient(135deg, rgba(143,180,255,.04) 0 14px, transparent 14px 28px), var(--panel); }
.mnt-empty svg { width: 40px; height: 40px; opacity: .7; }
.mnt-empty p { max-width: 34ch; font-size: .95rem; margin: 0; }

/* ---------- Formular ofertă personalizată (proiect complex) ---------- */
.oferta-wrap { max-width: 760px; margin: 0 auto; }
.oferta-form { background: var(--panel); border: 1px solid var(--glass-bd); border-radius: var(--r-lg); padding: clamp(1.4rem,3vw,2.2rem); }
.ofc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
.ofc-checks { display: flex; flex-wrap: wrap; gap: .55rem; }
.ofc-check { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem .85rem; border: 1px solid var(--glass-bd); border-radius: 999px; cursor: pointer; font-size: .92rem; color: var(--muted); transition: border-color .2s, color .2s, background .2s; }
.ofc-check input { accent-color: var(--accent); margin: 0; }
.ofc-check:hover { border-color: var(--accent); color: var(--ink); }
.ofc-check:has(input:checked) { border-color: var(--accent); color: var(--ink); background: rgba(255,180,84,.12); }
.ofc-note { color: var(--faint); font-size: .82rem; margin-top: .9rem; }
@media (max-width: 560px) { .ofc-grid { grid-template-columns: 1fr; } }
