/* ============================================================
   Detail Tech — Section & component styles  (DM Sans, no uppercase)
   ============================================================ */

/* ---------- Top utility bar ---------- */
.topbar {
  position: relative; z-index: 61;
  background: linear-gradient(90deg, #07080a 0%, #0c0e10 50%, #07080a 100%);
  border-bottom: 1px solid var(--line);
  font-size: 0.84rem;
}
.topbar__inner { display: flex; align-items: center; gap: 22px; min-height: 44px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); white-space: nowrap; }
.topbar__item svg { width: 14px; height: 14px; color: var(--blue); flex-shrink: 0; }
.topbar__item a { color: var(--text); font-weight: 500; }
.topbar__item a:hover { color: var(--blue); }
.topbar__divider { width: 1px; height: 16px; background: var(--line-strong); }
.topbar__spacer { margin-left: auto; }
.topbar__socials { display: inline-flex; align-items: center; gap: 8px; }
.topbar__socials a { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 6px; color: var(--muted); transition: color .2s var(--ease), background .2s var(--ease); }
.topbar__socials a:hover { color: var(--blue); background: rgba(0,171,223,0.1); }
.topbar__socials svg { width: 14px; height: 14px; }
.topbar__pill { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; background: rgba(0,171,223,0.12); border: 1px solid rgba(0,171,223,0.35); color: var(--blue); padding: 4px 11px; border-radius: 100px; font-weight: 600; }
.topbar__pill svg { width: 13px; height: 13px; }

/* ---------- Header (centered logo, transparent over hero) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}
.site-header.is-stuck {
  background: rgba(10, 11, 12, 0.92);
  backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.header-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; min-height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; grid-column: 2; justify-self: center; }
.brand img { height: 44px; width: auto; }
.brand__word b { font-family: var(--ff-display); font-weight: 800; font-style: italic; font-size: 1.2rem; letter-spacing: -0.03em; text-transform: uppercase; color: var(--white); }
.brand__word b span { color: var(--blue); }

.nav { display: flex; align-items: center; gap: 26px; grid-column: 1; justify-self: start; }
.nav a { font-family: var(--ff-display); font-weight: 500; font-size: 0.95rem; color: var(--text); transition: color 0.2s var(--ease); position: relative; }
.nav a:hover { color: var(--blue); }
.nav a::after { content:""; position:absolute; left:0; bottom:-6px; height:2px; width:0; background: var(--blue); transition: width .25s var(--ease); }
.nav a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 12px; grid-column: 3; justify-self: end; }
.menu-toggle { display: none; width: 46px; height: 46px; border-radius: var(--r-sm); border: 1px solid var(--line-strong); background: rgba(8,9,10,0.4); align-items: center; justify-content: center; grid-column: 3; justify-self: end; }
.menu-toggle svg { width: 22px; height: 22px; }

/* Mobile drawer */
.mobile-nav { position: fixed; inset: 0; z-index: 70; background: rgba(8,9,10,0.98); backdrop-filter: blur(10px); display: flex; flex-direction: column; padding: 24px var(--gutter); transform: translateY(-100%); transition: transform 0.4s var(--ease); visibility: hidden; }
.mobile-nav.is-open { transform: none; visibility: visible; }
.mobile-nav__top { display: flex; align-items: center; justify-content: space-between; min-height: 52px; }
.mobile-nav__close { width: 46px; height: 46px; border: 1px solid var(--line-strong); border-radius: var(--r-sm); display: grid; place-items: center; }
.mobile-nav__close svg { width: 22px; height: 22px; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 2px; margin-top: 24px; }
.mobile-nav ul a { font-family: var(--ff-display); font-weight: 700; font-size: 1.6rem; letter-spacing: -0.02em; padding: 12px 0; display: block; border-bottom: 1px solid var(--line); }
.mobile-nav__foot { margin-top: auto; display: flex; flex-direction: column; gap: 12px; padding-top: 24px; }

/* ---------- Hero (video background) ---------- */
.hero { position: relative; margin-top: calc(-1 * var(--header-h)); min-height: clamp(580px, 90vh, 940px); display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media video, .hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim { position: absolute; inset: 0; z-index: 1; background:
    linear-gradient(180deg, rgba(8,9,10,0.55) 0%, rgba(8,9,10,0.2) 30%, rgba(8,9,10,0.72) 76%, var(--bg) 100%),
    linear-gradient(90deg, rgba(8,9,10,0.85) 0%, rgba(8,9,10,0.3) 55%, transparent 100%); }
.hero__glow { position: absolute; z-index: 1; width: 60vw; height: 60vw; max-width: 720px; max-height: 720px; right: -8%; top: 6%; background: radial-gradient(circle, var(--blue-glow) 0%, transparent 68%); opacity: 0.5; filter: blur(10px); pointer-events: none; }
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(44px, 6vw, 84px); padding-top: calc(var(--header-h) + 40px); }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) auto; align-items: end; gap: 48px; }
.hero__copy { max-width: 760px; }
.hero h1 { margin: 20px 0 0; }
.hero h1 .accent { color: var(--blue); text-shadow: 0 0 15px rgba(0,171,223,0.35); }
.hero__sub { margin-top: 22px; font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: var(--text); max-width: 54ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border: 1px solid var(--line-strong); background: rgba(8,9,10,0.45); backdrop-filter: blur(4px); border-radius: 100px; font-size: 0.85rem; font-weight: 500; color: var(--text); }
.chip svg { width: 15px; height: 15px; color: var(--blue); }

