/* =====================================================================
   KK CAR WRAP — styles.css
   Dark luxury · carbon · electric green · cinematic
   Author: KK Car Wrap build
   Sections: 1 Tokens · 2 Reset · 3 Type · 4 Layout · 5 Buttons · 6 Header
   7 Hero · 8 Trust · 9 Services · 10 Transform · 11 Work · 12 Why
   13 Process · 14 FAQ · 15 Contact · 16 Footer · 17 Reveal · 18 Responsive
   ===================================================================== */

/* ----------------------------- 1. TOKENS ---------------------------- */
:root {
  --bg: #060809;
  --bg-2: #0a0d0e;
  --surface: #0e1213;
  --surface-2: #141a1b;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);

  --text: #f2f5f4;
  --muted: #9ba6a4;
  --muted-2: #8a9492; /* lightened for WCAG AA (≥4.5:1) on the dark bg */

  /* Brand accent — change these to recolour the WHOLE site.
     ORIGINAL GREEN (to revert): --accent #a8ff20 · --accent-bright #c9ff6a ·
     --accent-deep #5fb800 · --on-accent #06210a · --accent-rgb 168,255,32 ·
     --accent-bright-rgb 201,255,106 */
  --accent-rgb: 245, 166, 35;          /* amber */
  --accent-bright-rgb: 255, 194, 90;
  --accent: #f5a623;
  --accent-bright: #ffc25a;
  --accent-deep: #b97908;
  --accent-soft: rgba(var(--accent-rgb), 0.12);
  --on-accent: #261a02;

  --ff-display: "Space Grotesk", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --pill: 999px;

  --container: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --section-y: clamp(72px, 12vh, 156px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.3s;

  --z-header: 50;
  --z-menu: 90;

  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.7);
  --shadow-green: 0 18px 50px -18px rgba(var(--accent-rgb), 0.35);
}

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

html { background: var(--bg); }
body {
  background: transparent; /* lets the fixed .aura (z-index:-1) glow show behind content */
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;            /* clip (not hidden) — kills sideways drag without breaking sticky */
  overscroll-behavior-x: none; /* stop horizontal rubber-band/chaining on iOS */
  width: 100%;
}

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

/* ---- Ambient green aura: soft glow bleeding in from the LEFT & RIGHT edges
   (centred glow was distracting). Lives BEHIND all content (z-index:-1, no blend,
   static) so it only tints the background and never washes out text. ---- */
.aura { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.aura::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(44vw 64vh at -8% 16%, rgba(var(--accent-rgb),0.08), rgba(var(--accent-rgb),0.03) 38%, transparent 62%),   /* sol üst */
    radial-gradient(44vw 64vh at 108% 86%, rgba(var(--accent-rgb),0.07), rgba(var(--accent-rgb),0.025) 38%, transparent 62%); /* sağ alt */
}
@media (prefers-reduced-motion: reduce) { .aura::before { transition: none; } }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

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

.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 200;
  background: var(--accent); color: var(--on-accent);
  padding: 10px 16px; border-radius: var(--r-sm); font-weight: 600;
  transform: translateY(-150%); transition: transform var(--dur) var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* ----------------------------- 3. TYPOGRAPHY ------------------------ */
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--ff-display); font-size: 0.78rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted);
  margin-bottom: 22px;
}
.eyebrow__no { color: var(--accent); }
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--accent); opacity: 0.6; }

.section__title { font-size: clamp(1.9rem, 4vw, 3.3rem); max-width: 18ch; }
.section__lead { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.12rem); max-width: 56ch; margin-top: 20px; }

/* ----------------------------- 4. LAYOUT ---------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }
[id] { scroll-margin-top: 92px; }
.section { padding-block: var(--section-y); position: relative; }
.section:nth-of-type(even) { background: rgba(255, 255, 255, 0.014); }
.section__head { margin-bottom: clamp(40px, 6vw, 72px); max-width: 760px; }

.carbon-texture {
  background-image:
    linear-gradient(135deg, rgba(255,255,255,0.02) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0.02) 75%, transparent 75%);
  background-size: 6px 6px;
}

/* ----------------------------- 5. BUTTONS --------------------------- */
.btn {
  --pad-y: 15px; --pad-x: 26px;
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--pad-y) var(--pad-x); border-radius: var(--pill);
  font-family: var(--ff-display); font-weight: 600; font-size: 0.96rem; letter-spacing: 0.01em;
  min-height: 48px; white-space: nowrap;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease),
              border-color var(--dur) var(--ease), color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  will-change: transform;
}
.btn--sm { --pad-y: 11px; --pad-x: 20px; min-height: 42px; font-size: 0.9rem; }
.btn--block { width: 100%; }

