/* ============================================================
   TRUE SHIELD AUTO GLASS — styles.css
   Brand: #ED2686 magenta on black · Unica One + Inter
   ============================================================ */

/* ---------- 1. FONTS (self-hosted, latin subset) ---------- */
@font-face {
  font-family: 'Unica One';
  src: url('assets/fonts/unicaone-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/inter-latin.woff2') format('woff2');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}

/* ---------- 2. DESIGN TOKENS ---------- */
:root {
  /* Brand */
  --brand:        #ED2686;
  --brand-bright: #FF3D96;
  --brand-deep:   #C71B6E;
  --brand-glow:   rgba(237, 38, 134, .38);
  --brand-tint:   rgba(237, 38, 134, .10);

  /* Surfaces (dark-first — this is the brand) */
  --ink:        #000000;
  --surface:    #0B0B0D;
  --surface-2:  #131317;
  --surface-3:  #1C1C22;
  --line:       rgba(255, 255, 255, .09);
  --line-strong:rgba(255, 255, 255, .18);

  /* Text */
  --text:       #FFFFFF;
  --text-soft:  rgba(255, 255, 255, .72);
  --text-muted: rgba(255, 255, 255, .52);

  /* Typography */
  --font-display: 'Unica One', 'Arial Narrow', Impact, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --fs-hero:  clamp(2.35rem, 6.4vw, 4.75rem);
  --fs-h2:    clamp(2rem, 4.6vw, 3.5rem);
  --fs-h3:    clamp(1.3rem, 2.1vw, 1.65rem);
  --fs-lead:  clamp(1.0625rem, 1.5vw, 1.25rem);
  --fs-body:  1.0625rem;
  --fs-sm:    .9375rem;
  --fs-xs:    .8125rem;

  /* Spacing — 8pt grid */
  --s-1: .25rem;  --s-2: .5rem;   --s-3: .75rem;  --s-4: 1rem;
  --s-5: 1.5rem;  --s-6: 2rem;    --s-7: 3rem;    --s-8: 4rem;
  --section-y: clamp(4.5rem, 9vw, 8rem);
  --gutter: clamp(1.125rem, 4vw, 2.5rem);
  --maxw: 1200px;

  /* Shape & depth */
  --r-sm: 8px;  --r: 14px;  --r-lg: 22px;  --r-pill: 999px;
  --shadow: 0 18px 48px rgba(0, 0, 0, .55);
  --shadow-glow: 0 0 0 1px var(--brand), 0 12px 40px var(--brand-glow);

  /* Motion */
  --ease: cubic-bezier(.16, 1, .3, 1);
  --dur: 260ms;

  /* Z-index scale */
  --z-base: 1; --z-sticky: 20; --z-float: 30; --z-menu: 40; --z-modal: 50;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: .01em;
  text-transform: uppercase;
}
h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

:focus-visible {
  outline: 3px solid var(--brand-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--brand); color: #fff; }

/* ---------- 4. LAYOUT PRIMITIVES ---------- */
.container {
  width: min(var(--maxw), 100% - (var(--gutter) * 2));
  margin-inline: auto;
}
.section { padding-block: var(--section-y); position: relative; }
.section--tinted { background: var(--surface); }

.skip-link {
  position: absolute; left: var(--s-4); top: -100px;
  z-index: var(--z-modal);
  background: var(--brand); color: #000; font-weight: 700;
  padding: var(--s-3) var(--s-5); border-radius: var(--r-sm);
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: var(--s-4); }

/* Section heading block */
.sec-head { max-width: 62ch; margin-bottom: clamp(2.25rem, 4vw, 3.5rem); }
.sec-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-3);
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--brand-bright);
  margin-bottom: var(--s-4);
}
.eyebrow::before {
  content: ''; width: 34px; height: 2px;
  background: var(--brand); flex: none;
}
.sec-head--center .eyebrow::after {
  content: ''; width: 34px; height: 2px; background: var(--brand);
}

.lead {
  font-size: var(--fs-lead);
  color: var(--text-soft);
  margin-top: var(--s-5);
  max-width: 60ch;
}
.sec-head--center .lead { margin-inline: auto; }

