/* ============================================================
   SENSIBLE AVENUE — V3 DESIGN SYSTEM  "Bright"
   Light, friendly, one brand blue · photo-led sections
   ============================================================ */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Palette */
  --blue: #1d5bf2;
  --blue-600: #1749cc;
  --blue-700: #123a9e;
  --blue-100: #dbe6ff;
  --blue-50: #eef3ff;
  --ink: #0f172a;
  --text: #1e293b;
  --muted: #5b6b82;
  --line: #e5eaf2;
  --line-strong: #cfd8e6;
  --soft: #f5f8fc;
  --green: #15a36a;
  --green-700: #0d7a4e;
  --green-50: #e8f7f0;
  --star: #f5a524;

  /* Type */
  --font-head: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", system-ui, sans-serif;

  /* Shape & fx */
  --r-lg: 24px;
  --r-md: 16px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05), 0 2px 6px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 24px 48px -20px rgba(15, 23, 42, 0.25);
  --check-green: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2315a36a' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E");
  --cross-grey: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='3.5' stroke-linecap='round'%3E%3Cpath d='M7 7l10 10M17 7L7 17'/%3E%3C/svg%3E");
  --plus-blue: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d5bf2' stroke-width='3.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

[id] {
  scroll-margin-top: 96px;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 8px;
}
.skip:focus {
  left: 8px;
  z-index: 100;
  background: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

/* ---------- SHARED TYPE ---------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 800;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.sub {
  max-width: 640px;
  margin-top: 14px;
  font-size: 1.075rem;
  color: var(--muted);
}

.section {
  padding: 96px 0;
}
.section--soft {
  background: var(--soft);
}

.section-head {
  margin-bottom: 48px;
}
.section-head--center {
  text-align: center;
}
.section-head--center .sub {
  margin-left: auto;
  margin-right: auto;
}

.link-arrow {
  font-weight: 600;
  color: var(--blue);
}
.link-arrow:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s,
    box-shadow 0.2s;
}
.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 22px -10px rgba(29, 91, 242, 0.65);
}
.btn--primary:hover {
  background: var(--blue-600);
  transform: translateY(-1px);
}
.btn--outline {
  background: #fff;
  border-color: var(--line-strong);
  color: var(--ink);
}
.btn--outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.btn--sm {
  padding: 10px 18px;
  font-size: 0.93rem;
}
.btn--block {
  width: 100%;
}
.btn:disabled {
  opacity: 0.7;
  cursor: progress;
  transform: none;
}

/* ---------- TOP BAR ---------- */
.topbar {
  background: var(--ink);
  color: #cbd5e1;
  font-size: 0.85rem;
}
.topbar__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 4px 16px;
  min-height: 40px;
  padding: 8px 24px;
}
.topbar__app {
  text-align: center;
}
.topbar a {
  color: #fff;
  font-weight: 600;
}
.topbar a:hover {
  text-decoration: underline;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -16px rgba(15, 23, 42, 0.3);
}
.nav__row {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
}
.nav__logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
}
.nav__links {
  display: flex;
  gap: 2px;
  margin-left: auto;
  list-style: none;
}
.nav__links a {
  display: block;
  padding: 8px 11px;
  border-radius: 8px;
  white-space: nowrap;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s, background 0.2s;
}
.nav__links a:hover {
  color: var(--blue);
  background: var(--blue-50);
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.nav__phone svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
}
.nav__burger {
  display: none;
}

@media (max-width: 1279px) {
  .nav__phone {
    display: none;
  }
}

@media (max-width: 980px) {
  .nav__burger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
  }
  .nav__burger span {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
    transition: transform 0.2s, opacity 0.2s;
  }
  .nav__burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav__burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .nav__burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav__actions {
    margin-left: auto;
  }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 8px 24px 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
  }
  .nav__links.open {
    display: flex;
  }
  .nav__links a {
    padding: 14px 4px;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }
  .nav__links a:hover {
    background: none;
  }
}

@media (max-width: 480px) {
  .nav__cta {
    display: none;
  }
}

