/* ==========================================================================
   Aarvi Technology — Landing page
   Exported from "Aarvi Landing - Exact.dc.html"
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Text */
  --ink: #16233f;
  --body: #4a5a75;
  --muted: #5b6b85;
  --muted-2: #6b7890;
  --muted-3: #8a93a8;

  /* Brand blues */
  --blue: #1f6fe0;
  --blue-hover: #1a5cc0;
  --blue-deep: #1a4fb0;
  --blue-darker: #123a86;
  --blue-grad-start: #1f5bc8;
  --blue-icon-start: #2f6fe0;

  /* Light surfaces */
  --tint: #eef3fb;
  --tint-2: #dde9fa;
  --chip: #eaf1fb;
  --panel: #e7eefb;
  --soft: #f7f9fc;
  --line: #eef1f7;
  --dash: #c9d9f2;
  --quote-light: #dbe4f4;

  /* Dark surfaces */
  --dark: #0e1a30;
  --on-dark: #c3cee4;
  --on-dark-2: #9fb3d6;
  --on-dark-3: #8fa3c9;
  --on-dark-4: #c9d8f5;
  --on-dark-5: #dbe7ff;
  --accent-light: #9fc2ff;
  --check: #7fb2ff;
  --footer-label: #6d84ac;
  --footer-icon: #5c9bec;

  /* Industry accents */
  --green: #1c8f52;
  --green-2: #2a9d5c;
  --green-tint: #e3f4ea;
  --purple: #6b46c1;
  --purple-tint: #f0ecfb;
  --teal: #1c8f9c;
  --navy-badge: #1c3f6b;
  --red: #e0263f;
  --star: #f5b700;

  /* Shape & depth */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 14px;
  --r-xl: 16px;
  --r-2xl: 20px;
  --shadow-card: 0 8px 22px rgba(20, 40, 80, .08);
  --shadow-card-soft: 0 8px 22px rgba(20, 40, 80, .06);
  --shadow-case: 0 8px 24px rgba(20, 40, 80, .07);

  /* Layout */
  --container: 1320px;
  --gutter: 40px;
  --section-gap: 72px;

  /* Type */
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Bricolage Grotesque', 'DM Sans', sans-serif;
  --font-serif: 'Source Serif 4', Georgia, serif;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: #fff;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { font-family: var(--font-display); text-wrap: balance; }
h1, h2 { letter-spacing: -0.025em; }
p { text-wrap: pretty; }
img { display: block; }

a { text-decoration: none; color: var(--blue-deep); }
a:hover { color: var(--blue-darker); }

.serif-i {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.brand { font-family: var(--font-display); letter-spacing: -0.02em; }

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

/* ---------- Buttons ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  font-size: 15.5px;
  padding: 11px 20px;
  border-radius: 24px;
  white-space: nowrap;
}
.pill:hover { background: var(--blue-hover); }

.pill--deep,
.pill--deep:hover { background: var(--blue-deep); }

.pill--white,
.pill--white:hover { background: #fff; color: var(--dark); }

.pill--outline,
.pill--outline:hover { background: #fff; color: var(--blue-deep); border: 1.5px solid var(--blue-deep); }

.pill--lg { padding: 14px 26px; }

/* ---------- Eyebrow tags ---------- */
.tag {
  display: flex;
  width: fit-content;
  align-items: center;
  background: var(--tint-2);
  color: var(--blue-deep);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin: 0 0 16px;
}
.tag--dark {
  background: rgba(255, 255, 255, .1);
  color: var(--accent-light);
  border: 1px solid rgba(255, 255, 255, .15);
}

/* ---------- Section headings ---------- */
.h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}
.lead {
  font-size: 17px;
  line-height: 27px;
  margin: 14px 0 0;
  color: var(--body);
}

