/* =====================================================================
   AUTO MATRIX GLOBAL — Design System
   Concept: the film itself. Iridescent hairlines, squeegee light sweeps,
   carbon depth. Chrome-white CTAs instead of a coloured accent button.
   ===================================================================== */

/* ── Tokens ──────────────────────────────────────────────────────── */
:root {
  /* surface */
  --carbon:    #0B0C0F;
  --graphite:  #131519;
  --slate:     #1B1E25;
  --line:      rgba(255, 255, 255, .08);
  --line-soft: rgba(255, 255, 255, .045);

  /* ink */
  --chalk:  #EEF1F5;
  --steel:  #878E9F;
  --dim:    #5A6070;

  /* accent — luxury white & gold theme */
  --gold:       #D4AF37;
  --gold-light: #F5D78A;
  --gold-deep:  #AA8222;
  --gold-glow:  rgba(212, 175, 55, 0.35);

  --film:      #D4AF37;
  --film-deep: #AA8222;

  /* iridescence — sleek metallic gold gradient */
  --gold-grad: linear-gradient(135deg, #F5D78A 0%, #D4AF37 50%, #AA8222 100%);
  --irid: linear-gradient(90deg, #F5D78A 0%, #D4AF37 50%, #AA8222 100%);
  --irid-soft: linear-gradient(90deg,
      rgba(245, 215, 138, .55), rgba(212, 175, 55, .55),
      rgba(212, 175, 55, .45), rgba(170, 130, 34, .55));

  /* signal */
  --success: #4ADE9B;
  --warn:    #F5C451;
  --danger:  #FF6B5A;

  /* type */
  --display: 'Archivo', 'Helvetica Neue', sans-serif;
  --body:    'Instrument Sans', system-ui, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  /* rhythm */
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --section: clamp(4.25rem, 8vw, 7.25rem);
  --maxw: 1440px;

  --ease: cubic-bezier(.19, 1, .22, 1);
  --ease-io: cubic-bezier(.65, .05, .36, 1);
}

/* ── Reset ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

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

body {
  background: var(--carbon);
  color: var(--chalk);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

::selection { background: var(--film); color: var(--carbon); }

:focus-visible {
  outline: 2px solid var(--film);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Type scale ──────────────────────────────────────────────────── */
.display {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 118%;
  line-height: .92;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.d1 { font-size: clamp(2.75rem, 5.6vw, 8rem); }
.d2 { font-size: clamp(2.1rem, 5.4vw, 4.4rem); }
.d3 { font-size: clamp(1.6rem, 3vw, 2.4rem); }

.eyebrow {
  font-family: var(--mono);
  font-size: .69rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--steel);
  display: flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--irid);
  flex: none;
}
.eyebrow.no-rule::before { display: none; }

.lede {
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  color: var(--steel);
  max-width: 58ch;
  line-height: 1.65;
}

.mono-sm {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ── Layout ──────────────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
@media (min-width: 900px) {
  .section-head { grid-template-columns: 1.15fr .85fr; align-items: end; gap: 3rem; }
}

.rule {
  height: 1px;
  background: var(--line);
  border: 0;
  position: relative;
  overflow: hidden;
}
.rule::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--irid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.4s var(--ease);
}
.rule.in::after { transform: scaleX(1); }

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  --btn-bg: var(--chalk);
  --btn-fg: var(--carbon);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1.05rem 1.9rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--mono);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-radius: 2px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .5s var(--ease), color .35s ease;
}
.btn span { position: relative; z-index: 2; }
/* squeegee sweep */
.btn::before {
  content: '';
  position: absolute;
  inset: -1px;
  z-index: 1;
  background: var(--irid);
  transform: translateX(-106%) skewX(-8deg);
  transition: transform .6s var(--ease);
}
.btn:hover::before { transform: translateX(-1px) skewX(-8deg); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--chalk);
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.15);
  transition: all .35s var(--ease);
}
.btn--ghost:hover {
  --btn-fg: var(--carbon);
  background: linear-gradient(135deg, #f5d78a 0%, #d4af37 100%);
  border-color: #d4af37;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.btn--sm { padding: .8rem 1.35rem; font-size: .68rem; }

.link-arrow {
  font-family: var(--mono);
  font-size: .73rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding-bottom: .35rem;
  border-bottom: 1px solid var(--line);
  transition: border-color .35s ease, gap .35s var(--ease);
}
.link-arrow:hover { border-color: var(--film); gap: .95rem; }

/* ── Header ──────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  padding-block: 1.15rem;
  transition: background .45s ease, backdrop-filter .45s ease, padding .45s ease,
              border-color .45s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11, 12, 15, .78);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
  padding-block: .7rem;
}
.site-header.hidden { transform: translateY(-100%); }
.site-header { transition-property: background, backdrop-filter, padding, border-color, transform; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex: none;
  text-decoration: none;
}
.brand-logo-img {
  height: 60px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.3));
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}
.brand:hover .brand-logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.6));
}

.brand-mark {
  width: 34px; height: 34px;
  flex: none;
  border-radius: 3px;
  background: var(--irid);
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: '';
  position: absolute;
  inset: 1px;
  background: var(--carbon);
  border-radius: 2px;
}
.brand-mark span {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: -.04em;
}
.brand-text { line-height: 1.1; }
.brand-name {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 112%;
  font-size: 1.02rem;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.brand-sub {
  font-family: var(--mono);
  font-size: .56rem;
  letter-spacing: .2em;
  color: var(--dim);
  text-transform: uppercase;
}

.nav-links { display: none; gap: 2.1rem; align-items: center; }
@media (min-width: 1080px) { .nav-links { display: flex; } }

.nav-link {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--steel);
  position: relative;
  padding-block: .3rem;
  transition: color .3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--irid);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--chalk); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); transform-origin: left; }

.nav-actions { display: flex; align-items: center; gap: .8rem; }
.nav-actions .btn { display: none; }
@media (min-width: 950px) { .nav-actions .btn { display: inline-flex; } }

/* Header 3D Mode Toggle Switch */
.nav-3d-toggle {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .45rem .85rem;
  background: rgba(19, 21, 25, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  transition: all .35s var(--ease);
  position: relative;
  backdrop-filter: blur(8px);
}
.nav-3d-toggle:hover {
  border-color: var(--film);
  background: rgba(159, 232, 255, 0.08);
  box-shadow: 0 0 15px rgba(159, 232, 255, 0.2);
  transform: translateY(-1px);
}
.nav-3d-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: .62rem;
  color: var(--carbon);
  background: var(--irid);
  padding: 2px 5px;
  border-radius: 3px;
  letter-spacing: .02em;
  box-shadow: 0 0 8px rgba(127, 231, 255, 0.4);
}
.nav-3d-track {
  width: 26px;
  height: 14px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  position: relative;
  transition: background .3s ease;
}
.nav-3d-thumb {
  width: 10px;
  height: 10px;
  background: var(--steel);
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform .3s var(--ease), background .3s ease;
}
.nav-3d-toggle:hover .nav-3d-track {
  background: rgba(159, 232, 255, 0.25);
}
.nav-3d-toggle:hover .nav-3d-thumb {
  transform: translateX(12px);
  background: var(--film);
  box-shadow: 0 0 6px var(--film);
}
.nav-3d-text {
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--chalk);
  font-weight: 500;
  display: none;
}
@media (min-width: 520px) {
  .nav-3d-text { display: inline; }
}

/* Mobile Drawer 3D Box */
.drawer-3d-box {
  width: 100%;
}
.drawer-3d-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  background: linear-gradient(135deg, rgba(27, 30, 37, 0.9) 0%, rgba(19, 21, 25, 0.9) 100%);
  border: 1px solid var(--line);
  border-left: 3px solid var(--film);
  border-radius: 4px;
  text-decoration: none;
  transition: all .35s var(--ease);
}
.drawer-3d-link:hover {
  border-color: var(--film);
  background: rgba(159, 232, 255, 0.08);
}
.drawer-3d-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: .8rem;
  color: var(--carbon);
  background: var(--irid);
  padding: 4px 8px;
  border-radius: 4px;
}
.drawer-3d-arrow {
  font-size: 1.2rem;
  color: var(--film);
  transition: transform .3s ease;
}
.drawer-3d-link:hover .drawer-3d-arrow {
  transform: translateX(4px);
}

/* burger */
.burger {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 2px;
}
@media (min-width: 1080px) { .burger { display: none; } }
.burger i {
  display: block;
  width: 17px; height: 1.5px;
  background: var(--chalk);
  transition: transform .4s var(--ease), opacity .3s ease;
}
.burger.open i:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.burger.open i:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }

/* Mobile Header Navbar Tuning */
@media (max-width: 768px) {
  .site-header {
    padding-block: 0.75rem;
  }
  .site-header .wrap {
    padding-inline: 0.85rem;
  }
  .site-header .nav {
    gap: 0.5rem;
  }
  .brand {
    gap: 0.5rem;
  }
  .brand-mark {
    width: 30px;
    height: 30px;
  }
  .brand-mark span {
    font-size: 0.82rem;
  }
  .brand-name {
    font-size: 0.92rem;
  }
  .brand-sub {
    font-size: 0.5rem;
    letter-spacing: 0.12em;
  }
  .nav-actions {
    gap: 0.4rem;
  }
  .nav-3d-toggle {
    padding: 0.32rem 0.5rem;
    gap: 0.35rem;
  }
  .nav-3d-badge {
    font-size: 0.55rem;
    padding: 1px 4px;
  }
  .nav-3d-track {
    width: 22px;
    height: 12px;
  }
  .nav-3d-thumb {
    width: 8px;
    height: 8px;
    top: 2px;
    left: 2px;
  }
  .nav-3d-toggle:hover .nav-3d-thumb {
    transform: translateX(10px);
  }
  .theme-toggle {
    width: 34px;
    height: 34px;
    margin-inline: 0;
  }
  .burger {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 380px) {
  .site-header .wrap {
    padding-inline: 0.65rem;
  }
  .site-header .nav {
    gap: 0.35rem;
  }
  .brand-sub {
    display: none;
  }
  .nav-actions {
    gap: 0.35rem;
  }
}

/* mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 89;
  background: var(--carbon);
  padding: 6.5rem var(--gutter) 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .75s var(--ease);
  overflow-y: auto;
}
.drawer.open { clip-path: inset(0 0 0 0); }
.drawer-links { display: flex; flex-direction: column; gap: .2rem; }
.drawer-link {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 112%;
  font-size: clamp(1.8rem, 8vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: -.025em;
  padding-block: .45rem;
  border-bottom: 1px solid var(--line-soft);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .6s var(--ease), color .3s ease;
}
.drawer.open .drawer-link { opacity: 1; transform: none; }
.drawer-link:hover { color: var(--film); }
.drawer-foot { padding-top: 2rem; color: var(--steel); font-size: .85rem; }

/* ── Preloader ───────────────────────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--carbon);
  display: grid;
  place-items: center;
  transition: opacity .6s ease, visibility .6s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.pre-inner { width: min(320px, 70vw); }
.pre-label {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: .75rem;
}
.pre-track { height: 1px; background: var(--line); position: relative; overflow: hidden; }
.pre-bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--irid);
  transition: width .25s linear;
}

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: 8rem;
  padding-bottom: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(58% 48% at 72% 32%, rgba(78, 195, 232, .16), transparent 62%),
    radial-gradient(45% 40% at 20% 76%, rgba(169, 155, 255, .10), transparent 65%),
    var(--carbon);
}
/* carbon weave */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px),
    linear-gradient(var(--line-soft) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(72% 62% at 50% 42%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(72% 62% at 50% 42%, #000 25%, transparent 78%);
}

/* the signature: an iridescent film sheet that sweeps across on load */
.film-sweep {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(105deg,
      transparent 34%,
      rgba(127, 231, 255, .16) 44%,
      rgba(169, 155, 255, .22) 50%,
      rgba(255, 143, 177, .18) 56%,
      transparent 66%);
  transform: translateX(-120%);
}
.loaded .film-sweep { animation: sweep 2.6s var(--ease) .35s forwards; }
@keyframes sweep {
  0%   { transform: translateX(-120%); opacity: 0; }
  18%  { opacity: 1; }
  100% { transform: translateX(120%); opacity: 0; }
}

.hero-inner { position: relative; z-index: 4; width: 100%; }

/* ── Hero 2D / 3D Experience Mode Switcher ────────────────────────── */
.hero-mode-switch {
  margin-bottom: 1.8rem;
  display: inline-block;
}
.mode-switch-container {
  display: inline-flex;
  flex-direction: column;
  gap: .5rem;
}
.mode-switch-title {
  font-family: var(--mono);
  font-size: .62rem;
  color: var(--steel);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.mode-switch-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--film);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--film);
}
.mode-switch-control {
  display: inline-flex;
  align-items: center;
  background: rgba(19, 21, 25, 0.85);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px;
  gap: 4px;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.mode-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem .95rem;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--steel);
  text-decoration: none;
  transition: all .35s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  user-select: none;
}
.mode-switch-btn.active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--chalk);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.mode-switch-btn.mode-switch-3d {
  position: relative;
  overflow: hidden;
}
.mode-switch-btn.mode-switch-3d:hover {
  background: rgba(159, 232, 255, 0.12);
  color: var(--chalk);
  border-color: var(--film);
  transform: translateY(-1px);
  box-shadow: 0 0 16px rgba(127, 231, 255, 0.25);
}
.mode-led {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--steel);
  display: inline-block;
  flex-shrink: 0;
}
.mode-led.active {
  background: var(--chalk);
  box-shadow: 0 0 6px var(--chalk);
}
.mode-led.pulse {
  background: var(--film);
  box-shadow: 0 0 8px var(--film);
  animation: pulseLed 1.8s infinite ease-in-out;
}
@keyframes pulseLed {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.25); box-shadow: 0 0 12px var(--film); }
}
.mode-status-tag {
  font-size: .52rem;
  letter-spacing: .14em;
  color: var(--steel);
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 5px;
  border-radius: 2px;
  margin-left: .2rem;
}
.mode-badge-pulse {
  font-family: var(--display);
  font-weight: 900;
  font-size: .6rem;
  color: var(--carbon);
  background: var(--irid);
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: .04em;
  margin-left: .25rem;
  box-shadow: 0 0 10px rgba(127, 231, 255, 0.4);
}

.hero-title { margin-bottom: 1.8rem; }
.hero-title .row { display: block; overflow: hidden; }
.hero-title .row > span {
  display: block;
  transform: translateY(105%);
  transition: transform 1.15s var(--ease);
}
.loaded .hero-title .row > span { transform: none; }
.loaded .hero-title .row:nth-child(2) > span { transition-delay: .1s; }
.loaded .hero-title .row:nth-child(3) > span { transition-delay: .2s; }

.hero-title .thin {
  font-stretch: 82%;
  font-weight: 300;
  background: linear-gradient(135deg, #f5d78a 0%, #d4af37 50%, #aa8222 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: end;
}
@media (min-width: 950px) {
  .hero-grid { grid-template-columns: 0.9fr 1.3fr; gap: 3.5rem; }
}

/* Responsive control for 3D/video model and 2D SVG outline */
/* ── Hero Car Detailing Studio 3D Card ───────────────────────────── */
.hero-studio-card {
  width: 100%;
  background: linear-gradient(145deg, rgba(19, 21, 25, 0.95) 0%, rgba(10, 11, 14, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.12);
  position: relative;
}
.hero-studio-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--irid);
  z-index: 5;
}
.studio-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
}
.studio-badge-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.studio-live-beacon {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ADE9B;
  box-shadow: 0 0 8px #4ADE9B;
  animation: pulseBeacon 2s infinite ease-in-out;
}
.studio-title {
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--steel);
  text-transform: uppercase;
}
.studio-model-tag {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--mono);
  font-size: 0.64rem;
  color: var(--chalk);
  font-weight: 500;
}
.badge-3d-tag {
  font-family: var(--display);
  font-weight: 900;
  font-size: 0.58rem;
  color: var(--carbon);
  background: var(--irid);
  padding: 1px 5px;
  border-radius: 3px;
}
.studio-viewport-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 280px;
  background: radial-gradient(circle at 50% 35%, rgba(28, 34, 46, 0.7) 0%, rgba(6, 7, 10, 0.98) 80%);
  overflow: hidden;
  cursor: grab;
}
.studio-viewport-box:active {
  cursor: grabbing;
}
#hero-studio-canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
  outline: none;
}
.studio-light-grid {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 45px;
  background: linear-gradient(180deg, rgba(159, 232, 255, 0.12) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}
.studio-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(11, 12, 15, 0.92);
  backdrop-filter: blur(8px);
  z-index: 10;
  transition: opacity 0.5s ease;
}
.studio-spin-ring {
  width: 32px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--film);
  border-radius: 50%;
  animation: spinRing 0.8s linear infinite;
}
.studio-spin-txt {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  color: var(--steel);
}
.studio-hint {
  position: absolute;
  bottom: 12px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: var(--chalk);
  background: rgba(11, 12, 15, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  padding: 4px 8px;
  border-radius: 4px;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 4;
}
.studio-ctrl-btn {
  position: absolute;
  bottom: 12px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--steel);
  background: rgba(11, 12, 15, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 4;
}
.studio-ctrl-btn.active {
  color: var(--film);
  border-color: rgba(159, 232, 255, 0.4);
  box-shadow: 0 0 10px rgba(159, 232, 255, 0.2);
}
.studio-bot-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1rem;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.4);
  font-family: var(--mono);
  font-size: 0.64rem;
}
.studio-finish-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.finish-label {
  color: var(--dim);
  letter-spacing: 0.15em;
}
.finish-value {
  color: var(--chalk);
  letter-spacing: 0.08em;
  font-weight: 500;
}
.studio-launch-3d {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--film);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.12em;
  transition: all 0.3s ease;
}
.studio-launch-3d:hover {
  color: #fff;
  text-shadow: 0 0 8px var(--film);
  transform: translateX(2px);
}

.coverage {
  display: none !important;
}

.hero-studio-card {
  display: block;
  width: 100%;
  order: 1;
  margin-bottom: 0 !important;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

.hero-side {
  border-left: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.hero-trust-list {
  order: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  width: 100%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}

@media (min-width: 950px) {
  .hero-side {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  .hero-trust-list {
    order: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 20%;
    flex-shrink: 0;
    border-top: none;
    border-bottom: none;
    border-right: 1px solid var(--line);
    padding: 0;
    padding-right: 1.8rem;
  }
  .hero-studio-card {
    order: 2;
    display: block;
    width: 76%;
  }
}

.trust-item { display: grid; gap: .2rem; }
.trust-num {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 108%;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1;
  letter-spacing: -.03em;
  color: #FFFFFF;
  transition: color .35s ease, text-shadow .35s ease;
}
.trust-item:hover .trust-num {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
}
.trust-label {
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--dim);
}

.scroll-cue {
  position: absolute;
  left: var(--gutter);
  bottom: 1.4rem;
  z-index: 5;
  display: none;
  align-items: center;
  gap: .7rem;
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dim);
}
@media (min-width: 950px) { .scroll-cue { display: flex; } }
.scroll-cue i {
  width: 40px; height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.scroll-cue i::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--film);
  animation: cue 2.2s var(--ease-io) infinite;
}
@keyframes cue {
  0%   { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}

/* ── Coverage diagram (hero signature) ─────────────────────────── */
.coverage {
  position: absolute;
  top: 4rem;
  left: 0;
  width: 100%;
  padding: 0 var(--gutter);
  z-index: 1;
  opacity: .4;
  pointer-events: none;
}
@media (max-width: 949px) {
  .coverage .tag,
  .coverage .leader { display: none; }
}
@media (min-width: 950px) {
  .coverage {
    display: none !important;
  }
}
@media (min-width: 1500px) {
  .coverage { display: none !important; }
}
.coverage .body-line,
.coverage .detail-line {
  fill: none;
  stroke: rgba(255, 255, 255, .3);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.coverage .detail-line { stroke: rgba(255, 255, 255, .12); stroke-width: 1.1; }
.coverage .glass { fill: rgba(159, 232, 255, .05); stroke: rgba(255, 255, 255, .18); stroke-width: 1.1; }
.coverage .hub { fill: none; stroke: rgba(255,255,255,.16); stroke-width: 1.2; }
.coverage .covered {
  fill: none;
  stroke: url(#filmGradient);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.coverage .leader {
  fill: none;
  stroke: rgba(159, 232, 255, .45);
  stroke-width: 1;
}
.coverage .tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  fill: var(--steel);
}
.coverage .tag--lead { fill: var(--film); }

/* draw-on */
.coverage .body-line, .coverage .detail-line, .coverage .covered, .coverage .leader {
  stroke-dasharray: 2400;
  stroke-dashoffset: 2400;
}
.loaded .coverage .body-line   { animation: draw 2.2s var(--ease) .5s forwards; }
.loaded .coverage .detail-line { animation: draw 1.8s var(--ease) 1.1s forwards; }
.loaded .coverage .covered     { animation: draw 1.6s var(--ease) 1.5s forwards, pulseGlow 3s ease-in-out 3.1s infinite; }
.loaded .coverage .leader      { animation: draw 1s var(--ease) 2.1s forwards; }
.coverage .tag { opacity: 0; }
.loaded .coverage .tag { animation: fadeIn .8s ease 2.3s forwards; }
@keyframes draw   { to { stroke-dashoffset: 0; } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes pulseGlow {
  0%, 100% { filter: drop-shadow(0 0 1px var(--film-deep)); opacity: 0.85; }
  50% { filter: drop-shadow(0 0 8px var(--film)) drop-shadow(0 0 15px var(--film-deep)); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .coverage .body-line, .coverage .detail-line, .coverage .covered, .coverage .leader {
    stroke-dashoffset: 0;
  }
  .coverage .tag { opacity: 1; }
}

/* ── Marquee ─────────────────────────────────────────────────────── */
.marquee {
  border-block: 1px solid var(--line);
  padding-block: 1.1rem;
  overflow: hidden;
  background: var(--graphite);
}
.marquee-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: slide 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--steel);
  white-space: nowrap;
}
.marquee-item::after {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--film-deep);
  flex: none;
}

/* ── Cards ───────────────────────────────────────────────────────── */
.card {
  position: relative;
  background: var(--graphite);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: clamp(1.5rem, 2.6vw, 2.2rem);
  overflow: hidden;
  isolation: isolate;
  transition: transform .6s var(--ease), border-color .45s ease, background .45s ease;
}
.card::before { /* film edge */
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: var(--irid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .7s var(--ease);
}
.card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,.16); background: var(--slate); }
.card:hover::before { transform: scaleX(1); }

