/* RX Investigation Agency ? Teal Noir + Copper theme */
:root {
  --ink: #0c171c;
  --ink-soft: #163039;
  --slate: #4a6068;
  --mist: #e4eceb;
  --paper: #f4f8f7;
  --white: #ffffff;
  --brass: #c9783a;
  --brass-light: #e09455;
  --teal: #1a9b8e;
  --teal-deep: #0f7a70;
  --line: rgba(12, 23, 28, 0.1);
  --shadow: 0 14px 44px rgba(12, 23, 28, 0.1);
  --radius: 10px;
  --max: 1120px;
  --nav-h: 72px;
  --nav-sub-h: 0px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 100% -10%, rgba(26, 155, 142, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(201, 120, 58, 0.06), transparent 45%),
    var(--paper);
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1.25rem;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ?? Header ?? */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 500;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header:not(.solid):not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(8, 18, 24, 0.78) 0%, rgba(8, 18, 24, 0.35) 70%, transparent 100%);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 120, 58, 0.45), rgba(30, 120, 120, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

/* No backdrop-filter / filter / transform on header ? they break fixed mobile menu */
.site-header.is-scrolled,
.site-header.solid {
  background: #f7faf9;
  box-shadow: 0 8px 28px rgba(12, 23, 28, 0.1);
}

.site-header.is-scrolled::after,
.site-header.solid::after {
  opacity: 1;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .site-header {
  background: #f7faf9;
  box-shadow: none;
}

body.nav-open .site-header::after {
  opacity: 0;
}

.site-header.is-scrolled .logo,
.site-header.solid .logo,
.site-header.is-scrolled .logo-text strong,
.site-header.solid .logo-text strong,
.site-header.is-scrolled .logo-text span,
.site-header.solid .logo-text span,
.site-header.is-scrolled .nav-link:not(.nav-cta),
.site-header.solid .nav-link:not(.nav-cta) {
  color: var(--ink);
}

.site-header.is-scrolled .logo-text span,
.site-header.solid .logo-text span {
  opacity: 0.7;
}

.site-header.is-scrolled .nav-toggle span,
.site-header.solid .nav-toggle span,
body.nav-open .nav-toggle span {
  background: var(--ink);
}

.header-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  z-index: 502;
  transition: color 0.3s;
}

.logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
  background: #fff;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: inherit;
}

.logo-text span {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
  font-weight: 500;
  color: inherit;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.28rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled .nav,
.site-header.solid .nav {
  background: rgba(12, 30, 36, 0.04);
  border-color: rgba(12, 30, 36, 0.1);
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  font-weight: 500;
  padding: 0.48rem 0.78rem;
  border-radius: 999px;
  transition: color 0.25s, background 0.25s;
  position: relative;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--brass-light);
  background: rgba(255, 255, 255, 0.1);
}

.site-header.is-scrolled .nav-link:hover,
.site-header.solid .nav-link:hover,
.site-header.is-scrolled .nav-link.is-active,
.site-header.solid .nav-link.is-active {
  color: var(--teal-deep);
  background: rgba(20, 110, 115, 0.1);
}

.nav-cta {
  margin-left: 0.2rem;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep)) !important;
  color: var(--white) !important;
  padding: 0.5rem 1rem !important;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: filter 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 8px 18px rgba(15, 90, 95, 0.28);
}

.nav-cta svg {
  width: 14px;
  height: 14px;
}

.nav-cta:hover {
  filter: brightness(1.08);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(15, 90, 95, 0.35);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.25rem;
  padding-left: 0.35rem;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.site-header.is-scrolled .nav-actions,
.site-header.solid .nav-actions {
  border-left-color: rgba(12, 30, 36, 0.12);
}

.nav-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, box-shadow 0.25s, color 0.25s;
}

.nav-ico svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.nav-ico-label {
  display: none;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-ico:hover {
  transform: translateY(-2px);
}

.nav-ico-call {
  color: #9fe7ff;
}

.nav-ico-call:hover {
  background: rgba(56, 189, 248, 0.22);
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 8px 18px rgba(14, 116, 144, 0.28);
}

.nav-ico-wa {
  color: #7dffb0;
  background: rgba(37, 211, 102, 0.16);
  border-color: rgba(37, 211, 102, 0.35);
}

.nav-ico-wa:hover {
  background: rgba(37, 211, 102, 0.3);
  color: #fff;
  box-shadow: 0 8px 18px rgba(18, 140, 70, 0.3);
}

.site-header.is-scrolled .nav-ico-call,
.site-header.solid .nav-ico-call {
  color: #0284c7;
  background: rgba(14, 165, 233, 0.1);
  border-color: rgba(14, 165, 233, 0.25);
}

.site-header.is-scrolled .nav-ico-wa,
.site-header.solid .nav-ico-wa {
  color: #15803d;
  background: rgba(37, 211, 102, 0.14);
  border-color: rgba(22, 163, 74, 0.3);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  z-index: 502;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s, background 0.3s;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ?? Hero ?? */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  padding: calc(var(--nav-h) + 3.25rem) 0 6.5rem;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #0b1c2c;
  background-image:
    linear-gradient(115deg, rgba(11, 28, 44, 0.9) 0%, rgba(11, 28, 44, 0.58) 42%, rgba(11, 28, 44, 0.38) 100%),
    url("../assets/welcome-hero.png");
  background-size: cover;
  background-position: center 28%;
  z-index: 0;
}

.hero-bg--city {
  background-image:
    linear-gradient(160deg, rgba(11, 28, 44, 0.78) 0%, rgba(11, 28, 44, 0.45) 45%, rgba(11, 28, 44, 0.82) 100%),
    url("../assets/hero-city-night.png");
}

.hero-bg--skyline {
  background-image:
    linear-gradient(160deg, rgba(11, 28, 44, 0.72) 0%, rgba(11, 28, 44, 0.4) 50%, rgba(11, 28, 44, 0.85) 100%),
    url("../assets/hero-skyline.png");
}

.hero-bg--texture {
  background-image:
    linear-gradient(160deg, rgba(11, 28, 44, 0.75) 0%, rgba(11, 28, 44, 0.55) 100%),
    url("../assets/page-hero-texture.png");
}

.hero-bg--consult {
  background-image:
    linear-gradient(160deg, rgba(11, 28, 44, 0.8) 0%, rgba(11, 28, 44, 0.5) 50%, rgba(11, 28, 44, 0.85) 100%),
    url("../assets/about-consult.png");
}

.hero-bg--team {
  background-image:
    linear-gradient(160deg, rgba(11, 28, 44, 0.78) 0%, rgba(11, 28, 44, 0.5) 100%),
    url("../assets/gallery-team-walk.png");
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(to top, var(--paper), transparent);
  opacity: 0.15;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  padding-top: 0.35rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.85rem, 8.2vw, 5.6rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.025em;
  margin-bottom: 0.55rem;
  max-width: 14ch;
  animation: rise 0.9s 0.06s var(--ease) both;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.hero-brand em {
  font-style: italic;
  color: var(--brass-light);
  font-weight: 500;
}

.hero-tag {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.15rem;
  animation: rise 0.9s 0.1s var(--ease) both;
}

.hero-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  max-width: 34ch;
  opacity: 0.92;
  margin-bottom: 1.85rem;
  font-weight: 300;
  line-height: 1.55;
  animation: rise 0.9s 0.12s var(--ease) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: rise 0.9s 0.22s var(--ease) both;
}

.hero-welcome {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 0.85rem;
  animation: rise 0.9s var(--ease) both;
}

.hero-welcome::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--brass-light);
}