/* ---------- HERO ---------- */
.hero {
  padding: 64px 0 88px;
  background: radial-gradient(1100px 520px at 88% -8%, var(--blue-50), transparent 62%),
    #fff;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 64px;
  align-items: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 6px 14px 6px 12px;
  border-radius: 999px;
  background: var(--green-50);
  color: var(--green-700);
  font-size: 0.86rem;
  font-weight: 600;
}
.pill__dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(21, 163, 106, 0.18);
}
.hero h1 {
  font-size: clamp(2.2rem, 3.8vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}
.hl {
  color: var(--blue);
  background: linear-gradient(transparent 64%, var(--blue-100) 64%);
}
.hero__sub {
  max-width: 580px;
  margin-top: 22px;
  font-size: 1.1rem;
  color: var(--muted);
}
.hero__sub strong {
  color: var(--text);
  font-weight: 600;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.hero__proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-top: 28px;
}
.gbadge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s;
}
.gbadge:hover {
  border-color: var(--blue-100);
}
.gbadge svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.gbadge b {
  display: block;
  font-size: 0.93rem;
  color: var(--ink);
}
.gbadge span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}
.gbadge .gbadge__stars {
  display: inline;
  margin-left: 4px;
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: var(--star);
}
.hero__call {
  font-size: 0.95rem;
  color: var(--muted);
}
.hero__call a {
  color: var(--ink);
  font-weight: 600;
  border-bottom: 2px solid var(--blue-100);
}
.hero__call a:hover {
  border-color: var(--blue);
}

.hero__visual {
  position: relative;
}