.card-index {
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .18em;
  color: var(--dim);
  margin-bottom: 1.6rem;
  display: block;
}
.card-title {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 108%;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin-bottom: .7rem;
}
.card-text { color: var(--steel); font-size: .93rem; }

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-soft);
}
.card-meta div { display: grid; gap: .15rem; }
.card-meta dt { font-family: var(--mono); font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: var(--dim); }
.card-meta dd { font-size: .88rem; }

.grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 3px; overflow: hidden; }
.grid > * { border-radius: 0; border: 0; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 760px)  { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1060px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.cards-flow { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 760px)  { .cards-flow { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .cards-flow { grid-template-columns: repeat(3, 1fr); } }

/* ── Services Showcase (Five Services. One Obsession.) ───────────── */
.services-showcase-section {
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(229, 168, 105, 0.04) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(78, 195, 232, 0.03) 0%, transparent 60%),
              #08090C;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.services-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.35fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
}
@media (max-width: 992px) {
  .services-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
  }
}

.services-hero-title {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 115%;
  font-size: clamp(2.3rem, 4.4vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--chalk);
  margin-bottom: 1.4rem;
}

.text-gold-gradient {
  background: linear-gradient(90deg, #E5A869 0%, #F5C68A 35%, #DDA059 70%, #FBE5C8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(229, 168, 105, 0.35));
  display: inline-block;
}

.services-hero-desc {
  font-size: clamp(0.95rem, 1.25vw, 1.15rem);
  color: var(--steel);
  line-height: 1.6;
  max-width: 48ch;
}

.services-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.svc-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.95rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chalk);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.svc-pill:hover {
  border-color: rgba(229, 168, 105, 0.4);
  background: rgba(229, 168, 105, 0.06);
  transform: translateY(-1px);
}
.svc-pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(229, 168, 105, 0.15);
  color: #E5A869;
  flex-shrink: 0;
}

/* Right Column Car Showcase */
.services-car-frame {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.75), 0 0 35px rgba(229, 168, 105, 0.06);
  background: #040507;
}
.services-car-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.services-car-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 30%, transparent 40%, rgba(4, 5, 7, 0.4) 100%);
}

.car-callout {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}
.car-callout .callout-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7FE7FF;
  box-shadow: 0 0 8px #7FE7FF;
  flex-shrink: 0;
}
.car-callout .callout-line {
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, #7FE7FF, transparent);
  flex-shrink: 0;
}
.car-callout .callout-tag {
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(8, 10, 14, 0.75);
  border: 1px solid rgba(127, 231, 255, 0.25);
  padding: 2px 6px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}
.callout-top { top: 16%; right: 10%; }
.callout-mid { top: 48%; right: 6%; }
.callout-bot { bottom: 22%; right: 14%; }

.car-signature {
  position: absolute;
  bottom: 12px;
  right: 18px;
  font-family: 'Brush Script MT', 'Caveat', cursive, serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
  pointer-events: none;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

@media (max-width: 600px) {
  .car-callout { display: none; }
}

/* ── 5 Service Cards Grid ────────────────────────────────────────── */
.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
  width: 100%;
}

.svc-card-box {
  background: linear-gradient(180deg, rgba(22, 26, 34, 0.7) 0%, rgba(11, 13, 17, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  text-decoration: none;
  transition: transform 0.4s var(--ease), border-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}
.svc-card-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: opacity 0.4s ease;
}
.svc-card-box:hover {
  transform: translateY(-7px);
  border-color: rgba(229, 168, 105, 0.45);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(229, 168, 105, 0.1);
}
.svc-card-box:hover::before {
  background: linear-gradient(90deg, transparent, rgba(229, 168, 105, 0.7), transparent);
}

.svc-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0.95rem 0.2rem 0.95rem;
}
.svc-card-index {
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--dim);
}
.svc-card-box:hover .svc-card-index {
  color: #E5A869;
}
.svc-card-spark {
  font-size: 0.55rem;
  color: #E5A869;
  opacity: 0.5;
}

.svc-card-media {
  height: 132px;
  margin: 0.4rem 0.75rem 0.75rem 0.75rem;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  background: #08090C;
}
.svc-card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ease);
}
.svc-card-box:hover .svc-card-thumb {
  transform: scale(1.08);
}
.svc-card-media-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11, 13, 17, 0.6) 100%);
  pointer-events: none;
}

.svc-card-content {
  padding: 0 0.95rem 0.95rem 0.95rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-card-heading {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 110%;
  font-size: 0.85rem;
  line-height: 1.22;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--chalk);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}
.svc-card-box:hover .svc-card-heading {
  color: #F5C68A;
}

.svc-card-summary {
  font-size: 0.71rem;
  color: var(--steel);
  line-height: 1.48;
  margin-bottom: 1.1rem;
  flex: 1;
  min-height: 44px;
}

.svc-card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  transition: all 0.3s ease;
}
.svc-card-box:hover .svc-card-action {
  color: var(--chalk);
  border-top-color: rgba(229, 168, 105, 0.25);
}
.svc-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--steel);
  transition: all 0.3s ease;
}
.svc-card-box:hover .svc-action-icon {
  color: #E5A869;
  transform: translateX(3px);
}

/* Tablet & Mobile responsive for 5-card grid */
@media (max-width: 1200px) and (min-width: 768px) {
  .services-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 767px) {
  .services-cards-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.9rem;
    padding-bottom: 1.2rem;
    -webkit-overflow-scrolling: touch;
  }
  .svc-card-box {
    flex: 0 0 260px;
    scroll-snap-align: start;
  }
}

/* ── Service list (index rows) ───────────────────────────────────── */
.svc-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.6rem;
  align-items: baseline;
  padding-block: clamp(1.6rem, 3vw, 2.4rem);
  border-top: 1px solid var(--line);
  position: relative;
  transition: padding-inline .55s var(--ease);
}
@media (min-width: 900px) {
  .svc-row { grid-template-columns: 4.5rem 1.1fr 1.2fr auto; }
  .svc-row:hover { padding-inline: 1.2rem; }
}
.svc-row::after {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  height: 1px; width: 100%;
  background: var(--irid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .8s var(--ease);
}
.svc-row:hover::after { transform: scaleX(1); }
.svc-row:last-child { border-bottom: 1px solid var(--line); }

.svc-num { font-family: var(--mono); font-size: .7rem; color: var(--dim); letter-spacing: .16em; }
.svc-name {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 110%;
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  text-transform: uppercase;
  letter-spacing: -.025em;
  line-height: 1;
  transition: color .4s ease;
}
.svc-row:hover .svc-name { color: var(--film); }
.svc-desc { color: var(--steel); font-size: .93rem; }
.svc-cta { font-family: var(--mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--dim); white-space: nowrap; }

/* ── Before / after slider (signature component) ─────────────────── */
/* ── Before / after slider (Luxury Showcase Component) ───────────── */

/* ── Before / after slider (Luxury Showcase Component) ───────────── */
.ba-showcase-section {
  position: relative;
  background: #040507;
  padding: 4.5rem 0 5rem;
  overflow: hidden;
}

/* Header Grid: 3 columns (Left title, Mid paragraph, Right signature) */
.ba-header-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr auto;
  align-items: flex-start;
  margin-bottom: 2rem;
  gap: 2.5rem;
}
.ba-header-left {
  display: flex;
  flex-direction: column;
}
.ba-eyebrow-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.ba-eyebrow-dash {
  width: 24px;
  height: 1.5px;
  background: #C9965C;
}
.ba-eyebrow-text {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  color: #C9965C;
  text-transform: uppercase;
  font-weight: 500;
}
.ba-main-title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}
.ba-title-gold {
  background: linear-gradient(135deg, #FBE0B5 0%, #D89E62 50%, #B87B38 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}
.ba-sub-title {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin: 0;
}

/* Header Mid */
.ba-header-mid {
  display: flex;
  flex-direction: column;
  padding-top: 2rem;
}
.ba-desc-porsche {
  font-size: 0.82rem;
  color: #CFD3DF;
  margin-bottom: 0.5rem;
  line-height: 1.45;
}
.ba-desc-porsche strong {
  color: #FFFFFF;
  font-weight: 600;
}
.ba-desc-body {
  font-size: 0.76rem;
  color: #787E8E;
  line-height: 1.62;
  max-width: 440px;
  margin: 0;
}

/* Watermark signature */
.ba-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  padding-top: 1.2rem;
}
.ba-signature-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.ba-sig-script {
  font-family: 'Brush Script MT', 'Caveat', 'Playfair Display', cursive, serif;
  font-size: 2.2rem;
  color: rgba(201, 150, 92, 0.45);
  line-height: 1;
  margin-bottom: 0.45rem;
  letter-spacing: 0.02em;
  font-style: italic;
}
.ba-sig-sub {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
}

/* Slider Box Outer */
.ba-slider-outer {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
  margin-bottom: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ba.ba-showcase {
  position: relative;
  aspect-ratio: 16 / 7.2;
  border-radius: 6px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
  background: #0B0C10;
  border: none;
}
.ba-layer {
  position: absolute;
  inset: 0;
}
.ba-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-layer--after {
  clip-path: inset(0 0 0 50%);
}

/* Overlay badges & text */
.ba-overlay-content {
  position: absolute;
  top: 1.8rem;
  z-index: 5;
  pointer-events: none;
}
.ba-overlay-left {
  left: 2.2rem;
  text-align: left;
}
.ba-overlay-right {
  right: 2.2rem;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Pill badges */
.ba-pill-badge {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: inline-block;
  padding: 0.38rem 1.15rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.ba-pill-before {
  background: rgba(14, 16, 22, 0.78);
  color: #E2E4EB;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}
.ba-pill-after {
  background: linear-gradient(135deg, #FBE0B5 0%, #D89E62 100%);
  color: #07080B;
  box-shadow: 0 4px 18px rgba(216, 158, 98, 0.35);
}

.ba-badge-subtext {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
  line-height: 1.35;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

/* Callout tags list */
.ba-tag-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.ba-tag-list li {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ba-tag-list--right li {
  justify-content: flex-end;
}
.ba-tag-dash {
  color: #D89E62;
  font-weight: 700;
  font-size: 0.75rem;
}

/* Draggable Handle: subtle white/gray vertical line with dark circular knob */
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.65);
  transform: translateX(-0.5px);
  pointer-events: none;
  z-index: 10;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}
.ba-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(18, 20, 26, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  backdrop-filter: blur(6px);
}
.ba-drag-hint {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  pointer-events: none;
}
.ba-drag-hint span {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  font-weight: 500;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
}

/* Vehicle & Treatment Metadata Bar */
.ba-metadata-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #080A0E;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  padding: 1.1rem 2rem;
  margin-bottom: 2.2rem;
  gap: 1.5rem;
}
.ba-meta-col {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.ba-meta-brand {
  gap: 1rem;
}
.ba-brand-crest {
  width: 30px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-brand-crest img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.8));
}
.ba-brand-info {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.ba-meta-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: #7D8494;
  text-transform: uppercase;
  font-weight: 500;
}
.ba-meta-val {
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #FFFFFF;
}
.ba-meta-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}
.ba-meta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ba-meta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.ba-meta-title {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: #6C7282;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.ba-meta-bold {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: #FFFFFF;
  font-weight: 700;
}
.ba-meta-sub {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: #D89E62;
}
.ba-meta-desc {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}

/* Slogan at right with accent line */
.ba-meta-slogan-wrap {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.ba-slogan-accent-line {
  width: 28px;
  height: 1px;
  background: #C9965C;
  opacity: 0.85;
}
.ba-slogan-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.ba-slogan-text span {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  color: #C9965C;
  font-weight: 600;
  text-transform: uppercase;
}

/* Case study button */
.ba-action-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ba-case-study-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 2.4rem;
  background: rgba(8, 10, 14, 0.6);
  border: 1px solid rgba(201, 150, 92, 0.45);
  border-radius: 3px;
  color: #FBE0B5;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}
.ba-case-study-btn:hover {
  background: linear-gradient(135deg, #FBE0B5 0%, #D89E62 100%);
  color: #040507;
  border-color: #FBE0B5;
  box-shadow: 0 4px 25px rgba(216, 158, 98, 0.35);
  transform: translateY(-1px);
}
.ba-case-study-btn svg {
  transition: transform 0.3s ease;
}
.ba-case-study-btn:hover svg {
  transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 1080px) {
  .ba-header-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .ba-header-mid {
    padding-top: 0;
  }
  .ba-header-right {
    align-items: flex-start;
    text-align: left;
    padding-top: 0;
  }
  .ba-signature-block {
    align-items: flex-start;
  }
  .ba-metadata-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
  }
  .ba-meta-divider {
    display: none;
  }
  .ba-meta-slogan-wrap {
    grid-column: span 2;
    justify-content: center;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
}

@media (max-width: 768px) {
  .ba-showcase-section {
    padding: 3rem 0 4rem;
  }
  .ba-main-title {
    font-size: 2.2rem;
  }
  .ba-sub-title {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }
  .ba.ba-showcase {
    aspect-ratio: 4 / 3.4;
  }
  .ba-overlay-content {
    top: 0.75rem;
  }
  .ba-overlay-left {
    left: 0.75rem;
  }
  .ba-overlay-right {
    right: 0.75rem;
  }
  .ba-pill-badge {
    padding: 0.26rem 0.75rem;
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    margin-bottom: 0.35rem;
  }
  .ba-badge-subtext {
    font-size: 0.58rem;
    line-height: 1.25;
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.95);
  }
  .ba-tag-list {
    gap: 0.4rem;
  }
  .ba-tag-list li {
    font-size: 0.52rem;
    letter-spacing: 0.1em;
  }
  .ba-knob {
    width: 32px;
    height: 32px;
  }
  .ba-knob svg {
    width: 14px;
    height: 10px;
  }
  .ba-metadata-bar {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    padding: 1.1rem 1rem;
  }
  .ba-meta-slogan-wrap {
    grid-column: span 1;
    justify-content: flex-start;
  }
  .ba-drag-hint {
    display: none;
  }
}

/* ── Process (a real sequence, so numbers earn their place) ──────── */
.process { display: grid; gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
@media (min-width: 800px) { .process { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px){ .process { grid-template-columns: repeat(6, 1fr); } }

.step {
  background: var(--carbon);
  padding: 2rem 1.4rem 2.4rem;
  position: relative;
  transition: background .5s ease;
}
.step:hover { background: var(--graphite); }
.step-n {
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .2em;
  color: var(--film-deep);
  margin-bottom: 2.5rem;
  display: block;
}
.step-t {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 105%;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: .5rem;
}
.step-d { font-size: .86rem; color: var(--steel); }

/* ── Packages ────────────────────────────────────────────────────── */
.pkg {
  display: flex;
  flex-direction: column;
  background: var(--graphite);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: clamp(1.6rem, 2.6vw, 2.4rem);
  position: relative;
  overflow: hidden;
  transition: transform .6s var(--ease), border-color .4s ease;
}
.pkg:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.18); }
.pkg--featured { border-color: rgba(159, 232, 255, .35); background: var(--slate); }
.pkg--featured::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--irid);
}
.pkg-flag {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--carbon);
  background: var(--film);
  padding: .3rem .6rem;
  border-radius: 2px;
}
.pkg-name {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 112%;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  text-transform: uppercase;
  letter-spacing: -.025em;
  line-height: 1;
  margin-bottom: .55rem;
}
.pkg-tag { color: var(--steel); font-size: .9rem; margin-bottom: 1.6rem; }
.pkg-price {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 100%;
  font-size: 1.9rem;
  letter-spacing: -.03em;
  line-height: 1;
}
.pkg-price small {
  display: block;
  font-family: var(--mono);
  font-size: .6rem;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: .4rem;
}
.pkg-spec {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.6rem 0;
  padding: 1.2rem 0;
  border-block: 1px solid var(--line-soft);
}
.pkg-spec dt { font-family: var(--mono); font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; color: var(--dim); margin-bottom: .2rem; }
.pkg-spec dd { font-size: .88rem; }

.tick-list { display: grid; gap: .65rem; margin-bottom: 1.8rem; }
.tick-list li { display: grid; grid-template-columns: 14px 1fr; gap: .7rem; font-size: .9rem; color: var(--steel); list-style: none; }
.tick-list li::before {
  content: '';
  width: 6px; height: 6px;
  margin-top: .5rem;
  border-radius: 50%;
  background: var(--film-deep);
}
.pkg .btn { margin-top: auto; }

/* ── Gallery ─────────────────────────────────────────────────────── */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.5rem; }
.filter {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .65rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--steel);
  transition: color .3s ease, border-color .3s ease, background .3s ease;
}
.filter:hover { color: var(--chalk); border-color: rgba(255,255,255,.2); }
.filter.active { background: var(--chalk); color: var(--carbon); border-color: var(--chalk); }

.tiles { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 700px)  { .tiles { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .tiles { grid-template-columns: repeat(3, 1fr); } }

.tile {
  position: relative;
  display: block;
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  background: var(--graphite);
  aspect-ratio: 4 / 3;
  isolation: isolate;
}
.tile-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease), filter .6s ease; filter: saturate(.85); }
.tile:hover .tile-img { transform: scale(1.06); filter: saturate(1); }
.tile-empty {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0 14px, transparent 14px 28px),
    radial-gradient(70% 60% at 50% 40%, rgba(78,195,232,.10), transparent 70%);
}
.tile-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 1.4rem;
  background: linear-gradient(transparent, rgba(11,12,15,.92) 62%);
}
.tile-cat {
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--film);
  margin-bottom: .35rem;
  display: block;
}
.tile-title {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 106%;
  font-size: 1.06rem;
  text-transform: uppercase;
  letter-spacing: -.015em;
  line-height: 1.1;
}
.tile-sub { font-size: .8rem; color: var(--steel); margin-top: .25rem; }

/* ── Reviews ─────────────────────────────────────────────────────── */
.quote {
  background: var(--graphite);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: clamp(1.6rem, 2.4vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: border-color .4s ease, transform .6s var(--ease);
}
.quote:hover { border-color: rgba(255,255,255,.16); transform: translateY(-4px); }
.stars { display: flex; gap: .25rem; color: var(--film); font-size: .8rem; letter-spacing: .1em; }
.quote-text { font-size: .98rem; line-height: 1.65; }
.quote-by { margin-top: auto; padding-top: 1.1rem; border-top: 1px solid var(--line-soft); }
.quote-name { font-family: var(--display); font-weight: 800; font-stretch: 104%; text-transform: uppercase; font-size: .92rem; letter-spacing: -.01em; }
.quote-car { font-family: var(--mono); font-size: .63rem; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); margin-top: .2rem; }