/* ---------- 5. BUTTONS ---------- */
.btn {
  --btn-bg: var(--brand);
  --btn-fg: #000;
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--s-3);
  min-height: 52px;
  padding: 0 var(--s-6);
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--font-display); font-size: 1.125rem;
  letter-spacing: .06em; text-transform: uppercase;
  border-radius: var(--r-pill);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.btn:hover { background: var(--brand-bright); box-shadow: 0 10px 34px var(--brand-glow); }
.btn:active { transform: translateY(1px); }
.btn svg { width: 20px; height: 20px; flex: none; }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--text);
  box-shadow: inset 0 0 0 2px var(--line-strong);
}
.btn--ghost:hover {
  --btn-fg: #000;
  background: var(--text); box-shadow: none;
}

.btn--outline-brand {
  --btn-bg: transparent; --btn-fg: var(--brand-bright);
  box-shadow: inset 0 0 0 2px var(--brand);
}
.btn--outline-brand:hover { --btn-fg: #000; background: var(--brand); }

.btn--lg { min-height: 60px; padding: 0 var(--s-7); font-size: 1.3125rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

/* ---------- 6. TOP BAR ---------- */
.topbar {
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
  font-size: var(--fs-xs);
  color: var(--text-soft);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-5);
  min-height: 48px;
  padding-block: var(--s-2);
  flex-wrap: wrap;
}
.topbar__group { display: flex; align-items: center; gap: var(--s-5); flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: var(--s-2); }
.topbar__item svg { width: 15px; height: 15px; color: var(--brand); flex: none; }
.topbar a.topbar__item:hover { color: var(--brand-bright); }

.social-row { display: inline-flex; gap: var(--s-2); }
.social-row a {
  position: relative;
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
/* Expand the tap target to 44x44 without growing the visual circle */
.social-row a::after {
  content: ''; position: absolute; inset: -5px;
  border-radius: 50%;
}
.social-row a:hover { background: var(--brand); color: #000; }
.social-row svg { width: 15px; height: 15px; }

/* Language switch */
.lang {
  display: inline-flex;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  overflow: hidden;
}
.lang button {
  position: relative;
  min-height: 34px;
  padding: 3px 14px;
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .08em;
  color: var(--text-muted);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.lang button::after {
  content: ''; position: absolute; inset: -5px 0;
}
.lang button:hover { color: var(--text); }
.lang button[aria-pressed="true"] { background: var(--brand); color: #000; }

/* ---------- 7. NAVBAR ---------- */
.nav {
  position: sticky; top: 0; z-index: var(--z-sticky);
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.nav.is-stuck {
  background: rgba(6, 6, 8, .93);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 34px rgba(0,0,0,.5);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-5);
  min-height: 78px;
}
.nav__logo img { width: 190px; height: auto; }

.nav__links { display: flex; align-items: center; gap: clamp(.75rem, 2vw, 1.75rem); }
.nav__links a {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.0625rem; letter-spacing: .05em; text-transform: uppercase;
  color: var(--text-soft);
  padding: var(--s-2) 0;
  transition: color var(--dur) var(--ease);
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--brand);
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--dur) var(--ease);
}
.nav__links a:hover, .nav__links a.is-active { color: var(--text); }
.nav__links a:hover::after, .nav__links a.is-active::after {
  transform: scaleX(1); transform-origin: left;
}

.nav__cta { display: flex; align-items: center; gap: var(--s-3); }

.burger {
  display: none;
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  place-items: center;
  background: rgba(255,255,255,.06);
}
.burger span {
  display: block; width: 22px; height: 2px; background: var(--text);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.burger span + span { margin-top: 5px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: var(--z-menu);
  background: rgba(4, 4, 6, .97);
  backdrop-filter: blur(8px);
  display: grid; align-content: start;
  grid-template-columns: minmax(0, 1fr);
  padding: 96px var(--gutter) var(--s-7);
  gap: var(--s-2);
  transform: translateX(100%);
  transition: transform 420ms var(--ease);
  overflow-y: auto;
}
.drawer.is-open { transform: none; }
.drawer a {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 7vw, 2.5rem);
  text-transform: uppercase; letter-spacing: .03em;
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
  transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}
.drawer a:hover { color: var(--brand-bright); padding-left: var(--s-3); }
.drawer .btn { margin-top: var(--s-5); }
.drawer__contact {
  margin-top: var(--s-5); font-size: var(--fs-sm); color: var(--text-muted);
  display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--s-2);
  overflow-wrap: anywhere;
}

/* ---------- 8. HERO ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 88svh, 900px);
  display: grid; align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img, .hero__media video {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
}
.hero__media video { opacity: 0; transition: opacity 900ms ease; }
.hero__media video.is-ready { opacity: 1; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(90% 70% at 18% 50%, rgba(0,0,0,.94) 0%, rgba(0,0,0,.72) 42%, rgba(0,0,0,.35) 100%),
    linear-gradient(180deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.25) 38%, rgba(0,0,0,.92) 100%);
}
.hero::after {
  content: ''; position: absolute; z-index: -1;
  width: 60vmax; height: 60vmax; right: -18vmax; top: -22vmax;
  background: radial-gradient(circle, var(--brand-glow) 0%, transparent 66%);
  filter: blur(28px);
  animation: heroPulse 9s ease-in-out infinite alternate;
}
@keyframes heroPulse {
  from { opacity: .5; transform: scale(.92); }
  to   { opacity: .95; transform: scale(1.1); }
}

.hero__inner { padding-block: clamp(5rem, 12vw, 8rem); max-width: 52rem; }
.hero__kicker {
  display: inline-block;
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--brand-bright);
  margin-bottom: var(--s-4);
  padding: var(--s-2) var(--s-4);
  border: 1px solid rgba(237, 38, 134, .38);
  border-radius: var(--r-pill);
  background: rgba(0, 0, 0, .35);
}
.hero h1 { text-shadow: 0 4px 30px rgba(0,0,0,.6); }
.hero h1 em {
  font-style: normal;
  color: var(--brand-bright);
  display: block;
}
.hero__tagline {
  margin-top: var(--s-5);
  font-size: var(--fs-lead);
  color: var(--text-soft);
  max-width: 46ch;
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: var(--s-4);
  margin-top: clamp(2rem, 4vw, 2.75rem);
}
.hero__badges {
  display: flex; flex-wrap: wrap; gap: var(--s-3) var(--s-5);
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding-top: var(--s-5);
  border-top: 1px solid var(--line);
  font-size: var(--fs-sm); color: var(--text-soft);
}
.hero__badges li { display: inline-flex; align-items: center; gap: var(--s-2); }
.hero__badges svg { width: 18px; height: 18px; color: var(--brand); flex: none; }

/* Word-by-word hero reveal */
.reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(.5em) rotate(2deg);
  animation: wordIn .85s var(--ease) forwards;
  animation-delay: calc(var(--i) * 80ms);
}
@keyframes wordIn { to { opacity: 1; transform: none; } }

/* ---------- 9. TRUST BAR ---------- */
.trustbar {
  background: linear-gradient(90deg, var(--brand-deep) 0%, var(--brand) 55%, var(--brand-bright) 100%);
  color: #000;
}
.trustbar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: var(--s-5) var(--s-6);
  padding-block: clamp(2rem, 4vw, 2.75rem);
}
.trustbar__item { display: flex; align-items: center; gap: var(--s-4); }
.trustbar__item svg { width: 34px; height: 34px; flex: none; }
.trustbar__num {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem); line-height: 1;
}
.trustbar__label {
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  opacity: .78;
}