/* Photo slots — swap the placeholder for <img> once real photos exist */
.photo {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: radial-gradient(circle at 30% 20%, #ffffff 0, transparent 45%),
    linear-gradient(135deg, #d9e5ff 0%, #eaf1ff 50%, #f6f9fe 100%);
}
.photo--tall {
  aspect-ratio: 4 / 4.6;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo__ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: #6b7fa6;
}
.photo__ph svg {
  width: 44px;
  height: 44px;
  opacity: 0.75;
}

@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero__visual {
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
  }
}

/* ---------- STATS ---------- */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 30px 16px;
  text-align: center;
}
.stat + .stat {
  border-left: 1px solid var(--line);
}
.stat b {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.stat b small {
  font-size: 0.55em;
  font-weight: 700;
}
.stat span {
  font-size: 0.92rem;
  color: var(--muted);
}

@media (max-width: 768px) {
  .stats__row {
    grid-template-columns: 1fr 1fr;
  }
  .stat:nth-child(3) {
    border-left: 0;
  }
  .stat:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}

/* ---------- SERVICE FEATURE ROWS ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature + .feature {
  margin-top: 96px;
}
.feature--flip .feature__media {
  order: 2;
}
.feature__copy h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 800;
}
.feature__copy > p {
  margin-top: 14px;
  font-size: 1.05rem;
  color: var(--muted);
}
.feature__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin-top: 28px;
}

.ticks {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  list-style: none;
}
.ticks li {
  position: relative;
  padding-left: 34px;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-50) var(--check-green) center / 12px no-repeat;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.chip {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.92rem;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}
a.chip:hover {
  border-color: var(--blue);
  color: var(--blue);
}

@media (max-width: 900px) {
  .feature {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feature--flip .feature__media {
    order: 0;
  }
  .feature + .feature {
    margin-top: 72px;
  }
}

/* ---------- PLANS ---------- */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 28px 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.plan--featured {
  border: 2px solid var(--blue);
  box-shadow: var(--shadow-lg);
}
.plan__tag {
  position: absolute;
  top: -13px;
  left: 28px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.plan__name {
  font-size: 1.3rem;
  font-weight: 800;
}
.plan__promise {
  margin-top: 8px;
  font-size: 0.97rem;
  color: var(--muted);
}
.plan__price {
  margin-top: 22px;
  font-family: var(--font-head);
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.plan__price small {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--muted);
}
.plan__min {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}
.plan .ticks {
  flex: 1;
  margin: 24px 0 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.96rem;
}
.plan__more {
  display: block;
  margin-top: 14px;
  text-align: center;
  font-size: 0.93rem;
}

@media (max-width: 960px) {
  .plans {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}

.biz {
  margin-top: 56px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
}
.biz__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px 16px;
  margin-bottom: 20px;
}
.biz__head h3 {
  font-size: 1.25rem;
  font-weight: 800;
}
.biz__head p {
  color: var(--muted);
}
.biz__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.biz-card {
  display: block;
  padding: 20px;
  border: 1px solid transparent;
  border-radius: var(--r-md);
  background: var(--soft);
  transition: border-color 0.2s, background 0.2s;
}
.biz-card:hover {
  border-color: var(--blue-100);
  background: var(--blue-50);
}
.biz-card b {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--ink);
}
.biz-card__price {
  margin: 4px 0 6px;
  font-weight: 700;
  color: var(--blue);
}
.biz-card p {
  font-size: 0.92rem;
  color: var(--muted);
}

@media (max-width: 768px) {
  .biz__grid {
    grid-template-columns: 1fr;
  }
}

.note {
  margin-top: 28px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ---------- COMPARISON ---------- */
.compare {
  max-width: 940px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.compare__scroll {
  overflow-x: auto;
}
.compare table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
}
.compare th,
.compare td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
  font-size: 0.97rem;
}
.compare tbody tr:last-child td {
  border-bottom: 0;
}
.compare thead th {
  background: var(--soft);
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--ink);
}
.compare thead th.us {
  background: var(--blue);
  color: #fff;
}
.compare td.us {
  background: var(--blue-50);
}
.compare td:first-child {
  width: 30%;
  font-weight: 600;
  color: var(--ink);
}
.yes,
.no {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.yes {
  font-weight: 600;
  color: var(--ink);
}
.no {
  color: var(--muted);
}
.yes::before,
.no::before {
  content: "";
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
}
.yes::before {
  background: #fff var(--check-green) center / 12px no-repeat;
  box-shadow: inset 0 0 0 1px #bfe6d3;
}
.no::before {
  background: #f1f4f8 var(--cross-grey) center / 10px no-repeat;
}

@media (max-width: 600px) {
  .compare table {
    min-width: 0;
  }
  .compare th,
  .compare td {
    padding: 12px 10px;
    font-size: 0.86rem;
  }
  .compare td:first-child {
    width: 28%;
  }
  .yes,
  .no {
    align-items: flex-start;
    gap: 6px;
  }
  .yes::before,
  .no::before {
    width: 18px;
    height: 18px;
    margin-top: 1px;
  }
}

/* ---------- STEPS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
}
.step {
  position: relative;
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
}
.step__num {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
}
.step__label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}
.step h3 {
  font-size: 1.25rem;
  font-weight: 800;
}
.step p {
  margin-top: 10px;
  color: var(--muted);
}
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 56px;
  right: -25px;
  width: 26px;
  height: 2px;
  background: var(--blue-100);
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
  .step:not(:last-child)::after {
    display: none;
  }
}

/* ---------- REVIEWS ---------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
}
.review p {
  font-size: 1.02rem;
  color: var(--text);
}
.review__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review__top svg {
  width: 22px;
  height: 22px;
}
.review__stars {
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--star);
}
.review__who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.review__avatar {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e3e9f3;
  color: #7a8aa6;
  font-weight: 700;
}
.review__who b {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
}
.review__who span {
  font-size: 0.82rem;
}
.reviews__foot {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

@media (max-width: 960px) {
  .reviews {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
}

/* ---------- TRUST FEATURES ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.trust-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
}
.trust-card__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--blue);
}
.trust-card__icon svg {
  width: 22px;
  height: 22px;
}
.trust-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
}
.trust-card p {
  margin-top: 6px;
  font-size: 0.95rem;
  color: var(--muted);
}

@media (max-width: 960px) {
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- FOUNDER ---------- */
.founder {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  max-width: 940px;
  margin: 0 auto;
  padding: 48px;
  border-radius: var(--r-lg);
  background: var(--ink);
  color: #cbd5e1;
}
.founder__avatar {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
}
.founder blockquote p {
  font-family: var(--font-head);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.55;
  color: #fff;
}
.founder cite {
  display: block;
  margin-top: 18px;
  font-size: 0.93rem;
  font-style: normal;
  color: #94a3b8;
}
.founder cite b {
  color: #fff;
}

@media (max-width: 700px) {
  .founder {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 26px;
  }
  .founder__avatar {
    width: 72px;
    height: 72px;
    font-size: 1.5rem;
  }
}

/* ---------- FAQ ---------- */
.faq {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq details[open] {
  border-color: var(--blue-100);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  position: relative;
  padding: 20px 60px 20px 24px;
  list-style: none;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 26px;
  height: 26px;
  margin-top: -13px;
  border-radius: 50%;
  background: var(--blue-50) var(--plus-blue) center / 12px no-repeat;
  transition: transform 0.2s;
}
.faq details[open] summary::after {
  transform: rotate(45deg);
}
.faq details p {
  padding: 0 24px 22px;
  color: var(--muted);
}
.faq details a {
  font-weight: 600;
  color: var(--blue);
}

/* ---------- DISPATCH ---------- */
.dispatch {
  padding: 96px 0;
  background: radial-gradient(900px 400px at 0% 0%, rgba(255, 255, 255, 0.14), transparent 60%),
    linear-gradient(135deg, var(--blue) 0%, var(--blue-700) 100%);
  color: #fff;
}
.dispatch__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.dispatch .eyebrow {
  color: #bcd0ff;
}
.dispatch h2 {
  color: #fff;
}
.dispatch__sub {
  margin-top: 14px;
  font-size: 1.08rem;
  color: #dbe6ff;
}
.dispatch__contact {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background 0.2s;
}
.contact-row:hover {
  background: rgba(255, 255, 255, 0.18);
}
.contact-row__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #fff;
  color: var(--blue);
}
.contact-row__icon svg {
  width: 20px;
  height: 20px;
}
.contact-row b {
  display: block;
  word-break: break-word;
}
.contact-row span {
  font-size: 0.88rem;
  color: #dbe6ff;
}

.form-card {
  padding: 32px;
  border-radius: var(--r-lg);
  background: #fff;
  color: var(--text);
  box-shadow: 0 30px 60px -20px rgba(8, 20, 60, 0.5);
}
.form-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
}
.form-card__sub {
  margin-top: 4px;
  font-size: 0.93rem;
  color: var(--muted);
}
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 22px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field--full {
  grid-column: 1 / -1;
}
.field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
  font: inherit;
  font-size: 0.97rem;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea {
  min-height: 96px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(29, 91, 242, 0.15);
}
.form__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  grid-column: 1 / -1;
}
.form__assure {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}
.form-note {
  grid-column: 1 / -1;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.93rem;
  font-weight: 500;
}
.form-note--ok {
  background: var(--green-50);
  color: var(--green-700);
}
.form-note--err {
  background: #fdecec;
  color: #b42318;
}
.dispatch__consent {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--muted);
}

