/* =========================================================================
   Accu-Track Financial Solutions — shared stylesheet
   Institutional grotesque (Libre Franklin) + mono labels (IBM Plex Mono)
   Locked teal palette. Restraint reads as trust.
   ========================================================================= */

/* ----------------------------- Tokens ---------------------------------- */
:root {
  /* Brand teals (locked) */
  --teal:        #308088;   /* primary deep teal   */
  --teal-light:  #48A0A0;   /* accent light teal   */
  --teal-dark:   #1E5A61;   /* depth / footer      */

  /* Ink + surfaces */
  --ink:         #1A2A2A;   /* primary text        */
  --tint:        #F5F8F8;   /* off-white section   */
  --canvas:      #FFFFFF;

  /* Derived neutrals (low-chroma, teal family) */
  --ink-soft:    oklch(34% 0.014 200);   /* secondary text   */
  --ink-muted:   oklch(45% 0.012 200);   /* muted / captions */
  --ink-faint:   oklch(54% 0.012 200);   /* faintest meta    */
  --line:        oklch(90% 0.010 200);   /* hairline border  */
  --line-strong: oklch(83% 0.014 200);
  --tint-deep:   oklch(95.5% 0.010 200); /* slightly deeper tint */

  /* Teal washes */
  --teal-wash:   oklch(96% 0.024 195);   /* faint teal fill  */
  --teal-wash-2: oklch(92% 0.040 195);

  /* Warm accent — premium gold, used deliberately (ticks, numbers, highlights) */
  --accent:       #C98A2E;
  --accent-deep:  #A8701C;
  --accent-wash:  oklch(95% 0.050 82);
  --accent-soft:  oklch(86% 0.105 82);
  --gold:         #EBA73E;               /* brighter, for numbers on dark */

  /* Type */
  --sans: "Libre Franklin", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Rhythm */
  --maxw: 1180px;
  --maxw-narrow: 760px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(72px, 9vw, 132px);
  --radius: 6px;
  --radius-lg: 10px;

  --shadow-card: 0 1px 2px rgba(26,42,42,0.04), 0 8px 28px -18px rgba(26,42,42,0.18);
}

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

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--teal); text-decoration: none; }
button { font-family: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.1; letter-spacing: -0.015em; color: var(--ink); }
p { margin: 0; text-wrap: pretty; }
ul { margin: 0; padding: 0; list-style: none; }

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

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

