/* ===== Design Tokens ===== */
:root {
  --blue-900: #08395a;
  --blue-800: #0b557f;
  --blue-700: #0b6fa4;
  --blue-600: #1187c4;
  --blue-500: #2aa3da;
  --teal-400: #38c6c9;
  --aqua-100: #e3f4fb;
  --aqua-50: #f1f9fd;
  --ink: #14222e;
  --slate: #4a5b68;
  --line: #e2e8ee;
  --white: #ffffff;
  --shadow-sm: 0 4px 14px rgba(11, 85, 127, 0.08);
  --shadow-md: 0 14px 36px rgba(11, 85, 127, 0.14);
  --shadow-lg: 0 26px 60px rgba(8, 57, 90, 0.22);
  --radius: 16px;
  --radius-lg: 26px;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; line-height: 1.2; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 22px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--blue-600), var(--teal-400));
  color: var(--white);
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
  box-shadow: 0 10px 22px rgba(17, 135, 196, 0.32);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(17, 135, 196, 0.42); }
.btn:active { transform: translateY(-1px); }
.btn--lg { padding: 15px 32px; font-size: 1rem; }
.btn--sm { padding: 9px 18px; font-size: 0.85rem; }
.btn--block { width: 100%; }
.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.14); box-shadow: none; }

/* ===== Top Bar ===== */
.topbar {
  background: var(--blue-900);
  color: #cfe6f3;
  font-size: 0.84rem;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
}
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__phone { font-weight: 600; color: var(--white); transition: color 0.2s; }
.topbar__phone:hover { color: var(--teal-400); }
.topbar__phone svg { width: 15px; height: 15px; fill: var(--teal-400); }

/* ===== Navigation ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s;
}
.nav.is-scrolled { box-shadow: var(--shadow-sm); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__logo {
  height: 32px;
  width: auto;
  display: block;
}
.brand__text {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--blue-900);
  letter-spacing: -0.02em;
}
.brand__text span { color: var(--blue-600); }
.brand--light .brand__text { color: var(--white); }
.brand--light .brand__text span { color: var(--teal-400); }
.brand__suffix {
  font-size: 0.52em;
  font-weight: 600;
  letter-spacing: 0.02em;
  vertical-align: 0.18em;
  margin-left: 4px;
}
.brand__text .brand__suffix { color: var(--slate); }
.brand--light .brand__text .brand__suffix { color: #9fb9c9; }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--slate);
  transition: color 0.2s;
}
.nav__links a:not(.nav__cta):hover { color: var(--blue-700); }
.nav__cta { color: var(--white) !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--blue-900);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  color: var(--white);
  isolation: isolate;
  padding: clamp(64px, 11vw, 132px) 0 clamp(120px, 16vw, 190px);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 480px at 82% -10%, rgba(56, 198, 201, 0.55), transparent 60%),
    radial-gradient(800px 520px at 6% 120%, rgba(42, 163, 218, 0.5), transparent 62%),
    linear-gradient(160deg, var(--blue-800) 0%, var(--blue-900) 70%);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1.4px, transparent 1.6px);
  background-size: 38px 38px;
  opacity: 0.5;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}
.hero__content { max-width: 660px; }
.hero__eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-400);
  padding: 7px 16px;
  border: 1px solid rgba(56, 198, 201, 0.45);
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero__title {
  font-size: clamp(2.3rem, 6vw, 3.85rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.hero__title span { color: var(--teal-400); }
.hero__text {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: #d4e6f0;
  max-width: 560px;
  margin-bottom: 30px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 42px; }
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 38px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.hero__badges li { font-size: 0.92rem; color: #c6dcea; }
.hero__badges strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--white);
}
.hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: -1;
  line-height: 0;
}
.hero__wave svg { width: 100%; height: clamp(60px, 9vw, 110px); fill: var(--white); }

/* ===== Trust strip ===== */
.trust {
  margin-top: -38px;
  position: relative;
  z-index: 2;
}
.trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 26px 30px;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--blue-900);
}
.trust__item svg {
  flex: none;
  width: 30px;
  height: 30px;
  fill: var(--blue-600);
}
.trust__item + .trust__item { border-left: 1px solid var(--line); padding-left: 18px; }