/* ---------- 10. CARDS / SERVICES ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(1.25rem, 2.4vw, 1.75rem);
}

.card {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.6vw, 2.25rem);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color var(--dur) var(--ease),
              background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 0%, var(--brand-tint), transparent 72%);
  opacity: 0; transition: opacity var(--dur) var(--ease);
  pointer-events: none;
}
.card:hover { border-color: var(--brand); box-shadow: 0 16px 44px rgba(0,0,0,.55), 0 0 32px var(--brand-tint); }
.card:hover::before { opacity: 1; }

.card__icon {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: var(--r);
  background: var(--brand-tint);
  border: 1px solid rgba(237,38,134,.28);
  color: var(--brand-bright);
  margin-bottom: var(--s-5);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.card__icon svg { width: 28px; height: 28px; }
.card:hover .card__icon { background: var(--brand); color: #000; }

.card h3 { margin-bottom: var(--s-3); }
.card p { color: var(--text-soft); font-size: var(--fs-sm); }
.card__list {
  margin-top: var(--s-5); display: grid; gap: var(--s-2);
  font-size: var(--fs-sm); color: var(--text-soft);
}
.card__list li { display: flex; gap: var(--s-3); align-items: flex-start; }
.card__list svg { width: 17px; height: 17px; color: var(--brand); flex: none; margin-top: 4px; }
.card__link {
  margin-top: var(--s-5); padding-top: var(--s-4);
  border-top: 1px solid var(--line);
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-weight: 700; font-size: var(--fs-sm); color: var(--brand-bright);
  transition: gap var(--dur) var(--ease);
}
.card:hover .card__link { gap: var(--s-4); }
.card__link svg { width: 16px; height: 16px; }

/* ---------- 11. SPLIT SECTION (ADAS / About) ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--reverse .split__media { order: 2; }

.split__media { position: relative; }
.split__media img {
  width: 100%; border-radius: var(--r-lg);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3; object-fit: cover;
}
.split__media::after {
  content: ''; position: absolute; inset: -14px -14px auto auto;
  width: 58%; height: 58%;
  border-top: 2px solid var(--brand);
  border-right: 2px solid var(--brand);
  border-radius: 0 var(--r-lg) 0 0;
  z-index: -1;
}

/* Animated ADAS scan overlay */
.scan {
  position: absolute; inset: 0;
  border-radius: var(--r-lg);
  overflow: hidden; pointer-events: none;
}
.scan__line {
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-bright), transparent);
  box-shadow: 0 0 22px var(--brand);
  animation: scanY 4.5s ease-in-out infinite;
}
@keyframes scanY {
  0%, 100% { top: 6%; opacity: 0; }
  10%, 90% { opacity: 1; }
  50%      { top: 94%; }
}
.scan__reticle {
  position: absolute; inset: 12%;
  border: 1px dashed rgba(237,38,134,.55);
  border-radius: var(--r);
}
.scan__reticle::before, .scan__reticle::after {
  content: ''; position: absolute; background: var(--brand);
}
.scan__reticle::before { left: 50%; top: 0; bottom: 0; width: 1px; opacity: .45; }
.scan__reticle::after  { top: 50%; left: 0; right: 0; height: 1px; opacity: .45; }