/* ----------------------------- Layout ---------------------------------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: var(--maxw-narrow); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--tint { background: var(--tint); }
.section--teal-wash { background: var(--teal-wash); }
.section--ink  { background: var(--teal-dark); color: #EAF2F2; }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }

.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

/* --------------------------- Typography utils -------------------------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow--center { justify-content: center; }
.section--ink .eyebrow { color: var(--teal-light); }

h1, .h1 { font-size: clamp(2.3rem, 1.4rem + 3.6vw, 4rem); font-weight: 800; letter-spacing: -0.025em; }
h2, .h2 { font-size: clamp(1.85rem, 1.3rem + 2.1vw, 2.85rem); font-weight: 800; letter-spacing: -0.022em; }
h3, .h3 { font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.45rem); font-weight: 700; }
.lede { font-size: clamp(1.08rem, 1rem + 0.4vw, 1.3rem); line-height: 1.55; color: var(--ink-soft); }
.muted { color: var(--ink-muted); }
.measure { max-width: 60ch; }
.measure-sm { max-width: 46ch; }

.section-head { max-width: 64ch; }
.section-head--center { text-align: center; margin-inline: auto; }

/* ----------------------------- Buttons --------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  padding: 0.92em 1.5em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
  text-align: center;
}
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }
@media (prefers-reduced-motion: reduce) { .btn, .btn .arrow { transition: none; } }

.btn--primary { background: var(--teal); color: #fff; }
.btn--primary:hover { background: var(--teal-dark); color: #fff; }
.btn--ghost {
  background: transparent; color: var(--ink); border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn--onink { background: #fff; color: var(--teal-dark); }
.btn--onink:hover { background: var(--teal-light); color: #fff; }
.btn--lg { font-size: 1.08rem; padding: 1.02em 1.7em; }
.btn--block { width: 100%; justify-content: center; }

.textlink {
  font-weight: 600; color: var(--teal);
  display: inline-flex; align-items: center; gap: 0.45em;
}
.textlink .arrow { transition: transform .2s ease; }
.textlink:hover { color: var(--teal-dark); }
.textlink:hover .arrow { transform: translateX(3px); }
@media (prefers-reduced-motion: reduce) { .textlink .arrow { transition: none; } }

/* ============================ HEADER / NAV ============================== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.site-header[data-scrolled="true"] {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(26,42,42,0.02), 0 10px 30px -24px rgba(26,42,42,0.35);
}
.nav {
  display: flex; align-items: center; gap: 22px;
  height: 82px;
}
.brand { display: inline-flex; align-items: center; margin-right: auto; }
.brand__logo { height: 57px; width: auto; display: block; }
.brand__logo--footer {
  height: 58px; background: #fff; padding: 12px 18px; border-radius: 10px;
  box-shadow: 0 10px 30px -18px rgba(0,0,0,0.5);
}
.brand__mark { flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-weight: 800; font-size: 1.12rem; letter-spacing: -0.02em; color: var(--ink);
}
.brand__name .amp { color: var(--teal); }
.brand__sub {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-faint); margin-top: 5px;
}

.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__link {
  position: relative; white-space: nowrap;
  color: var(--ink); font-weight: 600; font-size: 0.97rem;
  padding: 9px 12px; border-radius: 6px;
  display: inline-flex; align-items: center;
  transition: color .15s ease, background-color .15s ease;
}
.nav__link:hover { color: var(--teal); background: var(--teal-wash); }
.nav__link[aria-current="page"] { color: var(--teal); }

/* dropdown */
.nav__item { position: relative; }
.nav__caret { width: 9px; height: 9px; margin-left: 5px; transition: transform .2s ease; }
.nav__item:hover .nav__caret, .nav__item:focus-within .nav__caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 320px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.nav__item:hover .dropdown, .nav__item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .dropdown { transition: none; } }
.dropdown__link {
  display: block; padding: 11px 13px; border-radius: 6px; color: var(--ink);
  transition: background-color .14s ease;
}
.dropdown__link:hover { background: var(--tint); }
.dropdown__link strong { display: block; font-weight: 600; font-size: 0.97rem; }
.dropdown__link span { display: block; font-size: 0.83rem; color: var(--ink-muted); margin-top: 2px; }

.nav__phone {
  font-family: var(--mono); font-size: 0.86rem; font-weight: 500;
  color: var(--ink-soft); letter-spacing: 0.01em;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 12px; border-radius: 5px;
  white-space: nowrap;
}
.nav__phone:hover { color: var(--teal); }
.nav__phone svg { flex: none; }

.nav__cta { white-space: nowrap; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px; border: 1px solid var(--line-strong);
  background: #fff; border-radius: 7px; cursor: pointer;
  align-items: center; justify-content: center;
  margin-left: 4px;
}
.nav__toggle span {
  display: block; width: 19px; height: 2px; background: var(--ink); border-radius: 2px;
  position: relative; transition: transform .22s ease, opacity .18s ease;
}
.nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 0; width: 19px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .22s ease;
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after  { top: 6px; }
body[data-menu="open"] .nav__toggle span { background: transparent; }
body[data-menu="open"] .nav__toggle span::before { transform: translateY(6px) rotate(45deg); }
body[data-menu="open"] .nav__toggle span::after  { transform: translateY(-6px) rotate(-45deg); }
@media (prefers-reduced-motion: reduce) { .nav__toggle span, .nav__toggle span::before, .nav__toggle span::after { transition: none; } }