/* ── Accordion (FAQ) ─────────────────────────────────────────────── */
.acc-item { border-top: 1px solid var(--line); }
.acc-item:last-child { border-bottom: 1px solid var(--line); }
.acc-q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  text-align: left;
  padding: 1.5rem 0;
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 104%;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  text-transform: uppercase;
  letter-spacing: -.015em;
  line-height: 1.25;
  transition: color .3s ease;
}
.acc-q:hover,
.acc-item.open .acc-q { color: var(--film); }
.acc-icon {
  flex: none;
  width: 26px; height: 26px;
  position: relative;
  margin-top: .1rem;
}
.acc-icon::before, .acc-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  translate: -50% -50%;
  background: currentColor;
  transition: transform .45s var(--ease);
}
.acc-icon::before { width: 13px; height: 1.5px; }
.acc-icon::after  { width: 1.5px; height: 13px; }
.acc-item.open .acc-icon::after { transform: scaleY(0); }
.acc-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .55s var(--ease); }
.acc-item.open .acc-a { grid-template-rows: 1fr; }
.acc-a > div { overflow: hidden; }
.acc-a p { color: var(--steel); padding-bottom: 1.6rem; max-width: 72ch; font-size: .95rem; }

/* ── Forms ───────────────────────────────────────────────────────── */
.form { display: grid; gap: 1.1rem; }
.form-row { display: grid; gap: 1.1rem; }
@media (min-width: 700px) { .form-row { grid-template-columns: repeat(2, 1fr); } }

.field { display: grid; gap: .5rem; }
.field label {
  font-family: var(--mono);
  font-size: .63rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--steel);
}
.field label .req { color: var(--film); }
.field input, .field select, .field textarea {
  background: var(--graphite);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: .95rem 1rem;
  font-size: .95rem;
  width: 100%;
  transition: border-color .3s ease, background .3s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(255,255,255,.16); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--film-deep);
  background: var(--slate);
}
.field input::placeholder, .field textarea::placeholder { color: var(--dim); }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--steel) 50%), linear-gradient(135deg, var(--steel) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }
.field select option { background: var(--graphite); }
.field input[type="file"] { padding: .7rem; font-family: var(--mono); font-size: .74rem; color: var(--steel); }
.field-hint { font-size: .78rem; color: var(--dim); }

.notice {
  padding: 1rem 1.2rem;
  border-radius: 2px;
  border: 1px solid;
  font-size: .9rem;
  display: flex;
  gap: .7rem;
  align-items: flex-start;
}
.notice--ok   { border-color: rgba(74,222,155,.35); background: rgba(74,222,155,.08); color: #B6F3D6; }
.notice--err  { border-color: rgba(255,107,90,.35); background: rgba(255,107,90,.08); color: #FFC5BD; }

/* ── Contact split ───────────────────────────────────────────────── */
.split { display: grid; gap: 3rem; }
@media (min-width: 1000px) { .split { grid-template-columns: 1.05fr .95fr; gap: 4.5rem; } }

.info-list { display: grid; gap: 1.6rem; }
.info-item { display: grid; gap: .3rem; padding-bottom: 1.6rem; border-bottom: 1px solid var(--line-soft); }
.info-item:last-child { border-bottom: 0; padding-bottom: 0; }
.info-label { font-family: var(--mono); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--dim); }
.info-value { font-size: 1rem; }
.info-value a:hover { color: var(--film); }

.map-frame {
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  filter: grayscale(1) invert(.92) contrast(.85);
  transition: filter .6s ease;
}
.map-frame:hover { filter: grayscale(.35) invert(.9) contrast(.9); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ── CTA band ────────────────────────────────────────────────────── */
.cta-band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(60% 100% at 50% 100%, rgba(78,195,232,.13), transparent 70%),
    var(--graphite);
}
.cta-inner { text-align: center; display: grid; gap: 1.6rem; justify-items: center; }

/* ── Footer ──────────────────────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--line); background: var(--carbon); }
.foot-grid { display: grid; gap: 2.5rem; padding-block: clamp(3rem, 6vw, 4.5rem); }
@media (min-width: 860px) { .foot-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem; } }

.foot-title {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 1.2rem;
}
.foot-links { display: grid; gap: .7rem; }
.foot-links a { font-size: .92rem; color: var(--steel); transition: color .3s ease, padding-left .4s var(--ease); }
.foot-links a:hover { color: var(--chalk); padding-left: .35rem; }

.foot-bar {
  border-top: 1px solid var(--line);
  padding-block: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dim);
}
.foot-bar a:hover { color: var(--film); }

/* ── Sticky enquiry / WhatsApp ───────────────────────────────────── */
.sticky-cta {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .6s var(--ease);
}
.sticky-cta.show { opacity: 1; transform: none; }
.sticky-btn {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--graphite);
  border: 1px solid var(--line);
  color: var(--chalk);
  transition: transform .4s var(--ease), background .35s ease, color .35s ease;
}
.sticky-btn:hover { transform: scale(1.08); background: var(--chalk); color: var(--carbon); }
.sticky-btn--wa { background: #1FA855; border-color: #1FA855; color: #fff; }
.sticky-btn--wa:hover { background: #24C062; color: #fff; }
.sticky-btn svg { width: 22px; height: 22px; }

/* ── Page hero (interior pages) ──────────────────────────────────── */
.page-hero {
  padding-top: clamp(8rem, 14vw, 11rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 80% at 78% 0%, rgba(78,195,232,.12), transparent 70%);
}
.page-hero .wrap { position: relative; z-index: 2; }
.crumbs {
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 1.4rem;
}
.crumbs a:hover { color: var(--film); }

/* ── Scroll reveal ───────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease), transform 1s var(--ease);
}
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
[data-reveal][data-delay="5"] { transition-delay: .4s; }

/* ── Utility ─────────────────────────────────────────────────────── */
.text-film { color: var(--film); }
.text-steel { color: var(--steel); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.center { text-align: center; }
.stack { display: grid; gap: 1.2rem; }
.flex-cta { display: flex; flex-wrap: wrap; gap: .8rem; }
.empty-state {
  padding: 4rem 2rem;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 3px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ── Reduced motion ──────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-title .row > span { transform: none; }
}

/* ── Light Theme Overrides ───────────────────────────────────────── */
html.light-theme {
  /* surface */
  --carbon:    #f5f7fa;
  --graphite:  #ffffff;
  --slate:     #e9ecf0;
  --line:      rgba(0, 0, 0, .08);
  --line-soft: rgba(0, 0, 0, .045);

  /* ink */
  --chalk:  #111317;
  --steel:  #505969;
  --dim:    #7a8498;

  /* accent — film blue, tuned for light backgrounds */
  --film:      #0b7e9e;
  --film-deep: #08617a;
}

html.light-theme body {
  background: var(--carbon);
  color: var(--chalk);
}

/* Scrolled header background color adjustment */
html.light-theme .site-header.scrolled {
  background: rgba(245, 247, 250, .82);
}

/* Mobile drawer theme override */
html.light-theme .drawer {
  background: var(--carbon);
}

/* Inputs and forms override in light theme */
html.light-theme .field input:hover,
html.light-theme .field select:hover,
html.light-theme .field textarea:hover {
  border-color: rgba(0, 0, 0, .22);
}
html.light-theme .field input:focus,
html.light-theme .field select:focus,
html.light-theme .field textarea:focus {
  background: #ffffff;
  border-color: var(--film-deep);
}

/* Notices colors for readability */
html.light-theme .notice--ok {
  border-color: rgba(74, 222, 155, .6);
  background: rgba(74, 222, 155, .1);
  color: #14532d;
}
html.light-theme .notice--err {
  border-color: rgba(255, 107, 90, .6);
  background: rgba(255, 107, 90, .1);
  color: #7f1d1d;
}

/* Theme toggle button */
.theme-toggle {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--steel);
  transition: border-color .3s ease, color .3s ease, background-color .3s ease;
  margin-inline: .2rem;
}
.theme-toggle:hover {
  border-color: var(--film);
  background-color: var(--line-soft);
  color: var(--chalk);
}
.theme-toggle svg {
  width: 17px;
  height: 17px;
}

/* ── Preloader Shine & Logo Animations ───────────────────────────── */
@keyframes textShine {
  0% { background-position: 0% center; }
  100% { background-position: -200% center; }
}

@keyframes carShineAnimation {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.run-shine div {
  animation: carShineAnimation 1.1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* =====================================================================
   PPF 4-LAYER ANATOMY SECTION (3D Isometric Stack)
   ===================================================================== */
.ppf-stack-section {
  padding-block: var(--section);
  position: relative;
  overflow: hidden;
  background: var(--carbon);
}
.ppf-stack-section::before {
  content: '';
  position: absolute;
  top: 15%;
  right: 5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 90, 54, 0.08) 0%, rgba(159, 232, 255, 0.03) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.ppf-stack-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 4.5rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 950px) {
  .ppf-stack-grid {
    grid-template-columns: 1fr 1.25fr;
    gap: 4.5rem;
  }
}

.ppf-stack-content {
  position: relative;
}

.stack-eyebrow {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #FF5A36;
  margin-bottom: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
/* ── PPF 4-Layer Anatomy Showcase (Exact Reference Design) ────── */
.ppf-showcase-section {
  position: relative;
  background: #08090C;
  padding: 1.5rem 0 4.5rem;
  overflow: hidden;
}

.ppf-showcase-frame {
  position: relative;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.ppf-showcase-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.ppf-backdrop-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.95;
  filter: contrast(1.05) brightness(0.98);
}

/* Seamless Edge Blending Vignette into Background */
.ppf-backdrop-vignette {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to right, #08090C 0%, #08090C 26%, rgba(8, 9, 12, 0.85) 44%, rgba(8, 9, 12, 0.15) 66%, rgba(8, 9, 12, 0) 100%),
    linear-gradient(to bottom, #08090C 0%, rgba(8, 9, 12, 0) 12%, rgba(8, 9, 12, 0) 86%, #08090C 100%),
    radial-gradient(circle at 100% 50%, rgba(0, 0, 0, 0) 45%, rgba(8, 9, 12, 0.7) 100%);
  pointer-events: none;
}

.ppf-ambient-radial-glow {
  position: absolute;
  right: 28%;
  top: 38%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(229, 168, 105, 0.12) 0%, rgba(255, 90, 54, 0.05) 45%, transparent 70%);
  filter: blur(55px);
  pointer-events: none;
}

.ppf-showcase-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1.15fr;
  gap: 3rem;
  align-items: center;
  min-height: 520px;
}

.ppf-showcase-copy {
  display: flex;
  flex-direction: column;
}

.ppf-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.ppf-eyebrow-line {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--film, #7FE7FF);
  box-shadow: 0 0 10px rgba(127, 231, 255, 0.6);
}

.ppf-eyebrow {
  margin: 0;
  letter-spacing: 0.22em;
}

.ppf-main-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.3rem, 4.4vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--chalk);
  margin-bottom: 1.5rem;
}

.ppf-main-desc {
  font-size: clamp(0.95rem, 1.2vw, 1.12rem);
  color: var(--steel);
  line-height: 1.65;
  max-width: 44ch;
  margin-bottom: 2.2rem;
}

/* Action Buttons */
.ppf-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
}

.btn-gold-capsule {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #121316 !important;
  background: linear-gradient(90deg, #E5A869 0%, #F5C68A 35%, #DDA059 70%, #FBE5C8 100%);
  box-shadow: 0 10px 28px rgba(229, 168, 105, 0.38), inset 0 1px 1px rgba(255, 255, 255, 0.6);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}
.btn-gold-capsule:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(229, 168, 105, 0.55);
  filter: brightness(1.06);
}

.btn-glass-capsule {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chalk) !important;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-glass-capsule:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}
.btn-play-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
}

/* Right HUD Column */
.ppf-showcase-hud {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}

.ppf-signature-watermark {
  font-family: 'Playfair Display', 'Georgia', cursive, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(229, 168, 105, 0.35);
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
  pointer-events: none;
  user-select: none;
}

.ppf-hud-callouts {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  width: 100%;
  max-width: 380px;
}

.ppf-hud-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hud-card-pointer {
  display: flex;
  align-items: center;
  width: 36px;
  flex-shrink: 0;
}
.hud-node {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #E5A869;
  box-shadow: 0 0 10px #E5A869;
  flex-shrink: 0;
}
.hud-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #E5A869 0%, rgba(229, 168, 105, 0.3) 100%);
}

.hud-card-body {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 1.1rem;
  background: rgba(18, 20, 26, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.ppf-hud-card:hover .hud-card-body,
.ppf-hud-card.is-active-featured .hud-card-body {
  background: rgba(28, 32, 42, 0.88);
  border-color: rgba(229, 168, 105, 0.6);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 18px rgba(229, 168, 105, 0.25);
  transform: translateX(-4px);
}

.hud-card-icon {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E5A869;
  flex-shrink: 0;
}

.hud-card-texts {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hud-card-title {
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--chalk);
}

.hud-card-sub {
  font-family: var(--mono);
  font-size: 0.64rem;
  color: var(--steel);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Bottom Metrics Strip */
.ppf-metrics-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ppf-metric-box {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.6rem 0.5rem;
}

.ppf-metric-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E5A869;
  flex-shrink: 0;
}

.ppf-metric-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.ppf-metric-headline {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--chalk);
}

.ppf-metric-caption {
  font-family: var(--mono);
  font-size: 0.64rem;
  color: var(--steel);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ppf-strip-signature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-left: 1rem;
}

.sig-line {
  width: 32px;
  height: 1px;
  background: #E5A869;
  opacity: 0.6;
}

.sig-text {
  font-family: var(--mono);
  font-size: 0.62rem;
  color: rgba(229, 168, 105, 0.7);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ppf-visual-mobile-preview {
  display: none;
}

/* Responsive Styles for PPF Showcase */
@media (max-width: 1080px) {
  .ppf-showcase-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  .ppf-showcase-backdrop {
    display: none;
  }
  .ppf-showcase-hud {
    align-items: stretch;
    width: 100%;
    margin-top: 1rem;
  }
  .ppf-signature-watermark {
    margin-bottom: 1.2rem;
    align-self: flex-start;
  }
  .ppf-hud-callouts {
    max-width: 100%;
    margin-bottom: 2rem;
  }
  .ppf-visual-mobile-preview {
    display: block;
    width: calc(100% + (2 * var(--gutter, 20px)));
    margin-left: calc(-1 * var(--gutter, 20px));
    margin-right: calc(-1 * var(--gutter, 20px));
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
    margin-bottom: 2.5rem;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: transparent;
  }
  .ppf-mobile-img {
    width: 100%;
    height: auto;
    min-height: 280px;
    object-fit: cover;
    object-position: 65% center;
    display: block;
    mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
  }
  .ppf-metrics-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 1.5rem;
  }
  .ppf-strip-signature {
    grid-column: span 2;
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  .ppf-showcase-section {
    padding-top: 1.2rem;
    padding-bottom: 3.5rem;
  }
  .ppf-showcase-frame {
    padding: 0;
  }
  .ppf-showcase-grid {
    gap: 1.8rem;
  }
  .ppf-hud-callouts {
    gap: 0.75rem;
    margin-bottom: 1.8rem;
  }
  .ppf-hud-card {
    gap: 0;
  }
  .hud-card-pointer {
    display: none;
  }
  .hud-card-body {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: rgba(18, 20, 26, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }
  .hud-card-title {
    font-size: 0.74rem;
  }
  .hud-card-sub {
    font-size: 0.62rem;
  }
  .ppf-visual-mobile-preview {
    width: calc(100% + (2 * var(--gutter, 16px)));
    margin-left: calc(-1 * var(--gutter, 16px));
    margin-right: calc(-1 * var(--gutter, 16px));
    margin-bottom: 2rem;
  }
  .ppf-mobile-img {
    min-height: 330px;
    object-position: 60% center;
    transform: scale(1.08);
  }
  .ppf-metrics-strip {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    margin-top: 1rem;
    padding-top: 1.2rem;
  }
  .ppf-strip-signature {
    grid-column: span 1;
  }
  .ppf-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-gold-capsule, .btn-glass-capsule {
    justify-content: center;
    width: 100%;
  }
}

/* ==========================================================================
   Hero Detailing Studio 3D HUD Toolbar
   ========================================================================== */
.studio-hud-toolbar {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  z-index: 20;
  pointer-events: auto;
  flex-wrap: wrap;
}
.studio-hud-group {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(11, 12, 15, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 3px 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}
.hud-label {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  color: var(--dim);
  padding-left: 5px;
  padding-right: 2px;
  font-weight: 700;
}
.hud-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--steel);
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 3px 7px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  user-select: none;
}
.hud-btn:hover {
  color: var(--chalk);
  background: rgba(255, 255, 255, 0.08);
}
.hud-btn.active {
  color: #ffffff;
  background: rgba(78, 195, 232, 0.22);
  border-color: rgba(78, 195, 232, 0.6);
  box-shadow: 0 0 10px rgba(78, 195, 232, 0.35);
}
.hud-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}
.hud-btn.active .hud-dot {
  opacity: 1;
  background: var(--film);
  box-shadow: 0 0 6px var(--film);
}
.hud-btn-apply {
  background: linear-gradient(135deg, rgba(78, 195, 232, 0.25) 0%, rgba(169, 155, 255, 0.25) 100%);
  border: 1px solid rgba(159, 232, 255, 0.45);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.12em;
  box-shadow: 0 0 14px rgba(78, 195, 232, 0.25);
  padding: 4px 10px;
}
.hud-btn-apply:hover {
  background: linear-gradient(135deg, rgba(78, 195, 232, 0.45) 0%, rgba(169, 155, 255, 0.45) 100%);
  border-color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(78, 195, 232, 0.5);
}
.hud-btn-apply.is-applying {
  animation: hudPulse 0.6s infinite alternate ease-in-out;
}
@keyframes hudPulse {
  from { border-color: var(--film); box-shadow: 0 0 8px var(--film); }
  to { border-color: #ffffff; box-shadow: 0 0 20px rgba(127, 231, 255, 0.8); }
}
.hud-sparkle {
  font-size: 0.65rem;
}

/* =====================================================================
   LUXURY PPF PACKAGES SHOWCASE WITH INTERACTIVE 3D STUDIO
   Matches reference design media_1788722717744.jpg
   ===================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@500;700&display=swap');

.pkg-showcase-section {
  position: relative;
  background: #060709;
  padding: 4.5rem 0;
  color: #ffffff;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pkg-container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* 1. Split Layout Top Showcase */
.pkg-hero-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4.5rem;
}

.pkg-hero-copy {
  display: flex;
  flex-direction: column;
}

.pkg-eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 1rem;
}

.pkg-eyebrow-dash {
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--gold);
  margin-right: 10px;
}

.pkg-hero-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 1.2rem;
}

.gold-gradient-text,
.text-gold-gradient {
  background: linear-gradient(135deg, #f5d78a 0%, #e5a869 50%, #aa8222 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.pkg-hero-lede {
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
  margin: 0 0 2rem;
  max-width: 52ch;
}

.pkg-hero-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
  margin-bottom: 2.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.6rem;
}

.pkg-hero-badge-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
}

.badge-icon-box {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(229, 168, 105, 0.12);
  border: 1px solid rgba(229, 168, 105, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.pkg-hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* 3D Model Viewport Stage */
.pkg-3d-stage-wrapper {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #040507;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.pkg-3d-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 400px;
}

/* Floating 3D HUD Tags Overlay */
.pkg-3d-hud-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 6;
}

.pkg-hud-tag {
  position: absolute;
  display: flex;
  flex-direction: column;
  background: rgba(8, 10, 14, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 5px 11px;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

.pkg-hud-tag.tag-top { top: 12%; right: 14%; }
.pkg-hud-tag.tag-mid { top: 38%; right: 5%; }
.pkg-hud-tag.tag-bot { bottom: 24%; right: 6%; }

/* 2. Cards Sub-Header */
.pkg-cards-sub-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.1rem;
}

.pkg-cards-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
}

/* 3. Three Vertical Package Cards (Matching Image 2 1:1) */
.pkg-cards-vertical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-bottom: 4rem;
}