.btn-call {
  background: linear-gradient(145deg, #2b7fff, #1a5fd4);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(31, 111, 235, 0.28);
}

.btn-call:hover {
  background: linear-gradient(145deg, #4b91ff, #1f6feb);
}

.btn-wa {
  background: linear-gradient(145deg, #2ee06a, #1ebe57);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.28);
}

.btn-wa:hover {
  background: linear-gradient(145deg, #45e87a, #25d366);
}

.btn-icon {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
}

.btn-call .btn-icon,
.btn-wa .btn-icon {
  width: 1.2em;
  height: 1.2em;
}

.welcome-strip {
  position: relative;
  z-index: 2;
  margin-top: -3.25rem;
  padding-bottom: 0.5rem;
}

.welcome-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(11, 28, 44, 0.14);
}

.welcome-card-media {
  min-height: 260px;
  background:
    linear-gradient(160deg, rgba(11, 28, 44, 0.12), rgba(11, 28, 44, 0.28)),
    url("../assets/welcome-desk.png") center / cover;
}

.welcome-card-body {
  padding: 2rem 2.1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.welcome-card-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.15;
  margin-bottom: 0.65rem;
}

.welcome-card-body p {
  color: var(--slate);
  margin-bottom: 1.35rem;
}

.welcome-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.welcome-actions .btn {
  padding: 0.75rem 1.2rem;
  font-size: 0.9rem;
}

.svc-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.svc-tile {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  min-height: 240px;
  color: var(--white);
  background: var(--ink);
  transition: transform 0.35s var(--ease);
}

.svc-tile:hover {
  transform: translateY(-5px);
}

.svc-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.svc-tile:hover img {
  transform: scale(1.05);
}

.svc-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 28, 44, 0.08) 15%, rgba(11, 28, 44, 0.9) 100%);
}

.svc-tile-body {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 240px;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.svc-tile-body span {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-light);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.svc-tile-body h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
}

.svc-tile-body p {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.45;
}

.chat-band {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}

.chat-band img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--ink-soft);
}

.chat-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.chat-band p {
  color: var(--slate);
  margin-bottom: 1.35rem;
}

.float-dock {
  position: fixed;
  right: 1.1rem;
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: opacity 0.25s, transform 0.25s var(--ease);
}

/* Left chat launcher ? same level as right float, options open upward */
.chat-launcher {
  position: fixed;
  left: 0.9rem;
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  z-index: 200;
  width: 58px;
  height: 58px;
}

.chat-launcher-toggle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--teal), var(--teal-deep));
  border: 2px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 12px 28px rgba(15, 90, 95, 0.38);
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 2;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, filter 0.25s, background 0.25s;
}

.chat-launcher-toggle:hover {
  transform: scale(1.06);
  filter: brightness(1.06);
}

.chat-launcher.is-open .chat-launcher-toggle {
  background: linear-gradient(145deg, #c9783a, #a65f2c);
  box-shadow: 0 12px 28px rgba(201, 120, 58, 0.35);
}

.chat-launcher-toggle svg {
  width: 26px;
  height: 26px;
  transition: opacity 0.2s, transform 0.25s var(--ease);
}

.chat-launcher-toggle .ico-close {
  position: absolute;
  opacity: 0;
  transform: rotate(-90deg) scale(0.6);
}

.chat-launcher.is-open .chat-launcher-toggle .ico-chat {
  opacity: 0;
  transform: rotate(90deg) scale(0.6);
}

.chat-launcher.is-open .chat-launcher-toggle .ico-close {
  opacity: 1;
  transform: none;
}

.chat-launcher-toggle .pulse {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(26, 155, 142, 0.65);
  animation: pulse-ring 2s ease-out infinite;
  pointer-events: none;
}

.chat-launcher.is-open .chat-launcher-toggle .pulse {
  display: none;
}

.chat-launcher-menu {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.75rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(14px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
  z-index: 1;
}

.chat-launcher.is-open .chat-launcher-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}

.chat-fab-link {
  position: relative;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0;
  box-shadow: 0 10px 22px rgba(11, 28, 44, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.22s var(--ease), filter 0.2s;
}

.chat-fab-link:hover {
  transform: translateY(-3px) scale(1.06);
  filter: brightness(1.05);
}

.chat-fab-link .fab-ico {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
}

.chat-fab-link .fab-ico svg {
  width: 24px;
  height: 24px;
}

.chat-fab-link::after {
  content: attr(data-label);
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) translateX(-4px);
  white-space: nowrap;
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}

.chat-launcher.is-open .chat-fab-link::after {
  opacity: 1;
  transform: translateY(-50%);
}

.chat-fab-link.is-call {
  background: linear-gradient(145deg, #4b91ff, #1a5fd4);
}

.chat-fab-link.is-wa {
  background: linear-gradient(145deg, #5af08a, #128c7e);
}

body.nav-open .chat-launcher {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 560px) {
  .chat-launcher {
    left: 0.75rem;
    bottom: max(1.1rem, env(safe-area-inset-bottom, 0px));
    width: 56px;
    height: 56px;
  }

  .chat-launcher-toggle {
    width: 56px;
    height: 56px;
  }

  .chat-fab-link {
    width: 50px;
    height: 50px;
  }
}

.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 12px 28px rgba(11, 28, 44, 0.28);
  transition: transform 0.25s var(--ease), box-shadow 0.25s, filter 0.25s;
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 16px 36px rgba(11, 28, 44, 0.38);
  filter: brightness(1.05);
}

.float-btn svg,
.float-btn img {
  width: 28px;
  height: 28px;
  display: block;
}

.float-btn--call {
  background: linear-gradient(145deg, #4b91ff 0%, #1a5fd4 100%);
}

.float-btn--wa {
  background: linear-gradient(145deg, #5af08a 0%, #1ebe57 55%, #128c7e 100%);
}

.float-btn .tip {
  position: absolute;
  right: calc(100% + 12px);
  white-space: nowrap;
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity 0.2s, transform 0.2s;
}

.float-btn .tip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--ink);
}

.float-btn:hover .tip,
.float-btn:focus-visible .tip {
  opacity: 1;
  transform: none;
}

.float-btn .pulse {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.75);
  animation: pulse-ring 2s ease-out infinite;
  opacity: 0.55;
  pointer-events: none;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.45;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

@media (max-width: 960px) {
  .welcome-card,
  .chat-band,
  .svc-mosaic {
    grid-template-columns: 1fr;
  }

  .svc-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .office-banner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .svc-mosaic {
    grid-template-columns: 1fr;
  }

  .float-dock {
    right: 0.85rem;
    bottom: max(1.1rem, env(safe-area-inset-bottom, 0px));
  }

  .float-btn {
    width: 56px;
    height: 56px;
  }

  .float-btn svg {
    width: 26px;
    height: 26px;
  }

  .float-btn .tip {
    display: none;
  }

  .welcome-card-body {
    padding: 1.5rem;
  }
}

.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 3.5rem) 0 3.25rem;
  color: var(--white);
  overflow: hidden;
}

.page-hero .hero-bg {
  opacity: 1;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.page-hero p {
  max-width: 48ch;
  opacity: 0.88;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

/* ?? Buttons ?? */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.25s, color 0.25s, transform 0.25s, border-color 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brass-light), var(--brass));
  color: var(--white);
  box-shadow: 0 8px 22px rgba(201, 120, 58, 0.28);
}