/* Mobile menu panel */
.mobile-menu {
  position: fixed; inset: 82px 0 0; z-index: 55;
  background: #fff;
  transform: translateY(-8px); opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  overflow-y: auto;
  padding: 8px var(--gutter) 40px;
}
body[data-menu="open"] .mobile-menu { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
@media (prefers-reduced-motion: reduce) { .mobile-menu { transition: visibility .2s; } }
.mobile-menu__link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 4px; font-size: 1.15rem; font-weight: 600; color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-menu__sub { padding: 4px 4px 10px; }
.mobile-menu__sub a {
  display: block; padding: 11px 0 11px 18px; color: var(--ink-soft); font-weight: 500;
  border-left: 2px solid var(--line); margin-left: 2px;
}
.mobile-menu__sub a:hover { color: var(--teal); border-left-color: var(--teal); }
.mobile-menu__foot { margin-top: 26px; display: grid; gap: 14px; }
.mobile-menu__phone {
  font-family: var(--mono); font-size: 1.05rem; color: var(--ink);
  display: inline-flex; align-items: center; gap: 9px;
}

/* ============================== HERO =================================== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(110% 70% at 88% -15%, var(--teal-wash-2) 0%, rgba(255,255,255,0) 52%),
    radial-gradient(80% 60% at -5% 110%, var(--accent-wash) 0%, rgba(255,255,255,0) 45%),
    #fff;
}
.hero__inner { padding-block: clamp(56px, 8vw, 104px); }
.hero__grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero h1 { margin-bottom: 22px; max-width: 15ch; font-size: clamp(2.15rem, 1.5rem + 2.5vw, 3.45rem); }
.hero__accent { color: var(--teal); position: relative; }
.hero__accent::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.04em; height: 0.16em;
  background: var(--accent-soft); z-index: -1; border-radius: 2px;
}
.hero__sub { font-size: clamp(1.08rem, 1rem + 0.45vw, 1.32rem); color: var(--ink-soft); line-height: 1.55; max-width: 52ch; margin-bottom: 30px; }
.hero__cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__microcopy {
  margin-top: 18px; font-size: 0.92rem; color: var(--ink-muted);
  display: flex; align-items: center; gap: 9px;
}
.hero__microcopy svg { flex: none; color: var(--teal); }

/* hero side proof card */
.proof-card {
  background: var(--teal-dark);
  color: #EAF2F2;
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 38px);
  box-shadow: 0 30px 60px -34px rgba(30,90,97,0.55);
}
.proof-card__label {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-light); margin-bottom: 6px;
}
.proof-card__lead { font-size: 0.95rem; color: #BFD6D6; line-height: 1.5; margin-bottom: 22px; }
.proof-card__big {
  font-size: clamp(3.2rem, 2rem + 4vw, 4.3rem); font-weight: 800; letter-spacing: -0.03em;
  color: #fff; line-height: 0.95;
}
.proof-card__big small { font-size: 0.42em; font-weight: 600; color: var(--gold); letter-spacing: 0; }
.proof-card__sub { font-size: 0.92rem; color: #BFD6D6; margin-top: 8px; }
.proof-card__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px; margin-top: 26px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.14); }
.proof-card__stat .n { font-size: 1.7rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.proof-card__stat .t { font-size: 0.8rem; color: #BFD6D6; line-height: 1.4; margin-top: 3px; }
.proof-card__link { margin-top: 24px; display: inline-flex; }
.proof-card__link a { color: #fff; font-weight: 600; display: inline-flex; align-items: center; gap: 0.45em; }
.proof-card__link a:hover { color: var(--teal-light); }

/* ======================= TRUSTED-BY LOGO MARQUEE ======================= */
.logos { text-align: center; }
.logos__caption {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: 32px;
}
.logos__viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.logos__track {
  display: flex; align-items: center; gap: clamp(44px, 6vw, 92px);
  width: max-content;
  animation: marquee 38s linear infinite;
}
.logos__track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logos__track img {
  height: 46px; width: auto; max-width: 200px; object-fit: contain;
  flex: none;
  opacity: 0.95;
  transition: opacity .2s ease, transform .2s ease;
}
.logos__track img:hover { opacity: 1; transform: scale(1.04); }
.logos__track img.lg { height: 56px; }
.logos__track img.sm { height: 40px; }
@media (prefers-reduced-motion: reduce) {
  .logos__track {
    animation: none; width: auto; flex-wrap: wrap; justify-content: center;
    gap: clamp(28px, 4vw, 56px);
  }
  .logos__track img:hover { transform: none; }
  .logos__track .logos__dup { display: none; }
}

/* ============================ PROBLEM LIST ============================= */
.problem-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.problem-list { display: grid; gap: 2px; }
.problem-item {
  display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.problem-item:first-child { border-top: 1px solid var(--line); }
.problem-item__mark { color: var(--accent); margin-top: 3px; flex: none; }
.problem-item p { color: var(--ink-soft); }
.problem-close {
  margin-top: 34px; font-size: clamp(1.2rem, 1rem + 0.9vw, 1.6rem); font-weight: 700;
  letter-spacing: -0.02em; color: var(--ink); line-height: 1.3; max-width: 22ch;
}
.problem-close .hl { color: var(--teal); }

/* ============================ SERVICE CARDS ============================ */
.service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.service-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px 26px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
a.service-card:hover { border-color: var(--teal-light); transform: translateY(-3px); box-shadow: var(--shadow-card); }
@media (prefers-reduced-motion: reduce) { a.service-card:hover { transform: none; } }
.service-card__icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: var(--teal-wash); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), background-color .2s ease, color .2s ease;
}
a.service-card:hover .service-card__icon { transform: scale(1.08) rotate(-4deg); background: var(--teal); color: #fff; }
@media (prefers-reduced-motion: reduce){ a.service-card:hover .service-card__icon { transform: none; } }
.service-card h3 { font-size: 1.16rem; margin-bottom: 9px; letter-spacing: -0.02em; }
.service-card p { color: var(--ink-soft); font-size: 0.96rem; line-height: 1.55; flex: 1; }
.service-card__more {
  margin-top: 18px; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--teal); font-weight: 500;
  display: inline-flex; align-items: center; gap: 7px;
}
a.service-card:hover .service-card__more .arrow { transform: translateX(3px); }
.service-card__more .arrow { transition: transform .2s ease; }

/* ====================== BIG PROOF / STAT STRIP ========================= */
.statband { background: linear-gradient(160deg, var(--teal-dark) 0%, #18484e 100%); color: #fff; }
.statband__head { max-width: 60ch; }
.statband__head .eyebrow { color: var(--teal-light); }
.statband__lead { font-size: clamp(1.15rem, 1rem + 0.7vw, 1.5rem); line-height: 1.45; color: #DCEAEA; max-width: 40ch; }
.statband__lead strong { color: #fff; font-weight: 700; }
.stat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); overflow: hidden;
  margin-top: 44px;
}
.stat {
  background: var(--teal-dark); padding: 34px 28px;
}
.stat__n {
  font-size: clamp(2.6rem, 1.6rem + 3.4vw, 4rem); font-weight: 800; letter-spacing: -0.035em;
  color: #fff; line-height: 0.95;
}
.stat__n .u { color: var(--gold); }
.stat__t { font-size: 0.92rem; color: #BFD6D6; line-height: 1.45; margin-top: 14px; max-width: 24ch; }
.statband__foot { margin-top: 30px; }
.statband__foot a { color: #fff; }
.statband__foot a:hover { color: var(--teal-light); }

/* full-bleed single hero number variant (used on case study / PA pages) */
.megastat { text-align: center; }
.megastat__n {
  font-size: clamp(4.5rem, 2rem + 12vw, 11rem); font-weight: 800; letter-spacing: -0.04em;
  color: var(--teal); line-height: 0.9;
}
.megastat__t { font-family: var(--mono); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-muted); margin-top: 14px; }

/* ====================== THREE OPTIONS COMPARISON ====================== */
.options-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.option {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 28px; background: #fff; display: flex; flex-direction: column;
}
.option--dud { background: var(--tint); }
.option--win {
  background: var(--teal); color: #fff; border-color: var(--teal);
  box-shadow: 0 30px 60px -36px rgba(48,128,136,0.6);
}
.option__tag {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; font-weight: 500;
}
.option--dud .option__tag { color: var(--ink-muted); }
.option--win .option__tag { color: var(--teal-light); }
.option__icon-x, .option__icon-check { width: 20px; height: 20px; flex: none; }
.option--dud .option__icon-x { color: var(--ink-faint); }
.option h3 { font-size: 1.3rem; margin-bottom: 12px; }
.option--win h3 { color: #fff; }
.option p { color: var(--ink-soft); font-size: 0.97rem; line-height: 1.55; flex: 1; }
.option--win p { color: #DCEAEA; }
.option--win .btn { margin-top: 22px; }

/* ============================ TESTIMONIALS ============================ */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px 34px; display: flex; flex-direction: column; height: 100%;
  min-height: 320px;
  box-shadow: 0 1px 2px rgba(26,42,42,0.03), 0 18px 40px -30px rgba(26,42,42,0.25);
}
.quote__mark { font-family: Georgia, serif; font-size: 3.4rem; line-height: 0.5; color: var(--accent); height: 30px; }
.quote__text { font-size: 1.22rem; line-height: 1.5; color: var(--ink); letter-spacing: -0.012em; flex: 1; margin: 16px 0 26px; font-weight: 500; }
.quote__who { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--line); }
.quote__mono {
  width: 46px; height: 46px; border-radius: 9px; flex: none;
  background: var(--teal-wash); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.92rem; letter-spacing: 0.02em;
}
.quote__name { display: block; font-weight: 700; font-size: 0.97rem; }
.quote__role { display: block; font-size: 0.83rem; color: var(--ink-muted); margin-top: 3px; line-height: 1.4; }

/* ================================ FAQ ================================= */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__q {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
  padding: 24px 4px; text-align: left;
  font-family: var(--sans); font-weight: 700; font-size: 1.1rem; letter-spacing: -0.015em; color: var(--ink);
}
.faq__q:hover { color: var(--teal); }
.faq__icon { flex: none; width: 22px; height: 22px; margin-top: 3px; position: relative; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; background: var(--teal); border-radius: 2px;
  top: 50%; left: 50%; transition: transform .22s ease;
}
.faq__icon::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq__icon::after  { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.faq__item[data-open="true"] .faq__icon::after { transform: translate(-50%, -50%) scaleY(0); }
@media (prefers-reduced-motion: reduce) { .faq__icon::before, .faq__icon::after { transition: none; } }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .28s ease; }
.faq__item[data-open="true"] .faq__a { max-height: 320px; }
@media (prefers-reduced-motion: reduce) { .faq__a { transition: none; } }
.faq__a p { color: var(--ink-soft); padding: 0 4px 26px; max-width: 70ch; }

/* ============================ PROCESS STEPS =========================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; }
.step {
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px; background: #fff;
  position: relative;
}
.step__n {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); font-weight: 500; margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.step__n::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; color: var(--ink);
  font-family: var(--sans); text-transform: none;
}
.step h3 { font-size: 1.16rem; margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: 0.96rem; line-height: 1.55; }

/* ============================== CTA BAND ============================== */
.cta-band { background: linear-gradient(125deg, var(--teal-dark) 0%, var(--teal) 100%); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 120% at 85% 0%, rgba(235,167,62,0.20) 0%, rgba(235,167,62,0) 60%);
  pointer-events: none;
}
.cta-band .wrap-narrow { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; max-width: 18ch; margin-inline: auto; }
.cta-band p { color: #CFE2E2; max-width: 50ch; margin: 18px auto 30px; font-size: 1.12rem; }
.cta-band__micro { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-light); margin-top: 22px; }

/* split CTA variant */
.cta-split {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 820px){ .cta-split { grid-template-columns: 1fr; text-align: center; } }

/* ============================== FORM ================================= */
.form-section { background: var(--tint); }
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-card);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.86rem; font-weight: 600; color: var(--ink-soft); letter-spacing: -0.005em;
}
.field label .req { color: var(--teal); }
.field input, .field select {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: 13px 14px; border: 1px solid var(--line-strong); border-radius: var(--radius);
  background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-wash-2);
}
.field input::placeholder { color: var(--ink-faint); }
.form-foot { margin-top: 22px; }
.form-note { font-size: 0.9rem; color: var(--ink-muted); margin-top: 16px; display: flex; gap: 9px; align-items: flex-start; }
.form-note svg { flex: none; color: var(--teal); margin-top: 2px; }
.form-consent { font-size: 0.76rem; color: var(--ink-faint); line-height: 1.5; margin-top: 18px; }

.contact-aside { display: grid; gap: 22px; align-content: start; }
.contact-aside__item { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.contact-aside__ic { width: 40px; height: 40px; border-radius: 9px; background: var(--teal-wash); color: var(--teal); display: flex; align-items: center; justify-content: center; flex: none; }
.contact-aside__lab { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted); }
.contact-aside__val { display: block; font-weight: 600; font-size: 1.05rem; color: var(--ink); margin-top: 4px; }
.contact-aside__val a { color: var(--ink); }
.contact-aside__val a:hover { color: var(--teal); }

/* ============================== FOOTER =============================== */
.site-footer { background: var(--teal-dark); color: #C7DCDC; padding-block: clamp(56px, 6vw, 80px) 32px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 56px);
  padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.13);
}
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__name .amp { color: var(--teal-light); }
.footer-brand .brand__sub { color: rgba(255,255,255,0.5); }
.footer-pos { font-size: 0.95rem; line-height: 1.55; color: #A8C7C7; margin-top: 18px; max-width: 34ch; }
.footer-contact { margin-top: 22px; display: grid; gap: 10px; font-size: 0.95rem; }
.footer-contact a { color: #DCEAEA; display: inline-flex; align-items: center; gap: 9px; }
.footer-contact a:hover { color: #fff; }
.footer-contact .mono { font-family: var(--mono); font-size: 0.9rem; }
.footer-col h4 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 18px; font-weight: 500;
}
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { color: #C7DCDC; font-size: 0.96rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
  padding-top: 26px; font-size: 0.86rem; color: #8FB3B3;
}
.footer-bottom__links { display: flex; gap: 22px; }
.footer-bottom__links a { color: #8FB3B3; }
.footer-bottom__links a:hover { color: #fff; }

/* ===================== PAGE HEADER (interior pages) =================== */
.pagehead { background: var(--tint); border-bottom: 1px solid var(--line); }
.pagehead__inner { padding-block: clamp(48px, 6vw, 88px); }
.breadcrumb { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 22px; display: flex; gap: 9px; align-items: center; }
.breadcrumb a { color: var(--ink-muted); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb .sep { color: var(--line-strong); }
.pagehead h1 { max-width: 18ch; margin-bottom: 22px; }
.pagehead__sub { font-size: clamp(1.05rem, 1rem + 0.4vw, 1.28rem); color: var(--ink-soft); max-width: 56ch; line-height: 1.55; }
.pagehead__cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ====================== PROSE (legal / about) ======================== */
.prose { max-width: 70ch; }
.prose p { margin-bottom: 22px; color: var(--ink-soft); line-height: 1.7; }
.prose h2 { font-size: 1.5rem; margin: 44px 0 16px; }
.prose h3 { font-size: 1.2rem; margin: 32px 0 12px; }
.prose ul.bullets { margin: 0 0 22px; display: grid; gap: 12px; }
.prose ul.bullets li { padding-left: 26px; position: relative; color: var(--ink-soft); }
.prose ul.bullets li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 7px; height: 7px; border-radius: 2px; background: var(--teal-light); }

/* =========================== TEAM CARDS ============================== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.team-card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; background: #fff; }
.team-card__mono {
  width: 52px; height: 52px; border-radius: 10px; background: var(--teal-wash); color: var(--teal);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.05rem;
  letter-spacing: 0.01em; margin-bottom: 18px;
}
.team-card__name { font-weight: 700; font-size: 1.12rem; letter-spacing: -0.02em; }
.team-card__title { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal); margin-top: 6px; }
.team-card__bio { color: var(--ink-soft); font-size: 0.94rem; line-height: 1.55; margin-top: 12px; }

/* ============================ UTILITIES ============================== */
.center { text-align: center; }
.mt-s { margin-top: 14px; } .mt-m { margin-top: 26px; } .mt-l { margin-top: 44px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,64px); }
.imagine-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.imagine-item { display: grid; grid-template-columns: auto 1fr; gap: 14px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.imagine-item__ic { color: var(--teal); flex: none; margin-top: 2px; }
.imagine-item p { color: var(--ink-soft); font-size: 0.98rem; }

.takeaway-list { display: grid; gap: 14px; max-width: 60ch; }
.takeaway-list li { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; color: var(--ink-soft); }
.takeaway-list li svg { color: var(--teal); flex: none; margin-top: 4px; }

/* placeholder block */
.placeholder {
  border: 1px dashed var(--line-strong); border-radius: var(--radius-lg);
  background: repeating-linear-gradient(45deg, transparent, transparent 9px, var(--tint) 9px, var(--tint) 18px);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px;
  padding: 48px 24px; text-align: center; color: var(--ink-muted);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em;
}
.placeholder strong { color: var(--ink-soft); font-size: 13px; }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay: .06s; }
.reveal[data-d="2"]{ transition-delay: .12s; }
.reveal[data-d="3"]{ transition-delay: .18s; }
.reveal[data-d="4"]{ transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none !important; } }

/* page transition fade */
.page-fade { opacity: 1; transition: opacity .26s ease; }
body[data-leaving="true"] .page-fade { opacity: 0; }
@media (prefers-reduced-motion: reduce) { .page-fade { transition: none; } body[data-leaving="true"] .page-fade { opacity: 1; } }

/* ======================= RESPONSIVE BREAKPOINTS ====================== */
@media (max-width: 1040px) {
  .hero__grid { grid-template-columns: 1fr; }
  .proof-card { max-width: 520px; }
  .service-grid, .options-grid, .quote-grid, .steps, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 920px) {
  .nav__links, .nav__phone--desktop, .nav__cta--desktop { display: none; }
  .nav__toggle { display: inline-flex; }
  .problem-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .service-grid, .options-grid, .quote-grid, .steps, .team-grid, .stat-grid, .imagine-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .proof-card__stats { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .nav { height: 64px; }
  .mobile-menu { inset: 64px 0 0; }
}

/* ===================== INTERIOR PAGE ADDITIONS ====================== */
.hero__interior { max-width: 62ch; }
.hero__interior h1 { max-width: 19ch; }
.hero__interior .breadcrumb { margin-bottom: 24px; }

/* interior hero with a side image */
.hero__grid--media { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(30px, 4.5vw, 64px); align-items: center; }
.hero__grid--media .hero__interior { max-width: 40ch; }
.hero__grid--media .hero__interior h1 { max-width: 16ch; }
.hero__media .imgslot { aspect-ratio: 4 / 5; max-height: 540px; min-height: 0; }
@media (max-width: 980px){
  .hero__grid--media { grid-template-columns: 1fr; gap: 36px; }
  .hero__media .imgslot { aspect-ratio: 16 / 10; max-height: none; }
}

/* lead-pain list (DR pages) */
.leadpains { display: grid; gap: 14px; max-width: 60ch; }
.leadpains li {
  display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start;
  padding: 18px 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  color: var(--ink-soft); font-size: 1.02rem;
}
.leadpains li svg { color: var(--accent); flex: none; margin-top: 3px; }

/* cost / imagine two-up */
.cost-card {
  border-radius: var(--radius-lg); padding: clamp(28px,3.5vw,44px);
}
.cost-card--problem { background: var(--accent-wash); border: 1px solid var(--accent-soft); }
.cost-card--imagine { background: var(--teal-wash); border: 1px solid oklch(86% 0.05 195); }
.cost-card .eyebrow { margin-bottom: 14px; }
.cost-card p { color: var(--ink-soft); font-size: 1.06rem; line-height: 1.6; }
.cost-card h3 { font-size: 1.4rem; margin-bottom: 14px; letter-spacing: -0.02em; }

/* "what we take off your plate" checklist */
.plate-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 26px; max-width: 760px; }
.plate-grid li { display: grid; grid-template-columns: auto 1fr; gap: 13px; align-items: start; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-weight: 500; }
.plate-grid li svg { color: var(--teal); flex: none; margin-top: 3px; }
@media (max-width: 680px){ .plate-grid { grid-template-columns: 1fr; } }

/* GHL embedded form */
.ghl-embed {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card); overflow: hidden; padding: 8px;
}
.ghl-embed iframe { width: 100%; min-height: 1180px; border: 0; display: block; border-radius: 6px; }

/* case study results */
.case-results { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); overflow: hidden; }
.case-section { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(24px,4vw,56px); align-items: start; padding-block: 36px; border-bottom: 1px solid var(--line); }
.case-section:last-of-type { border-bottom: 0; }
.case-section h2 { font-size: clamp(1.5rem,1.2rem+1vw,2rem); }
.case-section .eyebrow { margin-bottom: 0; }
.case-section p { color: var(--ink-soft); font-size: 1.08rem; line-height: 1.65; }
@media (max-width: 820px){ .case-section { grid-template-columns: 1fr; gap: 14px; } }