.pkg-v-card {
  background: #0a0c10;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.pkg-v-card:hover {
  border-color: rgba(229, 168, 105, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

.pkg-v-card.active {
  border: 2px solid #e5a869;
  box-shadow: 0 0 28px rgba(229, 168, 105, 0.3);
}

.pkg-v-badge-popular {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: #e5a869;
  color: #080a0e;
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(229, 168, 105, 0.4);
}

.pkg-v-card-img-box {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  background: #050608;
}

.pkg-v-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.pkg-v-card:hover .pkg-v-card-img {
  transform: scale(1.06);
}

.pkg-v-card-body {
  padding: 1.6rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pkg-v-card-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin: 0 0 0.4rem;
  text-transform: uppercase;
}

.pkg-v-card-desc {
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.4rem;
  min-height: 42px;
}

.pkg-v-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pkg-v-checklist li {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.check-icon {
  color: var(--gold);
  font-weight: bold;
}

.pkg-v-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.1rem;
  margin-bottom: 1.2rem;
  margin-top: auto;
}

.pkg-v-price-box {
  display: flex;
  flex-direction: column;
}

.pkg-v-price-lbl {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
}

.pkg-v-price-val {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.3rem;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.pkg-v-price-note {
  font-family: var(--mono);
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.4);
  max-width: 120px;
  text-align: right;
  line-height: 1.3;
}

.pkg-v-btn {
  width: 100%;
  justify-content: center;
  white-space: nowrap !important;
}

.btn-outline-capsule {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap !important;
  transition: all 0.3s ease;
}

.btn-outline-capsule:hover {
  border-color: #e5a869;
  color: #e5a869;
  background: rgba(229, 168, 105, 0.08);
}

/* 4. Talk To An Expert Banner matching Image 2 */
.pkg-expert-banner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background: #090b0e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 3.5rem;
}

.pkg-expert-copy {
  padding: 3rem 3.2rem;
  display: flex;
  flex-direction: column;
}

.pkg-expert-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: 2.2rem;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.pkg-expert-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2rem;
  max-width: 48ch;
}

.pkg-expert-btns {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.pkg-or-lbl {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
}

.pkg-expert-graphic {
  position: relative;
  overflow: hidden;
}

.pkg-expert-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pkg-expert-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #090b0e 0%, rgba(9, 11, 14, 0.4) 50%, transparent 100%);
}

.pkg-expert-motto {
  position: absolute;
  top: 50%;
  left: 3rem;
  transform: translateY(-50%);
  z-index: 5;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* 3D Model Stage & Controls (AT THE TOP) */
.pkg-3d-stage-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.pkg-3d-container {
  position: relative;
  width: 100%;
  height: 500px;
  min-height: 420px;
  border-radius: 12px;
  overflow: hidden;
  background: radial-gradient(circle at 65% 35%, rgba(32, 38, 52, 0.5) 0%, rgba(8, 10, 14, 0.96) 80%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.8), 0 16px 40px rgba(0, 0, 0, 0.5);
}

#packages-studio-canvas {
  width: 100%;
  height: 100%;
  display: block;
  cursor: grab;
  touch-action: none;
}

#packages-studio-canvas:active {
  cursor: grabbing;
}

.pkg-3d-loader {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 14, 0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  z-index: 15;
  color: #e5b95a;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  transition: opacity 0.4s ease;
}

.pkg-spinner {
  width: 34px;
  height: 34px;
  border: 2px solid rgba(229, 185, 90, 0.2);
  border-top-color: #e5b95a;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.pkg-hint-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 18, 24, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 10px;
  border-radius: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 5;
}

/* Floating Hotspot Callout Pins */
.pkg-hotspots-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}

.pkg-hotspot-pin {
  position: absolute;
  pointer-events: auto;
  background: rgba(12, 16, 22, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 11px;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translate(-50%, -50%);
}

.pkg-hotspot-pin:hover {
  background: rgba(229, 185, 90, 0.2);
  border-color: #e5b95a;
  color: #f5d78a;
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 16px rgba(229, 185, 90, 0.4);
}

.pin-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.65rem;
  line-height: 1;
}

.pkg-hotspot-pin:hover .pin-plus {
  background: #e5b95a;
  color: #0b0c0f;
}

/* Hotspot coordinates matched with SLS sports car layout */
.pin-roof        { top: 25%; left: 75%; }
.pin-windscreen  { top: 36%; left: 78%; }
.pin-bonnet      { top: 48%; left: 79%; }
.pin-bumper      { top: 60%; left: 74%; }
.pin-mirror      { top: 40%; left: 56%; }
.pin-side-left   { top: 55%; left: 58%; }
.pin-side-right  { top: 62%; left: 88%; }

/* Controls Toolbar inside 3D Model Studio (Overlaid at bottom) */
.pkg-controls-bar {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  gap: 1rem;
  background: rgba(11, 14, 20, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
}

.pkg-360-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.pkg-360-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  color: #ffffff;
}

.pkg-360-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.6);
}

.pkg-angle-group {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.pkg-angle-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  border-radius: 6px;
  background: rgba(18, 22, 29, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 68px;
}

.pkg-angle-pill:hover {
  background: rgba(28, 33, 44, 0.95);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.pkg-angle-pill.active {
  border: 1px solid #e5b95a;
  background: rgba(25, 29, 39, 0.98);
  color: #e5b95a;
  box-shadow: 0 0 14px rgba(229, 185, 90, 0.25);
}

.angle-thumb {
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.angle-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.pkg-fs-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(18, 22, 29, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pkg-fs-btn:hover {
  border-color: #e5b95a;
  color: #e5b95a;
  background: rgba(30, 35, 48, 0.95);
}

/* Bottom Feature Strip (4 Trust Pillars + Watermark - HORIZONTAL SINGLE ROW) */
.pkg-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2vw, 2.5rem);
  flex-wrap: nowrap;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2.5rem;
  margin-top: 3.5rem;
}

.pkg-trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  white-space: nowrap;
}

.pkg-trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(229, 168, 105, 0.35);
  background: radial-gradient(circle, rgba(229, 168, 105, 0.1) 0%, rgba(15, 18, 24, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.pkg-trust-info h4 {
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #ffffff;
  margin: 0 0 0.15rem;
  text-transform: uppercase;
}

.pkg-trust-info p {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.pkg-brand-watermark {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  padding-left: 1rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.watermark-cursive {
  font-family: 'Caveat', cursive, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transform: rotate(-3deg);
  display: inline-block;
}

.watermark-tagline {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-top: 0.2rem;
  white-space: nowrap;
}

/* Responsive Handling for Tablet and Mobile Screen */
@media (max-width: 1100px) {
  .pkg-hero-split-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .pkg-cards-vertical-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pkg-expert-banner {
    grid-template-columns: 1fr;
  }
  .pkg-expert-graphic {
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .pkg-showcase-section {
    padding: 3.5rem 0 2.5rem;
  }
  .pkg-container-wide {
    padding: 0 1rem;
  }
  .pkg-cards-vertical-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .pkg-expert-copy {
    padding: 2rem 1.5rem;
  }
  .pkg-expert-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .pkg-expert-btns .btn-gold-capsule,
  .pkg-expert-btns .btn-glass-capsule {
    width: 100%;
    justify-content: center;
  }
  .pkg-or-lbl {
    text-align: center;
  }
  .pkg-bottom-bar {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .pkg-brand-watermark {
    align-items: center;
    text-align: center;
    padding-left: 0;
  }
}
  .pkg-3d-stage-wrapper {
    margin-bottom: 1.25rem;
  }
  .pkg-3d-container {
    height: 360px;
    min-height: 300px;
  }
  .pkg-hotspot-pin {
    padding: 3px 8px;
    font-size: 0.58rem;
  }
  .pin-plus {
    width: 11px;
    height: 11px;
    font-size: 0.55rem;
  }
  .pkg-controls-bar {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.4rem;
    padding: 6px 8px;
  }
  .pkg-360-badge {
    display: none;
  }
  .pkg-angle-group {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.35rem;
    overflow-x: auto;
    max-width: 100%;
    padding-bottom: 0;
  }
  .pkg-angle-pill {
    padding: 0.3rem 0.5rem;
    min-width: 52px;
  }
  .angle-text {
    font-size: 0.55rem;
  }
  .pkg-fs-btn {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
  }
  .pkg-bottom-bar {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-top: 2rem;
  }
  .pkg-brand-watermark {
    grid-column: span 1;
    align-items: center;
    text-align: center;
  }
}

/* =====================================================================
   PROCESS MASTER SECTION - ULTRA-LUXURY HUD SHOWCASE (MATCHING IMAGE 2)
   ===================================================================== */
.proc-master-section {
  padding-block: 0;
  position: relative;
  overflow: hidden;
  background: #060709;
}

.proc-master-container {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  padding-inline: 0;
}

.proc-master-frame {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  border: none;
  background: #060709;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}

/* Background Backdrop Asset */
.proc-master-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.proc-master-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  opacity: 1;
  filter: brightness(1.02) contrast(1.05);
}

.proc-backdrop-vignette {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, #060709 0%, rgba(6, 7, 9, 0.95) 30%, rgba(6, 7, 9, 0.6) 48%, rgba(6, 7, 9, 0.1) 70%, rgba(6, 7, 9, 0.5) 100%),
    linear-gradient(180deg, rgba(6, 7, 9, 0.65) 0%, transparent 25%, transparent 75%, #060709 100%);
  pointer-events: none;
}

.proc-backdrop-radial-glow {
  position: absolute;
  top: 10%;
  left: 42%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(229, 168, 105, 0.22) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(50px);
}

/* Upper Split Layout */
.proc-master-hero-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: clamp(3rem, 5.5vw, 4.8rem) clamp(1.5rem, 4vw, 3.5rem) 2.5rem;
}

/* Left Column Content */
.proc-master-copy {
  display: flex;
  flex-direction: column;
}

.proc-master-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.proc-master-desc {
  font-size: clamp(0.92rem, 1.15vw, 1.08rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  max-width: 52ch;
  margin-bottom: 2rem;
}

.proc-hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.proc-hero-cta-row .btn-gold-capsule,
.proc-hero-cta-row .btn-glass-capsule {
  white-space: nowrap !important;
  flex-shrink: 0;
}

.btn-glass-capsule {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.btn-glass-capsule:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-play-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

/* 4 Feature Badges Row */
.proc-feature-pills-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
}

.proc-feature-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.proc-pill-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.proc-pill-text {
  display: flex;
  flex-direction: column;
}

.proc-pill-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.1;
}

.proc-pill-sub {
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

/* Right Column HUD Callout Pointer Badges */
.proc-master-hud {
  position: relative;
  min-height: 380px;
}

.proc-hud-pointer {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.proc-hud-node {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  flex-shrink: 0;
}

.proc-hud-line {
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(255, 255, 255, 0.2));
  flex-shrink: 0;
}

.proc-hud-tag {
  display: flex;
  flex-direction: column;
  background: rgba(10, 13, 18, 0.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 5px 12px;
  border-radius: 4px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

.tag-title {
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #ffffff;
}

.tag-sub {
  font-family: var(--mono);
  font-size: 0.54rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-top: 1px;
}

.callout-ppf { top: 10%; right: 34%; }
.callout-ceramic { top: 32%; right: 8%; }
.callout-wrap { bottom: 18%; right: 8%; }

/* Middle 6-Stage Process Strip */
.proc-strip-wrapper {
  position: relative;
  z-index: 5;
  background: rgba(8, 10, 14, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding: 1.5rem 1.8rem;
}

.proc-cards-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.proc-strip-card {
  display: flex;
  flex-direction: column;
  position: relative;
}

.proc-strip-head {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

.proc-strip-num {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
}

.proc-strip-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
}

.proc-strip-desc {
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
  min-height: 56px;
}

.proc-strip-img-box {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #050608;
}

.proc-strip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: saturate(0.95);
}

.proc-strip-card:hover .proc-strip-img {
  transform: scale(1.08);
  filter: saturate(1.1);
}

.proc-strip-arrow {
  position: absolute;
  top: 50%;
  right: -13px;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}

.proc-strip-arrow span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(18, 22, 29, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

/* Bottom Bar with Angled Cutout Polygon matching Image 2 */
.proc-master-bottom-bar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #040507;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  overflow: hidden;
}

.proc-master-metrics {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.2rem);
  padding: 1.1rem 2.2rem;
  flex-wrap: nowrap;
}

.proc-m-cell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}

.proc-m-icon {
  width: auto;
  height: auto;
  background: transparent;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.proc-m-info {
  display: flex;
  flex-direction: column;
}

.proc-m-val {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.84rem;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}

.proc-m-lbl {
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Angled Polygon Cutout Container matching Image 2 */
.proc-master-polygon-cta {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding: 1.1rem 2.5rem 1.1rem 3.8rem;
  background: #090b0e;
  clip-path: polygon(35px 0, 100% 0, 100% 100%, 0 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.proc-poly-motto {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  white-space: nowrap;
}

/* Responsive handling */
@media (max-width: 1200px) {
  .proc-master-hero-grid {
    grid-template-columns: 1fr;
  }
  .proc-master-hud {
    display: none;
  }
  .proc-feature-pills-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .proc-cards-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .proc-strip-arrow { display: none; }
}

@media (max-width: 768px) {
  .proc-master-polygon-cta {
    clip-path: none;
    padding: 1.2rem;
    width: 100%;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .proc-master-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .proc-cards-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
  }
  .proc-strip-card {
    flex: 0 0 250px;
    scroll-snap-align: start;
  }
}

/* =====================================================================
   PROCESS IN MOTION - CINEMATIC VIDEO SHOWCASE (MATCHING IMAGE 2 1:1)
   ===================================================================== */
.proc-video-showcase-section {
  position: relative;
  background: #060709;
  padding: 5rem 0 0;
  color: #ffffff;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.proc-v-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.proc-v-top-tag {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.proc-v-rule {
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
}

.proc-v-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 4.5rem;
}

.proc-v-copy {
  display: flex;
  flex-direction: column;
}

.proc-v-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 1.2rem;
}

.proc-v-desc {
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
  margin: 0 0 2.2rem;
  max-width: 48ch;
}

.proc-v-pillars-row {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-bottom: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.6rem;
}

.proc-v-pillar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.pillar-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(229, 168, 105, 0.1);
  border: 1px solid rgba(229, 168, 105, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-text {
  display: flex;
  flex-direction: column;
}

.p-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-transform: uppercase;
}

.p-sub {
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 1px;
}

.proc-v-cta-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.dark-play {
  background: #080a0e !important;
  color: var(--gold) !important;
}

.proc-v-brand-muted {
  display: flex;
  flex-direction: column;
  opacity: 0.35;
}

.b-main {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.16em;
  color: #ffffff;
}

.b-sub {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  color: #ffffff;
}

/* Widescreen Video Player Frame */
.proc-v-player-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #040507;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75);
}

.proc-v-player-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.proc-v-player-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.proc-v-overlay-top {
  position: absolute;
  top: 1rem;
  left: 1.2rem;
  right: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 5;
  pointer-events: none;
}

.player-brand {
  display: flex;
  flex-direction: column;
}

.pb-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.pb-sub {
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.28em;
  color: var(--gold);
}

.player-tag {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.8);
  text-align: right;
}

.proc-v-center-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 8;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.play-btn-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(8, 10, 14, 0.75);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(229, 168, 105, 0.3);
  padding-left: 3px;
}

.proc-v-overlay-tag-bottom {
  position: absolute;
  bottom: 4rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 5;
  pointer-events: none;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.t-main {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.9);
}

.t-sub {
  font-family: var(--mono);
  font-size: 0.54rem;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-top: 1px;
}

/* Controls Bar at bottom of video */
.proc-v-controls-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1.2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(6, 7, 9, 0.92) 100%);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  z-index: 10;
}

.v-time-code {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.v-scrubber {
  flex-grow: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  position: relative;
  cursor: pointer;
}

.v-progress-bar {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
}

.v-handle {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 8px var(--gold);
  transform: translate(-50%, -50%);
}

.v-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.v-icon-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: color 0.2s ease;
}

.v-icon-btn:hover {
  color: var(--gold);
}

/* Bottom Bar (Angled Polygon Cutout matching Image 2) */
.proc-v-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #040507;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  overflow: hidden;
}

.proc-v-pillars-left {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.2rem);
  padding: 1.2rem 2.2rem;
  flex-wrap: nowrap;
}

.proc-v-cell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}

.proc-v-icon {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.proc-v-info {
  display: flex;
  flex-direction: column;
}

.proc-v-val {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.84rem;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}

.proc-v-lbl {
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  margin-top: 2px;
}

.proc-v-polygon-banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 3rem 1rem 4rem;
  background: #080a0f;
  clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 480px;
}

.poly-text {
  display: flex;
  flex-direction: column;
  z-index: 5;
}

.poly-car-graphic {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 260px;
  overflow: hidden;
  pointer-events: none;
}

.poly-car-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.7;
}

.poly-car-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #080a0f 0%, transparent 60%, rgba(8, 10, 15, 0.5) 100%);
}

/* ==========================================
   RECENT WORK SHOWCASE SECTION (IMAGE 2 1:1)
   ========================================== */
.rec-work-showcase-section {
  position: relative;
  background: #06080b;
  padding: 2rem 0 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.rec-work-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.8rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  padding: 1.5rem 2.2rem;
  background: linear-gradient(135deg, rgba(12, 15, 23, 0.92) 0%, rgba(6, 8, 12, 0.98) 100%);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 14px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.rec-work-header-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 65%;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.rec-header-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right 35%;
  opacity: 0.75;
  filter: contrast(1.25) brightness(0.95) saturate(1.1);
  mix-blend-mode: luminosity;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.rec-work-header:hover .rec-header-bg-img {
  transform: scale(1.04);
}

.rec-header-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #06080b 0%, rgba(6, 8, 11, 0.88) 42%, rgba(6, 8, 11, 0.15) 100%);
}

.rec-header-glow-spot {
  position: absolute;
  top: -40%;
  right: 5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(60px);
}

.rec-header-grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.rec-work-header-left {
  max-width: 540px;
  z-index: 2;
}

.rec-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.28rem 0.75rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 30px;
  backdrop-filter: blur(8px);
}

.gold-pulse-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffd700;
  box-shadow: 0 0 6px #ffd700;
  animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 6px #ffd700; }
  50% { transform: scale(1.3); opacity: 0.7; box-shadow: 0 0 14px #ffd700; }
}

.rec-eyebrow-text {
  color: #d4af37;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
}

.rec-work-display-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.title-silver {
  background: linear-gradient(180deg, #ffffff 0%, #d0d5dd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-gradient-text {
  background: linear-gradient(135deg, #fff5d6 0%, #ffd700 30%, #d4af37 65%, #a67c1e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.45));
  font-weight: 900;
}

.rec-work-lede {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.45;
}

.rec-work-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.2rem;
  z-index: 2;
}

.rec-work-subhead-wrap {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.rec-subhead-line {
  width: 2px;
  height: 38px;
  background: linear-gradient(180deg, transparent, #ffd700, transparent);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
  transform: rotate(32deg);
}

.rec-work-subhead {
  text-align: left;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.5;
}

.subhead-mono-highlight {
  color: #ffd700;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.subhead-mono {
  color: rgba(255, 255, 255, 0.55);
}

.rec-work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}

.rec-filter-pill {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  background: rgba(10, 13, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  backdrop-filter: blur(10px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffd700;
  box-shadow: 0 0 6px #ffd700;
}

.rec-filter-pill:hover {
  border-color: rgba(212, 175, 55, 0.8);
  color: #ffffff;
  background: rgba(212, 175, 55, 0.12);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.25);
  transform: translateY(-2px);
}

.rec-filter-pill.active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(5, 7, 12, 0.95) 100%);
  border-color: #ffd700;
  color: #ffd700;
  font-weight: 700;
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.35), inset 0 0 12px rgba(212, 175, 55, 0.15);
}

/* Cards Grid */
.rec-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

@media (max-width: 640px) {
  .rec-work-grid {
    grid-template-columns: 1fr;
  }
  .rec-work-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.8rem 2rem;
  }
  .rec-work-header-right {
    align-items: flex-start;
  }
  .rec-work-subhead {
    text-align: left;
  }
  .rec-work-filters {
    justify-content: flex-start;
  }
}

/* Card Item */
.rec-work-card {
  background: rgba(12, 14, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.rec-work-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.1);
}

.rec-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9.5;
  overflow: hidden;
  background: #000;
}

.rec-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.rec-work-card:hover .rec-card-img {
  transform: scale(1.08);
}

.rec-card-top-meta {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  right: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}

.rec-card-num {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  padding: 0.18rem 0.55rem;
  border-radius: 4px;
}

.rec-card-badge {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.6rem;
  border-radius: 10px;
  text-transform: uppercase;
}