.checklist { display: grid; gap: var(--s-4); margin-top: var(--s-6); }
.checklist li { display: flex; gap: var(--s-4); align-items: flex-start; }
.checklist__mark {
  width: 26px; height: 26px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--brand); color: #000;
}
.checklist__mark svg { width: 15px; height: 15px; }
.checklist strong { display: block; margin-bottom: 2px; }
.checklist p { color: var(--text-soft); font-size: var(--fs-sm); }

.callout {
  margin-top: var(--s-6);
  padding: var(--s-5);
  background: var(--brand-tint);
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--r) var(--r) 0;
  font-size: var(--fs-sm);
  color: var(--text-soft);
}
.callout strong { color: var(--text); }

/* ---------- 12. PROCESS TIMELINE ---------- */
.process { position: relative; }
.process__track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
}
.process__track::before {
  content: ''; position: absolute;
  left: 0; right: 0; top: 29px; height: 2px;
  background: var(--line);
}
.process__track::after {
  content: ''; position: absolute;
  left: 0; top: 29px; height: 2px;
  width: 0; background: linear-gradient(90deg, var(--brand-deep), var(--brand-bright));
  box-shadow: 0 0 18px var(--brand-glow);
  transition: width 1.6s var(--ease) 200ms;
}
.process__track.is-visible::after { width: 100%; }

.step { position: relative; }
.step__num {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--surface-2);
  border: 2px solid var(--line-strong);
  font-family: var(--font-display); font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: var(--s-5);
  transition: border-color 420ms var(--ease), color 420ms var(--ease), background 420ms var(--ease);
}
.step.is-visible .step__num {
  border-color: var(--brand); color: #000; background: var(--brand);
}
.step h3 { font-size: 1.375rem; margin-bottom: var(--s-2); }
.step p { color: var(--text-soft); font-size: var(--fs-sm); }