/* about story */
.story { max-width: 64ch; }
.story p { color: var(--ink-soft); font-size: 1.12rem; line-height: 1.75; margin-bottom: 24px; }
.story p .lead-cap { font-weight: 700; color: var(--ink); }

/* ===================== IMAGE PLACEHOLDERS & MEDIA ==================== */
.imgslot {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background:
    repeating-linear-gradient(135deg, transparent 0, transparent 11px, rgba(48,128,136,0.04) 11px, rgba(48,128,136,0.04) 22px),
    linear-gradient(135deg, var(--teal-wash) 0%, var(--accent-wash) 120%);
  border: 1px dashed var(--line-strong);
  display: flex; align-items: center; justify-content: center; text-align: center;
  min-height: 240px; color: var(--ink-muted);
}
.imgslot > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.imgslot__inner { padding: 28px; max-width: 84%; position: relative; z-index: 1; }
.imgslot__icon { width: 44px; height: 44px; margin: 0 auto 14px; color: var(--teal); opacity: 0.75; }
.imgslot__label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--teal-dark); font-weight: 500; }
.imgslot__desc { font-size: 0.88rem; color: var(--ink-muted); margin-top: 8px; line-height: 1.5; }
.imgslot--wide { aspect-ratio: 16 / 9; }
.imgslot--photo { aspect-ratio: 3 / 2; }
.imgslot--tall { aspect-ratio: 4 / 5; }
.imgslot--square { aspect-ratio: 1 / 1; }