.btn-primary:hover {
  filter: brightness(1.06);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.75);
}

.btn-outline {
  border: 1px solid var(--ink);
  color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-dark {
  background: linear-gradient(135deg, var(--ink-soft), var(--ink));
  color: var(--white);
}

.btn-dark:hover {
  filter: brightness(1.1);
}

.btn-wa-submit {
  background: linear-gradient(145deg, #2ee06a, #1ebe57);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.28);
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.btn-wa-submit:hover {
  filter: brightness(1.05);
}

.section-dark {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(26, 155, 142, 0.22), transparent 45%),
    radial-gradient(ellipse at 90% 100%, rgba(201, 120, 58, 0.15), transparent 40%),
    var(--ink);
  color: var(--white);
}

/* ?? CTA band ?? */
.cta-band {
  padding: 4.5rem 0;
  background-color: var(--ink);
  background-image:
    linear-gradient(120deg, rgba(12, 23, 28, 0.88), rgba(22, 48, 57, 0.78)),
    url("../assets/cta-atmosphere.png");
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
}
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--mist);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 3rem;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.75rem;
}

.section-dark .eyebrow {
  color: var(--brass-light);
}

.section-head h2,
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0.85rem;
}

.section-head p {
  color: var(--slate);
  font-size: 1.05rem;
}

.section-dark .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

/* ?? Feature / service grid ?? */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature {
  padding: 0;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  color: var(--brass);
}

.feature-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.15rem;
  background: var(--ink-soft);
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.feature p {
  color: var(--slate);
  font-size: 0.98rem;
}

.service-item {
  border-top: 1px solid var(--line);
  padding: 1.75rem 0;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  transition: background 0.3s;
}

.service-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--ink-soft);
}

.service-item:last-child {
  border-bottom: 1px solid var(--line);
}

.service-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brass);
  font-weight: 600;
  min-width: 2.5rem;
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.service-item p {
  color: var(--slate);
}

.service-item .arrow {
  color: var(--brass);
  font-size: 1.25rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s, transform 0.3s;
}

.service-item:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ?? About split ?? */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.split-visual {
  position: relative;
  min-height: 420px;
  background-color: #0b1c2c;
  background-image:
    linear-gradient(145deg, rgba(11, 28, 44, 0.15), rgba(11, 28, 44, 0.55)),
    url("../assets/about-office.png");
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  overflow: hidden;
}

.split-visual--board {
  background-image:
    linear-gradient(145deg, rgba(11, 28, 44, 0.2), rgba(11, 28, 44, 0.55)),
    url("../assets/about-board.png");
}

.split-visual--agent {
  background-image:
    linear-gradient(180deg, rgba(11, 28, 44, 0.1), rgba(11, 28, 44, 0.65)),
    url("../assets/agent-noir-woman.png");
  background-position: top center;
}

.split-visual::before {
  content: none;
}

.split-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(248, 250, 251, 0.95);
  color: var(--ink);
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  z-index: 1;
}

.split-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.split-copy .eyebrow {
  margin-bottom: 0.65rem;
}

.split-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.split-copy p {
  color: var(--slate);
  margin-bottom: 1rem;
}

.check-list {
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 0.65rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-weight: 500;
}

.check-list svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--brass);
}

/* ?? Process ?? */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding-top: 0.5rem;
}

.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--brass-light);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* ?? Cases ?? */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.case-card {
  position: relative;
  min-height: 300px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  background-color: #0b1c2c;
  background-size: cover;
  background-position: center;
  transition: transform 0.35s var(--ease);
}

.case-card:hover {
  transform: translateY(-4px);
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 28, 44, 0.15) 0%, rgba(11, 28, 44, 0.88) 70%);
  pointer-events: none;
}

.case-card img.case-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.case-card > * {
  position: relative;
  z-index: 1;
}

.case-tag {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.case-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin-bottom: 0.4rem;
}

.case-card p {
  font-size: 0.92rem;
  opacity: 0.8;
}

/* ?? Stats ?? */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.stat {
  position: relative;
  padding: 1rem 0.75rem;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: var(--line);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  font-weight: 600;
  line-height: 1;
  background: linear-gradient(135deg, var(--brass), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.45rem;
}

.stat span {
  font-size: 0.88rem;
  color: var(--slate);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.section-dark .stats {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.section-dark .stat:not(:last-child)::after {
  background: rgba(255, 255, 255, 0.12);
}

.section-dark .stat span {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 700px) {
  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .stat:nth-child(2n)::after {
    display: none;
  }

  .stat:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .section-dark .stat:nth-child(-n+2) {
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }
}

/* ?? Testimonials ?? */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.quote {
  padding: 2rem 0 0;
  border-top: 2px solid var(--brass);
}

.quote blockquote {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.35;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.quote cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--slate);
  font-weight: 500;
}

.quote cite span {
  display: block;
  color: var(--brass);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* ?? CTA band ?? */
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.cta-band p {
  max-width: 38ch;
  margin: 0 auto 1.75rem;
  opacity: 0.85;
}

.cta-band .hero-actions {
  justify-content: center;
}

/* ?? Team ?? */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-member {
  text-align: left;
}

.team-photo {
  aspect-ratio: 4 / 5;
  background: #1a3348;
  border-radius: var(--radius);
  margin-bottom: 1.15rem;
  position: relative;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.team-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(to top, rgba(11, 28, 44, 0.35), transparent);
  pointer-events: none;
}

.team-member h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}

.team-member .role {
  color: var(--brass);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.team-member p {
  color: var(--slate);
  font-size: 0.95rem;
}

/* ?? FAQ ?? */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  text-align: left;
  font-weight: 600;
  font-size: 1.05rem;
}

.faq-q svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  color: var(--brass);
}

.faq-item.is-open .faq-q svg {
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 0 0 1.25rem;
  color: var(--slate);
}

.faq-item.is-open .faq-a {
  display: block;
  animation: fade 0.35s var(--ease);
}

/* ?? Contact ?? */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--slate);
  margin-bottom: 2rem;
}

.contact-meta {
  display: grid;
  gap: 1rem;
}

.contact-meta li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(12, 23, 28, 0.04);
}

.contact-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--white);
}

.contact-ico svg {
  width: 22px;
  height: 22px;
}

.contact-ico--call {
  background: linear-gradient(145deg, #4b91ff, #1a5fd4);
}

.contact-ico--wa {
  background: linear-gradient(145deg, #5af08a, #1ebe57);
}

.contact-ico--office {
  background: linear-gradient(145deg, var(--brass-light), var(--brass));
}

.contact-ico--time {
  background: linear-gradient(145deg, var(--teal), var(--teal-deep));
}

.contact-meta strong {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  display: block;
  margin-bottom: 0.2rem;
}

.contact-meta a:hover {
  color: var(--teal-deep);
}

.office-banner {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem 1.6rem;
  border-radius: 16px;
  background:
    linear-gradient(120deg, rgba(26, 155, 142, 0.1), rgba(201, 120, 58, 0.1)),
    var(--white);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.office-banner::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 155, 142, 0.18), transparent 70%);
  pointer-events: none;
}

.office-banner-ico {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--ink-soft), var(--ink));
  color: var(--brass-light);
  box-shadow: 0 10px 28px rgba(12, 23, 28, 0.2);
  position: relative;
  z-index: 1;
}