.btn--primary { background: var(--accent); color: var(--on-accent); }
.btn--primary:hover { background: var(--accent-bright); box-shadow: var(--shadow-green); transform: translateY(-2px); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost { border: 1px solid var(--line-2); color: var(--text); background: rgba(255,255,255,0.02); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.btn--text { color: var(--text); padding-inline: 6px; }
.btn--text svg { color: var(--accent); transition: transform var(--dur) var(--ease); }
.btn--text:hover { color: var(--accent); }
.btn--text:hover svg { transform: scale(1.1); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px; margin-top: auto;
  font-family: var(--ff-display); font-weight: 500; font-size: 0.92rem; color: var(--accent);
}
.link-arrow svg { transition: transform var(--dur) var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ----------------------------- 6. HEADER ---------------------------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-header);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(6, 8, 9, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.header__inner { display: flex; align-items: center; gap: 24px; height: 76px; }

.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand__logo { height: 50px; width: auto; display: block; filter: drop-shadow(0 0 14px rgba(var(--accent-rgb), 0.18)); }
.footer__brand .brand__logo { height: 58px; width: auto; }

.nav { margin-inline: auto; }
.nav__list { display: flex; gap: 6px; }
.nav__link {
  position: relative; padding: 10px 14px; font-size: 0.92rem; color: var(--muted);
  border-radius: var(--r-sm); transition: color var(--dur) var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--text); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* language selector */
.lang { position: relative; }
.lang__toggle {
  display: inline-flex; align-items: center; gap: 7px; padding: 9px 12px;
  border: 1px solid var(--line); border-radius: var(--pill); font-size: 0.85rem; color: var(--muted);
  font-family: var(--ff-display); transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.lang__toggle:hover { color: var(--text); border-color: var(--line-2); }
.lang__toggle svg { color: var(--accent); }
.lang__menu {
  position: absolute; top: calc(100% + 10px); right: 0; min-width: 150px;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r); padding: 6px;
  box-shadow: var(--shadow); z-index: var(--z-menu);
}
.lang__menu li { padding: 10px 14px; border-radius: var(--r-sm); font-size: 0.9rem; color: var(--muted); transition: background var(--dur) var(--ease), color var(--dur) var(--ease); }
.lang__menu li:hover, .lang__menu li.is-active { background: var(--accent-soft); color: var(--text); }
.lang__menu li.is-active { color: var(--accent); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 76px 0 0 0; z-index: var(--z-menu);
  background: rgba(6, 8, 9, 0.96); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 32px var(--pad); display: flex; flex-direction: column; gap: 26px; overflow-y: auto;
  transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.mobile-menu.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 500; padding: 14px 0; border-bottom: 1px solid var(--line); }
.mobile-menu nav a:hover { color: var(--accent); }
.mobile-menu__cta { display: flex; flex-direction: column; gap: 12px; }
/* Language switcher for phones (the header dropdown is hidden < 640px) */
.mobile-menu__lang { margin-top: auto; display: flex; align-items: center; gap: 12px; padding-top: 24px; border-top: 1px solid var(--line); }
.mobile-menu__lang-ic { color: var(--accent); display: grid; place-items: center; flex-shrink: 0; }
.mlang { display: flex; flex-wrap: wrap; gap: 8px; }
.mlang__chip {
  padding: 9px 14px; min-height: 42px; border: 1px solid var(--line-2); border-radius: var(--pill);
  font-family: var(--ff-display); font-weight: 500; font-size: 0.88rem; color: var(--muted);
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.mlang__chip:hover { color: var(--text); border-color: var(--accent); }
.mlang__chip.is-active { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }

/* ----------------------------- 7. HERO ------------------------------ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-start; overflow: hidden; padding-top: 76px; }

.hero__stage { position: absolute; inset: 0; z-index: 0; }
/* Hero showreel video — fills the stage, sits under the veil/copy. */
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 46%; background: var(--bg-2); z-index: 0; }

/* Media-forward hero: the showreel video is the star.
   Car-centric photos work best with bottom-left text + a strong bottom scrim. */
.hero.is-photo { align-items: flex-end; }
.hero.is-photo .hero__grid { opacity: 0.08; }
.hero.is-photo .hero__glow { opacity: 0.4; }
.hero.is-photo .hero__scroll { display: none; }
.hero.is-photo .hero__content { text-align: left; padding-top: 0; padding-bottom: clamp(58px, 11vh, 116px); }
.hero.is-photo .hero__eyebrow,
.hero.is-photo .hero__title,
.hero.is-photo .hero__lead { margin-inline: 0; }
.hero.is-photo .hero__lead { max-width: 44ch; }
/* Once the real photo is the star, dial the copy back so it frames the car
   instead of covering it. */
.hero.is-photo .hero__title { font-size: clamp(1.9rem, 4.4vw, 3.5rem); line-height: 1.02; }
.hero.is-photo .hero__lead { font-size: clamp(0.92rem, 1.2vw, 1.04rem); max-width: 52ch; margin-top: 16px; }
.hero.is-photo .hero__eyebrow { font-size: 0.7rem; }
.hero.is-photo .hero__cta { justify-content: flex-start; }
.hero.is-photo .hero__veil { background:
  linear-gradient(180deg, rgba(6,8,9,0.62) 0%, rgba(6,8,9,0.08) 20%, rgba(6,8,9,0) 42%, rgba(6,8,9,0.5) 70%, rgba(6,8,9,0.98) 100%),
  linear-gradient(90deg, rgba(6,8,9,0.66) 0%, rgba(6,8,9,0.16) 50%, rgba(6,8,9,0) 78%); }
.hero__veil { position: absolute; inset: 0; z-index: 0; background:
  linear-gradient(180deg, rgba(6,8,9,0.58), rgba(6,8,9,0.32) 34%, rgba(6,8,9,0.78) 100%),
  radial-gradient(ellipse 78% 64% at 50% 36%, rgba(6,8,9,0.12), rgba(6,8,9,0.72)); }
.hero__grid {
  position: absolute; left: 50%; bottom: -2%; width: 200%; height: 62%;
  transform: translateX(-50%) perspective(640px) rotateX(72deg);
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px; mask-image: radial-gradient(ellipse 60% 80% at 50% 0%, #000 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 0%, #000 35%, transparent 75%);
  opacity: 0.6; animation: gridDrift 22s linear infinite;
}
@keyframes gridDrift { to { background-position: 0 56px, 56px 0; } }

.hero__glow {
  position: absolute; bottom: 1%; left: 50%; width: min(1100px, 96vw); height: 560px; transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 60%, rgba(var(--accent-rgb),0.22), rgba(var(--accent-rgb),0.06) 42%, transparent 70%);
  filter: blur(16px); animation: glowPulse 7s ease-in-out infinite;
}
@keyframes glowPulse { 0%, 100% { opacity: 0.75; } 50% { opacity: 1; } }

.hero__spot {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 92% 72% at 50% 60%, transparent 46%, rgba(0,0,0,0.5) 100%),
              radial-gradient(circle at 50% 18%, rgba(255,255,255,0.045), transparent 45%);
}

.hero__floor {
  position: absolute; left: 0; right: 0; bottom: 0; height: 30%;
  background: linear-gradient(to bottom, transparent, var(--bg) 92%);
}

.hero__content { position: relative; z-index: 2; text-align: center; padding-top: clamp(104px, 19vh, 208px); padding-bottom: 40px; width: 100%; }
.hero__eyebrow {
  font-family: var(--ff-display); font-size: 0.82rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.28em; color: var(--accent); margin-bottom: 24px;
}
.hero__title { font-size: clamp(2.6rem, 7vw, 6rem); font-weight: 700; line-height: 0.98; letter-spacing: -0.03em; }
.hero__title span { display: block; }
.hero__title-accent {
  background: linear-gradient(120deg, var(--accent-bright), var(--accent) 45%, #fff 120%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero__lead { color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.18rem); max-width: 60ch; margin: 26px auto 0; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 38px; }

/* Hero service tabs (configurator) */
.hero__tabs { position: absolute; z-index: 4; left: 0; right: 0; top: calc(76px + clamp(10px, 2.4vh, 24px));
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; padding-inline: var(--pad); }
.hero__tab { flex-shrink: 0; padding: 7px 17px; border-radius: var(--pill); border: 1px solid var(--line-2);
  background: rgba(8, 11, 12, 0.5); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: var(--muted); font-family: var(--ff-display); font-weight: 500; font-size: 0.82rem; white-space: nowrap;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.hero__tab:hover { color: var(--text); border-color: var(--accent); }
.hero__tab.is-active { background: var(--accent); color: var(--on-accent); border-color: var(--accent); box-shadow: 0 12px 32px -12px rgba(var(--accent-rgb), 0.55); }

/* PPF finish sub-toggle (matte / gloss) — a mini-configurator inside the hero */
.hero__finish { display: inline-flex; align-items: center; gap: 14px; margin-top: 24px; }
.hero__finish[hidden] { display: none; }
.hero__finish-label { font-family: var(--ff-display); font-size: 0.72rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted-2); }
.hero__finish-toggle { display: inline-flex; gap: 4px; padding: 4px; border: 1px solid var(--line-2); border-radius: var(--pill); background: rgba(8, 11, 12, 0.55); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.hero__finish-btn { padding: 8px 18px; border-radius: var(--pill); font-family: var(--ff-display); font-weight: 500; font-size: 0.86rem; color: var(--muted); transition: color var(--dur) var(--ease), background var(--dur) var(--ease); }
.hero__finish-btn:hover { color: var(--text); }
.hero__finish-btn.is-active { background: var(--accent); color: var(--on-accent); }
/* 4 PPF finishes (Gloss/Satin/Matte/Color Change) — let the pill wrap + shrink on phones */
@media (max-width: 560px) {
  .hero__finish { flex-wrap: wrap; gap: 8px 12px; }
  .hero__finish-toggle { flex-wrap: wrap; }
  .hero__finish-btn { padding: 7px 13px; font-size: 0.8rem; }
}

.hero__title-kicker { display: block; font-size: 0.3em; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); -webkit-text-fill-color: currentColor; margin-bottom: 0.35em; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted-2);
}
.hero__scroll-line { width: 1px; height: 42px; background: linear-gradient(var(--accent), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; inset: 0; background: var(--accent); animation: scrollCue 2s var(--ease) infinite; }
@keyframes scrollCue { 0% { transform: translateY(-100%); } 60%, 100% { transform: translateY(100%); } }

/* ----------------------------- 8. TRUST ----------------------------- */
.trust { border-block: 1px solid var(--line); padding-block: 26px; background: var(--bg-2); overflow: hidden; }
.trust__marquee { display: flex; width: max-content; }
.trust__track { display: flex; align-items: center; gap: 0; padding-right: 0; animation: marquee 34s linear infinite; }
.trust:hover .trust__track { animation-play-state: paused; }
.trust__track span {
  font-family: var(--ff-display); font-size: clamp(1rem, 1.8vw, 1.35rem); font-weight: 500;
  color: var(--text); padding-inline: 36px; white-space: nowrap; opacity: 0.85;
}
.trust__track i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex-shrink: 0; box-shadow: 0 0 12px var(--accent); }
@keyframes marquee { to { transform: translateX(-100%); } }

/* ----- Film / PPF brand marquee (drop real logos into assets/img/brands/) ----- */
.brands { border-block: 1px solid var(--line); background: var(--bg-2); overflow: hidden; padding-block: clamp(22px, 3vw, 36px); }
.brands__label { text-align: center; font-family: var(--ff-display); font-size: 0.86rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--accent); margin-bottom: clamp(14px, 2vw, 24px); padding-inline: var(--pad); }
.brands__marquee { display: flex; width: max-content; }
.brands__track { display: flex; align-items: center; flex-shrink: 0; will-change: transform; animation: marquee 40s linear infinite; }
.brands:hover .brands__track { animation-play-state: paused; }
.brands__logo {
  display: inline-flex; align-items: center; justify-content: center; height: 36px; flex-shrink: 0;
  padding-inline: clamp(26px, 4.5vw, 58px); white-space: nowrap;
  font-family: var(--ff-display); font-weight: 700; font-size: clamp(1.1rem, 2vw, 1.55rem); letter-spacing: 0.02em;
  color: var(--muted); opacity: 0.62; transition: color var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.brands__logo:hover { color: var(--text); opacity: 1; }
/* Real logos shown in their own brand colours on the dark strip */
.brands__logo:has(img) { height: 44px; padding-inline: clamp(22px, 4vw, 50px); opacity: 1; }
.brands__logo img { height: 100%; width: auto; max-width: 170px; object-fit: contain; display: block; }
/* These ship black wordmarks — invert to white so they read on the dark strip */
.brands__logo img[src*="teckwrap"],
.brands__logo img[src*="llumar"] { filter: brightness(0) invert(1); }

/* ----------------------------- 9. SERVICES -------------------------- */
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); }
.service-card {
  display: flex; flex-direction: column; padding: 30px 26px 28px; min-height: 360px; position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.service-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(160deg, var(--accent), transparent 40%); opacity: 0;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
  transition: opacity 0.4s var(--ease); pointer-events: none;
}
.service-card:hover { transform: translateY(-6px); border-color: transparent; background: var(--surface-2); }
.service-card:hover::before { opacity: 1; }
.service-card__top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 26px; }
.service-card__icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: var(--r); background: var(--accent-soft); color: var(--accent); transition: transform 0.4s var(--ease); }
.service-card__icon svg { width: 26px; height: 26px; }
.service-card:hover .service-card__icon { transform: translateY(-2px) scale(1.05); }
.service-card__no { font-family: var(--ff-display); font-size: 0.8rem; color: var(--muted-2); letter-spacing: 0.1em; }
.service-card__title { font-size: 1.32rem; margin-bottom: 12px; }
.service-card__desc { color: var(--muted); font-size: 0.94rem; margin-bottom: 18px; }
.service-card__list { display: flex; flex-direction: column; gap: 7px; margin-bottom: 24px; }
.service-card__list li { position: relative; padding-left: 18px; font-size: 0.86rem; color: var(--muted); }
.service-card__list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); opacity: 0.7; }