/* ---------- Nav ---------- */
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 22px;
  padding-bottom: 22px;
}
.nav__logo {
  display: flex;
  align-items: center;
  flex: none;
  margin-right: auto;
  line-height: 0;
}
.nav__logo img {
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.nav-link {
  white-space: nowrap;
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
}
.nav-link:hover { color: var(--blue); }

/* ---------- Hero ---------- */
.hero {
  padding: 24px 40px 56px;
  display: grid;
  grid-template-columns: minmax(0, 5.2fr) minmax(0, 6fr);
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(38px, 4.2vw, 52px);
  line-height: 1.06;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.hero h1 .serif-i { color: var(--blue); }
.hero__text {
  font-size: 16.5px;
  line-height: 28px;
  max-width: 46ch;
  margin: 24px 0 0;
  color: var(--body);
}
.hero .pill { margin-top: 22px; }
.hero__note {
  font-size: 15px;
  margin: 14px 0 0;
  color: var(--muted-2);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero__media { position: relative; }
.hero__media img { width: 100%; border-radius: 14px; }

/* ---------- Stats ---------- */
.stats-wrap { padding: 0 40px var(--section-gap); }
.stats {
  background: var(--tint);
  border-radius: var(--r-lg);
  padding: 26px 32px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.stat { display: flex; align-items: center; gap: 14px; }
.stat__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--tint-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  color: var(--blue-deep);
}
.stat__value { display: block; font-weight: 800; font-size: 28px; }
.stat__label { font-size: 14px; color: var(--muted); line-height: 1.4; }

/* ---------- Approach ---------- */
.approach {
  position: relative;
  padding: 0 0 var(--section-gap);
  overflow: hidden;
}
.approach__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  min-height: 340px;
}
.approach__intro {
  position: relative;
  min-width: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .55)), url('approach-bg.png');
  background-size: cover;
  background-position: left center;
  padding: 48px 36px;
  display: flex;
  align-items: center;
}
.approach__intro .h2 { line-height: 1.18; }
.approach__intro .lead { margin-top: 16px; max-width: 34ch; }
.approach__intro .pill { margin-top: 18px; }
.approach__steps {
  background: var(--panel);
  border-radius: 0;
  padding: 32px 32px 32px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  width: 100%;
  min-width: 0;
}
.step {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  padding: 18px 20px 18px 26px;
  display: flex;
  gap: 16px;
  align-items: center;
  position: relative;
  min-width: 0;
}
.step__num {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue-deep);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  box-shadow: 0 4px 10px rgba(26, 79, 176, .35);
}
.step__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-md);
  background: var(--chip);
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  margin-left: 10px;
}
.step__body { flex: 1; min-width: 0; }
.step h3 { font-size: 16.5px; font-weight: 700; margin: 0 0 4px; }
.step p { font-size: 15px; line-height: 23px; color: var(--body); margin: 0; }