.office-banner-ico svg {
  width: 32px;
  height: 32px;
}

.office-banner h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin-bottom: 0.25rem;
  position: relative;
  z-index: 1;
}

.office-banner p {
  color: var(--slate);
  margin: 0;
  position: relative;
  z-index: 1;
}

.office-banner .pin {
  color: var(--teal-deep);
  font-weight: 600;
}

.form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfcfc;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26, 155, 142, 0.18);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--slate);
}

.form-success {
  display: none;
  padding: 1rem 1.15rem;
  background: rgba(26, 155, 142, 0.12);
  border-left: 3px solid var(--teal);
  color: var(--ink);
  font-weight: 500;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.form-success.is-visible {
  display: block;
  animation: fade 0.4s var(--ease);
}

.enquiry-shell {
  position: relative;
}

.enquiry-shell::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(26, 155, 142, 0.35), rgba(201, 120, 58, 0.25));
  z-index: -1;
  opacity: 0.55;
}

/* ?? Footer ?? */
.site-footer {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(201, 120, 58, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 100%, rgba(30, 120, 120, 0.16), transparent 50%),
    linear-gradient(165deg, #0b161a 0%, var(--ink) 45%, #081116 100%);
  color: rgba(255, 255, 255, 0.78);
  padding: 4.25rem 0 1.75rem;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--brass), transparent);
  opacity: 0.9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1.15fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 32ch;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.footer-ico-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.footer-ico-btn svg {
  width: 20px;
  height: 20px;
}

.footer-ico-btn:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(201, 120, 58, 0.45);
  color: var(--brass-light);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.footer-ico-btn.is-call:hover {
  color: #7dd3fc;
  border-color: rgba(125, 211, 252, 0.4);
}

.footer-ico-btn.is-wa {
  background: rgba(37, 211, 102, 0.16);
  border-color: rgba(37, 211, 102, 0.35);
  color: #6ef0a0;
}

.footer-ico-btn.is-wa:hover {
  background: rgba(37, 211, 102, 0.28);
  color: #fff;
  border-color: rgba(37, 211, 102, 0.55);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-col h4 svg {
  width: 16px;
  height: 16px;
  color: var(--brass-light);
  flex-shrink: 0;
}

.footer-col ul {
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  font-size: 0.95rem;
  transition: color 0.25s, padding-left 0.25s;
}

.footer-col a:hover {
  color: var(--brass-light);
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-links a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(201, 120, 58, 0.55);
  transition: background 0.25s, transform 0.25s;
}

.footer-links a:hover::before {
  background: var(--brass-light);
  transform: scale(1.25);
}

.footer-contact {
  gap: 0.85rem !important;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  line-height: 1.45;
}

.footer-mini-ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--brass-light);
}

.footer-mini-ico svg {
  width: 16px;
  height: 16px;
}

.footer-mini-ico.is-wa {
  color: #6ef0a0;
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.28);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.88);
}

.footer-contact a:hover {
  color: var(--brass-light);
}

.footer-contact span.meta {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.1rem;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.85rem;
}

.footer-bottom-note {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom-note svg {
  width: 15px;
  height: 15px;
  color: var(--brass-light);
}

/* Reveal + stagger animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.serve-item.reveal:nth-child(1) { transition-delay: 0.05s; }
.serve-item.reveal:nth-child(2) { transition-delay: 0.12s; }
.serve-item.reveal:nth-child(3) { transition-delay: 0.19s; }
.serve-item.reveal:nth-child(4) { transition-delay: 0.26s; }

.toolkit-item.reveal:nth-child(1) { transition-delay: 0.04s; }
.toolkit-item.reveal:nth-child(2) { transition-delay: 0.1s; }
.toolkit-item.reveal:nth-child(3) { transition-delay: 0.16s; }
.toolkit-item.reveal:nth-child(4) { transition-delay: 0.22s; }
.toolkit-item.reveal:nth-child(5) { transition-delay: 0.28s; }

.team-chip.reveal:nth-child(1) { transition-delay: 0.06s; }
.team-chip.reveal:nth-child(2) { transition-delay: 0.14s; }
.team-chip.reveal:nth-child(3) { transition-delay: 0.22s; }

.faq-teaser-item.reveal:nth-child(1) { transition-delay: 0.05s; }
.faq-teaser-item.reveal:nth-child(2) { transition-delay: 0.12s; }
.faq-teaser-item.reveal:nth-child(3) { transition-delay: 0.19s; }
.faq-teaser-item.reveal:nth-child(4) { transition-delay: 0.26s; }

.extra-card.reveal:nth-child(1) { transition-delay: 0.04s; }
.extra-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.extra-card.reveal:nth-child(3) { transition-delay: 0.16s; }
.extra-card.reveal:nth-child(4) { transition-delay: 0.22s; }
.extra-card.reveal:nth-child(5) { transition-delay: 0.28s; }
.extra-card.reveal:nth-child(6) { transition-delay: 0.34s; }

.svc-tile.reveal:nth-child(1) { transition-delay: 0.04s; }
.svc-tile.reveal:nth-child(2) { transition-delay: 0.1s; }
.svc-tile.reveal:nth-child(3) { transition-delay: 0.16s; }
.svc-tile.reveal:nth-child(4) { transition-delay: 0.22s; }
.svc-tile.reveal:nth-child(5) { transition-delay: 0.28s; }
.svc-tile.reveal:nth-child(6) { transition-delay: 0.34s; }

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ?? Values / why us ?? */
.value-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 2.5rem;
}

.value-row article h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.value-row article p {
  color: var(--slate);
}

/* ?? Service detail blocks ?? */
.detail-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--line);
}

.detail-block:first-of-type {
  border-top: 1px solid var(--line);
}

.detail-block.reverse .detail-copy {
  order: 2;
}

.detail-block.reverse .detail-visual {
  order: 1;
}

.detail-visual {
  min-height: 280px;
  border-radius: var(--radius);
  background: #1a3348;
  position: relative;
  overflow: hidden;
}

.detail-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.detail-visual::after {
  content: none;
}

/* ?? Process with photos ?? */
.process-step .process-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.06);
}

/* ?? Feature icon photos ?? */
.feature-pic {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.1rem;
}

/* ?? Photo gallery ?? */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.gallery-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  aspect-ratio: 1;
}

.gallery-grid figure.wide {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

.gallery-grid figure.tall {
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 100%;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.gallery-grid figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(to top, rgba(11, 28, 44, 0.85), transparent);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.agent-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.agent-duo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--ink);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-copy h3 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  margin-bottom: 0.75rem;
}

.detail-copy p {
  color: var(--slate);
  margin-bottom: 1rem;
}

.detail-copy ul {
  display: grid;
  gap: 0.45rem;
}

.detail-copy li {
  padding-left: 1.1rem;
  position: relative;
  color: var(--slate);
}

.detail-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brass);
}

/* ?? Map placeholder ?? */
.map-embed {
  margin-top: 3rem;
  min-height: 280px;
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(11, 28, 44, 0.05), rgba(11, 28, 44, 0.12)),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 12px,
      rgba(11, 28, 44, 0.03) 12px,
      rgba(11, 28, 44, 0.03) 13px
    );
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  color: var(--slate);
}

.map-embed strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