/* ----------------------------- 10. TRANSFORM ------------------------ */
.transform__timeline { margin-top: 8px; }
.transform__rail { position: relative; }
.transform__line { position: relative; height: 1px; background: var(--line); margin: 14px 0 40px; }
.transform__progress { position: absolute; inset: 0 auto 0 0; width: 0; background: linear-gradient(90deg, var(--accent-deep), var(--accent)); box-shadow: 0 0 14px var(--accent); transition: width 1.2s var(--ease); }
.transform__steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }
.transform__step { position: relative; padding-top: 8px; }
.transform__step::before { content: ""; position: absolute; top: -41px; left: 0; width: 12px; height: 12px; border-radius: 50%; background: var(--bg-2); border: 2px solid var(--accent); }
.transform__no { font-family: var(--ff-display); font-size: 2.2rem; font-weight: 700; color: transparent; -webkit-text-stroke: 1px var(--line-2); display: block; margin-bottom: 14px; transition: -webkit-text-stroke-color 0.4s var(--ease), color 0.4s var(--ease); }
.transform__step:hover .transform__no { color: var(--accent-soft); -webkit-text-stroke-color: var(--accent); }
.transform__step h3 { font-size: 1.12rem; margin-bottom: 10px; }
.transform__step p { color: var(--muted); font-size: 0.9rem; }