/* ---------- Math ---------- */
.math { background: var(--tint); padding: var(--section-gap) 0; }
.math .h2 { max-width: 16ch; }
.math__lead {
  font-size: 16.5px;
  line-height: 28px;
  margin: 14px 0 0;
  max-width: 56ch;
  color: var(--body);
}
.math .pill { margin-top: 18px; }
.math__row { position: relative; margin-top: 36px; }
.math-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--dash) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.math__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr) 44px minmax(0, 1fr);
  gap: 0 14px;
  align-items: stretch;
}
.math-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 22px 22px;
  box-shadow: var(--shadow-card-soft);
  display: flex;
  flex-direction: column;
}
.math-card__title { font-size: 15.5px; font-weight: 700; margin: 0 0 10px; }
.mrow {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
}
.mrow > span:first-child { font-size: 15px; color: var(--body); }
.mrow > span:last-child { font-weight: 700; font-size: 15px; white-space: nowrap; }
.mrow--last { border-bottom: none; margin-bottom: 14px; }
.math-card__result {
  background: var(--chip);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  margin-top: auto;
}
.math-card__result p { font-size: 28px; font-weight: 800; margin: 0; color: var(--ink); }
.math__op { display: flex; align-items: center; justify-content: center; }
.math__op span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
}
.math-card--total {
  background: linear-gradient(155deg, var(--blue-grad-start), var(--blue-darker));
  color: #fff;
  box-shadow: 0 14px 32px rgba(18, 58, 134, .28);
}
.math-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 10px;
}
.math-card__head .math-card__title { margin: 0; color: #fff; white-space: nowrap; }
.math-card__badge {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .14);
  color: var(--on-dark-5);
  white-space: nowrap;
  flex: none;
}
.math-card--total .mrow { border-bottom-color: rgba(255, 255, 255, .14); }
.math-card--total .mrow--plain { border-bottom: none; }
.math-card--total .mrow > span:first-child { color: var(--on-dark-4); }
.math-card--total .mrow > span:last-child { color: #fff; }
.math-card__total {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  margin-top: auto;
}
.math-card__total-label {
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin: 0 0 4px;
  color: var(--on-dark-4);
}
.math-card__total-value {
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 800;
  margin: 0;
  color: #fff;
  line-height: 1.1;
  white-space: nowrap;
}
.math__note {
  font-size: 13px;
  margin: 16px 0 0;
  color: var(--muted-2);
  text-align: right;
}

/* ---------- Dark photo backdrops (shared) ---------- */
.backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.backdrop-shade { position: absolute; inset: 0; z-index: 1; }
.layer { position: relative; z-index: 2; }

/* ---------- Services ---------- */
.services {
  position: relative;
  background: var(--dark);
  padding: var(--section-gap) 0 0;
  overflow: hidden;
  min-height: 420px;
}
.services .backdrop { opacity: .28; }
.services .backdrop-shade {
  background: linear-gradient(90deg, #0e1a30 0%, #0e1a30 40%, rgba(14, 26, 48, .75) 62%, rgba(14, 26, 48, .35) 100%);
}
.services .h2 { line-height: 1.18; color: #fff; max-width: 20ch; }
.services .lead { max-width: 60ch; color: var(--on-dark); }
.services .pill { margin-top: 16px; }
.services__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  margin-top: 32px;
  padding-bottom: var(--section-gap);
}
.service {
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r-lg);
  padding: 22px;
}
.service__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.service__icon {
  width: 50px;
  height: 50px;
  border-radius: var(--r-md);
  background: linear-gradient(155deg, var(--blue-icon-start), var(--blue-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  color: #fff;
}
.service h3 { font-size: 20px; font-weight: 700; margin: 0; color: #fff; }
.check-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  padding: 4px 0;
  color: var(--check);
}
.check-row svg { flex: none; }
.check-row span { color: var(--quote-light); }

/* ---------- Case studies ---------- */
.work { padding: var(--section-gap) 40px 56px; }
.work__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.work__intro { max-width: 64ch; }
.work__intro .h2 { line-height: 1.15; }
.work__actions { display: flex; align-items: center; gap: 10px; flex: none; }
.cases {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}
.case {
  --case-accent: var(--blue-deep);
  --case-tint: var(--chip);
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-case);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.case--green { --case-accent: var(--green); --case-tint: var(--green-tint); }
.case--purple { --case-accent: var(--purple); --case-tint: var(--purple-tint); }
.case--teal { --case-accent: var(--teal); --case-tint: #e2f3f5; }
.case__top {
  background: var(--case-tint);
  padding: 22px 22px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.case__label { display: flex; align-items: center; gap: 12px; }
.case__badge {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--case-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.case__industry { font-size: 16.5px; font-weight: 700; margin: 0; color: var(--ink); }
.case__num {
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.case__shot {
  margin: 0;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.slot-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.case__body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.case h3 { font-size: 26px; font-weight: 800; margin: 0 0 4px; color: var(--ink); }
.case__sub { font-size: 15.5px; font-weight: 600; color: var(--case-accent); margin: 0 0 16px; }
.case__item { display: flex; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line); }
.case__item-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--chip);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.case__item-icon--built { background: var(--green-tint); color: var(--green-2); }
.case__item-title { font-size: 15px; font-weight: 700; margin: 0 0 3px; }
.case__item-text { font-size: 14px; line-height: 23px; color: var(--muted); margin: 0; }
.case__review {
  margin-top: auto;
  background: var(--soft);
  border-radius: var(--r-md);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.case__review-head { display: flex; align-items: center; justify-content: space-between; }
.case__source { font-size: 15.5px; font-weight: 800; color: var(--case-accent); }
.case__source--ink { color: var(--ink); }
.case__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.case__quote { font-size: 14px; line-height: 23px; color: var(--body); margin: 0; }
.case__author { font-size: 13px; font-weight: 700; margin: 4px 0 0; color: var(--ink); }
.case__author span { font-weight: 400; color: var(--muted-3); }

/* ---------- Testimonial banner ---------- */
.banner-wrap { padding: 0 40px; }
.banner {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: var(--dark);
  min-height: 260px;
}
.banner .backdrop { opacity: .35; }
.banner .backdrop-shade {
  background: linear-gradient(120deg, #0e1a30 30%, rgba(14, 26, 48, .55) 65%, rgba(14, 26, 48, .25) 100%);
}
.banner__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: 24px;
  align-items: center;
  padding: 44px 44px;
}
.banner__mark { margin: 0 0 10px; }
.banner__quote {
  font-size: 28px;
  line-height: 1.45;
  font-weight: 600;
  color: #fff;
  margin: 0;
  max-width: 44ch;
}
.banner__quote .serif-i { color: var(--check); }
.banner__cite { font-size: 15.5px; margin: 20px 0 0; color: var(--on-dark-2); }
.banner__cite strong { color: #fff; }
.banner__card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 22px 22px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .25);
}
.banner__brand { display: flex; align-items: center; gap: 10px; }
.banner__brand-img { display: block; height: 44px; width: auto; max-width: 100%; object-fit: contain; object-position: left center; }
.banner__brand-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-md);
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.banner__brand-name { font-size: 27.5px; font-weight: 800; color: var(--ink); }
.banner__tagline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.7;
  margin: 16px 0 0;
  color: var(--muted);
}

/* ---------- Review cards ---------- */
.reviews-wrap { padding: 24px 40px var(--section-gap); }
.reviews {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.review__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 40px;
  margin-bottom: 18px;
}
.review__logo { display: flex; align-items: center; gap: 10px; }
.review__brand-img { display: block; height: 40px; width: auto; max-width: 100%; object-fit: contain; object-position: left center; }
.reviews .review__head { min-height: 52px; }
.review__logo-mark {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.review__text { font-size: 15px; line-height: 24px; color: var(--body); margin: 0; flex: 1; text-wrap: pretty; }
.review__foot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--chip);
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.review__name { font-size: 14px; font-weight: 700; margin: 0; color: var(--ink); }
.review__role { font-size: 12.5px; margin: 0; color: var(--muted-3); }

/* ---------- Fit check ---------- */
.fit { padding: 0 40px var(--section-gap); }
.fit .h2 { margin-bottom: 28px; }
.fit__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}
.fit__cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}
.fit-card { background: var(--soft); border-radius: var(--r-lg); padding: 20px; }
.fit-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--tint-2);
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fit-card h3 { font-size: 18px; font-weight: 700; margin: 14px 0 6px; color: var(--ink); }
.fit-card p { font-size: 15px; line-height: 24px; margin: 0; color: var(--muted); }
.fit__media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 320px;
}
.fit__media figure { margin: 0; position: absolute; inset: 0; }
.fit__callout {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: #fff;
  border-radius: var(--r-md);
  padding: 14px 16px;
  box-shadow: 0 10px 24px rgba(20, 40, 80, .18);
  max-width: 170px;
}
.fit__callout span { color: var(--blue-deep); }
.fit__callout p {
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.35;
  margin: 8px 0 0;
  color: var(--ink);
}
.disclosure {
  background: var(--tint);
  border-radius: var(--r-xl);
  padding: 28px 32px;
  margin-top: 24px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}