.media-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 68px); align-items: center; }
.media-split__body .eyebrow { margin-bottom: 16px; }
.media-split__body h2 { margin-bottom: 16px; }
.media-split__body p { color: var(--ink-soft); font-size: 1.08rem; line-height: 1.65; }
@media (max-width: 820px){ .media-split { grid-template-columns: 1fr; gap: 28px; } .media-split--rev .media-split__media { order: -1; } }

/* step icon tile */
.step__ic {
  width: 46px; height: 46px; border-radius: 11px; background: var(--teal-wash); color: var(--teal);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.step:nth-child(2) .step__ic { background: var(--accent-wash); color: var(--accent-deep); }

/* cost-card icon */
.cost-card__ic { width: 44px; height: 44px; border-radius: 11px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.cost-card--problem .cost-card__ic { background: #fff; color: var(--accent-deep); }
.cost-card--imagine .cost-card__ic { background: #fff; color: var(--teal); }

/* =========================================================================
   MOTION & INTERACTION LAYER  (all reduced-motion safe)
   ========================================================================= */

/* scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-light) 70%, var(--gold) 100%);
  z-index: 70; transition: width .12s ease-out; will-change: width;
}

/* animated nav underline */
.nav__link::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 5px; height: 2px;
  background: var(--teal); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .26s cubic-bezier(.2,.7,.2,1);
}
.nav__link:hover { background: transparent; }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce){ .nav__link::after { transition: none; } }

/* primary button sheen sweep */
.btn--primary { position: relative; overflow: hidden; }
.btn--primary::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-18deg); transition: left .6s ease; pointer-events: none;
}
.btn--primary:hover::after { left: 150%; }
.btn--primary > * { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce){ .btn--primary::after { display: none; } }