/* Google rating card */
.rating-card { align-self: end; background: rgba(18,20,23,0.78); backdrop-filter: blur(10px); border: 1px solid var(--line-strong); border-radius: var(--r); padding: 20px 22px; width: 240px; }
.rating-card__top { display: flex; align-items: center; gap: 9px; }
.g-logo { width: 22px; height: 22px; }
.rating-card__top b { font-family: var(--ff-display); font-weight: 600; font-size: 0.92rem; }
.stars { display: inline-flex; gap: 2px; margin-top: 12px; color: #FFC53D; }
.stars svg { width: 19px; height: 19px; }
.rating-card__num { font-family: var(--ff-display); font-weight: 900; font-style: italic; font-size: 2.1rem; line-height: 1; margin-top: 12px; display: flex; align-items: baseline; gap: 8px; }
.rating-card__num small { font-size: 0.78rem; font-weight: 500; font-family: var(--ff-body); color: var(--muted); }
.ph-note { font-size: 0.72rem; color: var(--muted-2); font-style: italic; margin-top: 8px; line-height: 1.3; }

/* ---------- Trust / certification bar (clean) ---------- */
.trust { border-bottom: 1px solid var(--line); background: var(--bg-alt); }
.trust__row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 22px; flex-wrap: wrap; }
.trust__item { display: inline-flex; align-items: center; gap: 11px; font-family: var(--ff-display); font-weight: 700; font-size: 0.96rem; letter-spacing: -0.01em; text-transform: uppercase; color: var(--text); flex: 1 1 auto; justify-content: center; min-width: 0; }
.trust__item svg { width: 22px; height: 22px; color: var(--blue); flex-shrink: 0; }
.trust__sep { width: 1px; height: 30px; background: var(--line-strong); flex-shrink: 0; }