/* ---------- 13. GALLERY ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(200px, 45%), 1fr));
  gap: clamp(.625rem, 1.2vw, 1rem);
}
.gallery__item {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface-2);
  cursor: pointer;
  aspect-ratio: 4 / 5;
}
.gallery__item:nth-child(6n + 1) { grid-row: span 2; aspect-ratio: 4 / 5; }
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms var(--ease), filter 600ms var(--ease);
  filter: saturate(.9) brightness(.86);
}
.gallery__item:hover img, .gallery__item:focus-visible img {
  transform: scale(1.07); filter: saturate(1.05) brightness(1);
}
.gallery__item::after {
  content: ''; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 2px transparent;
  border-radius: var(--r);
  transition: box-shadow var(--dur) var(--ease);
  pointer-events: none;
}
.gallery__item:hover::after { box-shadow: inset 0 0 0 2px var(--brand); }
.gallery__zoom {
  position: absolute; right: 10px; bottom: 10px;
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(0,0,0,.65); color: var(--brand-bright);
  opacity: 0; transform: translateY(8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.gallery__item:hover .gallery__zoom { opacity: 1; transform: none; }
.gallery__zoom svg { width: 17px; height: 17px; }

.gallery__more { display: grid; place-items: center; margin-top: var(--s-6); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: var(--z-modal);
  background: rgba(0,0,0,.94);
  display: grid; place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0; visibility: hidden;
  transition: opacity 300ms var(--ease), visibility 300ms;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%; max-height: 82svh;
  border-radius: var(--r);
  transform: scale(.96);
  transition: transform 340ms var(--ease);
}
.lightbox.is-open img { transform: none; }
.lightbox__ui {
  position: absolute; inset: 0;
  pointer-events: none;
}
.lightbox__btn {
  position: absolute;
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.09);
  color: #fff;
  pointer-events: auto;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.lightbox__btn:hover { background: var(--brand); color: #000; }
.lightbox__btn svg { width: 22px; height: 22px; }
.lightbox__close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); }
.lightbox__prev { left: clamp(.5rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }
.lightbox__next { right: clamp(.5rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }
.lightbox__count {
  position: absolute; bottom: clamp(1rem, 3vw, 2rem); left: 50%;
  transform: translateX(-50%);
  font-size: var(--fs-sm); color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

/* ---------- 14. INSURANCE / REVIEWS ---------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: clamp(1.25rem, 2.4vw, 1.75rem);
}
.review {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.4vw, 2rem);
  display: flex; flex-direction: column; gap: var(--s-4);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.review:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.stars { display: flex; gap: 3px; color: var(--brand-bright); }
.stars svg { width: 18px; height: 18px; }
.review blockquote { color: var(--text-soft); font-size: var(--fs-sm); }
.review__who { display: flex; align-items: center; gap: var(--s-3); margin-top: auto; }
.review__avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--brand-tint); color: var(--brand-bright);
  font-family: var(--font-display); font-size: 1.125rem;
}
.review__avatar svg { width: 19px; height: 19px; }
.review__name { font-weight: 700; font-size: var(--fs-sm); }
.review__src { font-size: var(--fs-xs); color: var(--text-muted); }

/* Rating badge — links to the live Google profile */
.rating-badge {
  display: inline-flex; align-items: center; gap: var(--s-3);
  margin-top: var(--s-5);
  padding: var(--s-3) var(--s-5);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.rating-badge:hover { border-color: var(--brand); background: var(--surface-3); }
.rating-badge__score {
  font-family: var(--font-display);
  font-size: 1.5rem; line-height: 1;
  color: var(--text);
}
.rating-badge__stars { display: inline-flex; gap: 2px; color: var(--brand-bright); }
.rating-badge__stars svg { width: 17px; height: 17px; }
/* The 4.6 average leaves the fifth star part-filled */
.rating-badge__stars .is-half {
  display: inline-flex;
  color: rgba(255, 255, 255, .22);
  position: relative;
}
.rating-badge__stars .is-half::before {
  content: ''; position: absolute; inset: 0 40% 0 0;
  background: var(--brand-bright);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m12 2.5 2.9 5.9 6.6.9-4.8 4.6 1.2 6.5L12 17.3 6.1 20.4l1.2-6.5-4.8-4.6 6.6-.9z'/%3E%3C/svg%3E") left center / 17px 17px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m12 2.5 2.9 5.9 6.6.9-4.8 4.6 1.2 6.5L12 17.3 6.1 20.4l1.2-6.5-4.8-4.6 6.6-.9z'/%3E%3C/svg%3E") left center / 17px 17px no-repeat;
}
.rating-badge__label {
  font-size: var(--fs-sm); color: var(--text-soft);
  padding-left: var(--s-3);
  border-left: 1px solid var(--line);
}

.reviews__footer { display: grid; place-items: center; margin-top: var(--s-6); }

/* A card with no star row still needs its quote to sit at the top */
.review .stars + blockquote { margin-top: 0; }

.insurance-strip {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background:
    radial-gradient(80% 130% at 100% 0%, var(--brand-tint), transparent 62%),
    var(--surface-2);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: var(--s-5);
}
.insurance-strip h3 { margin-bottom: var(--s-2); }
.insurance-strip p { color: var(--text-soft); font-size: var(--fs-sm); max-width: 52ch; }

/* ---------- 15. FAQ ---------- */
.faq { max-width: 62rem; margin-inline: auto; display: grid; gap: var(--s-3); }
.faq details {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease);
}
.faq details[open] { border-color: rgba(237,38,134,.42); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s-5);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  font-family: var(--font-display); font-size: 1.1875rem;
  text-transform: uppercase; letter-spacing: .02em;
  transition: color var(--dur) var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brand-bright); }