.rec-card-content {
  padding: 1.1rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: linear-gradient(180deg, rgba(12,14,20,0.95) 0%, rgba(8,10,14,1) 100%);
}

.rec-card-mono-cat {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  color: #d4af37;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  display: block;
}

.rec-card-title {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.22;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

.rec-card-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.rec-card-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.rec-card-link {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: #d4af37;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.3s ease, gap 0.3s ease;
}

.rec-card-link .arr {
  transition: transform 0.3s ease;
}

.rec-work-card:hover .rec-card-link {
  color: #ffffff;
}

.rec-work-card:hover .rec-card-link .arr {
  transform: translateX(4px);
}

.rec-card-circle-node {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.6);
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  transition: all 0.3s ease;
}

.rec-work-card:hover .rec-card-circle-node {
  background: #d4af37;
  color: #000000;
  border-color: #d4af37;
  transform: rotate(45deg);
}

/* Bottom Metrics & Polygon Banner Bar (Image 3 1:1) */
.rec-work-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #06080b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  position: relative;
}

.rec-metrics-wrap {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-grow: 1;
  padding: 1.1rem 1.6rem;
  gap: 1.2rem;
}

.rec-metric-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rec-metric-icon-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  flex-shrink: 0;
}

.metric-v-divider {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.rec-metric-text {
  display: flex;
  flex-direction: column;
}

.rec-metric-val {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.95rem;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}

.rec-metric-lbl {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  margin-top: 3px;
}

/* Right Side Polygon Cutout Banner */
.rec-polygon-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem 1.2rem 4rem;
  background: #080a0f;
  clip-path: polygon(45px 0, 100% 0, 100% 100%, 0 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 520px;
}

.rec-poly-content {
  display: flex;
  flex-direction: column;
  z-index: 5;
  gap: 0.2rem;
}

.rec-poly-tag-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.gold-dash-short {
  color: #d4af37;
  font-weight: bold;
}

.watermark-cursive-gold {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 600;
  background: linear-gradient(135deg, #fff3cd 0%, #e6c666 40%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.watermark-tagline-mono {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: #d4af37;
  text-transform: uppercase;
  font-weight: 600;
  margin-left: 1.6rem;
}

.rec-poly-car-graphic {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 260px;
  overflow: hidden;
  pointer-events: none;
}

.rec-poly-car-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.65;
  filter: contrast(1.15) brightness(0.9);
}

.rec-poly-car-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #080a0f 0%, transparent 65%, rgba(8, 10, 15, 0.4) 100%);
}

@media (max-width: 1024px) {
  .rec-work-bottom-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .rec-metrics-wrap {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .metric-v-divider {
    display: none;
  }
  .rec-polygon-banner {
    min-width: 100%;
    clip-path: none;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* ==========================================
   REVIEWS SHOWCASE SECTION (IMAGE 2 1:1)
   ========================================== */
.rev-showcase-section {
  position: relative;
  background: #06080b;
  padding: 4rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  isolation: isolate;
}

.rev-header-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.rev-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right 30%;
  opacity: 0.55;
  filter: contrast(1.2) brightness(0.85);
  mix-blend-mode: luminosity;
}

.rev-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #06080b 0%, rgba(6, 8, 11, 0.85) 40%, rgba(6, 8, 11, 0.2) 100%);
}

.rev-bg-glow-spot {
  position: absolute;
  top: -30%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(50px);
}

.rev-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.rev-head-left {
  max-width: 460px;
}

.rev-eyebrow {
  color: #d4af37 !important;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.rev-display-title {
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #ffffff;
}

.rev-head-mid {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  max-width: 400px;
}

.rev-v-divider {
  width: 2px;
  height: 52px;
  background: linear-gradient(180deg, transparent, #ffd700, transparent);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  flex-shrink: 0;
}

.rev-lede {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.rev-head-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 0.8rem;
}

.rev-right-subhead {
  display: flex;
  flex-direction: column;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  line-height: 1.5;
}

.rev-gold-underline {
  width: 40px;
  height: 2px;
  background: #d4af37;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

/* Reviews Cards Grid */
.rev-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .rev-cards-grid {
    grid-template-columns: 1fr;
  }
  .rev-section-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .rev-head-right {
    align-items: flex-start;
    text-align: left;
  }
}

/* Review Card */
.rev-card {
  position: relative;
  background: linear-gradient(180deg, rgba(14, 17, 24, 0.95) 0%, rgba(8, 10, 15, 0.98) 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 12px;
  padding: 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.rev-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 175, 55, 0.12);
}

.rev-card-bg-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 120px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
  mask-image: linear-gradient(to bottom left, black 0%, transparent 80%);
  -webkit-mask-image: linear-gradient(to bottom left, black 0%, transparent 80%);
}

.rev-card-accent-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: contrast(1.2) brightness(0.85);
  mix-blend-mode: luminosity;
}

.rev-card-top-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.rev-card-index-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.rev-card-num {
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 700;
  color: #d4af37;
}

.rev-card-line {
  width: 30px;
  height: 1px;
  background: rgba(212, 175, 55, 0.4);
}

.rev-card-tag {
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

.rev-card-stars {
  color: #ffd700;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.4));
}

.rev-card-body {
  position: relative;
  margin-bottom: 1.6rem;
  flex-grow: 1;
}

.rev-quote-mark {
  font-family: var(--display);
  font-size: 2.2rem;
  line-height: 0;
  color: rgba(212, 175, 55, 0.35);
  display: inline-block;
  vertical-align: sub;
  margin-right: 0.2rem;
}

.rev-quote-mark.end {
  margin-left: 0.2rem;
  margin-right: 0;
}

.rev-quote-text {
  display: inline;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.rev-card-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.1rem;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rev-author-name {
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.rev-author-sub {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  margin-top: 2px;
}

.rev-card-arrow-node {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.6);
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.rev-card:hover .rev-card-arrow-node {
  background: #d4af37;
  border-color: #d4af37;
  transform: rotate(45deg);
}

.rev-card:hover .rev-card-arrow-node svg path {
  stroke: #000000;
}

/* ==========================================
   FAQ SHOWCASE SECTION (IMAGE 2 1:1)
   ========================================== */
.faq-showcase-section {
  position: relative;
  z-index: 10;
  background: #06080b !important;
  padding: 4.5rem 0 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  isolation: isolate;
}

.faq-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 55%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  background: #06080b;
}

.faq-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left 40%;
  opacity: 0.45;
  filter: contrast(1.2) brightness(0.85);
}

.faq-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 8, 11, 0.5) 0%, rgba(6, 8, 11, 0.95) 70%, #06080b 100%);
}

.faq-bg-glow-spot {
  position: absolute;
  bottom: -20%;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(60px);
}

.faq-top-brand {
  position: absolute;
  top: 2rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  pointer-events: none;
  z-index: 5;
}

.faq-brand-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

.faq-brand-sub {
  font-size: 0.58rem;
  color: #d4af37;
  margin-top: 2px;
}

.faq-split-wrap {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 3.5rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .faq-split-wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.faq-left-col {
  display: flex;
  flex-direction: column;
}

.faq-eyebrow {
  color: #d4af37 !important;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.faq-display-title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1rem;
}

.faq-lede {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* CTA Buttons Row */
.faq-cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.faq-btn-gold {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.8rem 1.6rem;
  background: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
  color: #000000;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
  transition: all 0.3s ease;
}

.faq-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, #fff3cd 0%, #ffd700 100%);
}

.faq-btn-gold .arr {
  transition: transform 0.3s ease;
}

.faq-btn-gold:hover .arr {
  transform: translateX(4px);
}

.faq-btn-outline {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.8rem 1.5rem;
  background: rgba(10, 13, 18, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.faq-btn-outline:hover {
  border-color: #d4af37;
  color: #d4af37;
  transform: translateY(-2px);
}

.faq-btn-outline .arr {
  transition: transform 0.3s ease;
}

.faq-btn-outline:hover .arr {
  transform: translateX(4px);
}

/* Micro-Metrics Row */
.faq-micro-metrics {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.faq-micro-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.faq-micro-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-micro-text {
  display: flex;
  flex-direction: column;
}

.faq-micro-title {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.1;
}

.faq-micro-sub {
  font-family: var(--mono);
  font-size: 0.56rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.1em;
  margin-top: 2px;
}

/* Bottom Watermark */
.faq-bottom-watermark {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  margin-top: auto;
  line-height: 1.6;
}

.faq-wm-line {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

/* Right Column: Accordion Cards Stack */
.faq-right-col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-acc-card {
  background: rgba(10, 13, 18, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1.2rem 1.5rem;
}

.faq-acc-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(12, 16, 24, 0.85);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.faq-acc-card.open {
  background: linear-gradient(180deg, rgba(12, 16, 24, 0.95) 0%, rgba(8, 10, 15, 0.98) 100%);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 175, 55, 0.1);
  padding: 1.6rem 1.8rem;
}

.faq-acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  cursor: pointer;
}

.faq-acc-num-box {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: #d4af37;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 8px;
  padding: 0.25rem 0.6rem;
  background: rgba(212, 175, 55, 0.08);
  flex-shrink: 0;
}

.faq-acc-card.open .faq-acc-num-box {
  background: #d4af37;
  color: #000000;
  border-color: #d4af37;
}

.faq-acc-title {
  font-family: var(--mono);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-transform: uppercase;
  flex-grow: 1;
}

.faq-acc-toggle-node {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-acc-card.open .faq-acc-toggle-node {
  border-color: #d4af37;
  color: #d4af37;
  background: rgba(212, 175, 55, 0.1);
}

.faq-acc-body {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-acc-card:not(.open) .faq-acc-body {
  display: none;
}

.faq-acc-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.6rem;
}

/* 4 Sub-features Row */
.faq-features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: rgba(5, 7, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
}

@media (max-width: 768px) {
  .faq-features-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.faq-feature-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.faq-feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  flex-shrink: 0;
}

.faq-feature-info {
  display: flex;
  flex-direction: column;
}

.faq-feature-val {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.1;
}

.faq-feature-lbl {
  font-family: var(--mono);
  font-size: 0.54rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  margin-top: 2px;
}

/* ==========================================
   CONSULTATION CTA & FOOTER V2 (IMAGE 2 1:1)
   ========================================== */

/* ── CTA Consultation Section ── */
.cta-consultation-section {
  position: relative;
  z-index: 10;
  background: #06080b !important;
  padding: 5.5rem 0 4.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  isolation: isolate;
}

.cta-header-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 58%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  background: #06080b;
}

.cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.55;
  filter: contrast(1.2) brightness(0.85);
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(6, 8, 11, 0.2) 0%, rgba(6, 8, 11, 0.95) 75%, #06080b 100%);
}

.cta-bg-glow {
  position: absolute;
  top: 10%;
  right: 25%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(70px);
}

/* Wall Watermark on top right */
.cta-wall-watermark {
  position: absolute;
  top: 3.5rem;
  right: 22%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  pointer-events: none;
  z-index: 3;
  opacity: 0.45;
  transform: perspective(500px) rotateY(-10deg);
}

.wall-brand-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.6);
  letter-spacing: 0.3em;
}

.wall-brand-sub {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
  letter-spacing: 0.25em;
}

/* Far Right Vertical Slogan */
.cta-slogan-vertical {
  position: absolute;
  top: 4rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  pointer-events: none;
  z-index: 3;
}

.slogan-dash {
  display: block;
  width: 24px;
  height: 2px;
  background: #d4af37;
  margin-top: 8px;
}

/* Split Wrap */
.cta-split-wrap {
  position: relative;
  z-index: 5;
  max-width: 1280px;
  margin: 0 auto;
}

.cta-left-content {
  max-width: 620px;
}

.cta-eyebrow {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: #d4af37;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.gold-line-dash {
  display: inline-block;
  width: 16px;
  height: 2px;
  background: #d4af37;
}

.cta-display-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.gold-gradient-text {
  background: linear-gradient(135deg, #fff2c6 0%, #d4af37 60%, #aa8222 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-lede {
  font-size: 0.94rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 2rem;
  max-width: 520px;
}

/* CTA Action Buttons Row */
.cta-btn-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.8rem;
  flex-wrap: wrap;
}

.cta-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #e6c55d 0%, #d4af37 60%, #b89228 100%);
  color: #0b0c0f;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
  color: #000000;
}

.cta-btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.85rem 1.6rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-btn-glass:hover {
  border-color: #d4af37;
  color: #d4af37;
  background: rgba(212, 175, 55, 0.08);
}

/* Trust Badges Row */
.cta-trust-badges {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.cta-badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cta-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-badge-text {
  display: flex;
  flex-direction: column;
}

.cta-badge-title {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.cta-badge-sub {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.48);
}

/* ── Site Footer V2 (Image 2 1:1 Target Design) ── */
.site-footer-v2 {
  position: relative;
  z-index: 10;
  background: #040507 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4.5rem 0 0;
  isolation: isolate;
}

.foot-grid-v2 {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.3fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
}

@media (max-width: 1100px) {
  .foot-grid-v2 {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .foot-grid-v2 {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
}

/* Brand Column */
.foot-brand-box {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  text-decoration: none;
}

.foot-brand-logo {
  width: 38px;
  height: 38px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 900;
  color: #d4af37;
}

.foot-brand-txt {
  display: flex;
  flex-direction: column;
}

.foot-brand-name {
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #ffffff;
}

.foot-brand-sub {
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  color: #d4af37;
  text-transform: uppercase;
}

.foot-desc {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.5rem;
  max-width: 28ch;
}

.foot-socials-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.social-icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon-btn:hover {
  border-color: #d4af37;
  color: #d4af37;
  background: rgba(212, 175, 55, 0.1);
}

/* Nav Link Columns */
.foot-head-title {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.4rem;
}

.foot-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.foot-nav-links a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: all 0.3s ease;
}

.foot-nav-links a:hover {
  color: #d4af37;
  transform: translateX(3px);
}

/* HQ Column */
.foot-hq-details {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.foot-hq-address {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}

.foot-hq-contact-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #ffffff;
  font-weight: 600;
}

.foot-hq-contact-line a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.foot-hq-contact-line a:hover {
  color: #d4af37;
}

.foot-hq-hours {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  margin-top: 0.4rem;
}

/* Studio Visit Card (Far Right Column) */
.foot-studio-card {
  position: relative;
  background: linear-gradient(145deg, rgba(20, 24, 32, 0.8) 0%, rgba(10, 12, 16, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.4rem;
  overflow: hidden;
}

.foot-studio-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.studio-card-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.studio-card-sub {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.2rem;
}

.studio-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.studio-card-btn:hover {
  border-color: #d4af37;
  color: #d4af37;
  background: rgba(212, 175, 55, 0.1);
}

/* Bottom Bar */
.foot-bar-v2 {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.6rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.foot-legal-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.foot-legal-links a {
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  transition: color 0.3s ease;
}

.foot-legal-links a:hover {
  color: #d4af37;
}

.foot-tagline-accent {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.35);
}

.tagline-dash {
  width: 14px;
  height: 2px;
  background: #d4af37;
}

/* ==========================================
   SERVICE.PHP LUXURY SHOWCASE & RESPONSIVE STYLES
   ========================================== */

/* Hero Section */
.service-hero-section {
  position: relative;
  z-index: 10;
  background: #06080b !important;
  padding: 8rem 0 5rem;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.service-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: #06080b;
}

.service-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.4;
  filter: contrast(1.2) brightness(0.8);
}

.service-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(6, 8, 11, 0.4) 0%, rgba(6, 8, 11, 0.95) 75%, #06080b 100%);
}

.service-bg-glow {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  filter: blur(80px);
}

.service-hero-wrap {
  position: relative;
  z-index: 5;
}

.service-crumbs {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
}

.service-crumbs a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-crumbs a:hover {
  color: #d4af37;
}

.crumb-arrow {
  color: #d4af37;
}

.crumb-current {
  color: #ffffff;
  font-weight: 700;
}

.service-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #d4af37;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4af37;
  box-shadow: 0 0 8px #d4af37;
}

.service-display-title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.service-lede {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  max-width: 680px;
  margin-bottom: 2.2rem;
}

.service-cta-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.service-spec-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  background: rgba(10, 12, 16, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), inset 0 1px 0 rgba(212,175,55,0.12);
}

.spec-strip-item {
  display: flex;
  flex-direction: column;
  padding: 1.4rem 1.8rem;
  position: relative;
  transition: background 0.3s ease;
}

.spec-strip-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 0;
  width: 1px;
  height: 60%;
  background: rgba(212, 175, 55, 0.2);
}

.spec-strip-item:hover {
  background: rgba(212, 175, 55, 0.05);
}

.spec-strip-lbl {
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  color: rgba(212, 175, 55, 0.65);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.spec-strip-val {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.spec-strip-val.gold {
  background: linear-gradient(135deg, #f5d78a 0%, #d4af37 60%, #aa8222 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.1rem;
}

/* Main Split Content Section */
.service-main-section {
  position: relative;
  z-index: 10;
  background: #06080b !important;
  padding: 5.5rem 0;
  /* Gold top glow line */
  border-top: 1px solid transparent;
  background-image: linear-gradient(#06080b, #06080b), linear-gradient(90deg, transparent 0%, rgba(212,175,55,0.4) 50%, transparent 100%) !important;
  background-clip: padding-box, border-box !important;
  background-origin: padding-box, border-box !important;
}

.service-grid-split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.svc-block {
  margin-bottom: 2.5rem;
}

.svc-eyebrow {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  color: #d4af37;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.svc-section-title {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  position: relative;
  display: inline-block;
}

.svc-section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #aa8222);
  margin-top: 0.6rem;
  border-radius: 2px;
}

.svc-lead-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 1rem;
}

.svc-desc-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.svc-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.svc-feature-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.3rem;
  background: linear-gradient(135deg, rgba(16, 20, 26, 0.9) 0%, rgba(10, 12, 17, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 3px solid rgba(212, 175, 55, 0.5);
  border-radius: 0 10px 10px 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.svc-feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.svc-feature-card:hover {
  border-left-color: #d4af37;
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
  transform: translateX(3px);
}

.svc-feature-card:hover::before {
  opacity: 1;
}

.svc-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0.08) 100%);
  border: 1px solid rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(212,175,55,0.15);
}

.svc-feature-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.01em;
}

/* Sidebar Cards */
.service-aside-col {
  position: sticky;
  top: 6rem;
}

.svc-side-card {
  background: linear-gradient(145deg, rgba(18, 22, 30, 0.95) 0%, rgba(10, 12, 16, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
}

.svc-side-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.6), transparent);
}

.svc-side-card.gold-border {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.1), inset 0 0 30px rgba(212,175,55,0.03);
  background: linear-gradient(145deg, rgba(20, 25, 32, 0.98) 0%, rgba(12, 14, 18, 0.99) 100%);
}

.svc-side-card.gold-border::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.svc-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}

.svc-card-tag {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

.svc-card-mark {
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 900;
  color: #d4af37;
}

.svc-price-box {
  display: flex;
  flex-direction: column;
  padding-bottom: 1.2rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.svc-price-amount {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #f5d78a 0%, #d4af37 55%, #aa8222 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: -0.02em;
}

.svc-price-sub {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.48);
  margin-top: 6px;
}

.svc-spec-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}

.svc-spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.svc-spec-row:last-child {
  border-bottom: none;
}

.svc-spec-dt {
  color: rgba(255, 255, 255, 0.5);
}