/* ---------- Services: flagship detail cards ---------- */
.services-feat { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.svc-feat { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 2.4vw, 34px); transition: border-color 0.3s var(--ease); }
.svc-feat:hover { border-color: rgba(0,171,223,0.4); }
.svc-feat__tags { display: none; }
.svc-feat__cat { font-family: var(--ff-mono); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 11px; border-radius: 6px; color: var(--blue); background: rgba(0,171,223,0.12); border: 1px solid rgba(0,171,223,0.35); }
.svc-feat__sub { font-family: var(--ff-mono); font-size: 0.8rem; letter-spacing: 0.02em; color: var(--muted-2); }
.svc-feat h3 { font-family: var(--ff-display); font-weight: 900; font-style: italic; text-transform: uppercase; font-size: clamp(1.5rem, 2.4vw, 2.15rem); line-height: 1.0; letter-spacing: -0.04em; margin-top: 18px; }
.svc-feat__desc { color: var(--muted); font-size: 0.98rem; margin-top: 16px; line-height: 1.6; }
.svc-feat__list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; margin-top: 22px; }
.svc-feat__list li { display: flex; align-items: center; gap: 10px; font-family: var(--ff-mono); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.01em; color: var(--text); }
.svc-feat__list svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }
.svc-feat__media { order: -1; margin-top: 0; margin-bottom: 26px; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); }
.svc-feat__media img { width: 100%; height: clamp(180px, 16vw, 240px); object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.svc-feat:hover .svc-feat__media img { transform: scale(1.04); }
.svc-feat__actions { display: grid; grid-template-columns: 1fr 1.25fr; gap: 12px; margin-top: auto; padding-top: 22px; }
.svc-feat__actions .btn { width: 100%; }

/* ---------- Services (editorial columns) ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px 0; margin-top: 36px; }
.svc { position: relative; display: flex; flex-direction: column; padding-inline: 30px; }
.svc:nth-child(3n+1) { padding-left: 0; }
.svc:nth-child(3n) { padding-right: 0; }
.svc:not(:nth-child(3n+1)) { border-left: 1px solid var(--line); }
.svc__num { position: absolute; top: 16px; left: 30px; z-index: 2; font-family: var(--ff-mono); font-weight: 700; font-size: 0.82rem; color: var(--blue); }
.svc:nth-child(3n+1) .svc__num { left: 0; }
.svc > img { width: 100%; height: clamp(340px, 33vw, 470px); object-fit: cover; display: block; -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent 100%); mask-image: linear-gradient(to bottom, #000 70%, transparent 100%); }
.svc__body { display: flex; flex-direction: column; margin-top: 6px; }
.svc h3 { font-family: var(--ff-display); font-weight: 800; font-style: italic; text-transform: uppercase; font-size: clamp(1.5rem, 2.1vw, 2rem); line-height: 1.02; letter-spacing: -1px; }
.svc__desc { color: var(--muted); font-size: 1rem; line-height: 1.6; margin-top: 16px; }
.svc__points { display: flex; flex-direction: column; gap: 11px; margin-top: 22px; }
.svc__points li { display: flex; align-items: center; gap: 12px; font-size: 0.96rem; color: var(--text); }
.svc__points li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.svc__cta { display: inline-flex; align-items: center; gap: 7px; margin-top: 24px; font-family: var(--ff-body); font-weight: 800; font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--blue); }
.svc__cta svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.svc:hover .svc__cta svg { transform: translateX(5px); }
.svc__badge { position: absolute; top: 16px; right: 30px; z-index: 3; font-family: var(--ff-mono); font-weight: 700; font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: #000; background: var(--blue); border-radius: 100px; padding: 5px 10px; }
.svc:nth-child(3n) .svc__badge { right: 0; }

/* ---------- Before / After peek carousel ---------- */
.ba { position: relative; }
.ba__viewport { position: relative; overflow: hidden; margin-top: 44px; padding-block: 4px; width: 100vw; margin-left: calc(50% - 50vw); }
.ba__track { display: flex; gap: 18px; transition: transform 0.6s var(--ease); will-change: transform; padding-inline: 0; }
.ba__slide { position: relative; flex: 0 0 76%; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-strong); background: #000; opacity: 0.4; transform: scale(0.95); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.ba__slide.is-active { opacity: 1; transform: scale(1); box-shadow: 0 24px 60px -28px rgba(0,0,0,0.95); }
.ba__slide img { width: 100%; height: auto; object-fit: contain; display: block; }
.ba__split { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--blue); box-shadow: 0 0 16px var(--blue-glow); pointer-events: none; opacity: 0; transition: opacity 0.4s var(--ease); }
.ba__tag { position: absolute; bottom: 16px; z-index: 2; font-family: var(--ff-mono); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); background: rgba(8,9,10,0.72); backdrop-filter: blur(6px); padding: 7px 14px; border-radius: 100px; border: 1px solid var(--line-strong); opacity: 0; transition: opacity 0.4s var(--ease); }
.ba__tag--before { left: 16px; }
.ba__tag--after { right: 16px; color: var(--blue); border-color: rgba(0,171,223,0.45); }
.ba__slide.is-active .ba__split, .ba__slide.is-active .ba__tag { opacity: 1; }
.ba__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 52px; height: 52px; border-radius: 50%; background: rgba(8,9,10,0.7); border: 1px solid var(--line-strong); backdrop-filter: blur(8px); display: grid; place-items: center; color: var(--white); transition: background .25s var(--ease), border-color .25s var(--ease); }
.ba__nav:hover { background: var(--blue); border-color: var(--blue); color: #03171d; }
.ba__nav svg { width: 24px; height: 24px; }
.ba__nav--prev { left: clamp(8px, 2vw, 24px); }
.ba__nav--next { right: clamp(8px, 2vw, 24px); }
.ba__dots { display: flex; gap: 9px; justify-content: center; margin-top: 24px; }
.ba__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--surface-3); border: 1px solid var(--line-strong); cursor: pointer; transition: all .25s var(--ease); padding: 0; }
.ba__dot.is-active { background: var(--blue); border-color: var(--blue); width: 26px; border-radius: 100px; }