/* ----------------------------- 11. WORK ----------------------------- */
.work__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.work__tile { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); cursor: pointer; aspect-ratio: 4 / 3; }
/* Uniform 4:3 grid — every tile is the same size. --ba is kept only as a before/after marker (slider styles further below). */

.work__tile { background: linear-gradient(155deg, #11181b, #0a0f11 62%, #070b0c); }
.work__tile::before { content: ""; position: absolute; inset: 0; z-index: 0; opacity: 0.06;
  background: url("../assets/icon.png") center 42% / auto 34% no-repeat; }
.work__img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.work__tile:hover .work__img { transform: scale(1.07); }
.work__shade { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(to top, rgba(4,6,6,0.86), rgba(4,6,6,0.16) 52%, rgba(4,6,6,0.04)); }

.work__cap { position: absolute; left: 0; bottom: 0; z-index: 2; padding: 20px; display: flex; flex-direction: column; gap: 4px; transform: translateY(6px); opacity: 0.92; transition: transform 0.4s var(--ease), opacity 0.4s var(--ease); }
.work__tile:hover .work__cap { transform: translateY(0); opacity: 1; }
.work__label { font-family: var(--ff-display); font-weight: 600; font-size: 1.05rem; }
.work__tag { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }

/* before / after */
.work__media--ba { position: absolute; inset: 0; }
.work__img--before { filter: grayscale(1) brightness(0.7) contrast(1.05); clip-path: inset(0 50% 0 0); transition: clip-path 0.55s var(--ease), transform 0.7s var(--ease); }
/* Real before/after (two genuine photos, e.g. a colour change) keep full colour */
.work__img--ba-real { filter: none; }
.work__media--ba { cursor: ew-resize; }
.work__ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; transform: translateX(-50%); background: var(--accent); box-shadow: 0 0 14px var(--accent); z-index: 3; transition: left 0.5s var(--ease); touch-action: none; }
/* Always-visible knob so it reads as draggable on touch (no hover on mobile) */
.work__ba-handle::after { content: "‹›"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent); border: 2px solid rgba(255,255,255,0.9); box-shadow: 0 4px 16px rgba(0,0,0,0.45);
  display: grid; place-items: center; color: #06150a; font-size: 15px; font-weight: 700; letter-spacing: -1px; }
.work__tile--ba.is-dragging .work__img--before,
.work__tile--ba.is-dragging .work__ba-handle { transition: none; }
.work__ba-tag { position: absolute; top: 14px; z-index: 3; font-family: var(--ff-display); font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--pill); border: 1px solid var(--line-2); background: rgba(4,6,6,0.55); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.work__ba-tag--before { left: 12px; color: var(--muted); }
.work__ba-tag--after { right: 12px; color: var(--accent); border-color: var(--accent); }

.work__cta { display: flex; justify-content: center; margin-top: 40px; }

/* ----------------------------- 11b. COLOR STUDIO (wrap visualizer) -- */
.colorstudio__head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.colorstudio__stage { position: relative; max-width: 1000px; margin: 0 auto; }
.cs__glow { position: absolute; left: 50%; top: 8%; width: 78%; height: 86%; transform: translateX(-50%); z-index: 0; border-radius: 50%; filter: blur(90px); opacity: 0.4; background: radial-gradient(circle, var(--glow, var(--accent)) 0%, transparent 62%); transition: background 0.6s var(--ease), opacity 0.6s var(--ease); pointer-events: none; }
.colorstudio__viewer { position: relative; z-index: 1; aspect-ratio: 16 / 9; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-2); background: radial-gradient(120% 100% at 50% 0%, #15191b, #07090a 70%); box-shadow: 0 34px 90px -34px rgba(0, 0, 0, 0.85); }
.cs__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.06); transition: opacity 0.6s var(--ease), transform 1s var(--ease); }
.cs__img.is-active { opacity: 1; transform: scale(1); }
.cs__vignette { position: absolute; inset: 0; z-index: 2; pointer-events: none; background: radial-gradient(130% 120% at 50% 28%, transparent 56%, rgba(0, 0, 0, 0.55) 100%); }
.cs__sweep { position: absolute; inset: -20% -10%; z-index: 3; pointer-events: none; opacity: 0; background: linear-gradient(100deg, transparent 38%, rgba(255, 255, 255, 0.16) 48%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.16) 52%, transparent 62%); transform: translateX(-120%) skewX(-8deg); }
.cs__sweep.is-on { animation: cs-sweep 0.85s var(--ease); }
@keyframes cs-sweep { 0% { opacity: 0; transform: translateX(-120%) skewX(-8deg); } 22% { opacity: 1; } 100% { opacity: 0; transform: translateX(120%) skewX(-8deg); } }
.cs__logo { position: absolute; top: 16px; right: 18px; z-index: 4; width: 34px; height: auto; opacity: 0.9; filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.55)); pointer-events: none; }
.cs__meta { position: absolute; left: 20px; bottom: 18px; z-index: 4; display: flex; align-items: center; gap: 12px; }
.cs__name { font-family: var(--ff-display); font-weight: 600; font-size: 1.12rem; letter-spacing: 0.01em; color: #fff; text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6); }
.cs__name.is-in { animation: cs-namein 0.5s var(--ease); }
@keyframes cs-namein { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }
.cs__finish { font-family: var(--ff-display); font-size: 0.64rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); padding: 4px 10px; border: 1px solid var(--accent); border-radius: var(--pill); }
.colorstudio__palette { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin: 30px auto 0; max-width: 580px; }
.cs__swatch { position: relative; width: 44px; height: 44px; border-radius: 50%; background: var(--sw); border: 2px solid rgba(255, 255, 255, 0.2); cursor: pointer; transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.cs__swatch::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.25), inset 0 -2px 5px rgba(0, 0, 0, 0.3); }
.cs__swatch:hover { transform: translateY(-3px) scale(1.06); }
.cs__swatch.is-active { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); transform: translateY(-3px) scale(1.08); }
@media (max-width: 560px) { .cs__swatch { width: 38px; height: 38px; } .cs__name { font-size: 0.98rem; } .cs__logo { width: 28px; top: 12px; right: 12px; } .cs__meta { left: 14px; bottom: 14px; } }
@media (prefers-reduced-motion: reduce) { .cs__img { transition: opacity 0.3s linear; transform: none; } .cs__img.is-active { transform: none; } .cs__sweep { display: none; } }