/* ?? Responsive ?? */
@media (max-width: 960px) {
  .grid-3,
  .case-grid,
  .team-grid,
  .process,
  .stats,
  .value-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid figure.tall {
    grid-row: span 1;
    aspect-ratio: 1;
  }

  .split,
  .contact-grid,
  .detail-block,
  .detail-block.reverse .detail-copy,
  .detail-block.reverse .detail-visual {
    grid-template-columns: 1fr;
  }

  .detail-block.reverse .detail-copy,
  .detail-block.reverse .detail-visual {
    order: unset;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .split-visual {
    min-height: 320px;
  }
}

@media (max-width: 980px) {
  .nav-link:not(.nav-cta) {
    padding: 0.42rem 0.55rem;
    font-size: 0.8rem;
  }

  .nav-ico {
    width: 38px;
    height: 38px;
  }

  .logo-text strong {
    font-size: 1.2rem;
  }
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
  }

  .header-right {
    gap: 0.35rem;
  }

  .nav {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-height: none;
    background:
      radial-gradient(ellipse 80% 40% at 50% 0%, rgba(20, 110, 115, 0.12), transparent 55%),
      var(--paper);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    padding: 5.5rem 1.5rem 2.5rem;
    border-radius: 0;
    border: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 2000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.nav-open .site-header {
    z-index: 2001;
    background: #f7faf9;
  }

  body.nav-open .nav-toggle {
    position: relative;
    z-index: 2002;
  }


  .nav-link {
    color: var(--ink) !important;
    font-size: 1.35rem;
    font-family: var(--font-display);
    width: min(100%, 320px);
    text-align: center;
    padding: 0.7rem 1rem;
  }

  .nav-link.is-active {
    background: rgba(20, 110, 115, 0.1);
    color: var(--teal-deep) !important;
  }

  .nav-cta {
    margin: 0.85rem 0 0;
    color: var(--white) !important;
    justify-content: center;
    width: min(100%, 320px);
  }

  /* Call / WhatsApp inside opened menu */
  .nav-actions {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: min(100%, 320px);
    gap: 0.65rem;
    margin: 1.35rem 0 0;
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid rgba(12, 30, 36, 0.08);
    border-left: 1px solid rgba(12, 30, 36, 0.08);
    background:
      linear-gradient(160deg, rgba(20, 110, 115, 0.08), rgba(201, 120, 58, 0.08));
    box-shadow: none;
    backdrop-filter: none;
  }

  .nav-actions::before {
    display: none;
  }

  .nav-ico {
    width: 100%;
    height: 48px;
    border-radius: 999px;
    gap: 0.45rem;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(12, 23, 28, 0.14);
  }

  .nav-ico-label {
    display: inline;
  }

  .nav-ico-call {
    color: #fff !important;
    background: linear-gradient(135deg, #3b9dff, #1a5fd4) !important;
    border-color: transparent !important;
  }

  .nav-ico-wa {
    color: #fff !important;
    background: linear-gradient(135deg, #34d399, #128c7e) !important;
    border-color: transparent !important;
  }

  .nav-ico:active {
    transform: scale(0.97);
  }

  .site-header.is-scrolled .nav-ico-call,
  .site-header.solid .nav-ico-call,
  .site-header.is-scrolled .nav-ico-wa,
  .site-header.solid .nav-ico-wa {
    color: #fff !important;
  }

  .float-dock {
    display: flex;
    right: 0.9rem;
    bottom: max(1.2rem, env(safe-area-inset-bottom, 0px));
  }

  .site-header:not(.is-scrolled):not(.solid) .logo {
    color: var(--white);
  }

  .site-header.is-scrolled .logo,
  .site-header.solid .logo,
  body.nav-open .site-header .logo {
    color: var(--ink);
  }

  body.nav-open .nav-toggle span {
    background: var(--ink);
  }

  body.nav-open .float-dock {
    opacity: 0;
    pointer-events: none;
  }

  .hero {
    align-items: flex-start;
    padding: calc(var(--nav-h) + 2.35rem) 0 5.25rem;
    min-height: min(100svh, 920px);
  }

  .form-row,
  .quote-grid,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .service-item {
    grid-template-columns: auto 1fr;
  }

  .service-item .arrow,
  .service-item .service-thumb {
    display: none;
  }
}

@media (max-width: 560px) {
  .grid-3,
  .case-grid,
  .team-grid,
  .process,
  .value-row,
  .footer-grid,
  .agent-duo,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid figure.wide {
    grid-column: span 1;
    aspect-ratio: 16 / 10;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-note {
    justify-content: center;
  }

  .footer-brand p {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .float-btn .pulse {
    animation: none !important;
  }
}

/* ?? Policy pages ?? */
.policy-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.policy-nav {
  position: sticky;
  top: calc(var(--nav-h) + 1.25rem);
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.policy-nav h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}

.policy-nav a {
  display: block;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--slate);
  transition: background 0.2s, color 0.2s;
}

.policy-nav a:hover,
.policy-nav a.is-active {
  background: rgba(26, 155, 142, 0.1);
  color: var(--teal-deep);
}

.policy-article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  box-shadow: var(--shadow);
}

.policy-article .updated {
  font-size: 0.85rem;
  color: var(--slate);
  margin-bottom: 1.5rem;
}

.policy-article h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 1.75rem 0 0.65rem;
  color: var(--ink);
}

.policy-article h2:first-of-type {
  margin-top: 0.5rem;
}

.policy-article p,
.policy-article li {
  color: var(--slate);
  margin-bottom: 0.75rem;
}

.policy-article ul,
.policy-article ol {
  margin: 0.5rem 0 1rem 1.15rem;
  list-style: disc;
}

.policy-article ol {
  list-style: decimal;
}

.policy-article li {
  margin-bottom: 0.45rem;
  padding-left: 0.2rem;
}

.policy-callout {
  margin: 1.5rem 0;
  padding: 1.2rem 1.35rem;
  border-radius: 12px;
  background: linear-gradient(120deg, rgba(26, 155, 142, 0.1), rgba(201, 120, 58, 0.1));
  border-left: 4px solid var(--teal);
}

.policy-callout strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.policy-callout--warn {
  border-left-color: var(--brass);
  background: linear-gradient(120deg, rgba(201, 120, 58, 0.12), rgba(26, 155, 142, 0.06));
}

.policy-grid-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.policy-card-link {
  display: block;
  padding: 1.25rem;
  border-radius: 14px;
  background: var(--mist);
  border: 1px solid var(--line);
  transition: transform 0.25s, box-shadow 0.25s;
}

.policy-card-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.policy-card-link strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}

.policy-card-link span {
  color: var(--slate);
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-nav {
    position: static;
  }

  .policy-grid-links {
    grid-template-columns: 1fr;
  }
}

/* ?? Mobile screen attitude: no zoom jank ?? */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  touch-action: manipulation;
}

body {
  overscroll-behavior-y: contain;
  -webkit-tap-highlight-color: transparent;
}

input,
select,
textarea,
button {
  font-size: 16px !important;
  touch-action: manipulation;
}

img,
a,
button {
  -webkit-user-drag: none;
}

.hero,
.page-hero,
.svc-tile,
.case-card,
.gallery-grid figure {
  -webkit-touch-callout: none;
}

/* Reviews */
.reviews-hero-score {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.score-big {
  text-align: center;
  min-width: 140px;
}

.score-big strong {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--brass);
}

.score-big .stars {
  color: #f5b301;
  letter-spacing: 0.08em;
  font-size: 1.15rem;
  margin: 0.35rem 0;
}