.faq summary::after {
  content: ''; flex: none;
  width: 12px; height: 12px;
  border-right: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(45deg) translate(-3px, -3px);
  transition: transform var(--dur) var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg) translate(-3px, -3px); }
.faq__body {
  padding: 0 var(--s-5) var(--s-5);
  color: var(--text-soft); font-size: var(--fs-sm);
}
.faq details[open] .faq__body { animation: faqIn 340ms var(--ease); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }


/* ---------- 15b. SERVICE AREAS / BRANDS / PRICING ---------- */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr));
  gap: var(--s-3);
}
.area-grid li {
  display: flex; align-items: center; gap: var(--s-3);
  padding: var(--s-4);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  font-size: var(--fs-sm);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.area-grid li:hover { border-color: var(--brand); background: var(--surface-3); }
.area-grid svg { width: 17px; height: 17px; color: var(--brand); flex: none; }

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
  gap: var(--s-3);
}
.brand-grid li {
  display: grid; gap: 2px;
  padding: var(--s-4) var(--s-5);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  border-radius: var(--r-sm);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.brand-grid li:hover { background: var(--surface-3); transform: translateX(3px); }
.brand-grid strong {
  font-family: var(--font-display);
  font-size: 1.1875rem; letter-spacing: .03em; text-transform: uppercase;
  font-weight: 400;
}
.brand-grid span { font-size: var(--fs-xs); color: var(--text-muted); }

.area-note {
  margin-top: var(--s-6);
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--text-muted);
}
.area-note a { color: var(--brand-bright); text-decoration: underline; text-underline-offset: 3px; }
.area-note a:hover { color: var(--text); }

.price-tag {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem); line-height: 1;
  color: var(--brand-bright);
  margin: var(--s-2) 0 var(--s-4);
}
.price-src {
  margin-top: auto; padding-top: var(--s-4);
  border-top: 1px solid var(--line);
  font-size: var(--fs-xs); color: var(--text-muted);
}
.card .price-src { color: var(--text-muted); }

/* ---------- 16. FORMS ---------- */
.form { display: grid; gap: var(--s-5); }
.form__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: var(--s-5);
}
.field { display: grid; gap: var(--s-2); }
.field > label {
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted);
}
.field .req { color: var(--brand-bright); }

.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: var(--s-3) var(--s-4);
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  color: var(--text);
  font-size: var(--fs-body);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.field textarea { min-height: 132px; resize: vertical; padding-top: var(--s-4); line-height: 1.6; }
