/* ==========================================================================
   DAR Assist — Tractări Auto 24/7
   Design system: industrial-premium. Steel/charcoal base, brand blue
   structure, amber/gold action accents. Saira Condensed + Manrope.
   ========================================================================== */

/* ---- Tokens ------------------------------------------------------------- */
:root {
  --ink:        #0A0E13;
  --steel-950:  #0D1218;
  --steel-900:  #11171F;
  --steel-850:  #141B24;
  --steel-800:  #19222D;
  --steel-700:  #222E3B;
  --steel-600:  #2C3A49;
  --hair:        rgba(255,255,255,.08);
  --hair-strong: rgba(255,255,255,.16);

  --blue:      #1E7BE0;
  --blue-600:  #1769C4;
  --blue-400:  #4D9BF0;
  --blue-glow: rgba(30,123,224,.32);

  --amber:     #FFB81C;
  --amber-600: #F0A500;
  --amber-700: #CF8A00;
  --amber-glow: rgba(255,184,28,.30);

  --white: #FFFFFF;
  --text:  #E7ECF2;
  --muted: #9AA8B6;
  --muted-2: #6E7C8B;

  --ink-text:  #0F1620;
  --ink-muted: #51606E;
  --paper:   #F4F6F8;
  --paper-2: #E9EEF2;

  --r-xs: 8px;
  --r-sm: 11px;
  --r:    16px;
  --r-lg: 24px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(8,12,18,.18), 0 4px 14px rgba(8,12,18,.08);
  --shadow:    0 10px 30px rgba(8,12,18,.14), 0 2px 8px rgba(8,12,18,.08);
  --shadow-lg: 0 28px 70px rgba(8,12,18,.28);

  --ff-display: "Saira Condensed", "Arial Narrow", sans-serif;
  --ff-body: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --container: 1200px;
  --header-h: 76px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--steel-950);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 4px; }

/* ---- Typography --------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: .005em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.6rem, 6.4vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
p { color: var(--muted); }
strong { color: inherit; font-weight: 700; }

.eyebrow {
  font-family: var(--ff-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .74rem;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--amber);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }

.lead { font-size: 1.16rem; color: var(--muted); }
.text-amber { color: var(--amber); }
.text-blue { color: var(--blue-400); }

/* ---- Layout ------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.4rem);
  min-width: 0;
}
.section { padding-block: clamp(4rem, 8vw, 7.5rem); position: relative; }
.section--tight { padding-block: clamp(2.8rem, 5vw, 4.5rem); }

.section--dark   { background: var(--steel-950); }
.section--steel  { background: var(--steel-900); }
.section--panel  { background: linear-gradient(180deg, var(--steel-900), var(--steel-950)); }
.section--paper  { background: var(--paper); color: var(--ink-text); }
.section--paper p { color: var(--ink-muted); }
.section--paper h1, .section--paper h2, .section--paper h3 { color: var(--ink-text); }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: .8rem; }
.section-head p { margin-top: 1rem; }

.grid { display: grid; gap: clamp(1rem, 2vw, 1.6rem); }
.divider { height: 1px; background: var(--hair); border: 0; }

/* Subtle textures for atmosphere */
.tex-grid::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--hair) 1px, transparent 1px),
    linear-gradient(90deg, var(--hair) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 10%, transparent 72%);
          mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 10%, transparent 72%);
  opacity: .5;
  pointer-events: none;
}

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  --btn-bg: var(--amber);
  --btn-fg: #1A1206;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .92rem 1.55rem;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1;
  white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease), color .2s var(--ease);
  will-change: transform;
  min-width: 0;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--amber { box-shadow: 0 8px 26px var(--amber-glow); }
.btn--amber:hover { background: var(--amber-600); box-shadow: 0 12px 34px var(--amber-glow); }

.btn--blue { --btn-bg: var(--blue); --btn-fg: #fff; box-shadow: 0 8px 26px var(--blue-glow); }
.btn--blue:hover { --btn-bg: var(--blue-600); }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--text);
  border: 1.5px solid var(--hair-strong);
  box-shadow: none;
}
.btn--ghost:hover { --btn-bg: rgba(255,255,255,.06); border-color: var(--white); }