.score-big span {
  font-size: 0.9rem;
  color: var(--slate);
  font-weight: 500;
}

.rating-bars {
  display: grid;
  gap: 0.45rem;
}

.rating-row {
  display: grid;
  grid-template-columns: 52px 1fr 40px;
  gap: 0.65rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--slate);
}

.rating-track {
  height: 8px;
  background: var(--mist);
  border-radius: 999px;
  overflow: hidden;
}

.rating-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brass), var(--brass-light));
  border-radius: 999px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.review-card {
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(12, 23, 28, 0.04);
}

.review-card .stars {
  color: #f5b301;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.55rem;
}

.review-card p {
  color: var(--slate);
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
  line-height: 1.55;
}

.review-card cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
}

.review-card cite span {
  display: block;
  font-weight: 500;
  color: var(--slate);
  font-size: 0.78rem;
  margin-top: 0.15rem;
}

.seo-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.seo-cities span {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(26, 155, 142, 0.1);
  color: var(--teal-deep);
}

@media (max-width: 960px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .reviews-hero-score {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .rating-row {
    grid-template-columns: 44px 1fr 36px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (orientation: landscape) and (max-height: 500px) {
  .hero {
    min-height: auto;
    align-items: flex-start;
    padding: calc(var(--nav-h) + 1.25rem) 0 2.5rem;
  }

  .float-dock {
    bottom: max(1.1rem, env(safe-area-inset-bottom, 0px));
    right: 0.6rem;
  }
}

/* Subtle SEO trustline ? visible, not cloaked */
.seo-trustline {
  width: 100%;
  margin-top: 0.85rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

.seo-trustline a {
  color: rgba(232, 164, 75, 0.85);
  text-decoration: none;
}

.seo-trustline a:hover {
  color: var(--brass-light);
}

/* Screen-reader helper for SEO landmarks */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Section bottom CTAs */
.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
}

.section-dark .section-cta {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.section-cta .btn {
  min-width: 148px;
}

/* Extra features */
.extra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.extra-card {
  position: relative;
  padding: 1.5rem 1.4rem 1.45rem;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 250, 249, 0.92)),
    var(--white);
  border: 1px solid rgba(20, 60, 70, 0.1);
  box-shadow: 0 12px 32px rgba(12, 23, 28, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  overflow: hidden;
}

.extra-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--brass));
  opacity: 0.85;
}

.extra-card:hover {
  transform: translateY(-5px);
  border-color: rgba(20, 120, 120, 0.28);
  box-shadow: 0 18px 40px rgba(12, 23, 28, 0.1);
}

.extra-card .extra-ico {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1.05rem;
  color: #fff;
  background: linear-gradient(145deg, var(--teal), var(--teal-deep));
  box-shadow: 0 8px 18px rgba(15, 90, 95, 0.28);
}

.extra-card:nth-child(2n) .extra-ico {
  background: linear-gradient(145deg, var(--brass-light), var(--brass));
  box-shadow: 0 8px 18px rgba(180, 100, 40, 0.25);
}

.extra-card:nth-child(3n) .extra-ico {
  background: linear-gradient(145deg, #2f7a86, #164b55);
}

.extra-card .extra-ico svg {
  width: 24px;
  height: 24px;
}

.extra-card h3 {
  font-family: var(--font-display);
  font-size: 1.32rem;
  margin-bottom: 0.45rem;
  letter-spacing: -0.01em;
}

.extra-card p {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

.section-cta .btn-wa {
  box-shadow: 0 10px 22px rgba(18, 140, 70, 0.22);
}

.welcome-strip .section-cta {
  margin-top: 1.25rem;
}

@media (max-width: 960px) {
  .extra-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .extra-grid {
    grid-template-columns: 1fr;
  }

  .section-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .section-cta .btn {
    width: 100%;
  }
}

/* ?? Trusted vault (index) ?? */
.trust-vault {
  position: relative;
  isolation: isolate;
  padding: 5.5rem 0 5rem;
  color: #f3f7f6;
  overflow: hidden;
  background: #081116;
}

.trust-vault-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 55% at 12% 20%, rgba(26, 155, 142, 0.22), transparent 55%),
    radial-gradient(ellipse 55% 45% at 90% 80%, rgba(201, 120, 58, 0.16), transparent 50%),
    linear-gradient(165deg, #0a1418 0%, #081116 48%, #0c1a1f 100%);
}

.trust-vault-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  opacity: 0.55;
  pointer-events: none;
}

.trust-vault-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem 2.75rem;
  align-items: center;
}

.trust-seal {
  position: relative;
  width: 148px;
  height: 148px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.trust-seal-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(26, 155, 142, 0.55);
  animation: trust-spin 22s linear infinite;
}

.trust-seal-ring--slow {
  inset: 10px;
  border-style: solid;
  border-color: rgba(201, 120, 58, 0.35);
  animation-duration: 36s;
  animation-direction: reverse;
}

.trust-seal-core {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.08), transparent 45%),
    linear-gradient(160deg, #12343a, #0a1c22);
  border: 2px solid rgba(26, 155, 142, 0.45);
  box-shadow:
    0 0 0 8px rgba(8, 17, 22, 0.65),
    0 18px 40px rgba(0, 0, 0, 0.35);
}

.trust-seal-core strong {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #fff;
}

.trust-seal-core em {
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-top: 0.35rem;
}

@keyframes trust-spin {
  to { transform: rotate(360deg); }
}

.trust-vault-copy {
  max-width: 34rem;
}

.trust-vault .eyebrow {
  color: var(--brass-light);
}

.trust-vault-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 0.85rem;
}

.trust-vault-copy p {
  color: rgba(243, 247, 246, 0.72);
  font-size: 1.05rem;
  max-width: 34rem;
}

.trust-rail {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-metric {
  padding: 1.55rem 1.1rem;
  text-align: center;
  position: relative;
}

.trust-metric:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(26, 155, 142, 0.45), transparent);
}

.trust-metric-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.4rem;
  background: linear-gradient(120deg, #fff 30%, var(--teal) 120%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.trust-metric-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243, 247, 246, 0.55);
}

.trust-covenant {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 0.25rem;
}

.trust-covenant li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.75rem 1.35rem 1.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-covenant li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-right: 1.75rem;
  margin-right: 0.5rem;
}

.trust-cov-mark {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--teal);
  letter-spacing: 0.08em;
  padding-top: 0.2rem;
}

.trust-covenant h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.trust-covenant p {
  margin: 0;
  color: rgba(243, 247, 246, 0.62);
  font-size: 0.95rem;
  line-height: 1.55;
}

.trust-vault-cta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
  align-items: center;
}

.trust-vault .btn-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.trust-vault .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
  .trust-vault-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .trust-seal {
    margin-bottom: 0.25rem;
  }

  .trust-rail {
    grid-template-columns: 1fr 1fr;
  }

  .trust-metric:nth-child(2)::after {
    display: none;
  }

  .trust-metric:nth-child(1),
  .trust-metric:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .trust-covenant {
    grid-template-columns: 1fr;
  }

  .trust-covenant li:not(:last-child) {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
  }
}

@media (max-width: 560px) {
  .trust-vault {
    padding: 4.25rem 0 3.75rem;
  }

  .trust-metric {
    padding: 1.25rem 0.65rem;
  }

  .trust-vault-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-vault-cta .btn {
    width: 100%;
    justify-content: center;
  }
}
/* ?? Expanded index sections ?? */
.serve-band {
  padding: 5rem 0 4.5rem;
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(26, 155, 142, 0.08), transparent 50%),
    var(--paper);
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem 1.5rem;
}