/* ---------- Mobile detailing ---------- */
.mobile-sec { position: relative; overflow: hidden; }
.mobile-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.mobile-figure { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); }
.mobile-figure img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4/3.4; }
.mobile-figure__badge { position: absolute; bottom: 16px; left: 16px; z-index: 2; display: inline-flex; align-items: center; gap: 8px; background: var(--blue); color: #000; font-family: var(--ff-mono); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 8px 14px; border-radius: 8px; }
.we-come { display: inline-flex; align-items: center; gap: 10px; font-family: var(--ff-mono); font-weight: 700; color: var(--blue); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; }
/* dispatch regions card */
.dispatch { margin-top: 28px; border: 1px solid var(--line); border-radius: var(--r-lg); background: rgba(255,255,255,0.02); padding: 24px 26px; }
.dispatch__head { display: flex; align-items: center; gap: 10px; font-family: var(--ff-mono); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); }
.dispatch__head svg { width: 18px; height: 18px; color: var(--blue); }
.dispatch__desc { color: var(--muted); font-size: 0.95rem; line-height: 1.6; margin-top: 14px; }
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.area-tags span { font-family: var(--ff-mono); font-size: 0.8rem; padding: 8px 13px; border: 1px solid var(--line-strong); border-radius: 8px; color: var(--text); background: var(--bg); }
.link-cta { display: inline-flex; align-items: center; gap: 9px; margin-top: 26px; font-family: var(--ff-body); font-weight: 800; font-size: 0.9rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--blue); }
.link-cta svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.link-cta:hover svg { transform: translateX(5px); }

/* ---------- Stats (creative) ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { position: relative; overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 26px 24px 24px; transition: border-color .3s var(--ease), transform .3s var(--ease); }
.stat::before { content:""; position:absolute; left:0; right:0; top:0; height:2px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.stat:hover { transform: translateY(-4px); border-color: rgba(0,171,223,0.45); }
.stat:hover::before { transform: scaleX(1); }
.stat__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.stat__kicker { font-family: var(--ff-mono); font-weight: 700; font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); }
.stat__icon { width: 20px; height: 20px; color: var(--muted-2); flex-shrink: 0; }
.stat__num { font-family: var(--ff-display); font-weight: 900; font-style: italic; font-size: clamp(2.8rem, 4.6vw, 3.8rem); line-height: 0.92; letter-spacing: -0.05em; color: var(--white); margin-top: 22px; display: flex; align-items: baseline; }
.stat__num small { font-size: 0.32em; font-weight: 800; font-style: italic; color: var(--blue); margin-left: 7px; letter-spacing: 0.02em; }
.stat__label { margin-top: 10px; font-family: var(--ff-mono); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.about-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.about-photo { position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); }
.about-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.about-photo:hover img { transform: scale(1.05); }
.about-photo--2 { margin-top: 42px; }
.about-photo__tag { position: absolute; left: 10px; bottom: 10px; font-family: var(--ff-mono); font-weight: 700; font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; background: rgba(8,9,10,0.74); border: 1px solid var(--line-strong); padding: 4px 9px; border-radius: 6px; }
.about-copy p { color: var(--text); font-size: clamp(1.02rem,1.4vw,1.16rem); margin-top: 16px; }
.about-copy p.muted { color: var(--muted); font-size: 1rem; }
.signature { margin-top: 24px; font-family: var(--ff-display); font-weight: 700; color: var(--muted); font-size: 0.95rem; }
.owner-mini { display: flex; align-items: center; gap: 16px; margin-top: 26px; }
.owner-mini__avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--blue); }
.owner-mini b { font-family: var(--ff-display); font-weight: 800; font-style: italic; text-transform: uppercase; letter-spacing: -0.02em; display: block; }
.owner-mini span { font-family: var(--ff-mono); color: var(--blue); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- Process (outline-number timeline) ---------- */
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 52px; }
.step { position: relative; }
.step__n { font-family: var(--ff-display); font-weight: 900; font-style: italic; font-size: clamp(3rem, 5vw, 4.6rem); line-height: 0.9; color: var(--blue); letter-spacing: -0.04em; }
.step__rule { position: relative; margin: 24px 0 22px; height: 1px; background-image: linear-gradient(90deg, rgba(0,171,223,0.5) 0 7px, transparent 7px 14px); background-repeat: repeat-x; background-size: 14px 1px; }
.step__rule::before { content:""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 13px; height: 13px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(0,171,223,0.16), 0 0 12px 2px var(--blue-glow); }
.step h3 { font-family: var(--ff-display); font-weight: 800; font-style: italic; text-transform: uppercase; font-size: clamp(1.15rem, 1.6vw, 1.35rem); letter-spacing: -0.03em; }
.step p { color: var(--muted); font-size: 0.94rem; margin-top: 12px; line-height: 1.6; }
.process-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 48px; }