/* ===== Section base ===== */
.section { padding: clamp(64px, 9vw, 108px) 0; }
.section__head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section__eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 12px;
}
.section__eyebrow--light { color: var(--teal-400); }
.section__title {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--blue-900);
}
.section__title--light { color: var(--white); }
.section__lead {
  margin-top: 14px;
  color: var(--slate);
  font-size: 1.04rem;
}

/* ===== Services ===== */
.services { background: var(--aqua-50); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
.card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--aqua-100);
  margin-bottom: 18px;
  transition: background 0.25s;
}
.card__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--blue-700);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.25s;
}
.card:hover .card__icon { background: linear-gradient(135deg, var(--blue-600), var(--teal-400)); }
.card:hover .card__icon svg { stroke: var(--white); }
.card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 8px;
}
.card p { color: var(--slate); font-size: 0.96rem; }
.card--cta {
  background: linear-gradient(150deg, var(--blue-800), var(--blue-900));
  border-color: transparent;
}
.card--cta .card__icon { background: rgba(255, 255, 255, 0.12); }
.card--cta .card__icon svg { stroke: var(--white); }
.card--cta:hover .card__icon { background: rgba(255, 255, 255, 0.2); }
.card--cta h3 { color: var(--white); }
.card--cta p { color: #cfe2ee; }
.card__link {
  display: inline-block;
  margin-top: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--teal-400);
}
.card__link:hover { color: var(--white); }

/* ===== Why Us ===== */
.why { background: var(--aqua-50); }
.why__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.why__media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(420px 320px at 70% 20%, rgba(56, 198, 201, 0.6), transparent 65%),
    linear-gradient(150deg, var(--blue-700), var(--blue-900));
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why__media-card {
  position: relative;
  z-index: 2;
  text-align: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  padding: 30px 40px;
  color: var(--white);
}
.why__stat-num {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 3.2rem;
  line-height: 1;
}
.why__stat-label { font-size: 0.92rem; color: #d4e6f0; }
.why__ripple {
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 0 0 40px rgba(255, 255, 255, 0.06),
    0 0 0 90px rgba(255, 255, 255, 0.04);
  animation: ripple 5s var(--ease) infinite;
}
@keyframes ripple {
  0%, 100% { transform: scale(0.92); opacity: 0.8; }
  50% { transform: scale(1.06); opacity: 1; }
}
.why__list { margin: 26px 0 30px; display: grid; gap: 18px; }
.why__list li { display: flex; gap: 14px; }
.why__check {
  flex: none;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--teal-400));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
}
.why__list strong {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  color: var(--blue-900);
}
.why__list p { color: var(--slate); font-size: 0.95rem; }

/* ===== Service Area ===== */
.area__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.area__card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.area__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--blue-600), var(--teal-400));
}
.area__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.area__card h3 {
  font-size: 1.22rem;
  color: var(--blue-900);
  margin-bottom: 8px;
}
.area__card p { color: var(--slate); font-size: 0.96rem; }
.area__note {
  text-align: center;
  margin-top: 36px;
  color: var(--slate);
}
.area__note a { color: var(--blue-700); font-weight: 600; }
.area__note a:hover { text-decoration: underline; }

/* ===== Before / After slider ===== */
.results { background: var(--white); }
.ba {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--aqua-100);
  line-height: 0;
  cursor: ew-resize;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
.ba__img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  -webkit-user-drag: none;
}
.ba__img--before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(0 50% 0 0);
}
.ba__tag {
  position: absolute;
  bottom: 16px;
  z-index: 3;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.74rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  padding: 7px 14px;
  border-radius: 999px;
}
.ba__tag--before { left: 16px; background: rgba(63, 76, 39, 0.85); }
.ba__tag--after { right: 16px; background: rgba(11, 111, 164, 0.9); }
.ba__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  margin-left: -1.5px;
  background: #fff;
  z-index: 4;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(8, 57, 90, 0.35);
}
.ba__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 16px rgba(8, 57, 90, 0.35);
}
.ba__handle svg { width: 22px; height: 22px; fill: var(--blue-700); }
.ba__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}
.ba__range:focus-visible ~ .ba__divider .ba__handle {
  outline: 3px solid var(--teal-400);
  outline-offset: 3px;
}
.ba__hint {
  margin-top: 18px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--slate);
}