.disclosure__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--tint-2);
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.disclosure__eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 6px;
  color: var(--blue-deep);
}
.disclosure h3 { font-size: 24px; font-weight: 800; margin: 0 0 10px; color: var(--ink); }
.disclosure__text {
  font-size: 15.5px;
  line-height: 25px;
  margin: 0;
  color: var(--body);
  max-width: 70ch;
}
.disclosure__ratings { display: flex; gap: 22px; flex: none; }
.disclosure__platform { font-size: 16.5px; font-weight: 800; margin: 0; color: var(--ink); }
.disclosure__platform--green { color: var(--green); }
.disclosure__score { font-size: 15px; margin: 4px 0 0; color: var(--body); }
.stars { color: var(--star); }

/* ---------- FAQ ---------- */
.faq { padding: 0 40px var(--section-gap); }
.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 4.5fr) minmax(0, 7.5fr);
  gap: 40px;
  align-items: start;
}
.faq .h2 { margin-bottom: 10px; }
.faq__lead { font-size: 15.5px; line-height: 26px; margin: 0; color: var(--body); }
.faq__photo {
  margin: 22px 0 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.faq__list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--soft); border-radius: var(--r-lg); padding: 18px 22px; }
.faq-item summary {
  display: flex;
  gap: 16px;
  align-items: center;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--tint-2);
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.faq-item h3 { flex: 1; min-width: 0; font-size: 18px; font-weight: 700; margin: 0; color: var(--ink); }
.faq-chevron {
  color: var(--muted-3);
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s;
}
details[open] .faq-chevron { transform: rotate(180deg); }
.faq-item p { font-size: 15px; line-height: 24px; margin: 12px 0 0 56px; color: var(--muted); }