/* ----------------------------- 12. WHY ------------------------------ */
.why__inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.why__intro { position: sticky; top: 110px; }
.why__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.why__item { background: var(--surface); padding: 28px 24px; transition: background 0.4s var(--ease); }
.why__item:hover { background: var(--surface-2); }
.why__dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); margin-bottom: 16px; }
.why__item h3 { font-size: 1.06rem; margin-bottom: 8px; }
.why__item p { color: var(--muted); font-size: 0.88rem; }

/* ----------------------------- 13. PROCESS -------------------------- */
.process__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: step; }
.process__step { position: relative; padding: 28px 22px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); transition: transform 0.4s var(--ease), border-color 0.4s var(--ease); }
.process__step:hover { transform: translateY(-5px); border-color: var(--line-2); }
.process__no { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--accent); color: var(--accent); font-family: var(--ff-display); font-weight: 600; margin-bottom: 20px; background: var(--accent-soft); }
.process__step h3 { font-size: 1.04rem; margin-bottom: 8px; }
.process__step p { color: var(--muted); font-size: 0.88rem; }

/* ----------------------------- 14. FAQ ------------------------------ */
.faq__inner { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: border-color 0.4s var(--ease); }
.faq__item.is-open { border-color: var(--line-2); }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; text-align: left; padding: 22px 24px; font-family: var(--ff-display); font-weight: 500; font-size: 1.02rem; }
.faq__icon { position: relative; flex-shrink: 0; width: 18px; height: 18px; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; }
.faq__icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq__icon::after { left: 8px; top: 0; width: 2px; height: 18px; transition: transform 0.4s var(--ease); }
.faq__item.is-open .faq__icon::after { transform: scaleY(0); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s var(--ease); }
.faq__a > p { overflow: hidden; color: var(--muted); padding: 0 24px; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__item.is-open .faq__a > p { padding-bottom: 24px; }

/* ----------------------------- 15. CONTACT -------------------------- */
.contact__inner { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.contact__details { display: flex; flex-direction: column; gap: 4px; margin-top: 36px; }
.contact__details li { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact__ic { flex-shrink: 0; width: 46px; height: 46px; display: grid; place-items: center; border-radius: var(--r); background: var(--accent-soft); color: var(--accent); }
.contact__details small { display: block; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 3px; }
.contact__details a, .contact__details strong { font-family: var(--ff-display); font-weight: 500; font-size: 1.02rem; }
.contact__details a:hover { color: var(--accent); }
.contact__quick { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

/* Multi-office locations */
.contact__locations { margin-top: 34px; }
.contact__locations > small { display: block; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 16px; }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.loc { display: flex; gap: 13px; padding: 16px; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease); }
.loc:hover { border-color: var(--accent); transform: translateY(-2px); }
.loc__pin { flex-shrink: 0; width: 38px; height: 38px; display: grid; place-items: center; border-radius: var(--r-sm); background: var(--accent-soft); color: var(--accent); }
.loc__city { font-family: var(--ff-display); font-weight: 600; font-size: 1.02rem; display: flex; align-items: center; flex-wrap: wrap; gap: 7px; }
.loc__flag { font-size: 0.95rem; line-height: 1; }
.loc__tag { font-family: var(--ff-body); font-weight: 600; font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); border: 1px solid var(--accent); border-radius: 99px; padding: 2px 8px; }
.loc__addr { color: var(--muted); font-size: 0.85rem; line-height: 1.45; margin: 5px 0 9px; }
.loc__dir { display: inline-flex; align-items: center; gap: 5px; font-size: 0.8rem; font-weight: 500; color: var(--accent); }
.loc__dir:hover { gap: 8px; }
.loc__dir svg { transition: transform var(--dur) var(--ease); }
@media (max-width: 560px) { .loc-grid { grid-template-columns: 1fr; } }

.contact__form-wrap { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 38px); }
.quote-form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: 0.82rem; font-weight: 500; color: var(--muted); letter-spacing: 0.02em; }
.field input, .field select, .field textarea {
  background: var(--bg); border: 1px solid var(--line-2); border-radius: var(--r-sm); padding: 13px 15px;
  font-size: 0.95rem; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field textarea { resize: vertical; min-height: 110px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%239ba6a4' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }
.quote-form__note { font-size: 0.82rem; color: var(--muted); }
.quote-form__note a { color: var(--accent); }
.quote-form__status { font-size: 0.92rem; padding: 14px 16px; border-radius: var(--r-sm); border: 1px solid var(--accent); background: var(--accent-soft); color: var(--text); }

/* ----------------------------- 16. FOOTER --------------------------- */
.footer { border-top: 1px solid var(--line); padding-top: clamp(48px, 7vw, 80px); background: var(--bg-2); }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer__tag { color: var(--muted); margin: 18px 0 22px; max-width: 30ch; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--muted); transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease); }
.footer__social a:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-3px); }
.footer__col h3 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted-2); margin-bottom: 18px; font-weight: 500; }
.footer__col a { display: block; color: var(--muted); padding: 6px 0; font-size: 0.92rem; transition: color var(--dur) var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__offices { color: var(--muted-2); font-size: 0.86rem; padding: 6px 0; line-height: 1.5; }
.footer__offices span { color: var(--muted); }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-block: 26px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 0.84rem; }
.footer__credit { flex-basis: 100%; text-align: center; color: var(--muted-2); margin-top: 6px; }
/* Phones: stack + center the whole footer bottom (desktop keeps left/right layout) */
@media (max-width: 640px) { .footer__bottom { flex-direction: column; align-items: center; text-align: center; gap: 8px; } }
.footer__credit a { color: var(--muted); font-weight: 500; transition: color var(--dur) var(--ease); }
.footer__credit a:hover { color: var(--accent); }