.svc-spec-dd {
  color: #d4af37;
  font-weight: 800;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.cta-btn-gold.full-width {
  width: 100%;
  justify-content: center;
}

.svc-card-addr {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.svc-card-hours {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.svc-card-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #d4af37;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}

/* FAQ & Related Section */
.service-faq-section {
  position: relative;
  z-index: 10;
  background: #06080b !important;
  padding: 5rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  /* Gold glow at top */
  box-shadow: inset 0 1px 0 rgba(212,175,55,0.1);
}

.service-related-section {
  position: relative;
  z-index: 10;
  background: linear-gradient(180deg, #06080b 0%, #080b10 100%) !important;
  padding: 5rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.svc-faq-list {
  max-width: 900px;
}

.svc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.svc-gallery-card {
  position: relative;
  background: linear-gradient(145deg, rgba(14, 17, 23, 0.95) 0%, rgba(8, 10, 14, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.svc-gallery-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.svc-gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212,175,55,0.08);
}

.svc-gallery-card:hover::before {
  opacity: 1;
}

.svc-gallery-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #000;
}

.svc-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.svc-gallery-card:hover .svc-gallery-img {
  transform: scale(1.06);
}

.svc-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 8, 11, 0.85) 100%);
}

.svc-gallery-info {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
}

.svc-gallery-cat {
  font-family: var(--mono);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #d4af37;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.svc-gallery-title {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.svc-gallery-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  transition: all 0.3s ease;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  width: fit-content;
}

.svc-gallery-card:hover .svc-gallery-link {
  color: #d4af37;
  border-color: rgba(212,175,55,0.4);
  background: rgba(212,175,55,0.06);
}

/* ==========================================
   GLOBAL HOMEPAGE & ALL PAGES RESPONSIVE FIXES
   ========================================== */

@media (max-width: 1024px) {
  .service-grid-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .service-aside-col {
    position: static;
  }

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

@media (max-width: 768px) {
  .service-hero-section {
    padding: 6.5rem 0 3.5rem;
  }

  .service-spec-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    padding: 1.2rem;
  }

  .svc-features-grid {
    grid-template-columns: 1fr;
  }

  .svc-gallery-grid {
    grid-template-columns: 1fr;
  }

  /* Homepage & General Sections Responsive Adjustments */
  .hero-inner {
    padding-top: 1rem;
  }

  .cta-split-wrap {
    padding: 0 1rem;
  }

  .cta-wall-watermark,
  .cta-slogan-vertical {
    display: none !important;
  }

  .cta-header-bg {
    width: 100%;
    opacity: 0.25;
  }

  .faq-split-wrap {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }

  .faq-header-bg {
    width: 100% !important;
    opacity: 0.2 !important;
  }

  .faq-top-brand {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .service-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .service-cta-row .cta-btn-gold,
  .service-cta-row .cta-btn-glass {
    width: 100%;
    justify-content: center;
  }

  .service-spec-strip {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   SERVICES LISTING PAGE — GOLD LUXURY THEME
   ========================================== */

/* ── Hero Section ── */
.svcs-hero-section {
  position: relative;
  z-index: 10;
  background: #06080b !important;
  padding: 8.5rem 0 5rem;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.svcs-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: #06080b;
}

.svcs-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.35;
  filter: contrast(1.25) brightness(0.75) saturate(0.8);
}

.svcs-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(6, 8, 11, 0.2) 0%, rgba(6, 8, 11, 0.92) 70%),
    linear-gradient(90deg, #06080b 0%, rgba(6, 8, 11, 0.7) 50%, rgba(6, 8, 11, 0.4) 100%);
}

/* Animated floating gold particles */
.svcs-bg-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
  animation: svcs-float 8s ease-in-out infinite;
}

.svcs-bg-particle.p1 {
  width: 400px; height: 400px;
  bottom: -100px; left: 5%;
  background: radial-gradient(circle, rgba(212,175,55,0.18) 0%, transparent 70%);
  animation-delay: 0s;
}

.svcs-bg-particle.p2 {
  width: 300px; height: 300px;
  top: 10%; right: 15%;
  background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
  animation-delay: 3s;
}

.svcs-bg-particle.p3 {
  width: 250px; height: 250px;
  top: 50%; right: 35%;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  animation-delay: 5s;
}

@keyframes svcs-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Corner stamp */
.svcs-hero-stamp {
  position: absolute;
  top: 3.5rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: var(--mono);
  text-transform: uppercase;
  pointer-events: none;
  z-index: 3;
  opacity: 0.4;
}

.stamp-line1 {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.35em;
  color: rgba(212, 175, 55, 0.8);
}

.stamp-line2 {
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 3px;
}

.svcs-hero-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
}

.svcs-display-title {
  font-family: var(--display);
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.svcs-gold-word {
  background: linear-gradient(135deg, #fff2c6 0%, #d4af37 45%, #aa8222 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.svcs-hero-lede {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin-bottom: 3rem;
}

/* Metrics Strip */
.svcs-hero-metrics {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 1.4rem 2rem;
  background: rgba(10, 12, 17, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  max-width: 640px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), inset 0 1px 0 rgba(212,175,55,0.1);
}

.svcs-metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
}

.svcs-metric-num {
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 900;
  background: linear-gradient(135deg, #f5d78a 0%, #d4af37 60%, #aa8222 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 4px;
}

.svcs-metric-plus, .svcs-metric-unit {
  font-size: 1rem;
}

.svcs-metric-lbl {
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

.svcs-metric-divider {
  width: 1px;
  height: 36px;
  background: rgba(212, 175, 55, 0.2);
  flex-shrink: 0;
  margin: 0 1.2rem;
}

/* ── Grid Section ── */
.svcs-grid-section {
  position: relative;
  z-index: 10;
  background: linear-gradient(180deg, #06080b 0%, #080b10 60%, #06080b 100%) !important;
  padding: 5rem 0 4rem;
  isolation: isolate;
}

.svcs-section-head {
  margin-bottom: 3rem;
}

.svcs-grid-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.svcs-grid-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #aa8222);
  margin-top: 0.6rem;
  border-radius: 2px;
}

/* Cards Grid */
.svcs-cards-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

/* ── Service Card ── */
.svcs-card {
  position: relative;
  background: linear-gradient(145deg, rgba(14, 17, 24, 0.95) 0%, rgba(9, 11, 16, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  cursor: pointer;
}

.svcs-card-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.4s ease;
}

.svcs-card--core .svcs-card-top-line {
  background: linear-gradient(90deg, transparent 0%, #d4af37 40%, #f5d78a 60%, transparent 100%);
}

.svcs-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 25px rgba(212,175,55,0.08);
  transform: translateY(-6px);
}

.svcs-card:not(.svcs-card--core):hover .svcs-card-top-line {
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent);
}

/* Index Row */
.svcs-card-index-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}

.svcs-card-num {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(212, 175, 55, 0.7);
}

.svcs-card-type-pill {
  font-family: var(--mono);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 30px;
}

.svcs-card-type-pill.core {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #d4af37;
}

.svcs-card-type-pill.addon {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
}

/* Icon */
.svcs-card-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(212,175,55,0.16) 0%, rgba(212,175,55,0.06) 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 0 16px rgba(212,175,55,0.12);
  transition: all 0.3s ease;
}

.svcs-card:hover .svcs-card-icon-wrap {
  background: linear-gradient(135deg, rgba(212,175,55,0.25) 0%, rgba(212,175,55,0.1) 100%);
  box-shadow: 0 0 24px rgba(212,175,55,0.2);
  transform: scale(1.05);
}

/* Card Text */
.svcs-card-title {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 0.8rem;
  line-height: 1.1;
}

.svcs-card--core .svcs-card-title {
  background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.92) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.svcs-card-summary {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

/* Divider */
.svcs-card-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(212,175,55,0.3) 0%, rgba(255,255,255,0.06) 100%);
  margin-bottom: 1.4rem;
}

/* Specs */
.svcs-card-specs {
  display: flex;
  gap: 0;
  margin-bottom: 1.6rem;
}

.svcs-spec-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.svcs-spec-col:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 0;
  width: 1px;
  height: 80%;
  background: rgba(255,255,255,0.07);
}

.svcs-spec-lbl {
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  color: rgba(212, 175, 55, 0.6);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.svcs-spec-val {
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.svcs-spec-val.gold {
  background: linear-gradient(135deg, #f5d78a 0%, #d4af37 60%, #aa8222 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1rem;
}

/* CTA Button */
.svcs-card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.svcs-card-cta:hover,
.svcs-card:hover .svcs-card-cta {
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.08);
  color: #d4af37;
}

.svcs-cta-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  color: #d4af37;
}

.svcs-card:hover .svcs-cta-arrow {
  transform: translateX(3px);
}

/* Core card background glow */
.svcs-card-glow {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(20px);
  z-index: 0;
}

.svcs-card--core {
  border-color: rgba(212, 175, 55, 0.25);
  background: linear-gradient(145deg, rgba(18, 22, 30, 0.98) 0%, rgba(11, 13, 18, 0.99) 100%);
}

/* ── Bottom CTA Strip ── */
.svcs-bottom-cta {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.svcs-bottom-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, rgba(14, 17, 24, 0.95) 0%, rgba(9, 11, 16, 0.98) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.svcs-bottom-cta-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, #f5d78a, #d4af37, transparent);
}

.svcs-bottom-cta-inner::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

.svcs-bottom-lbl {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.svcs-bottom-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.svcs-bottom-btns {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .svcs-cards-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .svcs-hero-section {
    padding: 7rem 0 4rem;
    min-height: auto;
  }

  .svcs-hero-metrics {
    flex-wrap: wrap;
    max-width: 100%;
    gap: 1rem;
    padding: 1.2rem;
  }

  .svcs-metric-divider {
    display: none;
  }

  .svcs-metric-item {
    flex: 0 0 calc(50% - 0.5rem);
  }

  .svcs-hero-stamp {
    display: none;
  }

  .svcs-cards-wrap {
    grid-template-columns: 1fr;
  }

  .svcs-bottom-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .svcs-bottom-btns {
    flex-direction: column;
    width: 100%;
  }

  .svcs-bottom-btns .cta-btn-gold,
  .svcs-bottom-btns .cta-btn-glass {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .svcs-metric-item {
    flex: 0 0 100%;
  }
}


/* ==========================================
   PACKAGES PAGE — GOLD LUXURY THEME
   ========================================== */

/* ── Hero Section ── */
.pkgs-hero-section {
  position: relative;
  z-index: 10;
  background: #06080b !important;
  padding: 8.5rem 0 5rem;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  min-height: 65vh;
  display: flex;
  align-items: center;
}

.pkgs-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: #06080b;
}

.pkgs-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.38;
  filter: contrast(1.3) brightness(0.7) saturate(0.75);
}

.pkgs-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(6,8,11,0.15) 0%, rgba(6,8,11,0.93) 65%),
    linear-gradient(90deg, #06080b 0%, rgba(6,8,11,0.65) 60%, rgba(6,8,11,0.3) 100%);
}

.pkgs-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.pkgs-bg-glow.g1 {
  width: 500px; height: 500px;
  bottom: -120px; left: 5%;
  background: radial-gradient(circle, rgba(212,175,55,0.16) 0%, transparent 70%);
}

.pkgs-bg-glow.g2 {
  width: 350px; height: 350px;
  top: 5%; right: 20%;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
}

.pkgs-hero-stamp {
  position: absolute;
  top: 3.5rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: var(--mono);
  text-transform: uppercase;
  pointer-events: none;
  z-index: 3;
  opacity: 0.35;
}

.pkgs-hero-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
}

.pkgs-display-title {
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.pkgs-hero-lede {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.68);
  max-width: 620px;
  margin-bottom: 2.5rem;
}

/* Trust bar */
.pkgs-trust-bar {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 1.2rem 1.8rem;
  background: rgba(10, 12, 17, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 10px;
  max-width: 780px;
  backdrop-filter: blur(10px);
}

.pkgs-trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
}

/* ── Grid Section ── */
.pkgs-grid-section {
  position: relative;
  z-index: 10;
  background: linear-gradient(180deg, #06080b 0%, #080b10 50%, #06080b 100%) !important;
  padding: 5rem 0 4rem;
  isolation: isolate;
}

.pkgs-section-head {
  margin-bottom: 3rem;
}

.pkgs-grid-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
}

.pkgs-grid-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #aa8222);
  margin-top: 0.6rem;
  border-radius: 2px;
}

/* Cards wrap — up to 3 columns */
.pkgs-cards-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  align-items: start;
}

/* ── Package Card ── */
.pkgs-card {
  position: relative;
  background: linear-gradient(145deg, rgba(14,17,24,0.96) 0%, rgba(9,11,16,0.98) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.pkgs-card:hover {
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 20px 55px rgba(0,0,0,0.65), 0 0 30px rgba(212,175,55,0.07);
  transform: translateY(-6px);
}

/* Top accent line */
.pkgs-card-topline {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,0.05);
  transition: background 0.4s ease;
}

.pkgs-card:hover .pkgs-card-topline {
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent);
}

/* Featured card override */
.pkgs-card--featured {
  border-color: rgba(212,175,55,0.35);
  background: linear-gradient(145deg, rgba(18,22,30,0.98) 0%, rgba(11,13,18,0.99) 100%);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 25px rgba(212,175,55,0.1);
}

.pkgs-card--featured .pkgs-card-topline {
  background: linear-gradient(90deg, transparent 0%, #d4af37 40%, #f5d78a 60%, transparent 100%);
}

/* Featured badge */
.pkgs-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.4);
  color: #d4af37;
  font-family: var(--mono);
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 30px;
  margin-bottom: 1.2rem;
  width: fit-content;
}

/* Card head */
.pkgs-card-head {
  margin-bottom: 1.6rem;
}

.pkgs-card-num {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(212,175,55,0.65);
  display: block;
  margin-bottom: 0.5rem;
}

.pkgs-card-name {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.pkgs-card--featured .pkgs-card-name {
  background: linear-gradient(135deg, #ffffff 0%, #f5d78a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pkgs-card-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* Price block */
.pkgs-price-block {
  display: flex;
  flex-direction: column;
  padding: 1.4rem 1.6rem;
  margin-bottom: 1.6rem;
  background: rgba(8,10,15,0.7);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.pkgs-price-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent);
}

.pkgs-price-from {
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  color: rgba(212,175,55,0.65);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.pkgs-price-amount {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #f5d78a 0%, #d4af37 55%, #aa8222 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.pkgs-price-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.42);
}

/* Spec grid */
.pkgs-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.6rem;
}

.pkgs-spec-cell {
  display: flex;
  flex-direction: column;
  padding: 0.9rem 1rem;
  background: rgba(10,12,17,0.9);
  transition: background 0.3s ease;
}

.pkgs-spec-cell:hover {
  background: rgba(212,175,55,0.06);
}

.pkgs-spec-lbl {
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  color: rgba(212,175,55,0.6);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.pkgs-spec-val {
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
}

/* Checklist */
.pkgs-list-block {
  margin-bottom: 1.4rem;
}

.pkgs-list-head {
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pkgs-list-dot {
  display: inline-block;
  width: 8px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
}

.pkgs-list-dot.gold {
  background: #d4af37;
}

.pkgs-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pkgs-checklist li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

.pkgs-check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* CTA */
.pkgs-card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: rgba(255,255,255,0.75);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: auto;
  transition: all 0.3s ease;
}

.pkgs-card-cta:hover {
  border-color: rgba(212,175,55,0.5);
  background: rgba(212,175,55,0.08);
  color: #d4af37;
}

.pkgs-cta--gold {
  background: linear-gradient(135deg, #e6c55d 0%, #d4af37 60%, #b89228 100%);
  border-color: transparent;
  color: #0b0c0f;
  box-shadow: 0 4px 20px rgba(212,175,55,0.3);
}

.pkgs-cta--gold:hover {
  background: linear-gradient(135deg, #f5d78a 0%, #e0b830 60%, #c49a1f 100%);
  border-color: transparent;
  color: #000000;
  box-shadow: 0 6px 28px rgba(212,175,55,0.45);
}

/* Featured card bottom glow */
.pkgs-card-glow {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(212,175,55,0.13) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(25px);
  z-index: 0;
}

/* ── Warranty Section ── */
.pkgs-warranty-section {
  position: relative;
  z-index: 10;
  background: #06080b !important;
  padding: 5.5rem 0;
  border-top: 1px solid rgba(212,175,55,0.2);
}

.pkgs-warranty-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}

.pkgs-warranty-title {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
  position: relative;
}

.pkgs-warranty-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #aa8222);
  margin-top: 0.6rem;
  border-radius: 2px;
}

.pkgs-warranty-desc {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 520px;
}

.pkgs-warranty-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.pkgs-warranty-col {
  background: rgba(12,14,20,0.8);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.4rem;
}

.pkgs-warranty-col-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.pkgs-warranty-col-head.covered {
  color: #d4af37;
}

.pkgs-warranty-col-head.not-covered {
  color: rgba(255,255,255,0.45);
}

.pkgs-warranty-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pkgs-warranty-list li {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.45;
  padding-left: 1rem;
  position: relative;
}

.pkgs-warranty-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(212,175,55,0.5);
  font-size: 0.7rem;
}

.pkgs-warranty-list.not li {
  color: rgba(255,255,255,0.45);
}

.pkgs-warranty-list.not li::before {
  color: rgba(255,255,255,0.2);
}

/* Right CTA Card */
.pkgs-warranty-cta-card {
  position: sticky;
  top: 6rem;
}

.pkgs-wcta-inner {
  background: linear-gradient(145deg, rgba(18,22,30,0.98) 0%, rgba(11,13,18,0.99) 100%);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 16px;
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 30px rgba(212,175,55,0.08);
}

.pkgs-wcta-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, #f5d78a, #d4af37, transparent);
}

.pkgs-wcta-inner::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

.pkgs-wcta-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  box-shadow: 0 0 20px rgba(212,175,55,0.15);
}

.pkgs-wcta-title {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.pkgs-wcta-desc {
  font-size: 0.87rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.6rem;
}

.pkgs-wcta-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.pkgs-wcta-wa {
  width: 100%;
  justify-content: center;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .pkgs-cards-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .pkgs-warranty-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pkgs-warranty-cta-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .pkgs-hero-section {
    padding: 7rem 0 4rem;
    min-height: auto;
  }

  .pkgs-hero-stamp {
    display: none;
  }

  .pkgs-trust-bar {
    gap: 1.2rem;
    padding: 1rem 1.2rem;
    max-width: 100%;
  }

  .pkgs-cards-wrap {
    grid-template-columns: 1fr;
  }

  .pkgs-warranty-split {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ==========================================
   GALLERY PAGE — GOLD LUXURY THEME
   ========================================== */

/* ── Hero ── */
.gal-hero-section {
  position: relative;
  z-index: 10;
  background: #06080b !important;
  padding: 8.5rem 0 5rem;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(212,175,55,0.2);
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.gal-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: #06080b;
}

.gal-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.32;
  filter: contrast(1.3) brightness(0.7) saturate(0.7);
}

.gal-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(6,8,11,0.1) 0%, rgba(6,8,11,0.94) 65%),
    linear-gradient(90deg, #06080b 0%, rgba(6,8,11,0.7) 55%, rgba(6,8,11,0.3) 100%);
}

.gal-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.gal-bg-glow.g1 {
  width: 500px; height: 500px;
  bottom: -100px; left: 3%;
  background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
}

.gal-bg-glow.g2 {
  width: 300px; height: 300px;
  top: 10%; right: 15%;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
}

.gal-hero-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
}

.gal-display-title {
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.gal-hero-lede {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.68;
  color: rgba(255,255,255,0.68);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* Stats strip */
.gal-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 1.2rem 2rem;
  background: rgba(10,12,17,0.8);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 10px;
  max-width: 500px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5), inset 0 1px 0 rgba(212,175,55,0.1);
}

.gal-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.gal-stat-num {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #f5d78a 0%, #d4af37 60%, #aa8222 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 4px;
}

.gal-stat-plus { font-size: 1.1rem; }

.gal-stat-lbl {
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}

.gal-stat-div {
  width: 1px;
  height: 32px;
  background: rgba(212,175,55,0.2);
  flex-shrink: 0;
  margin: 0 1.5rem;
}