/* ---------- CTA ---------- */
.cta-wrap { padding: 0 40px var(--section-gap); }
.cta {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: var(--dark);
  padding: 56px 44px;
}
.cta .backdrop { opacity: .3; }
.cta .backdrop-shade {
  background: linear-gradient(115deg, #0e1a30 25%, rgba(14, 26, 48, .7) 60%, rgba(14, 26, 48, .35) 100%);
}
.cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 40px;
  align-items: center;
}
.cta h2 {
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.18;
  margin: 0;
  color: #fff;
  max-width: 18ch;
}
.cta__text {
  font-size: 16.5px;
  line-height: 28px;
  margin: 16px 0 0;
  color: var(--on-dark);
  max-width: 48ch;
}
.cta__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.cta__note { font-size: 15px; margin: 0; color: var(--on-dark-3); }
.cta__perks { display: flex; flex-direction: column; gap: 14px; }
.perk {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.perk__icon {
  width: 50px;
  height: 50px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  color: var(--accent-light);
}
.perk__title { font-size: 15.5px; font-weight: 700; margin: 0; color: #fff; }
.perk__sub { font-size: 13px; margin: 2px 0 0; color: var(--on-dark-2); }

/* ---------- Footer ---------- */
.footer { background: var(--dark); }
.footer__grid {
  padding: 56px 40px 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, .8fr) minmax(0, 1.3fr);
  gap: 32px;
}
.footer__logo { height: 28px; filter: brightness(0) invert(1); }
.footer__about {
  font-size: 15.5px;
  line-height: 26px;
  margin: 16px 0 0;
  color: var(--on-dark-2);
  max-width: 34ch;
}
.footer .pill { margin-top: 18px; }
.footer__label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: var(--footer-label);
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a,
.footer__links a:hover,
.footer__contact,
.footer__contact:hover { font-size: 15.5px; color: var(--on-dark); }
.footer__contact { display: flex; align-items: flex-start; gap: 10px; text-decoration: none; }
.footer__contact-icon { color: var(--footer-icon); flex: none; margin-top: 1px; }
.footer__contact-icon + span { font-size: 15.5px; }
.footer__email { min-width: 0; overflow-wrap: anywhere; }
.footer__bottom {
  padding: 20px 40px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__bottom p { font-size: 14px; margin: 0; color: var(--footer-label); }

/* ---------- Responsive (breakpoints from the design) ---------- */
@media (max-width: 1080px) {
  .nav-link { display: none; }
}

@media (max-width: 860px) {
  .g-stack { grid-template-columns: minmax(0, 1fr) !important; }
  .g-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .math-line { display: none; }
}

@media (max-width: 560px) {
  .g-2 { grid-template-columns: minmax(0, 1fr) !important; }
  .px { padding-left: 20px !important; padding-right: 20px !important; }
}


/* ==========================================================================
   Experience layer — motion, interaction, loading, header behaviour.
   Everything below only animates *toward* the design above: once an
   animation settles, the page is identical to the static export.
   ========================================================================== */

:root {
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --ease-curtain: cubic-bezier(.77, 0, .18, 1);
  --header-h: 84px;
}

/* Clip (not hide) horizontal overflow so slide-ins never cause sideways
   scroll; `clip` keeps the sticky header working. */
html, body { overflow-x: clip; }
html.is-loading { overflow: hidden; }

/* Anchored sections land below the sticky header. */
section[id], #about { scroll-margin-top: var(--header-h); }

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

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: #fff;
  clip-path: inset(0 0 0 0);
  transition: clip-path .9s var(--ease-curtain) .12s;
}
html:not(.js) .loader,
.loader-gone .loader { display: none; }
.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  transition: opacity .45s ease, transform .6s var(--ease-out);
}
.loader__logo {
  width: 184px;
  height: auto;
  animation: loaderLogo 1s var(--ease-out) both;
}
.loader__bar {
  position: relative;
  width: 132px;
  height: 2px;
  border-radius: 2px;
  background: var(--tint-2);
  overflow: hidden;
  animation: loaderFade .6s ease .35s both;
}
.loader__bar span {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--blue), var(--blue-deep));
  transform-origin: left;
  animation: loaderBar 1.2s cubic-bezier(.65, 0, .35, 1) .35s both;
}
.is-ready .loader { clip-path: inset(0 0 100% 0); pointer-events: none; }
.is-ready .loader__inner { opacity: 0; transform: translateY(-18px) scale(1.04); }

@keyframes loaderLogo {
  from { opacity: 0; transform: scale(.86); filter: blur(10px); }
  to   { opacity: 1; transform: none; filter: none; }
}
@keyframes loaderFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes loaderBar  { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ---------- Sticky header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0);
  box-shadow: 0 1px 0 rgba(22, 35, 63, 0), 0 10px 30px -18px rgba(20, 40, 80, 0);
  transition: background-color .4s ease, box-shadow .4s ease, backdrop-filter .4s ease, -webkit-backdrop-filter .4s ease;
}
.site-header.is-scrolled {
  background-color: rgba(255, 255, 255, .88);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 rgba(22, 35, 63, .07), 0 10px 30px -18px rgba(20, 40, 80, .35);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header.is-scrolled { background-color: rgba(255, 255, 255, .96); }
}
.nav__logo img { transition: opacity .25s ease; }
.nav__logo:hover img { opacity: .85; }

.nav-link { position: relative; transition: color .25s ease; }
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav-link:hover::after,
.nav-link.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-link.is-active { color: var(--blue); }