/* ---------- Reviews (Google embed style) ---------- */
.reviews-head { display: flex; align-items: center; gap: 24px; margin-top: 40px; padding: 22px 26px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); flex-wrap: wrap; }
.reviews-head__score { display: flex; align-items: center; gap: 18px; }
.reviews-head__big { font-family: var(--ff-display); font-weight: 900; font-style: italic; font-size: 3rem; line-height: 1; }
.reviews-head__meta .stars { margin-top: 0; }
.reviews-head__meta p { color: var(--muted); font-size: 0.9rem; margin-top: 4px; }
.reviews-head__g { display: inline-flex; align-items: center; gap: 8px; margin-left: auto; font-size: 0.92rem; color: var(--muted); }
.reviews-head__g .g-logo { width: 24px; height: 24px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
.greview { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.greview__head { display: flex; align-items: center; gap: 12px; }
.greview__avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-family: var(--ff-display); font-weight: 700; color: #fff; font-size: 1.05rem; }
.greview__who { flex-grow: 1; }
.greview__who b { font-size: 0.95rem; display: block; }
.greview__who span { font-size: 0.8rem; color: var(--muted-2); }
.greview__g { width: 18px; height: 18px; }
.greview__stars { display: inline-flex; gap: 1px; color: #FFC53D; }
.greview__stars svg { width: 16px; height: 16px; }
.greview__body { color: var(--text); font-size: 0.94rem; line-height: 1.6; }
.greview__ph { color: var(--muted-2); font-style: italic; }
.reviews-note { font-size: 0.82rem; color: var(--muted-2); margin-top: 18px; display: flex; align-items: center; gap: 8px; }
.reviews-note svg { width: 15px; height: 15px; color: var(--blue); }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 40px; border-top: 1px solid var(--line); max-width: 880px; }
.faq { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left; padding: 24px 4px; font-family: var(--ff-display); font-weight: 800; font-style: italic; text-transform: uppercase; font-size: clamp(1.05rem, 1.8vw, 1.26rem); letter-spacing: -0.03em; transition: color .2s var(--ease); }
.faq__q:hover { color: var(--blue); }
.faq__icon { flex-shrink: 0; width: 30px; height: 30px; border: 1px solid var(--line-strong); border-radius: 50%; display: grid; place-items: center; transition: transform 0.35s var(--ease), border-color 0.3s, background 0.3s; }
.faq__icon svg { width: 15px; height: 15px; color: var(--blue); }
.faq.is-open .faq__icon { transform: rotate(45deg); border-color: var(--blue); background: rgba(0,171,223,0.1); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s var(--ease); }
.faq__a > div { overflow: hidden; }
.faq.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a p { color: var(--muted); padding: 0 4px 26px; max-width: 70ch; font-size: 1rem; }

/* ---------- Quote CTA + form ---------- */
.quote-cta { position: relative; overflow: hidden; background:
    radial-gradient(80% 120% at 100% 0%, rgba(0,171,223,0.16), transparent 60%), var(--bg-alt);
  border-block: 1px solid var(--line); }
.quote-grid { display: grid; grid-template-columns: 1fr 0.95fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.quote-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 36px); }
.quote-form h3 { font-family: var(--ff-display); font-weight: 900; font-style: italic; text-transform: uppercase; font-size: 1.6rem; letter-spacing: -0.04em; }
.quote-form > p { color: var(--muted); font-size: 0.94rem; margin-top: 6px; }
.field { margin-top: 16px; }
.field label { display: block; font-family: var(--ff-mono); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.field input, .field select {
  width: 100%; background: var(--bg); border: 1px solid var(--line-strong); border-radius: var(--r-sm);
  padding: 13px 14px; color: var(--white); font-family: var(--ff-body); font-size: 1rem; min-height: 50px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,171,223,0.15); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form .btn { margin-top: 20px; }
.quote-form__fine { font-size: 0.78rem; color: var(--muted-2); margin-top: 14px; text-align: center; }

/* ---------- Footer ---------- */
.site-footer { background: #0A0A0A; border-top: 1px solid var(--line); padding-top: clamp(56px, 7vw, 88px); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand img { height: 92px; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; margin-top: 18px; max-width: 32ch; }
.footer-col h4 { font-family: var(--ff-mono); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col li { font-size: 0.94rem; color: var(--muted); }
.footer-col a:hover { color: var(--blue); }
.nap { font-style: normal; }
.nap a { display: flex; gap: 10px; align-items: flex-start; color: var(--text); }
.nap a:hover { color: var(--blue); }
.nap svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; margin-top: 3px; }
.footer-map { aspect-ratio: 16/8; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); margin-top: 18px; }
.footer-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) invert(0.9) hue-rotate(180deg); }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 42px; height: 42px; border: 1px solid var(--line-strong); border-radius: var(--r-sm); display: grid; place-items: center; color: var(--text); transition: border-color 0.2s var(--ease), background 0.2s, color 0.2s; }
.socials a:hover { border-color: var(--blue); color: var(--blue); background: rgba(0,171,223,0.08); }
.socials svg { width: 19px; height: 19px; }
.footer-bottom { margin-top: clamp(40px,5vw,64px); border-top: 1px solid var(--line); padding-block: 24px 36px; display: flex; flex-wrap: wrap; gap: 14px 26px; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 0.84rem; color: var(--muted-2); }
.footer-certs { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.footer-certs span { font-size: 0.82rem; color: var(--muted); }

/* ---------- Watch / YouTube embed ---------- */
.watch { text-align: center; }
.watch .section-head { margin-inline: auto; }
.watch__frame { position: relative; aspect-ratio: 16/9; max-width: 980px; margin: 44px auto 0; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-strong); background: #000; box-shadow: 0 40px 90px -40px rgba(0,0,0,0.95); }
.watch__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.watch__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* ---------- Numbers band (spec strip) ---------- */
.numbers { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 48px; }
.num { position: relative; padding: 6px 30px; }
.num:not(:first-child) { border-left: 1px solid var(--line); }
.num b { display: block; font-family: var(--ff-display); font-style: italic; font-weight: 900; font-size: clamp(2.8rem, 4.6vw, 4.2rem); letter-spacing: -1px; line-height: 0.95; color: var(--white); transition: color 0.3s var(--ease); }
.num b small { font-size: 0.45em; color: var(--blue); font-style: italic; }
.num b.text-blue { color: var(--blue); }
.num:hover b { color: var(--blue); }
.num em { display: block; width: 38px; height: 3px; background: var(--blue); margin-top: 18px; border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform 0.6s var(--ease); }
.reveal.is-in .num em { transform: scaleX(1); }
.num span { display: block; margin-top: 16px; font-family: var(--ff-mono); font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 700px) {
  .numbers { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .num { padding-block: 0; }
  .num:nth-child(odd) { border-left: none; padding-left: 0; }
}

/* ---------- Instagram grid ---------- */
.ig__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.ig__pill { display: inline-flex; align-items: center; gap: 12px; padding: 9px 9px 9px 18px; border-radius: 100px; color: #fff; font-family: var(--ff-body); font-weight: 800; font-size: 0.95rem; background: linear-gradient(95deg, #F58529 0%, #DD2A7B 45%, #8134AF 100%); box-shadow: 0 12px 36px -12px rgba(221,42,123,0.5); }
.ig__pill svg { width: 22px; height: 22px; }
.ig__pill .ig__arrow { width: 34px; height: 34px; border-radius: 50%; background: #fff; display: grid; place-items: center; color: #DD2A7B; }
.ig__pill .ig__arrow svg { width: 16px; height: 16px; }
.ig__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-top: 40px; }
.ig__item { position: relative; aspect-ratio: 1; break-inside: avoid; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); display: block; }
.ig__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.ig__item:hover img { transform: scale(1.08); }
.ig__item::after { content: ""; position: absolute; inset: 0; background: rgba(8,9,10,0); transition: background 0.3s var(--ease); }
.ig__item:hover::after { background: rgba(8,9,10,0.35); }
.ig__item .ig__ico { position: absolute; inset: 0; margin: auto; width: 30px; height: 30px; color: #fff; opacity: 0; transform: scale(0.8); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); z-index: 2; }
.ig__item:hover .ig__ico { opacity: 1; transform: scale(1); }

/* ---------- Before/after grid + Gallery + mobile actions ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.ba-card { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-strong); background: #000; }
.ba-card img { width: 100%; height: auto; display: block; transition: transform 0.6s var(--ease); }
.ba-card:hover img { transform: scale(1.03); }
.ba-card figcaption { position: absolute; left: 14px; bottom: 14px; font-family: var(--ff-mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; background: rgba(8,9,10,0.6); border: 1px solid var(--line-strong); padding: 5px 11px; border-radius: 100px; backdrop-filter: blur(6px); }
@media (max-width: 820px) { .ba-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }

.gallery-grid { column-count: 4; column-gap: 16px; margin-top: 44px; }
.gal__item { display: block; break-inside: avoid; margin-bottom: 16px; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); position: relative; }
.gal__item img { width: 100%; height: auto; display: block; transition: transform 0.5s var(--ease); }
.gal__item::after { content: ""; position: absolute; inset: 0; background: rgba(8,9,10,0); transition: background 0.3s var(--ease); }
.gal__item:hover img { transform: scale(1.06); }
.gal__item:hover::after { background: rgba(0,171,223,0.16); }
@media (max-width: 980px) { .gallery-grid { column-count: 3; } }
@media (max-width: 680px) { .gallery-grid { column-count: 2; column-gap: 10px; } .gal__item { margin-bottom: 10px; } }

.mobile-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 26px; margin-top: 26px; }
.mobile-actions .link-cta { margin-top: 0; }

/* ---------- Watch grid (multiple videos) ---------- */
.watch__grid { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 16px; max-width: 1100px; margin: 44px auto 0; }
.watch__grid .watch__frame { position: relative; max-width: none; margin: 0; aspect-ratio: 16/9; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line-strong); background: #000; }
.watch__grid .watch__frame--main { grid-row: span 2; aspect-ratio: auto; }
.watch__grid .watch__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- CTA conversion extras ---------- */
.cta-trust { display: flex; align-items: center; gap: 14px; margin-top: 22px; padding: 12px 16px; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); width: fit-content; }
.cta-trust .stars { margin-top: 0; }
.cta-trust b { font-family: var(--ff-display); font-weight: 800; font-style: italic; font-size: 1.1rem; }
.cta-trust span { font-family: var(--ff-mono); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.cta-benefits { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.cta-benefits li { display: flex; align-items: center; gap: 12px; font-size: 0.98rem; color: var(--text); }
.cta-benefits svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; }
.quote-form__badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--ff-mono); font-weight: 700; font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); background: rgba(0,171,223,0.1); border: 1px solid rgba(0,171,223,0.3); padding: 6px 11px; border-radius: 100px; margin-bottom: 16px; }
.quote-form__badge svg { width: 14px; height: 14px; }