@media (max-width: 960px) {
  .dispatch__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 560px) {
  .form {
    grid-template-columns: 1fr;
  }
  .form-card {
    padding: 24px;
  }
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 72px 0 32px;
  background: #0b1220;
  color: #94a3b8;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer .nav__logo {
  color: #fff;
}
.footer .nav__logo img {
  border-color: rgba(255, 255, 255, 0.12);
}
.footer__tag {
  max-width: 320px;
  margin-top: 14px;
  font-size: 0.93rem;
}
.footer h4 {
  margin-bottom: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.footer ul {
  display: grid;
  gap: 10px;
  list-style: none;
  font-size: 0.93rem;
}
.footer a:hover {
  color: #fff;
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.87rem;
}
.footer__legal {
  display: flex;
  gap: 20px;
}

@media (max-width: 900px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
}

/* ---------- CONTENT PAGES ---------- */
/* Pricing, service landing and legal pages keep their original markup;
   these rules give those class names the v3 look. */
.section-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}
.section-header {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section-subtitle {
  margin-top: 12px;
  font-size: 1.05rem;
  color: var(--muted);
}

.btn--white {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 22px -10px rgba(29, 91, 242, 0.65);
}
.btn--white:hover {
  background: var(--blue-600);
  transform: translateY(-1px);
}
.btn--ghost {
  background: #fff;
  border-color: var(--line-strong);
  color: var(--ink);
}
.btn--ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.pricing-hero {
  padding: 64px 0 40px;
  background: radial-gradient(1100px 480px at 85% -10%, var(--blue-50), transparent 62%),
    #fff;
}
.pricing-hero__title {
  max-width: 860px;
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.pricing-hero__sub {
  max-width: 720px;
  margin-top: 18px;
  font-size: 1.1rem;
  color: var(--muted);
}
.pricing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.pricing-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.pricing-nav a {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color 0.2s, color 0.2s;
}
.pricing-nav a:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.pricing-cats {
  padding: 24px 0 96px;
}
.pricing-cats .container {
  display: grid;
  gap: 24px;
}
.pricing-cat {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.pricing-cat__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px 24px;
  margin-bottom: 14px;
}
.pricing-cat__badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pricing-cat h2 {
  margin-top: 10px;
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 800;
}
.pricing-cat__price {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: var(--ink);
}
.pricing-cat__price small {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--muted);
}
.pricing-cat__price--label {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--text);
}
.pricing-cat > p {
  font-size: 1.02rem;
  color: var(--muted);
}
.pricing-cat ul,
.pricing-promo ul {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  list-style: none;
}
.pricing-cat li,
.pricing-promo li {
  position: relative;
  padding-left: 32px;
}
.pricing-cat li::before,
.pricing-promo li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-50) var(--check-green) center / 11px no-repeat;
}
.pricing-cat li strong,
.pricing-promo li strong {
  font-weight: 600;
  color: var(--ink);
}
.pricing-cat a,
.pricing-promo a {
  font-weight: 600;
  color: var(--blue);
}
.pricing-cat__rule {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--muted);
}
.pricing-promo {
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid var(--blue-100);
  border-radius: var(--r-md);
  background: var(--blue-50);
}
.pricing-promo h3 {
  font-size: 1.08rem;
  font-weight: 800;
}
.pricing-promo > p {
  margin-top: 6px;
  font-size: 0.95rem;
  color: var(--muted);
}
.pricing-promo li::before {
  background-color: #fff;
}