.btn--dark { --btn-bg: var(--ink-text); --btn-fg: #fff; }
.btn--dark:hover { --btn-bg: #000; }

.btn--lg { padding: 1.08rem 1.9rem; font-size: 1.06rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

/* ---- Header ------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(11,16,22,.86);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border-bottom-color: var(--hair);
  box-shadow: 0 8px 30px rgba(0,0,0,.28);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-width: 0; }

.brand { display: flex; align-items: center; gap: .7rem; z-index: 2; }
.brand img { height: 46px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b {
  font-family: var(--ff-display);
  font-size: 1.18rem; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; color: #fff;
}
.brand-text span { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--amber); font-weight: 700; }

.nav { display: flex; align-items: center; gap: .25rem; min-width: 0; }
.nav a {
  position: relative;
  padding: .55rem .85rem;
  font-size: .94rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: var(--r-xs);
  white-space: nowrap;
  transition: color .2s var(--ease);
}
.nav a:hover { color: #fff; }
.nav a.is-active { color: #fff; }
.nav a.is-active::after {
  content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .28rem;
  height: 2px; background: var(--amber); border-radius: 2px;
}

.mobile-cta { display: none; }

.header-cta { display: flex; align-items: center; gap: .8rem; flex: none; }
.header-phone {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--ff-display); font-weight: 700; font-size: 1.15rem; letter-spacing: .02em; color: #fff;
  flex: none;
  line-height: 1.08;
  white-space: nowrap;
}
.header-phone svg { width: 18px; height: 18px; color: var(--amber); }
.header-phone span { display: block; white-space: nowrap; }
.header-phone small { display: block; font-family: var(--ff-body); font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--amber); font-weight: 700; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: var(--r-xs);
  border: 1px solid var(--hair-strong);
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span::after  { transform: translateY(-6px) rotate(-45deg); }

/* ---- Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(100svh, 880px);
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover;
  background-position: 62% center;
  transform: scale(1.06);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(7,10,14,.94) 0%, rgba(7,10,14,.78) 38%, rgba(7,10,14,.28) 70%, rgba(7,10,14,.55) 100%),
    linear-gradient(0deg, rgba(7,10,14,.92) 2%, rgba(7,10,14,0) 42%),
    radial-gradient(120% 90% at 80% 30%, transparent 40%, rgba(7,10,14,.6) 100%);
}
.hero .container { width: 100%; position: relative; }
.hero__inner { max-width: 660px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1.4rem; }
.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .42rem .85rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .02em;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--hair-strong);
  border-radius: var(--r-pill);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.chip svg { width: 15px; height: 15px; }
.chip--live { color: #fff; }
.chip--live .dot {
  width: 8px; height: 8px; border-radius: 50%; background: #34D17A;
  box-shadow: 0 0 0 0 rgba(52,209,122,.6); animation: pulse 2.2s infinite;
}
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(52,209,122,0); } 100% { box-shadow: 0 0 0 0 rgba(52,209,122,0); } }
.chip--star { color: var(--amber); }
.chip--star svg { color: var(--amber); }

.hero h1 { color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,.4); }
.hero h1 .accent { color: var(--amber); }
.hero__sub { margin-top: 1.2rem; font-size: 1.18rem; color: #D4DCE4; max-width: 42ch; }
.hero__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .85rem; align-items: center; }
.hero__phone {
  margin-top: 1.7rem;
  display: inline-flex; align-items: baseline; gap: .8rem; flex-wrap: wrap;
}
.hero__phone a {
  font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: #fff; letter-spacing: .02em;
}
.hero__phone a:hover { color: var(--amber); }
.hero__phone small { color: var(--muted); font-family: var(--ff-body); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; font-size: .7rem; }

.scroll-hint {
  position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .64rem; letter-spacing: .24em; text-transform: uppercase; color: var(--muted-2);
}
.scroll-hint .mouse { width: 22px; height: 36px; border: 2px solid var(--muted-2); border-radius: var(--r-pill); position: relative; }
.scroll-hint .mouse::after { content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; background: var(--amber); border-radius: 2px; transform: translateX(-50%); animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 10px); } }

/* ---- Quick-action strip (under hero) ------------------------------------ */
.quickbar { background: var(--amber); color: #1A1206; }
.quickbar .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1.05rem; }
.quickbar p { color: #2A1E06; font-weight: 700; margin: 0; display: flex; align-items: center; gap: .6rem; }
.quickbar p svg { width: 22px; height: 22px; flex: none; }
.quickbar .btn { background: #15110A; color: #fff; box-shadow: none; }
.quickbar .btn:hover { background: #000; }

/* ---- Stat strip --------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem,2vw,2rem); }
.stat { text-align: center; padding: .5rem; }
.stat .num { font-family: var(--ff-display); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.6rem); color: #fff; line-height: 1; }
.stat .num .unit { color: var(--amber); }
.stat .lbl { margin-top: .55rem; font-size: .82rem; color: var(--muted); letter-spacing: .04em; }

/* ---- Service cards ------------------------------------------------------ */
.cards { grid-template-columns: repeat(3, 1fr); }
.card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 1.7rem 1.6rem;
  background: var(--steel-850);
  border: 1px solid var(--hair);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background-color .35s var(--ease);
}
.card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--amber), var(--amber-600));
  transition: width .4s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: var(--hair-strong); background: var(--steel-800); }
.card:hover::after { width: 100%; }
.card__icon {
  width: 54px; height: 54px; border-radius: 13px;
  display: grid; place-items: center;
  background: linear-gradient(160deg, rgba(30,123,224,.22), rgba(30,123,224,.06));
  border: 1px solid rgba(77,155,240,.28);
  color: var(--blue-400);
  margin-bottom: 1.15rem;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { color: #fff; font-size: 1.4rem; }
.card p { margin-top: .6rem; font-size: .98rem; }
.card .more {
  margin-top: 1.2rem; display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 700; font-size: .9rem; color: var(--amber); letter-spacing: .02em;
}
.card .more svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.card:hover .more svg { transform: translateX(4px); }

/* ---- Feature / why-us --------------------------------------------------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--rev .split__media { order: -1; }
.media-frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--hair); box-shadow: var(--shadow-lg);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.media-frame--tall img { aspect-ratio: 3/4; }
.media-badge {
  position: absolute; left: 1rem; bottom: 1rem;
  background: rgba(10,14,19,.82); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid var(--hair-strong); border-radius: var(--r-sm);
  padding: .7rem 1rem; display: flex; align-items: center; gap: .7rem;
}
.media-badge b { font-family: var(--ff-display); font-size: 1.5rem; color: var(--amber); line-height: 1; }
.media-badge span { font-size: .78rem; color: var(--muted); }

.feature-list { display: grid; gap: 1.1rem; margin-top: 1.8rem; }
.feature-list li { display: flex; gap: .9rem; align-items: flex-start; }
.feature-list .ic {
  flex: none; width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center;
  background: rgba(255,184,28,.14); color: var(--amber); border: 1px solid rgba(255,184,28,.3);
}
.feature-list .ic svg { width: 16px; height: 16px; }
.feature-list b { color: #fff; font-weight: 700; display: block; font-size: 1.02rem; }
.feature-list p { margin: .15rem 0 0; font-size: .94rem; }
.section--paper .feature-list b { color: var(--ink-text); }

/* ---- Process steps ------------------------------------------------------ */
.steps { grid-template-columns: repeat(4, 1fr); counter-reset: step; }
.step { position: relative; padding: 1.6rem 1.3rem; border: 1px solid var(--hair); border-radius: var(--r); background: var(--steel-850); }
.step__n { font-family: var(--ff-display); font-weight: 800; font-size: 2.6rem; color: var(--steel-600); line-height: 1; }
.step h3 { font-size: 1.25rem; color: #fff; margin-top: .5rem; }
.step p { font-size: .92rem; margin-top: .45rem; }

/* ---- Areas -------------------------------------------------------------- */
.area-grid { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.6rem; }
.area-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1rem; border-radius: var(--r-pill);
  background: var(--steel-850); border: 1px solid var(--hair); color: var(--text);
  font-weight: 600; font-size: .92rem;
  transition: border-color .25s var(--ease), background-color .25s var(--ease), transform .25s var(--ease);
}
.area-tag svg { width: 14px; height: 14px; color: var(--amber); }
.area-tag:hover { border-color: rgba(255,184,28,.5); background: var(--steel-800); transform: translateY(-2px); }
.area-tag--all { background: rgba(30,123,224,.16); border-color: rgba(77,155,240,.4); color: #fff; }

/* ---- Trust / reviews ---------------------------------------------------- */
.trust { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(1.5rem,4vw,3.5rem); align-items: center; }
.rating-card {
  text-align: center; padding: 2.2rem 1.8rem;
  background: var(--steel-850); border: 1px solid var(--hair); border-radius: var(--r-lg);
}
.rating-card .score { font-family: var(--ff-display); font-weight: 800; font-size: 5rem; color: #fff; line-height: 1; }
.rating-card .stars { color: var(--amber); font-size: 1.5rem; letter-spacing: .15em; margin: .4rem 0 .7rem; }
.rating-card p { font-size: .95rem; }
.rating-card .gmark { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.1rem; font-weight: 700; color: #fff; font-size: .9rem; }

.partner-card { display: flex; align-items: center; gap: 1.3rem; padding: 1.5rem; background: var(--steel-850); border: 1px solid var(--hair); border-radius: var(--r); }
.partner-card img { width: 84px; height: auto; border-radius: 10px; background: #fff; padding: 6px; }
.partner-card b { color: #fff; display: block; font-size: 1.05rem; }
.partner-card p { font-size: .9rem; margin-top: .25rem; }

/* ---- CTA band ----------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--blue-600), #0E4E96); }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 120% at 85% 20%, rgba(255,255,255,.16), transparent 60%);
}
.cta-band .container { position: relative; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.86); max-width: 56ch; margin: 1rem auto 0; }
.cta-band .btn-row { justify-content: center; margin-top: 2rem; }

/* ---- Page hero (inner pages) -------------------------------------------- */
.page-hero {
  position: relative; padding-top: calc(var(--header-h) + 3.5rem); padding-bottom: 3.5rem;
  background: linear-gradient(180deg, var(--steel-900), var(--steel-950));
  border-bottom: 1px solid var(--hair); overflow: hidden;
}
.page-hero.tex-grid::before { opacity: .6; }
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 4rem); }
.page-hero p { margin-top: 1rem; max-width: 60ch; font-size: 1.1rem; overflow-wrap: break-word; }
.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: .82rem; color: var(--muted-2); margin-bottom: 1.1rem; }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb span { color: var(--muted-2); }

/* ---- Gallery ------------------------------------------------------------ */
.gallery {
  columns: 3; column-gap: 1rem;
}
.gallery .g-item {
  break-inside: avoid; margin-bottom: 1rem; position: relative;
  border-radius: var(--r); overflow: hidden; border: 1px solid var(--hair);
  cursor: zoom-in; background: var(--steel-850);
}
.gallery .g-item img { width: 100%; display: block; transition: transform .5s var(--ease); }
.gallery .g-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(7,10,14,.55), transparent 45%);
  opacity: 0; transition: opacity .35s var(--ease);
}
.gallery .g-item:hover img { transform: scale(1.05); }
.gallery .g-item:hover::after { opacity: 1; }
.gallery .g-item .zoom {
  position: absolute; right: .8rem; bottom: .8rem; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: var(--amber); color: #1A1206; opacity: 0; transform: translateY(8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.gallery .g-item:hover .zoom { opacity: 1; transform: translateY(0); }

.gallery-note {
  margin-top: 2rem; padding: 1.2rem 1.4rem; border-radius: var(--r);
  border: 1px dashed var(--hair-strong); background: var(--steel-900);
  font-size: .92rem; color: var(--muted);
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 1.5rem;
  background: rgba(5,8,11,.94); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(94vw, 1100px); max-height: 86vh; border-radius: var(--r-sm); box-shadow: var(--shadow-lg); }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255,255,255,.1); border: 1px solid var(--hair-strong);
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; color: #fff;
  transition: background-color .2s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.22); }
.lightbox__close { top: 1.2rem; right: 1.2rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav.prev { left: 1.2rem; }
.lightbox__nav.next { right: 1.2rem; }
.lightbox__nav svg, .lightbox__close svg { width: 22px; height: 22px; }

/* ---- Forms -------------------------------------------------------------- */
.form-card {
  background: var(--steel-850); border: 1px solid var(--hair);
  border-radius: var(--r-lg); padding: clamp(1.4rem, 3vw, 2.4rem);
  min-width: 0;
}
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.05rem; min-width: 0; }
.field label { font-size: .82rem; font-weight: 700; letter-spacing: .04em; color: var(--text); text-transform: uppercase; }
.field label .req { color: var(--amber); }
.field input, .field select, .field textarea {
  background: var(--steel-950); border: 1px solid var(--hair-strong); border-radius: var(--r-sm);
  padding: .85rem 1rem; color: #fff; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  width: 100%;
  min-width: 0;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(255,184,28,.16); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239AA8B6' stroke-width='2.4'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 18px; padding-right: 2.6rem; }
.form-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 0 1rem; min-width: 0; }
.form-note { font-size: .84rem; color: var(--muted); margin-top: .4rem; display: flex; gap: .5rem; align-items: flex-start; }
.form-note svg { width: 16px; height: 16px; color: var(--amber); flex: none; margin-top: .15rem; }
.form-status { margin-top: 1rem; padding: .85rem 1rem; border-radius: var(--r-sm); font-size: .92rem; font-weight: 600; display: none; }
.form-status.ok { display: block; background: rgba(52,209,122,.14); border: 1px solid rgba(52,209,122,.4); color: #8BEAB4; }

/* contact info list */
.info-list { display: grid; gap: 1.1rem; }
.info-list li { display: flex; gap: 1rem; align-items: flex-start; }
.info-list .ic { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--steel-800); border: 1px solid var(--hair); color: var(--amber); }
.info-list .ic svg { width: 20px; height: 20px; }
.info-list .lbl { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; }
.info-list a, .info-list b { color: #fff; font-weight: 700; font-size: 1.06rem; }
.info-list a:hover { color: var(--amber); }
.map-frame { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--hair); }
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; filter: grayscale(.3) contrast(1.05); }

/* ---- Pricing ------------------------------------------------------------ */
.price-grid { grid-template-columns: repeat(3, 1fr); }
.price-card { padding: 1.8rem 1.6rem; background: var(--steel-850); border: 1px solid var(--hair); border-radius: var(--r); display: flex; flex-direction: column; }
.price-card.is-feat { border-color: rgba(255,184,28,.45); background: linear-gradient(180deg, rgba(255,184,28,.08), var(--steel-850)); }
.price-card h3 { color: #fff; font-size: 1.5rem; }
.price-card .desc { font-size: .94rem; margin: .5rem 0 1.2rem; }
.price-card ul { display: grid; gap: .7rem; margin-bottom: 1.5rem; }
.price-card li { display: flex; gap: .6rem; font-size: .95rem; color: var(--text); }
.price-card li svg { width: 18px; height: 18px; color: var(--amber); flex: none; margin-top: .15rem; }
.price-card .btn { margin-top: auto; }
.price-tag { font-family: var(--ff-display); font-size: 1.3rem; color: var(--amber); font-weight: 700; }

/* ---- FAQ ---------------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--hair); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.3rem 0; text-align: left; font-family: var(--ff-display); font-size: 1.3rem; color: #fff; text-transform: uppercase; }
.faq__q .pm { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--hair-strong); display: grid; place-items: center; position: relative; transition: background-color .25s var(--ease); }
.faq__q .pm::before, .faq__q .pm::after { content: ""; position: absolute; background: var(--amber); border-radius: 2px; transition: transform .3s var(--ease); }
.faq__q .pm::before { width: 12px; height: 2px; }
.faq__q .pm::after { width: 2px; height: 12px; }
.faq__item.is-open .pm::after { transform: rotate(90deg); opacity: 0; }
.faq__item.is-open .pm { background: rgba(255,184,28,.14); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .35s var(--ease); }
.faq__a p { padding-bottom: 1.3rem; }

/* ---- Footer ------------------------------------------------------------- */
.site-footer { background: var(--ink); border-top: 1px solid var(--hair); padding-top: clamp(3rem,6vw,4.5rem); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 2rem; }
.footer-brand img { height: 56px; margin-bottom: 1rem; }
.footer-brand p { font-size: .94rem; max-width: 36ch; }
.footer-col h4 { font-size: 1rem; color: #fff; letter-spacing: .08em; margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: .6rem; }
.footer-col a, .footer-col li { color: var(--muted); font-size: .94rem; }
.footer-col a:hover { color: var(--amber); }
.footer-contact li { display: flex; gap: .65rem; align-items: flex-start; margin-bottom: .8rem; }
.footer-contact svg { width: 17px; height: 17px; color: var(--amber); flex: none; margin-top: .25rem; }
.footer-contact a, .footer-contact span { color: var(--text); font-size: .94rem; }
.footer-contact a:hover { color: var(--amber); }
.footer-bottom { margin-top: clamp(2.2rem,5vw,3.2rem); padding-block: 1.5rem; border-top: 1px solid var(--hair); display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem; font-size: .84rem; color: var(--muted-2); }
.footer-bottom a:hover { color: var(--amber); }

/* ---- Sticky mobile call bar -------------------------------------------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none; gap: .6rem; padding: .6rem .7rem calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(11,16,22,.94); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-top: 1px solid var(--hair);
}
.callbar .btn { flex: 1; padding: .92rem 1rem; min-width: 0; }
.callbar .btn--wa { background: #25D366; color: #07310F; }

/* floating WhatsApp (desktop) */
.wa-float {
  position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 65;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.4);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ---- Reveal animations -------------------------------------------------- */
.hero__badges,
.hero .eyebrow,
.hero h1,
.hero__sub,
.hero__actions,
.hero__phone,
.page-hero .breadcrumb,
.page-hero h1,
.page-hero p {
  animation: fadeSlideUp .65s var(--ease) both;
}
.hero .eyebrow,
.page-hero h1 { animation-delay: .08s; }
.hero h1,
.page-hero p { animation-delay: .16s; }
.hero__sub { animation-delay: .24s; }
.hero__actions { animation-delay: .32s; }
.hero__phone { animation-delay: .4s; }

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

.reveal { opacity: 0; transform: translate3d(0, 20px, 0) scale(.99); filter: blur(2px); transition: opacity .65s var(--ease), transform .65s var(--ease), filter .65s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; filter: blur(0); }
.reveal-l { opacity: 0; transform: translate3d(-22px, 0, 0); filter: blur(2px); transition: opacity .65s var(--ease), transform .65s var(--ease), filter .65s var(--ease); will-change: opacity, transform; }
.reveal-l.in { opacity: 1; transform: none; filter: blur(0); }
.reveal-r { opacity: 0; transform: translate3d(22px, 0, 0); filter: blur(2px); transition: opacity .65s var(--ease), transform .65s var(--ease), filter .65s var(--ease); will-change: opacity, transform; }
.reveal-r.in { opacity: 1; transform: none; filter: blur(0); }
@media (prefers-reduced-motion: reduce) {
  .hero__badges,
  .hero .eyebrow,
  .hero h1,
  .hero__sub,
  .hero__actions,
  .hero__phone,
  .page-hero .breadcrumb,
  .page-hero h1,
  .page-hero p {
    animation: none !important;
  }
  .reveal, .reveal-l, .reveal-r { opacity: 1 !important; transform: none !important; filter: none !important; transition: none; }
  .hero__bg { animation: none; transform: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .nav a { padding-inline: .62rem; font-size: .9rem; }
  .header-cta { gap: .6rem; }
  .header-phone small { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .cards, .steps, .price-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { columns: 2; }
}

@media (max-width: 860px) {
  :root { --header-h: 66px; }
  .nav, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .header-cta .btn { display: none; }

  /* mobile drawer */
  .nav {
    position: fixed; inset: var(--header-h) 0 0 0; z-index: 55;
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--steel-950); padding: 1.2rem 1.4rem 2rem;
    opacity: 0; visibility: hidden; pointer-events: none;
    clip-path: inset(0 0 0 100%);
    transition: clip-path .35s var(--ease), opacity .25s var(--ease), visibility .25s var(--ease);
    border-left: 1px solid var(--hair); overflow-y: auto;
  }
  body.nav-open .nav { opacity: 1; visibility: visible; pointer-events: auto; clip-path: inset(0); }
  body.nav-open { overflow: hidden; }
  .nav a { padding: 1rem .4rem; font-size: 1.15rem; border-bottom: 1px solid var(--hair); color: var(--text); }
  .nav a.is-active::after { display: none; }
  .nav a.is-active { color: var(--amber); }
  .nav .mobile-cta { margin-top: 1.4rem; display: flex; flex-direction: column; gap: .7rem; }
  .nav .mobile-cta .btn { display: flex; }

  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .trust { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }

  .callbar { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wa-float { display: none; }
  body { padding-bottom: 72px; }
  .reveal-l, .reveal-r { transform: translate3d(0, 18px, 0) scale(.99); }
  .hero { min-height: 0; padding-block: calc(var(--header-h) + 3rem) 3.5rem; }
  .quickbar .container { justify-content: center; text-align: center; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding-inline: 1.1rem; }
  .page-hero { padding-top: calc(var(--header-h) + 2.3rem); padding-bottom: 2.8rem; }
  .page-hero h1 { font-size: clamp(2.15rem, 12vw, 3.2rem); line-height: .98; overflow-wrap: break-word; }
  .page-hero p { font-size: 1rem; line-height: 1.55; }
  .callbar { gap: .55rem; padding-inline: .55rem; }
  .callbar .btn { padding-inline: .65rem; font-size: .94rem; gap: .45rem; }
  .cards, .steps, .price-grid { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .form-grid { grid-template-columns: minmax(0, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1; }
  .hero__phone { gap: .4rem 0; }
  .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__nav.prev { left: .5rem; } .lightbox__nav.next { right: .5rem; }
}