/* ---------- Why (trust card) ---------- */
.why__card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: 28px; padding: clamp(30px, 4.5vw, 60px); display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(28px, 5vw, 56px); align-items: center; overflow: hidden; }
.why__card::before { content: ""; position: absolute; right: -10%; top: -30%; width: 420px; height: 420px; background: radial-gradient(circle, var(--blue-glow), transparent 65%); opacity: 0.35; pointer-events: none; }
.why__title { position: relative; font-family: var(--ff-display); font-weight: 900; font-style: italic; text-transform: uppercase; font-size: clamp(1.8rem, 3.4vw, 3rem); line-height: 1; letter-spacing: -0.04em; }
.why__list { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; position: relative; }
.why__list li { display: flex; align-items: flex-start; gap: 14px; font-size: clamp(1rem, 1.3vw, 1.14rem); color: var(--text); }
.why__list svg { width: 22px; height: 22px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.why__list u { text-decoration-color: var(--blue); text-underline-offset: 3px; }
.why__foot { display: inline-flex; align-items: center; gap: 10px; margin-top: 30px; font-family: var(--ff-mono); font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); position: relative; }
.why__foot svg { width: 18px; height: 18px; color: var(--blue); }
.why__media { position: relative; justify-self: center; }
.why__photo { width: clamp(220px, 26vw, 340px); aspect-ratio: 1; border-radius: 50%; object-fit: cover; border: 1px solid var(--line-strong); display: block; }
.why__badge { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); background: #fff; color: #0A0A0A; font-family: var(--ff-display); font-weight: 800; font-style: italic; text-transform: uppercase; font-size: 0.92rem; letter-spacing: -0.02em; padding: 12px 22px; border-radius: 100px; white-space: nowrap; box-shadow: 0 14px 34px -12px rgba(0,0,0,0.7); }
@media (max-width: 820px) {
  .why__card { grid-template-columns: 1fr; }
  .why__media { order: -1; }
}