/* ---------- Buttons ---------- */
.pill {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: background-color .3s ease, color .3s ease, box-shadow .4s var(--ease-out), translate .35s var(--ease-out), scale .35s var(--ease-out);
}
.pill::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, .3) 45%, transparent 70%);
  transform: translateX(-115%);
  transition: transform .85s var(--ease-out);
}
.pill--white::after,
.pill--outline::after {
  background: linear-gradient(115deg, transparent 20%, rgba(31, 111, 224, .14) 45%, transparent 70%);
}
.pill:hover {
  color: #fff;
  translate: 0 -2px;
  scale: 1.02;
  box-shadow: 0 12px 28px -10px rgba(31, 111, 224, .65);
}
.pill:hover::after { transform: translateX(115%); }
.pill--deep:hover { box-shadow: 0 12px 28px -10px rgba(26, 79, 176, .7); }
.pill--white:hover { color: var(--dark); box-shadow: 0 12px 32px -12px rgba(159, 194, 255, .75); }
.pill--outline:hover { color: var(--blue-deep); box-shadow: 0 12px 28px -12px rgba(26, 79, 176, .45); }
.pill:active { scale: .97; translate: 0 0; transition-duration: .12s; }

/* ---------- Cards, icons & images: hover states ---------- */
.step, .math-card, .service, .case, .review, .fit-card, .perk, .banner__card, .faq-item {
  transition: translate .5s var(--ease-out), box-shadow .5s var(--ease-out), background-color .35s ease, border-color .35s ease;
}
.stat__icon, .step__icon, .service__icon, .fit-card__icon, .case__badge, .perk__icon, .faq-item__num, .disclosure__icon, .avatar {
  transition: scale .5s var(--ease-spring), rotate .5s var(--ease-spring);
}
.case__shot .slot-img, .fit__media .slot-img, .faq__photo .slot-img {
  transition: transform 1.1s var(--ease-out);
}
.faq-chevron { transition: transform .35s var(--ease-out), color .25s ease; }
.faq-item.is-closing .faq-chevron { transform: none; }

@media (hover: hover) {
  .step:hover       { translate: 0 -4px; box-shadow: 0 16px 34px rgba(20, 40, 80, .12); }
  .math-card:hover  { translate: 0 -4px; box-shadow: 0 18px 38px rgba(20, 40, 80, .12); }
  .math-card--total:hover { box-shadow: 0 22px 46px rgba(18, 58, 134, .4); }
  .service:hover    { translate: 0 -4px; background-color: rgba(255, 255, 255, .11); border-color: rgba(255, 255, 255, .24); }
  .case:hover       { translate: 0 -6px; box-shadow: 0 22px 46px rgba(20, 40, 80, .14); }
  .review:hover     { translate: 0 -4px; box-shadow: 0 16px 36px rgba(20, 40, 80, .1); }
  .fit-card:hover   { translate: 0 -4px; box-shadow: 0 16px 34px rgba(20, 40, 80, .09); }
  .perk:hover       { translate: 0 -3px; background-color: rgba(255, 255, 255, .11); border-color: rgba(255, 255, 255, .24); }
  .banner__card:hover { translate: 0 -4px; box-shadow: 0 22px 50px rgba(0, 0, 0, .32); }
  .faq-item:hover   { box-shadow: 0 10px 26px rgba(20, 40, 80, .07); }

  .stat:hover .stat__icon,
  .step:hover .step__icon,
  .service:hover .service__icon,
  .fit-card:hover .fit-card__icon,
  .case:hover .case__badge,
  .perk:hover .perk__icon,
  .review:hover .avatar,
  .disclosure:hover .disclosure__icon { scale: 1.08; rotate: -4deg; }
  .faq-item:hover .faq-item__num { scale: 1.06; }
  .faq-item:hover .faq-chevron { color: var(--blue); }

  .case:hover .case__shot .slot-img,
  .fit__media:hover .slot-img,
  .faq__photo:hover .slot-img { transform: scale(1.05); }
}