/* ===== Contact ===== */
.contact {
  position: relative;
  isolation: isolate;
  color: var(--white);
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(700px 420px at 90% 0%, rgba(56, 198, 201, 0.4), transparent 60%),
    linear-gradient(155deg, var(--blue-800), var(--blue-900));
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: start;
}
.contact__lead { color: #d4e6f0; margin: 16px 0 28px; }
.contact__details { display: grid; gap: 16px; }
.contact__details li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 0.98rem;
  color: #e3f0f7;
}
.contact__details svg {
  flex: none;
  width: 38px;
  height: 38px;
  padding: 9px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.1);
  fill: none;
  stroke: var(--teal-400);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact__details a:hover { color: var(--teal-400); }

.contact__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-lg);
}
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--blue-900);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  background: var(--aqua-50);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(42, 163, 218, 0.15);
}
.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid {
  border-color: #e0556b;
  box-shadow: 0 0 0 4px rgba(224, 85, 107, 0.12);
}
.form__note {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--slate);
  text-align: center;
}
.form__success,
.form__error {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 11px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}
.form__success {
  background: #e4f7ee;
  color: #1b7a4d;
}
.form__error {
  background: #fde7ea;
  color: #b3253c;
}

/* Spam honeypot — hidden from real visitors, tempting to bots. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ===== Footer ===== */
.footer { background: var(--blue-900); color: #b9d3e3; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 38px;
  padding: 58px 0 44px 36px;
}
.footer__brand p { margin-top: 14px; font-size: 0.92rem; max-width: 280px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}
.footer__col a, .footer__col span { font-size: 0.92rem; transition: color 0.2s; }
.footer__col a:hover { color: var(--teal-400); }
.footer__bar { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer__bar-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 0 18px 36px;
  font-size: 0.83rem;
  color: #88a8bd;
}

/* ===== Floating call button ===== */
.fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--teal-400));
  box-shadow: 0 12px 26px rgba(17, 135, 196, 0.5);
  place-items: center;
}
.fab svg { width: 24px; height: 24px; fill: var(--white); }

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 940px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 10px 22px 18px;
    max-height: calc(100dvh - 100%);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  }
  .nav__links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav__links a {
    padding: 12px 6px;
    border-bottom: 1px solid var(--line);
  }
  .nav__cta {
    margin-top: 8px;
    border-bottom: 0 !important;
    text-align: center;
  }
  .why__inner { grid-template-columns: 1fr; gap: 38px; }
  .why__media { max-width: 380px; margin: 0 auto; }
  .contact__inner { grid-template-columns: 1fr; gap: 36px; }
  .fab { display: grid; }
}

@media (max-width: 760px) {
  .topbar__item:first-child { display: none; }
  .topbar__inner { justify-content: center; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .trust__inner { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .trust__item + .trust__item { border-left: 0; padding-left: 0; }
  .trust__item:nth-child(3),
  .trust__item:nth-child(4) { border-top: 1px solid var(--line); padding-top: 16px; }
  .area__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 540px) {
  .cards { grid-template-columns: 1fr; }
  .trust__inner { grid-template-columns: 1fr; }
  .trust__item + .trust__item { border-top: 1px solid var(--line); padding-top: 16px; }
  .field-row { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1 1 100%; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bar-inner { justify-content: center; text-align: center; }
  .contact__form { padding: 26px 20px; }
  .ba__handle { width: 40px; height: 40px; }
  .ba__handle svg { width: 18px; height: 18px; }
  .ba__tag { font-size: 0.66rem; padding: 6px 11px; bottom: 12px; }
  .ba__tag--before { left: 12px; }
  .ba__tag--after { right: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .why__ripple { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