/* ---------- FAQ layout (contact card + accordion) ---------- */
.faq-layout { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 24px; margin-top: 44px; align-items: start; }
.faq-contact { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); min-height: 540px; display: flex; }
.faq-contact > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.faq-contact__overlay { position: relative; z-index: 1; width: 100%; display: flex; flex-direction: column; justify-content: space-between; padding: 22px; background: linear-gradient(180deg, rgba(8,9,10,0.15) 0%, rgba(8,9,10,0.25) 38%, rgba(8,9,10,0.94) 100%); }
.faq-contact__badge { align-self: flex-start; display: inline-flex; align-items: center; gap: 9px; background: rgba(8,9,10,0.6); backdrop-filter: blur(6px); border: 1px solid var(--line-strong); color: #fff; font-family: var(--ff-mono); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 7px 13px; border-radius: 100px; }
.faq-contact__badge i { width: 8px; height: 8px; border-radius: 50%; background: #2ecc71; box-shadow: 0 0 8px #2ecc71; }
.faq-contact__hi { font-family: var(--ff-display); font-weight: 900; font-style: italic; text-transform: uppercase; font-size: clamp(1.4rem, 2vw, 1.75rem); line-height: 1; letter-spacing: -1px; color: #fff; margin-bottom: 18px; max-width: 18ch; }
.faq-contact__body .btn { width: 100%; margin-bottom: 10px; }
.faq-contact__note { display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; font-family: var(--ff-mono); font-size: 0.7rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
.faq-contact__note svg { width: 14px; height: 14px; color: var(--blue); }
.faq-layout .faq-list { margin-top: 0; border-top: none; max-width: none; display: flex; flex-direction: column; gap: 14px; }
.faq-layout .faq { border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); transition: border-color .25s var(--ease); }
.faq-layout .faq.is-open { border-color: rgba(0,171,223,0.5); }
.faq-layout .faq__q { padding: 22px 24px; }
.faq-layout .faq__a p { padding: 0 24px 24px; }
@media (max-width: 820px) { .faq-layout { grid-template-columns: 1fr; } .faq-contact { min-height: 380px; } }

/* ---------- Multi-step form ---------- */
.mstep__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.mstep__count { font-family: var(--ff-mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.mstep__bar { height: 4px; background: var(--surface-2); border-radius: 100px; overflow: hidden; margin-top: 14px; }
.mstep__progress { display: block; height: 100%; width: 33.33%; background: var(--blue); border-radius: 100px; transition: width 0.4s var(--ease); }
.mstep__panel { display: none; margin-top: 20px; }
.mstep__panel.is-active { display: block; animation: mfade 0.35s var(--ease); }
@keyframes mfade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.mstep__q { font-family: var(--ff-display); font-weight: 800; font-style: italic; text-transform: uppercase; letter-spacing: -1px; font-size: 1.1rem; margin-bottom: 14px; }
.opt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.opt { text-align: left; padding: 14px 16px; border: 1px solid var(--line-strong); border-radius: var(--r-sm); background: var(--bg); color: var(--text); font-family: var(--ff-body); font-weight: 600; font-size: 0.92rem; cursor: pointer; transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease); }
.opt:hover { border-color: var(--blue); }
.opt.is-sel { border-color: var(--blue); background: rgba(0,171,223,0.12); color: var(--white); }
.mstep__nav { display: flex; gap: 12px; margin-top: 22px; }
.mstep__nav .btn { flex: 1; min-height: 50px; }
.mstep__summary { margin-top: 16px; padding: 14px 16px; border: 1px dashed var(--line-strong); border-radius: var(--r-sm); font-family: var(--ff-mono); font-size: 0.76rem; color: var(--muted); line-height: 1.8; }
.mstep__summary b { color: var(--text); }

/* ---------- Certificates ---------- */
.certs__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.certs__photo { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); }
.certs__photo img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4/5; }
.certs__list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.cert { display: flex; align-items: flex-start; gap: 13px; padding: 18px; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); transition: border-color 0.25s var(--ease); }
.cert:hover { border-color: rgba(0,171,223,0.5); }
.cert svg { width: 24px; height: 24px; color: var(--blue); flex-shrink: 0; }
.cert b { font-family: var(--ff-display); font-weight: 800; font-style: italic; text-transform: uppercase; font-size: 1rem; letter-spacing: -1px; display: block; }
.cert span { font-family: var(--ff-mono); font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 820px) { .certs__grid { grid-template-columns: 1fr; } .certs__photo { order: -1; max-width: 460px; } }
@media (max-width: 560px) { .certs__list { grid-template-columns: 1fr; } }

/* ---------- Sticky mobile bottom bar ---------- */
.mobile-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 55; display: none; grid-template-columns: 1fr 1fr; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(8,9,10,0.94); backdrop-filter: blur(12px); border-top: 1px solid var(--line); }
.mobile-bar .btn { width: 100%; min-height: 52px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .svc { padding-inline: 30px; border-left: none; }
  .svc:nth-child(2n+1) { padding-left: 0; }
  .svc:nth-child(2n+1) .svc__num { left: 0; }
  .svc:nth-child(2n) { padding-right: 0; border-left: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 920px) {
  .topbar__item--hide { display: none; }
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .header-cta { display: none; }
  .hero__grid { grid-template-columns: 1fr; }
  .rating-card { width: 100%; max-width: 320px; }
  .mobile-grid, .about-grid, .quote-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .services-feat { grid-template-columns: 1fr; }
  .trust__sep { display: none; }
  .trust__row { gap: 14px 28px; justify-content: flex-start; }
  .trust__item { flex: 0 0 auto; justify-content: flex-start; }
  .ba__slide { flex: 0 0 82%; }
  .footer-bottom { padding-bottom: 96px; }
  .ig__grid { grid-template-columns: repeat(3, 1fr); }
  .watch__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .watch__grid .watch__frame--main { grid-column: span 2; grid-row: auto; aspect-ratio: 16/9; }
  .mobile-bar { display: grid; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; gap: 48px; }
  .svc { padding-inline: 0; border-left: none !important; }
  .svc .svc__num { left: 0; }
  .svc .svc__badge { right: 0; }
  .svc > img { height: clamp(300px, 72vw, 460px); }
  .svc-feat__actions { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .hero__copy { max-width: 100%; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .ba__slide { flex: 0 0 90%; }
  .ig__grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .watch__grid { grid-template-columns: 1fr; }
  .watch__grid .watch__frame--main { grid-column: auto; }
  .ba__nav { width: 44px; height: 44px; }
  .reviews-head { gap: 16px; }
}