/* ----------------------------- 17. REVEAL --------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); transition-delay: calc(var(--reveal-delay, 0) * 90ms); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ----------------------------- 18. RESPONSIVE ----------------------- */
@media (max-width: 1024px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .header__cta { display: none; }
  .header__actions { margin-left: auto; } /* nav is gone — keep actions pinned right */
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  /* Mobile/tablet: stack the 6 process steps vertically. The old horizontal
     swipe cut card text off AND let the whole page drag sideways on iOS. */
  .transform__timeline { overflow: visible; }
  .transform__line { display: none; }
  .transform__steps { grid-template-columns: 1fr; gap: 30px; }
  .transform__step { padding-top: 0; }
  .transform__step::before { display: none; }
  .transform__no { margin-bottom: 8px; }
  .why__inner, .faq__inner, .contact__inner { grid-template-columns: 1fr; }
  .why__intro { position: static; }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  :root { --section-y: clamp(56px, 10vh, 90px); }
  .services__grid { grid-template-columns: 1fr; }
  .work__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .lang { display: none; }
  .brand__logo { height: 38px; } /* phones: keep the original (already-good) logo size */
  /* Hero service tabs → tidy 2×2 grid on phones (all 4 visible, no scrolling) */
  .hero__tabs { top: calc(76px + 12px); justify-content: center; flex-wrap: wrap; gap: 8px; overflow: visible; }
  .hero__tab { flex: 1 1 calc(50% - 8px); min-width: 0; text-align: center; white-space: normal; line-height: 1.12;
    font-size: 0.8rem; padding: 10px 8px; }
  /* Compact hero copy so the bottom block never collides with the tabs */
  .hero__title { font-size: clamp(1.95rem, 8vw, 2.7rem); }
  .hero__lead { font-size: 0.94rem; line-height: 1.5; }
  .hero__cta { gap: 10px; }

  /* ----- Mobile hero rework: the 16:9 car shot is a full-width band on top so
     the WHOLE car is visible (no portrait crop), and the copy flows below it
     instead of sitting on the image. ----- */
  .hero.is-photo { display: block; min-height: 0; padding-top: 168px; }
  .hero.is-photo .hero__stage { position: relative; inset: auto; width: 100%; height: auto; aspect-ratio: 1672 / 941; max-height: 215px; max-height: 26svh; }
  .hero.is-photo .hero__video { object-position: center; }
  .hero.is-photo .hero__veil { background: linear-gradient(180deg, transparent 58%, var(--bg) 100%); }
  /* Copy below the band is centred on phones (keeps the container side padding) */
  .hero.is-photo .hero__content { position: relative; text-align: center; padding-block: 14px 26px; }
  .hero.is-photo .hero__eyebrow,
  .hero.is-photo .hero__title,
  .hero.is-photo .hero__lead { margin-inline: auto; }
  .hero.is-photo .hero__lead { max-width: 36ch; white-space: normal; }
  .hero.is-photo .hero__finish { justify-content: center; }
  .hero.is-photo .hero__cta { justify-content: center; }
  /* The animated scroll cue eats vertical space on phones and pushes the CTAs
     below the fold — hide it so "Get a Quote" lands on the first screen. */
  .hero.is-photo .hero__scroll { display: none; }
}