.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='%23ED2686' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--s-4) center;
  background-size: 18px;
  padding-right: var(--s-8);
  cursor: pointer;
}
.field select option { background: var(--surface-2); color: var(--text); }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.32); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(255,255,255,.3); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-tint);
  background: var(--surface-3);
}
.field[data-invalid="true"] input,
.field[data-invalid="true"] select,
.field[data-invalid="true"] textarea { border-color: #FF6B6B; }
.field__error {
  font-size: var(--fs-xs); color: #FF8A8A;
  display: flex; align-items: center; gap: 6px;
  min-height: 0;
}
.field__error:empty { display: none; }
.field__error svg { width: 14px; height: 14px; flex: none; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__status {
  padding: var(--s-4) var(--s-5);
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  display: none;
  align-items: flex-start; gap: var(--s-3);
}
.form__status.is-shown { display: flex; animation: faqIn 340ms var(--ease); }
.form__status[data-state="ok"] {
  background: rgba(46, 204, 113, .12);
  border: 1px solid rgba(46, 204, 113, .4);
  color: #86EFAC;
}
.form__status[data-state="error"] {
  background: rgba(255, 107, 107, .12);
  border: 1px solid rgba(255, 107, 107, .4);
  color: #FFB4B4;
}
.form__status svg { width: 19px; height: 19px; flex: none; margin-top: 2px; }

.spinner {
  width: 18px; height: 18px; flex: none;
  border: 2px solid rgba(0,0,0,.28);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Fieldset groups (quote page) */
.fieldset {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface-2);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: grid; gap: var(--s-5);
}
.fieldset > legend {
  display: flex; align-items: center; gap: var(--s-3);
  font-family: var(--font-display); font-size: 1.3125rem;
  text-transform: uppercase; letter-spacing: .03em;
  padding-inline: var(--s-3);
}
.fieldset__step {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--brand); color: #000;
  font-size: 1rem;
}

/* ---------- 17. CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
}
.info-list { display: grid; gap: var(--s-5); }
.info-list li { display: flex; gap: var(--s-4); align-items: flex-start; }
.info-list__icon {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  border-radius: var(--r);
  background: var(--brand-tint);
  border: 1px solid rgba(237,38,134,.28);
  color: var(--brand-bright);
}
.info-list__icon svg { width: 21px; height: 21px; }
.info-list dt {
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 2px;
}
.info-list dd { margin: 0; font-size: var(--fs-sm); }
.info-list a:hover { color: var(--brand-bright); }

.map-frame {
  margin-top: var(--s-6);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
  background: var(--surface-2);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(.92) contrast(.85); }

.hours { display: grid; gap: var(--s-2); margin-top: var(--s-5); font-size: var(--fs-sm); }
.hours div { display: flex; justify-content: space-between; gap: var(--s-4); padding-bottom: var(--s-2); border-bottom: 1px solid var(--line); }
.hours span:last-child { color: var(--text-soft); }
.hours .is-closed { color: var(--text-muted); }

.form-panel {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

/* ---------- 18. CTA BAND ---------- */
.cta-band {
  position: relative;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 120% at 50% 100%, var(--brand-tint), transparent 68%);
}
.cta-band > * { position: relative; }
.cta-band__actions {
  display: flex; flex-wrap: wrap; gap: var(--s-4); justify-content: center;
  margin-top: var(--s-6);
}

/* ---------- 19. FOOTER ---------- */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding-block: clamp(3rem, 6vw, 4.5rem) var(--s-6);
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
}
.footer__logo { width: 200px; margin-bottom: var(--s-5); }
.footer p { color: var(--text-soft); font-size: var(--fs-sm); }
.footer h4 {
  font-family: var(--font-display); font-size: 1.125rem;
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: var(--s-5);
  color: var(--brand-bright);
}
.footer__links { display: grid; gap: var(--s-3); font-size: var(--fs-sm); }
.footer__links a { color: var(--text-soft); transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease); }
.footer__links a:hover { color: var(--brand-bright); padding-left: 5px; }
.footer__adas { margin-top: var(--s-5); width: 150px; opacity: .85; }
.footer__bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: var(--s-5);
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: var(--s-4);
  align-items: center; justify-content: space-between;
  font-size: var(--fs-xs); color: var(--text-muted);
}
.footer__bottom a { color: var(--text-soft); }
.footer__bottom a:hover { color: var(--brand-bright); }