.serve-item {
  padding-top: 0.25rem;
  border-top: 2px solid rgba(26, 155, 142, 0.35);
}

.serve-ico {
  width: 44px;
  height: 44px;
  margin: 1.1rem 0 0.9rem;
  color: var(--teal-deep);
}

.serve-ico svg {
  width: 100%;
  height: 100%;
}

.serve-item h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
}

.serve-item p {
  color: var(--slate);
  font-size: 0.95rem;
  margin: 0;
}

.toolkit-section {
  padding: 4.75rem 0;
  background: var(--mist);
}

.toolkit-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.toolkit-item {
  text-align: center;
  margin: 0;
}

.toolkit-item img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  margin: 0 auto 1rem;
  border-radius: 28px;
  box-shadow: 0 16px 36px rgba(12, 23, 28, 0.14);
  transition: transform 0.35s var(--ease);
}

.toolkit-item:hover img {
  transform: translateY(-6px) scale(1.04);
}

.toolkit-item figcaption {
  display: grid;
  gap: 0.25rem;
}

.toolkit-item strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
}

.toolkit-item span {
  font-size: 0.85rem;
  color: var(--slate);
}

.dual-intel {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.dual-intel-panel {
  position: relative;
  min-height: min(62vh, 560px);
  overflow: hidden;
  color: #fff;
}

.dual-intel-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 1.1s var(--ease);
}

.dual-intel-panel:hover img {
  transform: scale(1.08);
}

.dual-intel-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 17, 22, 0.15) 10%, rgba(8, 17, 22, 0.82) 100%);
}

.dual-intel-copy {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.75rem;
  max-width: 28rem;
}

.dual-intel-copy .eyebrow {
  color: var(--brass-light);
}

.dual-intel-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  margin-bottom: 0.7rem;
}

.dual-intel-copy p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.25rem;
}

.dual-intel-panel--flip .dual-intel-copy {
  margin-left: auto;
  text-align: right;
  align-items: flex-end;
}

.situations-section {
  background: var(--paper);
}

.situations-list {
  display: grid;
  gap: 2rem;
}

.situation {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.75rem;
  align-items: center;
}

.situation--flip {
  grid-template-columns: 1.1fr 0.9fr;
}

.situation--flip img {
  order: 2;
}

.situation img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
}

.situation-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.55rem;
}

.situation h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  margin-bottom: 0.55rem;
}

.situation p {
  color: var(--slate);
  margin: 0;
  max-width: 34rem;
}

.team-glimpse {
  padding: 5rem 0;
}

.team-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 0.5rem;
}

.team-chip {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.team-chip img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.92);
  transition: transform 0.5s var(--ease), filter 0.5s;
}

.team-chip:hover img {
  transform: scale(1.04);
  filter: saturate(1);
}

.team-chip figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.35rem 1.1rem;
  background: linear-gradient(transparent, rgba(8, 17, 22, 0.88));
  color: #fff;
  display: grid;
  gap: 0.15rem;
}

.team-chip strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.team-chip span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.evidence-protocol {
  padding: 5rem 0;
  background: #0a1418;
  color: #f3f7f6;
}

.evidence-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.evidence-protocol .eyebrow {
  color: var(--brass-light);
}

.evidence-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #fff;
  margin-bottom: 0.75rem;
}

.evidence-copy > p {
  color: rgba(243, 247, 246, 0.68);
  margin-bottom: 1.75rem;
  max-width: 32rem;
}

.evidence-steps {
  display: grid;
  gap: 1.15rem;
}

.evidence-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.evidence-num {
  font-family: var(--font-display);
  color: var(--teal);
  font-size: 1rem;
  padding-top: 0.15rem;
}

.evidence-steps h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.evidence-steps p {
  margin: 0;
  color: rgba(243, 247, 246, 0.6);
  font-size: 0.95rem;
}

.evidence-visual {
  position: relative;
}

.evidence-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.evidence-visual::before {
  content: "";
  position: absolute;
  inset: 1.25rem -1.25rem -1.25rem 1.25rem;
  border: 1px solid rgba(26, 155, 142, 0.35);
  border-radius: 4px;
  z-index: -1;
}

.gallery-peek {
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem max(1rem, calc((100vw - var(--max)) / 2)) 1.25rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.gallery-track img {
  flex: 0 0 min(78vw, 360px);
  height: 260px;
  object-fit: cover;
  border-radius: 4px;
  scroll-snap-align: start;
  box-shadow: 0 14px 30px rgba(12, 23, 28, 0.12);
}

.when-call {
  padding: 5rem 0;
}

.when-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.when-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  margin-bottom: 0.7rem;
}

.when-copy > p {
  color: var(--slate);
  margin-bottom: 1.5rem;
}

.when-list {
  display: grid;
  gap: 0.95rem;
}

.when-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  font-weight: 560;
  color: var(--ink);
}

.when-ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--teal), var(--teal-deep));
  flex-shrink: 0;
}

.when-ico svg {
  width: 18px;
  height: 18px;
}

.when-visual {
  position: relative;
}

.when-visual > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
}

.when-cta-box {
  margin-top: -2.5rem;
  margin-left: 1.25rem;
  margin-right: 1.25rem;
  position: relative;
  background: var(--ink);
  color: #fff;
  padding: 1.35rem 1.4rem 1.45rem;
  border-radius: 4px;
  box-shadow: 0 18px 40px rgba(12, 23, 28, 0.25);
}

.when-cta-box strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  display: block;
  margin-bottom: 0.35rem;
}

.when-cta-box p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.promise-band {
  position: relative;
  min-height: min(58vh, 520px);
  display: grid;
  place-items: end start;
  color: #fff;
  overflow: hidden;
}

.promise-media {
  position: absolute;
  inset: 0;
}

.promise-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promise-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(8, 17, 22, 0.88) 20%, rgba(8, 17, 22, 0.45) 70%, rgba(8, 17, 22, 0.25));
}

.promise-inner {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0;
  max-width: 38rem;
}

.promise-band .eyebrow {
  color: var(--brass-light);
}

.promise-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.promise-inner > p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.5rem;
  font-size: 1.08rem;
}

.promise-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.35rem;
}

.promise-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.promise-ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(26, 155, 142, 0.25);
  color: var(--teal);
}

.promise-ico svg {
  width: 15px;
  height: 15px;
}

.faq-teaser {
  padding: 5rem 0;
  background:
    radial-gradient(ellipse 50% 40% at 0% 50%, rgba(26, 155, 142, 0.07), transparent 55%),
    var(--paper);
}

.faq-teaser-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) 1.15fr;
  gap: 2.75rem 3.25rem;
  align-items: start;
}

.faq-teaser-intro {
  position: sticky;
  top: calc(var(--nav-h) + 1.25rem);
}

.faq-teaser-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  line-height: 1.15;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.faq-teaser-intro > p {
  color: var(--slate);
  margin-bottom: 1.5rem;
  max-width: 22rem;
}

.faq-teaser-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.faq-teaser-list {
  display: grid;
  gap: 0.85rem;
}

.faq-teaser-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem 1.1rem;
  align-items: start;
  padding: 1.2rem 1.25rem 1.25rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(12, 23, 28, 0.08);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(12, 23, 28, 0.05);
  transition: transform 0.35s var(--ease), border-color 0.3s, box-shadow 0.35s;
}