/* ── Grid Section ── */
.gal-grid-section {
  position: relative;
  z-index: 10;
  background: linear-gradient(180deg, #06080b 0%, #080b10 50%, #06080b 100%) !important;
  padding: 4.5rem 0 5rem;
  isolation: isolate;
}

/* Filter Bar */
.gal-filters-wrap { margin-bottom: 1rem; }

.gal-filter-label {
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.25em;
  color: rgba(212,175,55,0.6);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.gal-filters {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.gal-filter-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.2rem;
  background: rgba(14,17,24,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: rgba(255,255,255,0.55);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}

.gal-filter-btn:hover {
  border-color: rgba(212,175,55,0.4);
  color: rgba(255,255,255,0.85);
  background: rgba(212,175,55,0.06);
}

.gal-filter-btn.active {
  background: linear-gradient(135deg, rgba(212,175,55,0.2) 0%, rgba(212,175,55,0.08) 100%);
  border-color: rgba(212,175,55,0.55);
  color: #d4af37;
  box-shadow: 0 2px 12px rgba(212,175,55,0.15);
}

/* Count bar */
.gal-count-bar {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.gal-count-num {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #f5d78a 0%, #d4af37 60%, #aa8222 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gal-count-lbl {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

/* ── Tile Grid ── */
.gal-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

/* ── Individual Tile ── */
.gal-tile {
  position: relative;
  background: linear-gradient(145deg, rgba(14,17,24,0.96) 0%, rgba(9,11,16,0.98) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.gal-tile:hover {
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 18px 50px rgba(0,0,0,0.6), 0 0 24px rgba(212,175,55,0.08);
  transform: translateY(-5px);
}

.gal-tile--featured {
  border-color: rgba(212,175,55,0.25);
  background: linear-gradient(145deg, rgba(18,22,30,0.98) 0%, rgba(11,13,18,0.99) 100%);
}

/* Featured top shimmer line */
.gal-tile-topline {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #d4af37 40%, #f5d78a 60%, transparent 100%);
  z-index: 3;
}

/* Media container */
.gal-tile-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0a0c10;
  flex-shrink: 0;
}

.gal-tile--featured .gal-tile-media {
  aspect-ratio: 16 / 9;
}

.gal-tile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.gal-tile:hover .gal-tile-img { transform: scale(1.06); }

.gal-tile-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,12,17,0.9);
}

/* Gradient overlay */
.gal-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,8,11,0) 30%, rgba(6,8,11,0.75) 100%);
  transition: opacity 0.4s ease;
}

.gal-tile:hover .gal-tile-overlay {
  background: linear-gradient(180deg, rgba(6,8,11,0.1) 30%, rgba(6,8,11,0.85) 100%);
}

/* Featured star badge */
.gal-tile-star {
  position: absolute;
  top: 0.8rem; right: 0.8rem;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(10,12,17,0.85);
  border: 1px solid rgba(212,175,55,0.5);
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
}

/* Hover CTA arrow */
.gal-tile-cta {
  position: absolute;
  bottom: 0.9rem; right: 0.9rem;
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  background: rgba(10,12,17,0.9);
  border: 1px solid rgba(212,175,55,0.45);
  border-radius: 5px;
  font-family: var(--mono);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #d4af37;
  text-transform: uppercase;
  z-index: 3;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.gal-tile:hover .gal-tile-cta {
  opacity: 1;
  transform: translateY(0);
}

/* Card info body */
.gal-tile-body {
  padding: 1.2rem 1.4rem 1.4rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.gal-tile-body-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}

.gal-tile-cat {
  font-family: var(--mono);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #d4af37;
  text-transform: uppercase;
}

.gal-tile-featured-pill {
  font-family: var(--mono);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.35);
  color: #d4af37;
  border-radius: 3px;
}

.gal-tile-title {
  font-family: var(--display);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.gal-tile-sub {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.42);
  text-transform: uppercase;
}

/* Empty state */
.gal-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 6rem 2rem;
  text-align: center;
  background: rgba(12,14,20,0.7);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 16px;
}

.gal-empty-icon {
  width: 72px; height: 72px;
  border-radius: 16px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.25);
  display: flex; align-items: center; justify-content: center;
}

.gal-empty-title {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
}

.gal-empty-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
}

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

@media (max-width: 768px) {
  .gal-hero-section { padding: 7rem 0 4rem; min-height: auto; }
  .gal-hero-stats { max-width: 100%; padding: 1rem 1.2rem; }
  .gal-stat-div { margin: 0 1rem; }
  .gal-filter-btn { padding: 0.5rem 0.9rem; font-size: 0.58rem; }
  .gal-tiles { grid-template-columns: 1fr; }
  .gal-tile--featured .gal-tile-media { aspect-ratio: 4 / 3; }
}

/* ==========================================
   ABOUT PAGE — GOLD LUXURY THEME
   ========================================== */

/* ── Hero ── */
.about-hero-section {
  position: relative;
  z-index: 10;
  background: #06080b !important;
  padding: 8.5rem 0 5.5rem;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(212,175,55,0.2);
  min-height: 65vh;
  display: flex;
  align-items: center;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: #06080b;
}

.about-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0.30;
  filter: contrast(1.3) brightness(0.65) saturate(0.7);
}

.about-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(6,8,11,0.1) 0%, rgba(6,8,11,0.94) 65%),
    linear-gradient(90deg, #06080b 0%, rgba(6,8,11,0.7) 55%, rgba(6,8,11,0.3) 100%);
}

.about-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.about-bg-glow.g1 {
  width: 550px; height: 550px;
  bottom: -120px; left: 3%;
  background: radial-gradient(circle, rgba(212,175,55,0.14) 0%, transparent 70%);
}

.about-bg-glow.g2 {
  width: 320px; height: 320px;
  top: 8%; right: 12%;
  background: radial-gradient(circle, rgba(212,175,55,0.09) 0%, transparent 70%);
}

.about-hero-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
}

.about-display-title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.about-hero-lede {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.68);
  max-width: 580px;
  margin-bottom: 3rem;
}

/* Stat bar */
.about-stat-bar {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 1.4rem 2rem;
  background: rgba(10,12,17,0.82);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 12px;
  max-width: 700px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), inset 0 1px 0 rgba(212,175,55,0.1);
}

.about-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-stat-num {
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 900;
  background: linear-gradient(135deg, #f5d78a 0%, #d4af37 60%, #aa8222 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 4px;
}

.about-stat-pct { font-size: 1.2rem; }

.about-stat-lbl {
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}

.about-stat-div {
  width: 1px;
  height: 38px;
  background: rgba(212,175,55,0.2);
  flex-shrink: 0;
  margin: 0 1.5rem;
}

/* ── Story Section ── */
.about-story-section {
  position: relative;
  z-index: 10;
  background: linear-gradient(180deg, #06080b 0%, #080b10 50%, #06080b 100%) !important;
  padding: 6rem 0;
  isolation: isolate;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4.5rem;
  align-items: start;
}

.about-section-title {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: inline-block;
  position: relative;
}

.about-section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #aa8222);
  margin-top: 0.6rem;
  border-radius: 2px;
}

.about-story-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.about-story-body p,
.about-cms-content p {
  font-size: 0.96rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
}

.about-story-highlight {
  font-size: 1.05rem !important;
  font-weight: 600;
  color: rgba(255,255,255,0.88) !important;
  border-left: 3px solid #d4af37;
  padding-left: 1.2rem;
  margin-top: 0.5rem;
}

/* Timeline */
.about-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-tl-item {
  display: grid;
  grid-template-columns: 52px 24px 1fr;
  gap: 0.5rem;
  align-items: start;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.about-tl-item:last-child { border-bottom: none; }

.about-tl-year {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #d4af37;
  padding-top: 2px;
}

.about-tl-line {
  width: 1px;
  height: 100%;
  min-height: 20px;
  background: rgba(212,175,55,0.3);
  margin: 2px auto;
  position: relative;
}

.about-tl-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d4af37;
  box-shadow: 0 0 8px rgba(212,175,55,0.5);
}

.about-tl-text {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  padding-top: 1px;
}

/* Metric cards */
.about-metrics-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: sticky;
  top: 6rem;
}

.about-metric-card {
  background: linear-gradient(145deg, rgba(14,17,24,0.96) 0%, rgba(9,11,16,0.98) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.about-metric-card:hover {
  border-color: rgba(212,175,55,0.35);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 15px rgba(212,175,55,0.07);
}

.about-metric-card--gold {
  border-color: rgba(212,175,55,0.3);
  background: linear-gradient(145deg, rgba(18,22,30,0.98) 0%, rgba(11,13,18,0.99) 100%);
}

.about-metric-card--gold::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, #f5d78a, #d4af37, transparent);
}

.about-metric-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 0 14px rgba(212,175,55,0.12);
}

.about-metric-label {
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  color: rgba(212,175,55,0.65);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.about-metric-big {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about-metric-big.gold-grad-text {
  background: linear-gradient(135deg, #f5d78a 0%, #d4af37 55%, #aa8222 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-metric-sub {
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.5);
  margin-top: auto;
}

/* ── Three Rules Section ── */
.about-rules-section {
  position: relative;
  z-index: 10;
  background: #06080b !important;
  padding: 6rem 0;
  border-top: 1px solid rgba(212,175,55,0.2);
}

.about-rules-head {
  margin-bottom: 3.5rem;
}

.about-rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.about-rule-card {
  position: relative;
  background: linear-gradient(145deg, rgba(14,17,24,0.96) 0%, rgba(9,11,16,0.98) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.about-rule-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,0.05);
  transition: background 0.4s ease;
}

.about-rule-card:hover {
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 16px 45px rgba(0,0,0,0.5), 0 0 20px rgba(212,175,55,0.07);
  transform: translateY(-5px);
}

.about-rule-card:hover::before {
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent);
}

.about-rule-num {
  font-family: var(--mono);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(212,175,55,0.08);
  line-height: 1;
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  letter-spacing: -0.04em;
  pointer-events: none;
  transition: color 0.3s ease;
}

.about-rule-card:hover .about-rule-num {
  color: rgba(212,175,55,0.14);
}

.about-rule-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(212,175,55,0.16) 0%, rgba(212,175,55,0.06) 100%);
  border: 1px solid rgba(212,175,55,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 18px rgba(212,175,55,0.12);
  transition: all 0.3s ease;
}

.about-rule-card:hover .about-rule-icon {
  box-shadow: 0 0 28px rgba(212,175,55,0.22);
  transform: scale(1.05);
}

.about-rule-title {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
}

.about-rule-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.62);
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.about-rule-footer {
  margin-top: auto;
}

.about-rule-tag {
  font-family: var(--mono);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(212,175,55,0.65);
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 4px;
}

/* ── Studio CTA Section ── */
.about-cta-section {
  position: relative;
  z-index: 10;
  background: linear-gradient(180deg, #06080b 0%, #080b10 100%) !important;
  padding: 6rem 0;
  border-top: 1px solid rgba(212,175,55,0.2);
}

.about-cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-cta-desc {
  font-size: 0.96rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.62);
  max-width: 500px;
  margin-bottom: 2rem;
}

.about-cta-btns {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Studio info card */
.about-studio-card {
  position: sticky;
  top: 6rem;
}

.about-studio-card-inner {
  background: linear-gradient(145deg, rgba(18,22,30,0.98) 0%, rgba(11,13,18,0.99) 100%);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 25px rgba(212,175,55,0.08);
}

.about-studio-card-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, #f5d78a, #d4af37, transparent);
}

.about-studio-card-inner::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.about-studio-lbl {
  font-family: var(--mono);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(212,175,55,0.7);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.about-studio-addr {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin-bottom: 1.4rem;
}

.about-studio-hours {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
  padding: 1rem;
  background: rgba(8,10,14,0.8);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
}

.about-hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

.about-hours-day {
  color: rgba(255,255,255,0.45);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-hours-time {
  color: #ffffff;
  font-weight: 700;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.about-studio-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #d4af37;
  font-family: var(--mono);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.about-studio-phone:hover { opacity: 0.8; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-metrics-right {
    position: static;
  }

  .about-cta-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-studio-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .about-hero-section { padding: 7rem 0 4rem; min-height: auto; }

  .about-stat-bar {
    flex-wrap: wrap;
    max-width: 100%;
    gap: 1rem;
    padding: 1.2rem;
  }

  .about-stat-div { display: none; }

  .about-stat {
    flex: 0 0 calc(50% - 0.5rem);
  }

  .about-metrics-right {
    grid-template-columns: 1fr 1fr;
  }

  .about-rules-grid {
    grid-template-columns: 1fr;
  }

  .about-cta-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .about-cta-btns .cta-btn-gold,
  .about-cta-btns .cta-btn-glass {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-stat { flex: 0 0 100%; }
  .about-metrics-right { grid-template-columns: 1fr; }
}

/* ==========================================
   REVIEWS PAGE — GOLD LUXURY THEME
   ========================================== */

/* ── Hero ── */
.rev-hero-section {
  position: relative;
  z-index: 10;
  background: #06080b !important;
  padding: 8.5rem 0 5.5rem;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(212,175,55,0.2);
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.rev-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: #06080b;
}

.rev-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  opacity: 0.28;
  filter: contrast(1.3) brightness(0.65) saturate(0.7);
}

.rev-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(6,8,11,0.05) 0%, rgba(6,8,11,0.94) 65%),
    linear-gradient(90deg, #06080b 0%, rgba(6,8,11,0.7) 55%, rgba(6,8,11,0.3) 100%);
}

.rev-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(65px);
  pointer-events: none;
}

.rev-bg-glow.g1 {
  width: 520px; height: 520px;
  bottom: -120px; left: 4%;
  background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
}

.rev-bg-glow.g2 {
  width: 300px; height: 300px;
  top: 8%; right: 12%;
  background: radial-gradient(circle, rgba(212,175,55,0.09) 0%, transparent 70%);
}

.rev-hero-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
}

.rev-display-title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.rev-hero-lede {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.68;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin-bottom: 3rem;
}

/* Rating strip */
.rev-rating-strip {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 1.4rem 2rem;
  background: rgba(10,12,17,0.85);
  border: 1px solid rgba(212,175,55,0.28);
  border-radius: 12px;
  max-width: 700px;
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), inset 0 1px 0 rgba(212,175,55,0.12);
}

.rev-avg-block {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

.rev-avg-num {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #f5d78a 0%, #d4af37 55%, #aa8222 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.rev-avg-right {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rev-stars-row {
  display: flex;
  align-items: center;
  gap: 2px;
}

.rev-avg-label {
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

.rev-strip-div {
  width: 1px;
  height: 38px;
  background: rgba(212,175,55,0.2);
  flex-shrink: 0;
  margin: 0 1.5rem;
}

.rev-strip-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.rev-strip-num {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #f5d78a 0%, #d4af37 60%, #aa8222 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 4px;
}

.rev-strip-lbl {
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.42);
  text-transform: uppercase;
}

/* ── Grid Section ── */
.rev-grid-section {
  position: relative;
  z-index: 10;
  background: linear-gradient(180deg, #06080b 0%, #080b10 50%, #06080b 100%) !important;
  padding: 5.5rem 0;
  isolation: isolate;
}

.rev-section-head {
  margin-bottom: 3rem;
}

.rev-section-title {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  margin-bottom: 1rem;
}

.rev-section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #aa8222);
  margin-top: 0.6rem;
  border-radius: 2px;
}

/* Review cards grid */
.rev-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  align-items: start;
}

/* ── Review Card ── */
.rev-card {
  position: relative;
  background: linear-gradient(145deg, rgba(14,17,24,0.96) 0%, rgba(9,11,16,0.98) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  margin: 0;
}

.rev-card:hover {
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 16px 48px rgba(0,0,0,0.55), 0 0 22px rgba(212,175,55,0.07);
  transform: translateY(-5px);
}

.rev-card--featured {
  border-color: rgba(212,175,55,0.3);
  background: linear-gradient(145deg, rgba(18,22,30,0.98) 0%, rgba(11,13,18,0.99) 100%);
}

.rev-card-topline {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,0.05);
  transition: background 0.4s ease;
}

.rev-card--featured .rev-card-topline {
  background: linear-gradient(90deg, transparent 0%, #d4af37 40%, #f5d78a 60%, transparent 100%);
}

.rev-card:not(.rev-card--featured):hover .rev-card-topline {
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent);
}

/* Stars row */
.rev-card-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 1rem;
}

.rev-featured-tag {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.35);
  color: #d4af37;
  border-radius: 3px;
}

/* Large quote mark */
.rev-quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(212,175,55,0.2);
  margin-bottom: -0.5rem;
  margin-top: -0.5rem;
  transition: color 0.3s ease;
  pointer-events: none;
}

.rev-card:hover .rev-quote-mark {
  color: rgba(212,175,55,0.35);
}

/* Review body */
.rev-card-text {
  font-size: 0.9rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.75);
  flex-grow: 1;
  margin-bottom: 1.6rem;
}

/* Footer */
.rev-card-footer {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.rev-author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,175,55,0.25) 0%, rgba(212,175,55,0.1) 100%);
  border: 1px solid rgba(212,175,55,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 900;
  color: #d4af37;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(212,175,55,0.15);
}

.rev-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.rev-author-name {
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rev-author-vehicle {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.42);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Verified badge */
.rev-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--mono);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(212,175,55,0.6);
  text-transform: uppercase;
  margin-top: 0.8rem;
}

/* Empty state */
.rev-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 5rem 2rem;
  text-align: center;
  background: rgba(12,14,20,0.7);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 16px;
}

.rev-empty-icon {
  width: 68px; height: 68px;
  border-radius: 16px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.25);
  display: flex; align-items: center; justify-content: center;
}

.rev-empty-title {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
}

.rev-empty-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
}

/* ── Form Section ── */
.rev-form-section {
  position: relative;
  z-index: 10;
  background: #06080b !important;
  padding: 6rem 0;
  border-top: 1px solid rgba(212,175,55,0.2);
}

.rev-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4.5rem;
  align-items: start;
}

.rev-form-intro {
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
}

/* Tips block */
.rev-tips {
  padding: 1.4rem 1.6rem;
  background: rgba(10,12,17,0.8);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 12px;
}

.rev-tips-head {
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(212,175,55,0.7);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.rev-tips-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.rev-tips-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.72);
}

.rev-tip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4af37;
  box-shadow: 0 0 6px rgba(212,175,55,0.5);
  flex-shrink: 0;
}

/* Form card */
.rev-form-card {
  background: linear-gradient(145deg, rgba(14,17,24,0.97) 0%, rgba(9,11,16,0.99) 100%);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 16px;
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 25px rgba(212,175,55,0.07);
}

.rev-form-card-topline {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, #f5d78a, #d4af37, transparent);
}

/* Form elements */
.rev-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.rev-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.rev-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.rev-label {
  font-family: var(--mono);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(212,175,55,0.7);
  text-transform: uppercase;
}

.rev-req { color: #d4af37; }

.rev-input {
  background: rgba(8,10,15,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: #ffffff;
  font-size: 0.9rem;
  font-family: var(--body);
  transition: all 0.25s ease;
  outline: none;
  width: 100%;
}

.rev-input::placeholder { color: rgba(255,255,255,0.28); }

.rev-input:focus {
  border-color: rgba(212,175,55,0.5);
  background: rgba(12,15,22,0.95);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

.rev-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

/* Custom select */
.rev-select-wrap {
  position: relative;
}

.rev-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
}

.rev-select-arrow {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.rev-select option {
  background: #0e1018;
  color: #ffffff;
}

/* Submit btn */
.rev-submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.4rem;
}

.rev-disclaimer {
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 0.5rem;
}

/* Error notice */
.rev-error-notice {
  padding: 0.85rem 1.1rem;
  background: rgba(255, 80, 70, 0.08);
  border: 1px solid rgba(255, 80, 70, 0.35);
  border-radius: 8px;
  font-size: 0.86rem;
  color: #ff6b5a;
  margin-bottom: 0.5rem;
}

/* Success state */
.rev-success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(145deg, rgba(14,17,24,0.97) 0%, rgba(9,11,16,0.99) 100%);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 16px;
}

.rev-success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.4);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 24px rgba(212,175,55,0.2);
}

.rev-success-title {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
}

.rev-success-sub {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  max-width: 380px;
}

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

  .rev-form-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .rev-hero-section { padding: 7rem 0 4rem; min-height: auto; }

  .rev-rating-strip {
    flex-wrap: wrap;
    max-width: 100%;
    padding: 1.2rem;
    gap: 1rem;
  }

  .rev-strip-div { display: none; }

  .rev-avg-block { flex: 0 0 100%; }

  .rev-strip-stat {
    flex: 0 0 calc(33% - 0.5rem);
  }

  .rev-cards-grid { grid-template-columns: 1fr; }

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

/* ==========================================
   FAQ PAGE — GOLD LUXURY THEME
   ========================================== */

/* ── Hero ── */
.faq-pg-hero {
  position: relative;
  z-index: 10;
  background: #06080b !important;
  padding: 8.5rem 0 5.5rem;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(212,175,55,0.2);
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.faq-pg-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: #06080b;
}

.faq-pg-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.28;
  filter: contrast(1.3) brightness(0.65) saturate(0.7);
}

.faq-pg-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(6,8,11,0.1) 0%, rgba(6,8,11,0.94) 65%),
    linear-gradient(90deg, #06080b 0%, rgba(6,8,11,0.7) 55%, rgba(6,8,11,0.3) 100%);
}

.faq-pg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(65px);
  pointer-events: none;
}

.faq-pg-glow.g1 {
  width: 500px; height: 500px;
  bottom: -100px; left: 4%;
  background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
}

.faq-pg-glow.g2 {
  width: 280px; height: 280px;
  top: 10%; right: 10%;
  background: radial-gradient(circle, rgba(212,175,55,0.09) 0%, transparent 70%);
}

.faq-pg-hero-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
}