/* ---------- Hero entrance (after the loader lifts) ---------- */
.js .hero .hl { display: inline-block; }
.js .hero .hl,
.js .hero__text,
.js .hero .pill,
.js .hero__note,
.js .hero__kicker,
.js .hero__media { opacity: 0; }
.is-ready .hero .hl { animation: heroLine 1s var(--ease-out) both; }
.is-ready .hero .hl:nth-of-type(1) { animation-delay: .25s; }
.is-ready .hero .hl:nth-of-type(2) { animation-delay: .35s; }
.is-ready .hero .hl:nth-of-type(3) { animation-delay: .45s; }
.is-ready .hero .hl:nth-of-type(4) { animation-delay: .6s; }
.is-ready .hero__text  { animation: fadeUp .9s var(--ease-out) .75s both; }
.is-ready .hero .pill  { animation: fadeUp .9s var(--ease-out) .87s both; }
.is-ready .hero__note  { animation: fadeUp .9s var(--ease-out) .97s both; }
.is-ready .hero__kicker { animation: fadeUp .9s var(--ease-out) .65s both; }
.is-ready .hero__media { animation: heroMedia 1.3s var(--ease-out) .35s both; }
.hero-settled .hero .hl,
.hero-settled .hero__text,
.hero-settled .hero .pill,
.hero-settled .hero__note,
.hero-settled .hero__kicker,
.hero-settled .hero__media { animation: none; opacity: 1; }
/* Gentle float once it has landed; parallax is applied by script.js via `translate`. */
.is-ready .hero__media img { animation: heroFloat 7s ease-in-out 1.8s infinite; }
.hero__media { will-change: translate; }