@media (max-width: 560px) {
  /* 2-up "why" tiles get cramped on phones — stack them */
  .why__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  /* Hero CTAs: two equal buttons share row 1; phone link sits left-aligned below */
  .hero__cta .btn { flex: 1 1 calc(50% - 5px); --pad-x: 18px; }
  .hero__cta .btn--text { flex-basis: 100%; max-width: max-content; }
}

@media (max-width: 380px) {
  .work__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}

/* ----------------------------- 19. FLOATING CONTACT ----------------- */
.fab { position: fixed; right: clamp(16px, 3vw, 28px); bottom: clamp(16px, 3vw, 28px); z-index: 80; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.fab__toggle { position: relative; width: 60px; height: 60px; border-radius: 50%; background: var(--accent); color: var(--on-accent); display: grid; place-items: center; box-shadow: var(--shadow-green), var(--shadow); transition: transform var(--dur) var(--ease), background var(--dur) var(--ease); }
.fab__toggle:hover { transform: translateY(-3px) scale(1.05); background: var(--accent-bright); }
.fab__icon-close { display: none; }
.fab.is-open .fab__icon-open { display: none; }
.fab.is-open .fab__icon-close { display: block; }
.fab__dot { position: absolute; top: 7px; right: 7px; width: 12px; height: 12px; border-radius: 50%; background: #19d36b; border: 2px solid var(--on-accent); }
.fab__dot::after { content: ""; position: absolute; inset: -3px; border-radius: 50%; border: 2px solid #19d36b; animation: fabPing 2s var(--ease) infinite; }
@keyframes fabPing { 0% { transform: scale(0.5); opacity: 0.8; } 100% { transform: scale(1.7); opacity: 0; } }

.fab__panel { width: min(340px, calc(100vw - 32px)); background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-lg); box-shadow: var(--shadow); overflow: hidden; transform-origin: bottom right; opacity: 0; transform: translateY(12px) scale(0.96); pointer-events: none; transition: opacity 0.26s var(--ease), transform 0.26s var(--ease); }
.fab__panel[hidden] { display: none; }
.fab__panel.is-open { opacity: 1; transform: none; pointer-events: auto; }
.fab__head { display: flex; align-items: center; gap: 12px; padding: 18px 16px 14px; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, var(--surface-2), var(--surface)); }
.fab__avatar { width: 44px; height: 44px; border-radius: 12px; background: var(--bg); display: grid; place-items: center; border: 1px solid var(--line); flex-shrink: 0; }
.fab__avatar img { height: 30px; width: auto; }
.fab__head-text { display: flex; flex-direction: column; line-height: 1.25; }
.fab__head-text strong { font-family: var(--ff-display); font-size: 1rem; }
.fab__status { display: inline-flex; align-items: center; gap: 6px; font-size: 0.74rem; color: var(--muted); }
.fab__status i { width: 8px; height: 8px; border-radius: 50%; background: #19d36b; box-shadow: 0 0 8px #19d36b; }
.fab__close { margin-left: auto; color: var(--muted); width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; transition: color var(--dur) var(--ease), background var(--dur) var(--ease); }
.fab__close:hover { color: var(--text); background: var(--surface-2); }
.fab__lead { padding: 14px 18px 2px; color: var(--muted); font-size: 0.85rem; }
.fab__actions { display: flex; flex-direction: column; gap: 8px; padding: 12px 14px 16px; }
.fab__action { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 12px; border: 1px solid var(--line); background: var(--bg); transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease); }
.fab__action:hover { border-color: var(--accent); transform: translateX(2px); }
.fab__ic { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); flex-shrink: 0; }
.fab__action--wa .fab__ic { background: rgba(37, 211, 102, 0.14); color: #25d366; }
.fab__action-text { display: flex; flex-direction: column; line-height: 1.25; }
.fab__action-text strong { font-family: var(--ff-display); font-weight: 600; font-size: 0.94rem; }
.fab__action-text small { color: var(--muted); font-size: 0.77rem; }

/* ----------------------------- RTL (Arabic) ------------------------- */
/* The site sets dir="rtl" for Arabic (js/i18n.js). Mirror the few places
   that rely on physical left/right so the layout reads right-to-left. */
[dir="rtl"] { text-align: right; }
[dir="rtl"] .faq__q { text-align: right; }
[dir="rtl"] .hero.is-photo .hero__content { text-align: right; }
[dir="rtl"] .hero.is-photo .hero__eyebrow,
[dir="rtl"] .hero.is-photo .hero__title,
[dir="rtl"] .hero.is-photo .hero__lead { margin-inline: 0; }
[dir="rtl"] .lang__menu { right: auto; left: 0; }
[dir="rtl"] .fab { right: auto; left: clamp(16px, 3vw, 28px); align-items: flex-start; }
[dir="rtl"] .fab__panel { transform-origin: bottom left; }
[dir="rtl"] .fab__action:hover { transform: translateX(-2px); }
[dir="rtl"] .link-arrow svg { transform: scaleX(-1); }
[dir="rtl"] .link-arrow:hover svg { transform: scaleX(-1) translateX(5px); }
[dir="rtl"] .service-card__list li { padding-left: 0; padding-right: 18px; }
[dir="rtl"] .service-card__list li::before { left: auto; right: 0; }

/* ----------------------------- REDUCED MOTION ----------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__grid, .hero__glow, .hero__scroll-line::after, .trust__track, .brands__track { animation: none; }
  .trust__track, .brands__track { transform: none; }
}