/* ---------- 20. FLOATING ACTIONS ---------- */
.floats {
  position: fixed;
  right: clamp(.875rem, 2.5vw, 1.5rem);
  bottom: clamp(.875rem, 2.5vw, 1.5rem);
  z-index: var(--z-float);
  display: grid; gap: var(--s-3);
  justify-items: end;
}
.fab {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  box-shadow: var(--shadow);
  transform: scale(0);
  transition: transform 420ms var(--ease), background var(--dur) var(--ease), filter var(--dur) var(--ease);
}
.fab.is-in { transform: scale(1); }
.fab:hover { filter: brightness(1.12); }
.fab svg { width: 26px; height: 26px; }
.fab--whatsapp { background: #25D366; color: #04240F; }
.fab--call { background: var(--brand); color: #000; }
.fab--top { background: var(--surface-3); border: 1px solid var(--line-strong); }
.fab--top svg { width: 20px; height: 20px; }
.fab--call { display: none; }

/* ---------- 21. SCROLL REVEAL ---------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
.js [data-reveal="left"]  { transform: translateX(-32px); }
.js [data-reveal="right"] { transform: translateX(32px); }
.js [data-reveal="zoom"]  { transform: scale(.94); }
.js [data-reveal].is-visible { opacity: 1; transform: none; will-change: auto; }

/* ---------- 22. PAGE HEADER (inner pages) ---------- */
.page-head {
  position: relative;
  padding-block: clamp(3.5rem, 8vw, 6rem);
  background:
    radial-gradient(70% 130% at 80% 0%, var(--brand-tint), transparent 62%),
    var(--surface);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.breadcrumb {
  display: flex; gap: var(--s-2); justify-content: center;
  font-size: var(--fs-xs); color: var(--text-muted);
  margin-top: var(--s-4);
}
.breadcrumb a:hover { color: var(--brand-bright); }

/* ---------- 23. RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .burger { display: grid; }
  .nav__cta .btn--quote { display: none; }
  .split--reverse .split__media { order: 0; }

  /* Once the four steps stop sharing one row the rule turns vertical. Each step
     draws its own connector down to the next one, so the line stops at step 4
     instead of trailing past it, and each segment fills as you scroll. */
  .process__track {
    --process-gap: clamp(1.75rem, 5vw, 2.5rem);
    grid-template-columns: minmax(0, 1fr);
    gap: var(--process-gap);
  }
  .process__track::before, .process__track::after { display: none; }

  /* The number spans both rows so the paragraph can't fall into its column. */
  .step {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr);
    column-gap: var(--s-5);
    row-gap: var(--s-2);
    align-items: start;
  }
  .step__num { grid-column: 1; grid-row: 1 / span 2; margin-bottom: 0; }
  .step h3   { grid-column: 2; grid-row: 1; align-self: center; min-height: 60px;
               display: flex; align-items: center; margin-bottom: 0; }
  .step p    { grid-column: 2; grid-row: 2; }

  .step:not(:last-child)::before,
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 29px; top: 60px;
    width: 2px;
  }
  .step:not(:last-child)::before {
    bottom: calc(-1 * var(--process-gap));
    background: var(--line);
  }
  .step:not(:last-child)::after {
    height: 0;
    background: linear-gradient(180deg, var(--brand), var(--brand-bright));
    box-shadow: 0 0 12px var(--brand-glow);
    transition: height 900ms var(--ease) 150ms;
  }
  .step.is-visible:not(:last-child)::after {
    height: calc(100% - 60px + var(--process-gap));
  }
}

@media (max-width: 760px) {
  :root { --fs-body: 1rem; }
  html { scroll-padding-top: 76px; }
  .nav__inner { min-height: 66px; }
  .nav__logo img { width: 155px; }
  .topbar__group--hours { display: none; }
  .step { column-gap: var(--s-4); }
  .gallery__item:nth-child(6n + 1) { grid-row: span 1; }
  .fab--call { display: grid; }
  .insurance-strip { flex-direction: column; align-items: flex-start; }
  .rating-badge { flex-wrap: wrap; justify-content: center; row-gap: var(--s-2); }
  .rating-badge__label { padding-left: 0; border-left: 0; }
  .lightbox__prev, .lightbox__next { top: auto; bottom: clamp(1rem, 3vw, 2rem); transform: none; }
  .lightbox__count { bottom: calc(clamp(1rem, 3vw, 2rem) + 66px); }
}

@media (max-width: 480px) {
  .hero__actions .btn { width: 100%; }
  .topbar__group--meta { display: none; }
}

/* ---------- 24. MOTION PREFERENCES ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
  .reveal-word { opacity: 1; transform: none; }
  .process__track::after { width: 100%; }
  @media (max-width: 1024px) {
    .step:not(:last-child)::after { height: calc(100% - 60px + var(--process-gap)); }
  }
  .fab { transform: scale(1); }
  .hero__media video { display: none; }
}

/* ---------- 25. PRINT ---------- */
@media print {
  .nav, .topbar, .floats, .lightbox, .drawer, .hero__media, .cta-band { display: none !important; }
  body { background: #fff; color: #000; }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
}