.faq-teaser-item:hover {
  transform: translateY(-3px);
  border-color: rgba(26, 155, 142, 0.28);
  box-shadow: 0 16px 36px rgba(12, 23, 28, 0.1);
}

.faq-teaser-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--teal);
  letter-spacing: 0.06em;
  padding-top: 0.55rem;
}

.faq-teaser-body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}

.faq-teaser-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--teal), var(--teal-deep));
  box-shadow: 0 8px 18px rgba(15, 90, 95, 0.22);
  flex-shrink: 0;
}

.faq-teaser-item:nth-child(2n) .faq-teaser-ico {
  background: linear-gradient(145deg, var(--brass-light), var(--brass));
  box-shadow: 0 8px 18px rgba(180, 100, 40, 0.22);
}

.faq-teaser-item:nth-child(3n) .faq-teaser-ico {
  background: linear-gradient(145deg, #2f7a86, #164b55);
}

.faq-teaser-ico svg {
  width: 20px;
  height: 20px;
}

.faq-teaser-item h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.faq-teaser-item p {
  margin: 0;
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (max-width: 960px) {
  .serve-grid,
  .toolkit-rail,
  .team-strip {
    grid-template-columns: 1fr 1fr;
  }

  .dual-intel,
  .evidence-layout,
  .when-layout {
    grid-template-columns: 1fr;
  }

  .dual-intel-panel {
    min-height: 420px;
  }

  .dual-intel-panel--flip .dual-intel-copy {
    margin-left: 0;
    text-align: left;
    align-items: flex-start;
  }

  .situation,
  .situation--flip {
    grid-template-columns: 1fr;
  }

  .situation--flip img {
    order: 0;
  }

  .faq-teaser-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .faq-teaser-intro {
    position: static;
  }

  .faq-teaser-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .faq-teaser-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .serve-grid,
  .toolkit-rail,
  .team-strip {
    grid-template-columns: 1fr;
  }

  .toolkit-item img {
    width: 96px;
    height: 96px;
  }

  .gallery-track img {
    flex-basis: 82vw;
    height: 220px;
  }

  .when-cta-box {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .promise-points {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* Reviews finale (bottom placement) + motion polish */
.reviews-finale {
  position: relative;
  padding: 5.25rem 0 4.5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(26, 155, 142, 0.1), transparent 55%),
    linear-gradient(180deg, var(--mist) 0%, var(--paper) 100%);
}

.reviews-finale-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -80px;
  top: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 120, 58, 0.18), transparent 65%);
  animation: float-soft 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float-soft {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(18px) scale(1.05); }
}

.reviews-finale-head {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.75rem;
}

.reviews-finale-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  margin-bottom: 0.55rem;
}

.reviews-finale-head p {
  color: var(--slate);
  max-width: 36rem;
  margin: 0;
}

.reviews-score-orb {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.55), transparent 45%),
    linear-gradient(160deg, #12343a, #0a1c22);
  color: #fff;
  border: 2px solid rgba(26, 155, 142, 0.4);
  box-shadow: 0 18px 40px rgba(12, 23, 28, 0.2);
  animation: orb-pulse 3.5s ease-in-out infinite;
}

@keyframes orb-pulse {
  0%, 100% { box-shadow: 0 18px 40px rgba(12, 23, 28, 0.2), 0 0 0 0 rgba(26, 155, 142, 0.35); }
  50% { box-shadow: 0 18px 40px rgba(12, 23, 28, 0.22), 0 0 0 12px rgba(26, 155, 142, 0); }
}

.reviews-score-orb strong {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  background: linear-gradient(120deg, #fff, var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.reviews-score-orb .stars {
  color: #f5c451;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin: 0.2rem 0;
}

.reviews-score-orb span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.reviews-bars-slim {
  max-width: 420px;
  margin-bottom: 2rem;
}

.reviews-bars-slim .rating-row {
  display: grid;
  grid-template-columns: 2rem 1fr 2.5rem;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 0.45rem;
  font-size: 0.8rem;
  color: var(--slate);
}

.reviews-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  margin: 0 -0.5rem 0.5rem;
}

.reviews-marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: reviews-scroll 42s linear infinite;
  padding: 0.35rem 0 1rem;
}

.reviews-marquee:hover .reviews-marquee-track {
  animation-play-state: paused;
}

@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.review-slide {
  flex: 0 0 min(78vw, 340px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(12, 23, 28, 0.08);
  border-radius: 14px;
  padding: 1.35rem 1.3rem 1.2rem;
  box-shadow: 0 14px 34px rgba(12, 23, 28, 0.08);
  backdrop-filter: blur(8px);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.review-slide:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(12, 23, 28, 0.14);
}

.review-slide .stars {
  color: #d4a017;
  letter-spacing: 0.1em;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
}

.review-slide p {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 0.9rem;
  min-height: 5.2em;
}

.review-slide cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.92rem;
}

.review-slide cite span {
  display: block;
  font-weight: 500;
  color: var(--slate);
  font-size: 0.8rem;
  margin-top: 0.15rem;
}

/* Layout motion polish */
.dual-intel-panel {
  transition: clip-path 0.8s var(--ease);
}

.situation img,
.team-chip img,
.evidence-visual img,
.when-visual > img {
  transition: transform 0.7s var(--ease), filter 0.7s;
}

.situation:hover img,
.evidence-visual:hover img,
.when-visual:hover > img {
  transform: scale(1.04);
}

.serve-item {
  transition: transform 0.35s var(--ease), border-color 0.35s;
}

.serve-item:hover {
  transform: translateY(-4px);
  border-top-color: var(--brass);
}

.serve-ico {
  transition: transform 0.4s var(--ease), color 0.3s;
}

.serve-item:hover .serve-ico {
  transform: scale(1.08) rotate(-4deg);
  color: var(--brass);
}

.gallery-track img {
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}

.gallery-track img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 22px 40px rgba(12, 23, 28, 0.18);
}

.trust-metric-num {
  transition: transform 0.4s var(--ease);
}

.trust-rail.is-visible .trust-metric-num {
  animation: metric-pop 0.7s var(--ease) both;
}

.trust-metric:nth-child(2) .trust-metric-num { animation-delay: 0.08s; }
.trust-metric:nth-child(3) .trust-metric-num { animation-delay: 0.16s; }
.trust-metric:nth-child(4) .trust-metric-num { animation-delay: 0.24s; }

@keyframes metric-pop {
  from { opacity: 0; transform: translateY(12px) scale(0.92); }
  to { opacity: 1; transform: none; }
}

.promise-band .promise-inner {
  animation: none;
}

.promise-band.is-inview .promise-points li {
  animation: rise 0.7s var(--ease) both;
}

.promise-band.is-inview .promise-points li:nth-child(2) { animation-delay: 0.1s; }
.promise-band.is-inview .promise-points li:nth-child(3) { animation-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reviews-marquee-track,
  .reviews-score-orb,
  .reviews-finale-glow,
  .trust-seal-ring {
    animation: none !important;
    transition: none !important;
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 900px) {
  .reviews-finale-head {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .reviews-score-orb {
    width: 128px;
    height: 128px;
  }
}

@media (max-width: 560px) {
  .review-slide {
    flex-basis: 86vw;
  }

  .review-slide p {
    min-height: 0;
  }
}