@keyframes heroLine {
  from { opacity: 0; transform: translateY(.45em); filter: blur(8px); }
  to   { opacity: 1; transform: none; filter: none; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroMedia {
  from { opacity: 0; transform: translateY(36px) scale(.965); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ---------- Scroll reveals (classes applied by script.js) ---------- */
.js .rv {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity .8s var(--ease-out), transform .95s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.js .rv-left  { transform: translate3d(-44px, 0, 0); }
.js .rv-right { transform: translate3d(44px, 0, 0); }
.js .rv-scale { transform: translate3d(0, 28px, 0) scale(.98); }
.js .rv-zoom  { transform: scale(1.12); transition-duration: .8s, 1.4s; }
.js .rv-pop   { transform: scale(.6); transition: opacity .5s ease, transform .7s var(--ease-spring); transition-delay: calc(var(--d, 0ms) + 120ms); }
.js .rv-line  { opacity: 1; transform: scaleX(0); transform-origin: left; transition: transform 1.6s var(--ease-out); transition-delay: calc(var(--d, 0ms) + 200ms); }
.js .rv.in    { opacity: 1; transform: none; }

@media (max-width: 860px) {
  .js .rv-left, .js .rv-right { transform: translate3d(0, 28px, 0); }
}

/* ---------- Reduced motion: fades only, nothing moves ----------
   (Windows "Show animations" off / macOS "Reduce motion" on.) */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .loader { clip-path: none; transition: opacity .5s ease .1s; }
  .is-ready .loader { clip-path: none; opacity: 0; }
  .is-ready .loader__inner { transform: none; }
  .loader__logo { animation-name: loaderFade; }
  .loader__bar span { animation: none; }

  .is-ready .hero .hl,
  .is-ready .hero__text,
  .is-ready .hero .pill,
  .is-ready .hero__note,
  .is-ready .hero__kicker,
  .is-ready .hero__media { animation-name: loaderFade; }
  .is-ready .hero__media img { animation: none; }

  .js .rv, .js .rv-left, .js .rv-right, .js .rv-scale, .js .rv-zoom, .js .rv-pop, .js .rv-line { transform: none; }
  .pill::after { display: none; }
  *, *::before, *::after { translate: none !important; scale: none !important; rotate: none !important; }
  .case:hover .case__shot .slot-img,
  .fit__media:hover .slot-img,
  .faq__photo:hover .slot-img { transform: none; }
}


/* ==========================================================================
   SEO / conversion additions (2026-09-24)
   ========================================================================== */
/* Hero: keyword H1 with the punchy line as a smaller sub-line */
.hero h1 .h1-sub { display: inline-block; margin-top: .3em; font-size: .62em; line-height: 1.15; font-weight: 600; color: var(--ink); }
.hero__kicker { margin: 12px 0 0; font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--muted-2); letter-spacing: .01em; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 22px; }
.hero__ctas .pill { margin-top: 0; }
.hero__media picture { display: block; }
.hero__media img { height: auto; }

/* Secondary CTA on dark backgrounds */
.pill--ghost,
.pill--ghost:hover { background: transparent; color: #fff; border: 1.5px solid rgba(255, 255, 255, .45); }
.pill--ghost:hover { border-color: #fff; }

/* H2 tagline (keeps the brand voice under a keyword heading) */
.h2-tagline { margin: 10px 0 0; font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--blue-deep); }

/* Tools we integrate with */
.services__grid { padding-bottom: 0; }
.tools { margin-top: 36px; padding-bottom: var(--section-gap); }
.tools__title { margin: 0; font-size: 20px; font-weight: 700; color: #fff; }
.tools__lead { margin: 8px 0 0; font-size: 15.5px; line-height: 24px; color: var(--on-dark); max-width: 60ch; }
.tools__list { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.tool-chip { background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2); color: #fff; font-weight: 600; font-size: 15px; padding: 8px 16px; border-radius: 999px; }

/* Inline links inside stats / ratings / case cards */
.stat__label a, .disclosure__platform a { color: inherit; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.case__author a { color: var(--case-accent); text-decoration: none; }
.case__author a:hover { text-decoration: underline; }

/* FAQ: named points of contact */
.contacts { display: flex; flex-wrap: wrap; gap: 12px; margin: 14px 0 0 56px; }
.contact { display: flex; align-items: center; gap: 12px; padding: 10px 14px 10px 10px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--soft); color: var(--ink); text-decoration: none; transition: border-color .2s ease; }
.contact:hover { border-color: var(--dash); }
.contact img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex: none; }
.contact > span { display: flex; flex-direction: column; font-size: 13px; line-height: 1.35; color: var(--muted); }
.contact strong { font-size: 14.5px; color: var(--ink); }
.contact__li { color: var(--blue-deep); font-weight: 600; margin-top: 2px; }

/* Footer CTAs */
.footer__ctas { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer__wa { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; color: var(--on-dark-2); text-decoration: none; }
.footer__wa:hover { color: #fff; }

@media (max-width: 860px) {
  .cases { grid-template-columns: minmax(0, 1fr); }
  .h2-tagline { font-size: 18px; }
}
@media (max-width: 560px) {
  .contacts { margin-left: 0; }
  .hero__ctas .pill { white-space: normal; }
}

/* Keyword headings run longer than the old one-liners: scale them down a
   little and give them room so they don't stack into 5-line towers. */
.h2 { font-size: clamp(30px, 3.2vw, 40px); }
.math .h2 { max-width: 24ch; }
.services .h2 { max-width: 26ch; }
.work__intro .h2 { max-width: 24ch; }
.approach__intro .h2 { font-size: clamp(28px, 2.6vw, 34px); }
/* Wider 2-up case cards: keep the photos from towering over the text */
@media (min-width: 861px) { .cases .case__shot { aspect-ratio: 2 / 1; } }
.pill svg, .footer__wa svg { flex: none; }
/* Clutch links on the insurance case card */
/* Same look as the underlined Clutch link in the disclosure box */
a.case__source { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a.case__source:hover { color: var(--blue-deep); }
.case__author .case__verified { font-weight: 400; color: var(--muted-3); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.case__author .case__verified:hover { color: var(--case-accent); }

/* ---------- Floating WhatsApp button ---------- */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900; /* above content and header (100), below the page loader (1000) */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 10px 26px -6px rgba(18, 140, 70, .55), 0 2px 6px rgba(0, 0, 0, .12);
  transition: transform .25s var(--ease-out), box-shadow .25s ease;
}
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  z-index: -1;
  animation: waPulse 2.6s ease-out infinite;
}
.wa-float:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 14px 30px -6px rgba(18, 140, 70, .65), 0 2px 6px rgba(0, 0, 0, .12); }
.wa-float:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.wa-float__label {
  position: absolute;
  right: calc(100% + 12px);
  white-space: nowrap;
  background: var(--dark);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  opacity: 0;
  translate: 6px 0;
  pointer-events: none;
  transition: opacity .2s ease, translate .2s ease;
}
@media (hover: hover) {
  .wa-float:hover .wa-float__label { opacity: 1; translate: 0 0; }
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: .45; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}
@media (max-width: 560px) {
  .wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .wa-float svg { width: 27px; height: 27px; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float::before { animation: none; opacity: 0; }
  .wa-float, .wa-float__label { transition: none; }
}
/* Review source link (matches the underlined Clutch links elsewhere) */
.review__source { margin-left: auto; font-size: 15.5px; font-weight: 800; color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.review__source:hover { color: var(--blue-deep); }
/* Clutch wordmark on the Quoting Fast case + testimonial cards */
.clutch-logo { display: block; height: 20px; width: auto; }
a.case__source--logo, .review__source--logo { text-decoration: none; display: inline-flex; align-items: center; transition: opacity .2s ease; }
a.case__source--logo:hover, .review__source--logo:hover { opacity: .75; }
.review__source--logo .clutch-logo { height: 15px; }
/* Clutch wordmark in the disclosure ratings (sized to sit level with "Upwork") */
.disclosure__platform--logo { display: flex; align-items: center; height: 1.3em; height: 1lh; }
.disclosure__platform a.disclosure__logo-link { display: block; text-decoration: none; transition: opacity .2s ease; }
.disclosure__logo-link:hover { opacity: .75; }
.disclosure__logo-link .clutch-logo { height: 18px; }