/* hero accent underline draws in on reveal */
.hero__accent::after { transform: scaleX(0); transform-origin: left; transition: transform .7s cubic-bezier(.2,.7,.2,1) .45s; }
.reveal.is-in .hero__accent::after { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce){ .hero__accent::after { transform: scaleX(1); transition: none; } }

/* testimonial + option + step hover lift */
.quote { transition: transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s ease, border-color .2s ease; }
.quote:hover { transform: translateY(-5px); border-color: var(--teal-light); box-shadow: 0 1px 2px rgba(26,42,42,0.04), 0 28px 50px -30px rgba(26,42,42,0.35); }
.step, .imagine-item, .leadpains li { transition: transform .25s ease, border-color .2s ease, box-shadow .25s ease; }
.step:hover, .leadpains li:hover { transform: translateY(-3px); border-color: var(--teal-light); }
@media (prefers-reduced-motion: reduce){ .quote, .quote:hover, .step, .step:hover, .leadpains li, .leadpains li:hover { transform: none; transition: none; } }

/* slow aurora drift inside dark bands */
.statband, .cta-band { position: relative; overflow: hidden; }
.statband > .wrap, .cta-band > .wrap-narrow { position: relative; z-index: 1; }
.statband::before {
  content: ""; position: absolute; inset: -25%;
  background:
    radial-gradient(38% 42% at 28% 30%, rgba(72,160,160,0.30), transparent 70%),
    radial-gradient(34% 38% at 78% 64%, rgba(235,167,62,0.14), transparent 70%);
  pointer-events: none; animation: aurora 20s ease-in-out infinite alternate;
}
@keyframes aurora { from { transform: translate(0,0) scale(1); } to { transform: translate(5%, 7%) scale(1.12); } }
@media (prefers-reduced-motion: reduce){ .statband::before { animation: none; } }

/* count-up numbers use tabular figures so width doesn't jump */
.stat__n, .proof-card__big, .proof-card__stat .n, .megastat__n { font-variant-numeric: tabular-nums; }

/* gentle scale-in for stat cells when revealed */
.stat { transition: background-color .3s ease; }
.stat:hover { background: #18484e; }


/* wired images fill their slots (added post-export) */
.imgslot__img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block;z-index:2}
.imgslot:has(> img.imgslot__img){border:none;background:none}
.imgslot:has(> img.imgslot__img) .imgslot__inner{display:none}