.faq-pg-display-title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.faq-pg-hero-lede {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.68;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin-bottom: 2.5rem;
}

/* Quick nav pills */
.faq-pg-nav-pills {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.faq-pg-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: rgba(14,17,24,0.85);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 30px;
  color: rgba(255,255,255,0.55);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.faq-pg-pill:hover,
.faq-pg-pill.active {
  border-color: rgba(212,175,55,0.5);
  color: #d4af37;
  background: rgba(212,175,55,0.08);
}

/* ── Body Section ── */
.faq-pg-body-section {
  position: relative;
  z-index: 10;
  background: linear-gradient(180deg, #06080b 0%, #080b10 50%, #06080b 100%) !important;
  padding: 5.5rem 0;
}

.faq-pg-body-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  align-items: start;
}

/* ── Sidebar ── */
.faq-pg-sidebar {
  position: sticky;
  top: 6rem;
}

.faq-pg-sidebar-inner {
  background: linear-gradient(145deg, rgba(14,17,24,0.97) 0%, rgba(9,11,16,0.99) 100%);
  border: 1px solid rgba(212,175,55,0.28);
  border-radius: 14px;
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
}

.faq-pg-sidebar-topline {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, #f5d78a, #d4af37, transparent);
}

.faq-pg-sidebar-head {
  font-family: var(--mono);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(212,175,55,0.7);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

/* Sidebar nav */
.faq-pg-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.faq-pg-sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.faq-pg-sidebar-link:hover,
.faq-pg-sidebar-link.active {
  background: rgba(212,175,55,0.08);
  border-color: rgba(212,175,55,0.25);
  color: rgba(255,255,255,0.9);
}

.faq-pg-sidebar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(212,175,55,0.3);
  flex-shrink: 0;
  transition: background 0.25s ease;
}

.faq-pg-sidebar-link.active .faq-pg-sidebar-dot,
.faq-pg-sidebar-link:hover .faq-pg-sidebar-dot {
  background: #d4af37;
  box-shadow: 0 0 6px rgba(212,175,55,0.5);
}

.faq-pg-sidebar-count {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 700;
  color: rgba(212,175,55,0.5);
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 4px;
  padding: 0.1rem 0.4rem;
}

/* Sidebar CTA */
.faq-pg-sidebar-cta {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.faq-pg-sidebar-cta-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.2rem;
}

.faq-pg-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #e6c55d 0%, #d4af37 60%, #b89228 100%);
  border-radius: 8px;
  color: #0b0c0f;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(212,175,55,0.3);
}

.faq-pg-wa-btn:hover {
  background: linear-gradient(135deg, #f5d78a 0%, #e0b830 60%, #c49a1f 100%);
  box-shadow: 0 6px 22px rgba(212,175,55,0.45);
}

.faq-pg-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: rgba(255,255,255,0.65);
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
}

.faq-pg-contact-btn:hover {
  border-color: rgba(212,175,55,0.4);
  color: #d4af37;
  background: rgba(212,175,55,0.06);
}

/* ── Content Area ── */
.faq-pg-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* Group */
.faq-pg-group {
  scroll-margin-top: 6rem;
}

.faq-pg-group-head {
  margin-bottom: 2rem;
}

.faq-pg-group-title {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
}

.faq-pg-group-title::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #aa8222);
  margin-top: 0.5rem;
  border-radius: 2px;
}

/* Accordion */
.faq-pg-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 14px;
  overflow: hidden;
}

/* Item */
.faq-pg-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(145deg, rgba(12,15,22,0.95) 0%, rgba(8,10,15,0.98) 100%);
  transition: background 0.3s ease;
}

.faq-pg-item:last-child { border-bottom: none; }

.faq-pg-item.open {
  background: linear-gradient(145deg, rgba(16,20,28,0.98) 0%, rgba(10,12,18,0.99) 100%);
}

/* Question button */
.faq-pg-q {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.4rem 1.6rem;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: background 0.2s ease;
}

.faq-pg-q:hover {
  background: rgba(212,175,55,0.04);
}

.faq-pg-item.open .faq-pg-q {
  background: rgba(212,175,55,0.04);
  border-bottom: 1px solid rgba(212,175,55,0.12);
}

/* Number */
.faq-pg-q-num {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(212,175,55,0.55);
  flex-shrink: 0;
  width: 24px;
  transition: color 0.3s ease;
}

.faq-pg-item.open .faq-pg-q-num,
.faq-pg-item:hover .faq-pg-q-num {
  color: #d4af37;
}

/* Question text */
.faq-pg-q-text {
  flex: 1;
  font-family: var(--display);
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}

.faq-pg-item.open .faq-pg-q-text {
  color: #ffffff;
}

/* Toggle icon */
.faq-pg-toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #d4af37;
  transition: all 0.3s ease;
}

.faq-pg-item.open .faq-pg-toggle {
  background: rgba(212,175,55,0.18);
  border-color: rgba(212,175,55,0.55);
  box-shadow: 0 0 10px rgba(212,175,55,0.2);
}

.faq-pg-icon-plus { display: block; }
.faq-pg-icon-minus { display: none; }

.faq-pg-item.open .faq-pg-icon-plus { display: none; }
.faq-pg-item.open .faq-pg-icon-minus { display: block; }

/* Answer panel */
.faq-pg-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.faq-pg-item.open .faq-pg-a {
  max-height: 800px;
}

.faq-pg-a-inner {
  padding: 1.4rem 1.6rem 1.6rem calc(1.6rem + 24px + 1rem);
}

.faq-pg-a-inner p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.68);
}

/* Empty state */
.faq-pg-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 5rem 2rem;
  text-align: center;
  background: rgba(12,14,20,0.7);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 16px;
}

.faq-pg-empty-icon {
  width: 64px; height: 64px;
  border-radius: 14px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.25);
  display: flex; align-items: center; justify-content: center;
}

.faq-pg-empty-title {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
}

.faq-pg-empty-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
}

/* ── Bottom CTA Card ── */
.faq-pg-bottom-cta {
  margin-top: 1rem;
}

.faq-pg-bottom-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.2rem 2.5rem;
  background: linear-gradient(145deg, rgba(18,22,30,0.98) 0%, rgba(11,13,18,0.99) 100%);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.faq-pg-bottom-cta-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, #f5d78a, #d4af37, transparent);
}

.faq-pg-bottom-cta-inner::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
  filter: blur(25px);
  pointer-events: none;
}

.faq-pg-cta-title {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.faq-pg-cta-sub {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  max-width: 380px;
}

.faq-pg-cta-btns {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .faq-pg-body-wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-pg-sidebar {
    position: static;
    margin-bottom: 2.5rem;
  }

  .faq-pg-sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .faq-pg-sidebar-link {
    flex: 0 0 auto;
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .faq-pg-hero { padding: 7rem 0 4rem; min-height: auto; }

  .faq-pg-nav-pills { gap: 0.4rem; }

  .faq-pg-pill { font-size: 0.58rem; padding: 0.4rem 0.8rem; }

  .faq-pg-q { padding: 1.1rem 1.2rem; gap: 0.75rem; }

  .faq-pg-a-inner {
    padding: 1.2rem 1.2rem 1.4rem 1.2rem;
  }

  .faq-pg-bottom-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.8rem;
  }

  .faq-pg-cta-btns {
    flex-direction: column;
    width: 100%;
  }

  .faq-pg-cta-btns .cta-btn-gold,
  .faq-pg-cta-btns .cta-btn-glass {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================
   CONTACT PAGE — GOLD LUXURY THEME
   ========================================== */

/* ── Hero ── */
.cnt-hero {
  position: relative;
  padding: 8rem 0 4rem;
  background: #080808;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.4) 0%, #0c0c0c 100%),
    url('../images/process_master_bg.jpg');
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  overflow: hidden;
}

.cnt-hero-glow-1 {
  position: absolute;
  top: -100px;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cnt-hero-glow-2 {
  position: absolute;
  bottom: -50px;
  right: 15%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(226, 184, 87, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

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

.cnt-hero-crumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Mono', monospace, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.5rem;
}

.cnt-hero-crumbs a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.cnt-hero-crumbs a:hover {
  color: #e2b857;
}

.cnt-crumb-sep {
  color: rgba(212, 175, 55, 0.4);
}

.cnt-crumb-active {
  color: #e2b857;
}

.cnt-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.cnt-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4af37;
  box-shadow: 0 0 8px #d4af37;
}

.cnt-badge-text {
  font-family: 'Space Mono', monospace, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #e2b857;
}

.cnt-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.cnt-gold-gradient {
  background: linear-gradient(135deg, #fff 0%, #e2b857 50%, #9e7a2b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cnt-hero-sub {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  max-width: 680px;
  margin-bottom: 3rem;
}

/* Stats Strip */
.cnt-stats-strip {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: 1.2rem 2rem;
  background: rgba(15, 15, 15, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cnt-stat-box {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cnt-stat-val {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #fff, #e2b857);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cnt-stat-lbl {
  font-family: 'Space Mono', monospace, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.cnt-stat-sep {
  width: 1px;
  height: 30px;
  background: rgba(212, 175, 55, 0.2);
}

/* ── Main Section Layout ── */
.cnt-main-section {
  padding: 5rem 0;
  background: #080808;
}

.cnt-layout-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: start;
}

/* ── Form Card ── */
.cnt-form-card {
  position: relative;
  background: rgba(15, 15, 15, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 8px;
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.cnt-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, #f3e098, #d4af37, transparent);
}

.cnt-form-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cnt-form-subtitle {
  font-family: 'Space Mono', monospace, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #e2b857;
  display: block;
  margin-bottom: 0.4rem;
}

.cnt-form-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
}

/* Step Header */
.cnt-form-step-hdr {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.cnt-step-num {
  font-family: 'Space Mono', monospace, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #d4af37;
  padding: 0.2rem 0.5rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 3px;
}

.cnt-step-lbl {
  font-family: 'Space Mono', monospace, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}

/* Form Fields */
.cnt-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cnt-form-row {
  display: grid;
  gap: 1.2rem;
}

.cnt-form-row.two-col {
  grid-template-columns: 1fr 1fr;
}

.cnt-form-row.three-col {
  grid-template-columns: 1fr 1fr 1fr;
}

.cnt-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cnt-label {
  font-family: 'Space Mono', monospace, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.75);
}

.cnt-req {
  color: #d4af37;
}

.cnt-opt {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
}

.cnt-input,
.cnt-select,
.cnt-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 0.92rem;
  color: #ffffff;
  transition: all 0.3s ease;
  outline: none;
}

.cnt-input::placeholder,
.cnt-textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.cnt-input:focus,
.cnt-select:focus,
.cnt-textarea:focus {
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.03);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.2);
}

/* Custom Select Wrap */
.cnt-select-wrap {
  position: relative;
}

.cnt-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
}

.cnt-select option {
  background: #121212;
  color: #ffffff;
  padding: 0.5rem;
}

.cnt-select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #d4af37;
  pointer-events: none;
}

/* Custom Date Input */
.cnt-date-input::-webkit-calendar-picker-indicator {
  filter: invert(0.8) sepia(1) saturate(5) hue-rotate(5deg);
  cursor: pointer;
}

/* Custom File Upload Input */
.cnt-file-input-box {
  position: relative;
}

.cnt-file-hidden {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.cnt-file-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(212, 175, 55, 0.3);
  border-radius: 4px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.cnt-file-label:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: #d4af37;
  color: #ffffff;
}

.cnt-file-label svg {
  color: #d4af37;
  flex-shrink: 0;
}

/* Submit Button & Footer */
.cnt-form-footer {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cnt-submit-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.1rem 2rem;
  background: linear-gradient(135deg, #e2b857 0%, #b88a28 100%);
  border: none;
  border-radius: 4px;
  font-family: 'Space Mono', monospace, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.cnt-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.45);
  background: linear-gradient(135deg, #f3e098 0%, #c9982f 100%);
}

.cnt-privacy-note {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

.cnt-privacy-note a {
  color: #e2b857;
  text-decoration: underline;
}

/* Error Banner */
.cnt-err-banner {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  background: rgba(220, 53, 69, 0.12);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 4px;
  margin-bottom: 2.5rem;
  color: #ff6b6b;
  font-size: 0.88rem;
}

.cnt-err-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Success Card */
.cnt-success-card {
  background: rgba(15, 15, 15, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.cnt-success-icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e2b857;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.cnt-success-title {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cnt-success-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.cnt-success-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.cnt-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  background: linear-gradient(135deg, #e2b857, #b88a28);
  border-radius: 4px;
  font-family: 'Space Mono', monospace, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cnt-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.cnt-btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-family: 'Space Mono', monospace, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cnt-btn-glass:hover {
  border-color: #d4af37;
  color: #e2b857;
  background: rgba(212, 175, 55, 0.08);
}

/* ── Sidebar Column ── */
.cnt-sidebar-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Studio Info Card */
.cnt-info-card {
  background: rgba(15, 15, 15, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  padding: 2.2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.cnt-info-hdr {
  margin-bottom: 1.8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cnt-info-tag {
  font-family: 'Space Mono', monospace, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #e2b857;
  display: block;
  margin-bottom: 0.3rem;
}

.cnt-info-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
}

.cnt-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cnt-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.cnt-info-icon {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e2b857;
  flex-shrink: 0;
  margin-top: 2px;
}

.cnt-info-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cnt-info-lbl {
  font-family: 'Space Mono', monospace, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
}

.cnt-info-val {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.cnt-info-link {
  font-size: 0.92rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.cnt-info-link:hover {
  color: #e2b857;
}

.cnt-hours-grid {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.3rem;
}

.cnt-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.cnt-hours-gold {
  color: #e2b857;
  font-weight: 600;
}

.cnt-quick-actions {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cnt-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.2rem;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: 4px;
  font-family: 'Space Mono', monospace, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #25d366;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cnt-wa-btn:hover {
  background: rgba(37, 211, 102, 0.22);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

/* Map Card */
.cnt-map-card {
  background: rgba(15, 15, 15, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.cnt-map-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cnt-map-lbl {
  font-family: 'Space Mono', monospace, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}

.cnt-map-link {
  font-family: 'Space Mono', monospace, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #e2b857;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cnt-map-link:hover {
  color: #ffffff;
}

.cnt-map-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cnt-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(0.9) contrast(1.2);
  transition: filter 0.4s ease;
}

.cnt-map-wrapper:hover iframe {
  filter: grayscale(0.2) invert(0) contrast(1);
}

/* Hotline Card */
.cnt-hotline-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(15, 15, 15, 0.9) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 8px;
  padding: 1.8rem;
}

.cnt-hotline-badge {
  font-family: 'Space Mono', monospace, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #e2b857;
  margin-bottom: 0.5rem;
}

.cnt-hotline-txt {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.2rem;
}

.cnt-hotline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Space Mono', monospace, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cnt-hotline-link:hover {
  color: #e2b857;
}

/* ── Responsive Styling ── */
@media (max-width: 992px) {
  .cnt-layout-grid {
    grid-template-columns: 1fr;
  }

  .cnt-form-card {
    padding: 2rem 1.5rem;
  }

  .cnt-stats-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
  }

  .cnt-stat-sep {
    width: 100%;
    height: 1px;
  }
}

@media (max-width: 576px) {
  .cnt-form-row.two-col,
  .cnt-form-row.three-col {
    grid-template-columns: 1fr;
  }

  .cnt-hero-title {
    font-size: 2.2rem;
  }
}

/* ── Footer Logo Styling ── */
.foot-brand-logo-img {
  max-height: 85px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(212, 175, 55, 0.4));
  margin-bottom: 1.2rem;
  display: block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.foot-brand-box:hover .foot-brand-logo-img {
  transform: scale(1.05);
}

/* ==========================================
   IMAGE 2 REVIEWS SHOWCASE & BOTTOM BAR (1:1 TARGET DESIGN)
   ========================================== */

.rev-showcase-section {
  position: relative;
  background: #050608 !important;
  padding: 6.5rem 0 5rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

/* Studio ambient light & car headlight spot — ANCHORED ON FAR RIGHT ONLY */
.rev-header-bg {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  width: 50%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.rev-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.8;
  filter: contrast(1.3) brightness(0.9);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.4) 25%, rgba(0, 0, 0, 1) 75%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.4) 25%, rgba(0, 0, 0, 1) 75%);
}

.rev-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 35%, rgba(212, 175, 55, 0.25) 0%, transparent 65%),
              linear-gradient(180deg, #050608 0%, transparent 40%, #050608 100%);
  pointer-events: none;
}

.rev-bg-glow-spot {
  position: absolute;
  top: 5%;
  left: 2%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.rev-showcase-section .wrap {
  position: relative;
  z-index: 2;
}

/* Header row layout */
.rev-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.rev-head-left {
  flex: 1.4;
  min-width: 0;
}

.rev-display-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-transform: uppercase;
}

.rev-title-line {
  display: inline-block;
  white-space: nowrap;
}

.rev-head-mid {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.rev-v-divider {
  width: 2px;
  height: 48px;
  background: linear-gradient(180deg, #d4af37 0%, rgba(212, 175, 55, 0.2) 100%);
  flex-shrink: 0;
}

.rev-lede {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}

.rev-head-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  margin-top: 1.8rem;
}

.rev-right-subhead {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-family: 'Space Mono', monospace, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.45);
}

.rev-gold-underline {
  width: 32px;
  height: 2px;
  background: #d4af37;
  margin-top: 0.5rem;
}

/* 3 Cards Grid (Image 2 style) */
.rev-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.rev-card {
  position: relative;
  background: linear-gradient(145deg, rgba(14, 16, 22, 0.95) 0%, rgba(8, 10, 14, 0.98) 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 12px;
  padding: 2.2rem 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.rev-card:hover,
.rev-card--featured {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.12);
  transform: translateY(-4px);
}

.rev-card-bg-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 140px;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
  opacity: 0.25;
  mask-image: linear-gradient(220deg, black 20%, transparent 80%);
  -webkit-mask-image: linear-gradient(220deg, black 20%, transparent 80%);
}

.rev-card-accent-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.4) grayscale(0.5);
}

.rev-card-top-meta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.rev-card-index-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.rev-card-num {
  font-family: 'Space Mono', monospace, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #e2b857;
}

.rev-card-line {
  width: 25px;
  height: 1px;
  background: rgba(212, 175, 55, 0.4);
}

.rev-card-tag {
  font-family: 'Space Mono', monospace, sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(212, 175, 55, 0.85);
  text-transform: uppercase;
}

.rev-card-stars {
  position: relative;
  z-index: 2;
  color: #e2b857;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.2rem;
}

.rev-card-body {
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}

.rev-quote-mark {
  font-family: 'Syne', serif;
  font-size: 2.2rem;
  line-height: 1;
  color: rgba(212, 175, 55, 0.4);
  display: inline-block;
}

.rev-quote-mark.end {
  float: right;
  margin-top: -1.5rem;
}

.rev-quote-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin: 0.4rem 0;
}

.rev-card-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rev-author-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.03em;
  margin-bottom: 0.2rem;
}

.rev-author-sub {
  font-family: 'Space Mono', monospace, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #e2b857;
  text-transform: uppercase;
}

.rev-card-arrow-node {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e2b857;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.rev-card:hover .rev-card-arrow-node {
  background: #e2b857;
  color: #000000;
  border-color: #e2b857;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* Bottom Stats Bar (Image 2 Footer) */
.rev-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4rem;
  padding: 1.4rem 2.5rem;
  background: rgba(12, 14, 18, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.rev-bar-stat {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.rev-bar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rev-bar-txt {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.rev-bar-val {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.rev-bar-lbl {
  font-family: 'Space Mono', monospace, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

.rev-bar-sep {
  width: 1px;
  height: 32px;
  background: rgba(212, 175, 55, 0.2);
}

.rev-bar-slogan {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.rev-cursive {
  font-family: 'Caveat', cursive;
  font-size: 1.7rem;
  font-weight: 700;
  color: #e2b857;
  line-height: 1;
}

.rev-slogan-sub {
  font-family: 'Space Mono', monospace, sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.4);
}

/* Responsive Breakpoints */
@media (max-width: 1080px) {
  .rev-section-head {
    flex-direction: column;
    gap: 1.5rem;
  }

  .rev-head-right {
    align-items: flex-start;
    text-align: left;
    margin-top: 0;
  }

  .rev-cards-grid {
    grid-template-columns: 1fr;
  }

  .rev-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.8rem;
  }

  .rev-bar-sep {
    width: 100%;
    height: 1px;
  }

  .rev-bar-slogan {
    align-items: flex-start;
    text-align: left;
  }
}