/* Content pages use <section class="faq">; the homepage's .faq is the list itself */
section.faq {
  display: block;
  max-width: none;
  margin: 0;
  padding: 88px 0;
  background: var(--soft);
}
.faq__list {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

.pricing-book {
  padding: 88px 0;
  background: radial-gradient(900px 400px at 0% 0%, rgba(255, 255, 255, 0.14), transparent 60%),
    linear-gradient(135deg, var(--blue) 0%, var(--blue-700) 100%);
  color: #fff;
  text-align: center;
}
.pricing-book .section-eyebrow {
  color: #bcd0ff;
}
.pricing-book__title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.pricing-book__text {
  max-width: 640px;
  margin: 14px auto 0;
  font-size: 1.08rem;
  color: #dbe6ff;
}
.pricing-book__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.pricing-book .btn--white {
  background: #fff;
  color: var(--blue);
  box-shadow: none;
}
.pricing-book .btn--white:hover {
  background: var(--blue-50);
}
.pricing-book .btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}
.pricing-book .btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.pricing-book__note {
  max-width: 640px;
  margin: 22px auto 0;
  font-size: 0.85rem;
  color: #c7d6ff;
}
.pricing-book__note a {
  color: #fff;
  text-decoration: underline;
}

.legal {
  padding: 56px 0 96px;
}
.legal__section {
  max-width: 860px;
  margin: 0 auto;
}
.legal__header {
  margin-bottom: 8px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.legal__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.legal__meta {
  margin-top: 10px;
  font-size: 0.92rem;
  color: var(--muted);
}
.legal__block {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.legal__block:last-child {
  border-bottom: 0;
}
.legal__block h2 {
  font-size: 1.35rem;
  font-weight: 800;
}
.legal__block h3 {
  margin-top: 20px;
  font-size: 1.05rem;
  font-weight: 700;
}
.legal__block p {
  margin-top: 10px;
  line-height: 1.75;
}
.legal__block ul,
.legal__block ol {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding-left: 0;
  list-style: none;
}
.legal__block li {
  position: relative;
  padding-left: 22px;
  line-height: 1.7;
}
.legal__block li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.legal__block a {
  font-weight: 600;
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal__block table {
  width: 100%;
  margin-top: 12px;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.legal__block th,
.legal__block td {
  padding: 10px 12px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.legal__divider {
  max-width: 860px;
  height: 1px;
  margin: 56px auto;
  border: 0;
  background: var(--line-strong);
}

@media (max-width: 600px) {
  .pricing-cat {
    padding: 24px 20px;
  }
  .pricing-cat__price {
    font-size: 1.6rem;
  }
  /* Long "Call / Text 1-866-…" buttons must wrap instead of overflowing */
  .pricing-hero .btn,
  .pricing-book .btn {
    white-space: normal;
    text-align: center;
  }
}

/* ---------- APP STORE BUTTONS ---------- */
.stores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__apps {
  margin-top: 16px;
}
.store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 164px;
  padding: 9px 18px 9px 14px;
  border: 1px solid #000;
  border-radius: 12px;
  background: #000;
  color: #fff;
  line-height: 1.1;
  transition: background 0.2s, transform 0.2s;
}
.store:hover {
  background: #1f2937;
  transform: translateY(-1px);
}
.store svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.store small {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  opacity: 0.9;
}
.store b {
  display: block;
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ---------- GET THE APP ---------- */
.app-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding: 56px;
  overflow: hidden;
  border-radius: 32px;
  background: radial-gradient(640px 360px at 88% 12%, rgba(29, 91, 242, 0.5), transparent 62%),
    var(--ink);
  color: #cbd5e1;
}
.app-panel .eyebrow {
  color: #9db8ff;
}
.app-panel h2 {
  color: #fff;
}
.app-panel .sub {
  color: #a9b6c9;
}
.app-panel .ticks li {
  color: #e2e8f0;
}
.app-panel .ticks li::before {
  background-color: rgba(21, 163, 106, 0.2);
}
.app-panel .stores {
  margin-top: 32px;
}
.app-panel .store,
.footer .store {
  border-color: rgba(255, 255, 255, 0.28);
}

.phone {
  position: relative;
  width: 260px;
  margin: 0 auto;
  padding: 12px;
  border-radius: 38px;
  background: #0b0f19;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.75),
    inset 0 0 0 2px rgba(255, 255, 255, 0.14);
}
/* Android punch-hole camera, sitting in the screenshot's empty top margin */
.phone__notch {
  position: absolute;
  top: 17px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #05070c;
  transform: translateX(-50%);
}
.phone__screen {
  overflow: hidden;
  border-radius: 26px;
  background: #1c1b1f;
}
.phone__screen img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .app-panel {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 36px 24px;
    border-radius: var(--r-lg);
  }
  .phone {
    width: 240px;
  }
}

.footer__stores {
  margin-top: 20px;
}

/* ---------- HERO VIDEO ---------- */
/* Vertical 9:16 clip: cap the width so it doesn't tower over the headline */
.hero__visual--video {
  width: 100%;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
/* 720×1280 clip shown with its bottom 15% cropped: 1280 × 0.85 = 1088 */
.photo--video {
  aspect-ratio: 720 / 1088;
  background: #e9edf5;
}
.photo--video video {
  object-position: 50% 0;
}
.photo video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Top-right: keeps the clip's own corner mark (bottom-right) uncovered */
.video-toggle {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.55);
  color: #fff;
  cursor: pointer;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: background 0.2s;
}
.video-toggle:hover {
  background: rgba(15, 23, 42, 0.78);
}
.video-toggle svg {
  width: 18px;
  height: 18px;
}
.video-toggle__play,
.video-toggle.is-paused .video-toggle__pause {
  display: none;
}
.video-toggle.is-paused .video-toggle__play {
  display: block;
}

/* ---------- MOBILE ACTION BAR ---------- */
.mobilebar {
  display: none;
}

@media (max-width: 720px) {
  .section,
  .dispatch {
    padding: 64px 0;
  }
  .topbar__area {
    display: none;
  }
  .topbar__row {
    justify-content: center;
  }
  .mobilebar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 30px -10px rgba(15, 23, 42, 0.35);
  }
  .mobilebar .btn {
    padding: 12px 10px;
    font-size: 0.95rem;
  }
  body {
    padding-bottom: 84px;
  }
}
