:root {
  --ink: #071849;
  --navy: #082a75;
  --blue: #0754c9;
  --green: #248f46;
  --teal: #098b92;
  --purple: #5b39c6;
  --muted: #4f5b77;
  --line: #d9e4f3;
  --soft: #f4f8ff;
  --white: #ffffff;
  --shadow: 0 10px 24px rgba(14, 33, 78, 0.1);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 52%, #ffffff 100%);
  overflow-x: hidden;
}

body.match-modal-open {
  overflow: hidden;
}

body.policy-modal-open {
  overflow: hidden;
}

main {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  width: min(calc(100% - 56px), 1180px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 228, 243, 0.9);
  box-shadow: 0 5px 18px rgba(9, 31, 82, 0.08);
  backdrop-filter: blur(14px);
}

.nav-shell {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand strong {
  color: var(--navy);
  font-size: clamp(1.05rem, 2.3vw, 1.52rem);
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 48px;
  position: relative;
  display: grid;
  place-items: center;
  color: var(--navy);
}

.brand-mark.asset-logo::before,
.brand-mark.asset-logo span::before,
.brand-mark.asset-logo span::after {
  display: none;
}

.brand-mark.asset-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 0, 91% 16%, 86% 75%, 50% 100%, 14% 75%, 9% 16%);
  border: 4px solid currentColor;
  background: #edf6ff;
}

.brand-mark span::before,
.brand-mark span::after {
  content: "";
  position: absolute;
  bottom: 15px;
  width: 8px;
  height: 16px;
  border-radius: 999px 999px 4px 4px;
  background: currentColor;
}

.brand-mark span::before {
  left: 16px;
}

.brand-mark span::after {
  right: 16px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 750;
}

.main-nav a {
  color: #111827;
  font-size: 0.84rem;
  white-space: nowrap;
}

.main-nav .nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, #319954, #177b38);
  box-shadow: 0 12px 24px rgba(36, 143, 70, 0.24);
  white-space: nowrap;
}

.hero > .shell {
  width: min(calc(100% - 56px), 1180px);
  max-width: 1180px;
  padding-left: 0;
  margin-inline: auto;
}

.hero {
  overflow: hidden;
  border-bottom: 1px solid #e2eaf6;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0 40%, rgba(255, 255, 255, 0.76) 55%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.hero-grid {
  min-height: 404px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 24px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 24px 0 20px;
}

.hero h1,
section h2 {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 520px;
  font-size: clamp(2.55rem, 4vw, 3.45rem);
  line-height: 1.08;
  overflow-wrap: break-word;
}

.hero h1 span {
  color: var(--blue);
}

.hero-copy p {
  max-width: 430px;
  margin: 16px 0 0;
  color: #24304f;
  font-size: 0.96rem;
  line-height: 1.45;
}

.hero-actions,
.start-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.hero-actions {
  flex-wrap: nowrap;
}

.hero-actions .button {
  flex: 0 0 196px;
  min-width: 0;
  padding-inline: 13px;
  font-size: 0.84rem;
}

.button {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 19px;
  border: 1.5px solid transparent;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button::after,
.need-card::after {
  content: ">";
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 900;
}

.button.primary,
.product-button {
  color: #ffffff;
  background: linear-gradient(135deg, #31a35a, #1d843e);
  box-shadow: 0 10px 20px rgba(36, 143, 70, 0.22);
}

.button.secondary {
  color: var(--blue);
  background: #ffffff;
  border-color: #1c62c8;
}

.button:hover,
.need-card:hover {
  transform: translateY(-2px);
}

.trust-pills {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 20px;
}

.trust-pills span {
  min-height: 39px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid #dfe7f4;
  border-radius: 999px;
  color: #293454;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 18px rgba(12, 36, 85, 0.08);
  font-weight: 800;
  font-size: 0.76rem;
  white-space: nowrap;
}

.trust-pills span::before {
  content: "\2713";
  width: 16px;
  height: 16px;
  display: inline-grid;
  place-items: center;
  border: 2.5px solid #41a85c;
  border-radius: 50%;
  color: #41a85c;
  background: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.trust-pills span:nth-child(2)::before {
  content: "";
  border-radius: 4px;
  border-color: #3175c9;
  background:
    linear-gradient(#3175c9, #3175c9) 50% 58% / 8px 7px no-repeat,
    radial-gradient(circle at 50% 28%, transparent 0 6px, #3175c9 7px 8px, transparent 9px);
}

.trust-pills span:nth-child(3)::before {
  content: "\2661";
  border-color: #45a950;
  color: #45a950;
  font-size: 1rem;
}

.trust-pills .trust-mobile-extra {
  display: none;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-width: 0;
  overflow: hidden;
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: calc(100% + 24px);
  max-width: none;
  object-fit: cover;
  object-position: center top;
  border-radius: 0 0 0 18px;
}

.need-section {
  padding: 8px 0 7px;
  background: #f8fbff;
}

.need-section h2,
.recommendations h2,
.guide h2,
.benefits h2 {
  margin-bottom: 12px;
  text-align: center;
  font-size: clamp(1.42rem, 2.5vw, 1.62rem);
}

.need-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.need-card {
  position: relative;
  min-height: 292px;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  align-content: start;
  justify-items: center;
  gap: 7px;
  padding: 12px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(160deg, #ffffff 0%, #f6fbff 100%);
  box-shadow: 0 9px 21px rgba(12, 36, 85, 0.12);
  text-align: center;
}

.need-card::after {
  position: absolute;
  right: 12px;
  bottom: 20px;
  color: #ffffff;
  background: transparent;
  font-size: 1.1rem;
}

.need-tag {
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 0 10px;
  border: 1px solid rgba(36, 72, 132, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: currentColor;
  font-size: 0.62rem;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 7px 14px rgba(12, 36, 85, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.need-card .product-art {
  width: 132px;
  height: 90px;
  margin-top: 5px;
  overflow: visible;
}

.need-card .product-art.wide {
  width: 148px;
}

.need-card .product-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(20, 38, 86, 0.16));
}

.need-card strong {
  min-height: 0;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.12;
}

.need-card p {
  max-width: 170px;
  margin: 0;
  color: #14244d;
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.34;
}

.need-card small {
  width: 100%;
  min-height: 38px;
  display: grid;
  place-items: center;
  gap: 2px;
  margin-top: 4px;
  padding: 6px 24px 6px 10px;
  border-radius: 10px;
  border-top: 0;
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  box-shadow: 0 10px 20px rgba(12, 36, 85, 0.12);
}

.need-card b {
  color: #ffffff;
  font-size: 0.72rem;
  line-height: 1.16;
}

.need-card.is-best-match {
  z-index: 2;
  border-color: rgba(36, 143, 70, 0.76);
  box-shadow:
    0 20px 36px rgba(36, 143, 70, 0.2),
    0 0 0 5px rgba(36, 143, 70, 0.1),
    inset 0 -4px 0 rgba(36, 143, 70, 0.08);
  animation: bestMatchPulse 1.15s ease-in-out infinite;
}

.need-card.is-best-match::before {
  content: "Best match";
  position: absolute;
  top: 10px;
  left: 10px;
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #31a35a, #1d843e);
  box-shadow: 0 8px 16px rgba(36, 143, 70, 0.2);
  font-size: 0.58rem;
  font-weight: 950;
}

@keyframes bestMatchPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-3px) scale(1.025);
  }
}

.need-card.blue { color: #286ed8; }
.need-card.green { color: #328a3e; }
.need-card.purple { color: #5d39c5; }
.need-card.teal { color: #098f96; }

.need-card.blue { background: linear-gradient(160deg, #ffffff 0%, #f3f8ff 100%); }
.need-card.green { background: linear-gradient(160deg, #ffffff 0%, #f7fff7 100%); }
.need-card.purple { background: linear-gradient(160deg, #ffffff 0%, #f9f6ff 100%); }
.need-card.teal { background: linear-gradient(160deg, #ffffff 0%, #f4feff 100%); }

.need-card.blue small { background: linear-gradient(135deg, #0754c9, #083f99); }
.need-card.green small { background: linear-gradient(135deg, #31a35a, #1d843e); }
.need-card.purple small { background: linear-gradient(135deg, #6841cf, #4927ad); }
.need-card.teal small { background: linear-gradient(135deg, #14a2a6, #087d84); }

.need-card.product-card {
  min-height: 292px;
  gap: 7px;
  padding: 12px;
  border: 1px solid #d6e2f1;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 9px 21px rgba(12, 36, 85, 0.12);
  color: var(--navy);
}

.need-card.product-card::after {
  display: none;
}

.need-card.product-card .product-art {
  margin-top: 4px;
}

.need-card.product-card .product-button::after {
  content: ">";
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 900;
}

.need-card.product-card.app {
  border-color: rgba(7, 84, 201, 0.2);
}

.need-card.product-card.phone {
  border-color: rgba(36, 143, 70, 0.22);
}

.need-card.product-card.watch {
  border-color: rgba(91, 57, 198, 0.22);
}

.need-card.product-card.home {
  border-color: rgba(9, 139, 146, 0.22);
}

.need-icon,
.mini {
  width: 48px;
  height: 54px;
  position: relative;
  display: inline-grid;
  place-items: center;
  color: currentColor;
}

.need-icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.need-icon.phone,
.mini.phone,
.need-icon.first-phone,
.mini.first-phone {
  border: 4px solid currentColor;
  border-radius: 10px;
}

.need-icon.phone::before,
.need-icon.first-phone::before,
.mini.phone::before,
.mini.first-phone::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  bottom: 5px;
  border-radius: 50%;
  background: currentColor;
}

.need-icon.first-phone::after,
.mini.first-phone::after {
  content: "*";
  font-size: 1.6rem;
  font-weight: 900;
}

.need-icon.watch,
.mini.watch {
  border: 5px solid currentColor;
  border-radius: 14px;
}

.need-icon.watch::after,
.mini.watch::after {
  content: "";
  width: 18px;
  height: 18px;
  border: 4px solid currentColor;
  border-radius: 50%;
}

.need-icon.home,
.mini.home {
  border-bottom: 5px solid currentColor;
}

.need-icon.home::before,
.mini.home::before {
  content: "";
  width: 38px;
  height: 38px;
  border-left: 5px solid currentColor;
  border-top: 5px solid currentColor;
  transform: rotate(45deg);
}

.panel,
.guide-panel,
.benefit-panel,
.start-panel {
  border: 1px solid #dce7f5;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.recommendations {
  padding: 10px 0 10px;
  background: #ffffff;
}

.recommendations .panel {
  padding: 10px 16px 16px;
  background: linear-gradient(180deg, #eef7ff 0%, #f9fcff 100%);
}

.product-grid-wrap {
  display: grid;
  gap: 14px;
}

.product-grid-heading {
  display: grid;
  justify-items: center;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.product-grid-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.42rem, 2.5vw, 1.62rem);
  line-height: 1.16;
}

.product-grid-heading p {
  max-width: 620px;
  margin: 7px 0 0;
  color: #293454;
  font-size: 0.9rem;
  line-height: 1.45;
}

.option-comparison {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid #dce7f5;
  border-radius: 18px;
  background:
    radial-gradient(circle at 14% 0%, rgba(49, 153, 84, 0.1), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  box-shadow: var(--shadow);
}

.comparison-heading {
  display: grid;
  gap: 5px;
  justify-items: center;
  text-align: center;
}

.comparison-eyebrow {
  width: fit-content;
  margin: 0;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--green);
  background: #e9f8ee;
  font-size: 0.68rem;
  font-weight: 950;
}

.comparison-heading h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.2rem, 2.4vw, 1.46rem);
  line-height: 1.14;
}

.comparison-heading p:not(.comparison-eyebrow) {
  max-width: 640px;
  margin: 0;
  color: #3a4663;
  font-size: 0.82rem;
  line-height: 1.45;
}

.comparison-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.comparison-points span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 10px;
  border: 1px solid #dbe8f6;
  border-radius: 999px;
  color: #14244d;
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
}

.comparison-points span::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border: 2px solid var(--green);
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--green) 0 3px, transparent 4px);
}

.comparison-table-wrap {
  position: relative;
  overflow-x: auto;
  border: 1px solid #dce7f5;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(12, 36, 85, 0.08);
}

.comparison-swipe-hint,
.comparison-scroll-cue {
  display: none;
}

.comparison-table {
  width: 100%;
  min-width: 930px;
  border-collapse: separate;
  border-spacing: 0;
  color: #14244d;
  font-size: 0.72rem;
}

.comparison-table th,
.comparison-table td {
  min-height: 40px;
  padding: 10px 9px;
  border-right: 1px solid #edf2f8;
  border-bottom: 1px solid #edf2f8;
  text-align: center;
  vertical-align: middle;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  width: 154px;
  text-align: left;
}

.comparison-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  color: var(--navy);
  background: #f7fbff;
  font-weight: 950;
}

.comparison-table thead th:first-child,
.comparison-table tbody th {
  position: sticky;
  left: 0;
  z-index: 3;
  background: #fbfdff;
}

.comparison-table thead th:first-child {
  z-index: 4;
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table th:last-child,
.comparison-table td:last-child {
  border-right: 0;
}

.comparison-table .is-active {
  background: linear-gradient(180deg, #f6fbff 0%, #eef8ff 100%);
  box-shadow: inset 2px 0 0 rgba(7, 84, 201, 0.16), inset -2px 0 0 rgba(7, 84, 201, 0.16);
}

.comparison-table small {
  display: block;
  margin-top: 2px;
  color: #5b6680;
  font-size: 0.66em;
  font-weight: 760;
}

.compare-dot {
  min-width: 28px;
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 950;
  white-space: nowrap;
}

.compare-dot.yes {
  color: #087a60;
  background: #ddf7ed;
}

.compare-dot.no {
  color: #8c4050;
  background: #fff0f3;
}

.compare-dot.partial {
  color: #0754c9;
  background: #eaf2ff;
}

.comparison-cta-row a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 92px);
  padding: 0 8px;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, #0754c9, #083f99);
  box-shadow: 0 10px 20px rgba(7, 84, 201, 0.18);
  font-size: 0.62rem;
  font-weight: 950;
}

.comparison-showcase:not(.comparison-expanded) [data-compare-detail] {
  display: none;
}

.comparison-detail-toggle {
  justify-self: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(7, 84, 201, 0.26);
  border-radius: 999px;
  color: var(--blue);
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(7, 84, 201, 0.1);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 950;
}

.product-note {
  max-width: 720px;
  margin: 0 auto;
  color: #4f5b77;
  font-size: 0.72rem;
  line-height: 1.45;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  position: relative;
  display: grid;
  gap: 7px;
  align-content: start;
  min-height: 288px;
  padding: 12px 12px 12px;
  border: 1px solid #d6e2f1;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 9px 21px rgba(12, 36, 85, 0.12);
  text-align: center;
}

.rank {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: #309853;
  font-weight: 900;
}

.badge {
  justify-self: center;
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #18723b;
  background: #e9f8ee;
  font-size: 0.62rem;
  font-weight: 900;
}

.product-art {
  width: 124px;
  height: 84px;
  display: grid;
  place-items: center;
  justify-self: center;
  margin-top: 4px;
  overflow: hidden;
}

.product-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-art.wide {
  width: 142px;
}

.product-art.smartphone {
  width: 68px;
  height: 104px;
  padding: 11px;
  border: 5px solid #111827;
  border-radius: 18px;
  background: linear-gradient(160deg, #2b2be9, #8f4ffc);
  box-shadow: 0 15px 22px rgba(15, 26, 67, 0.18);
}

.product-art.smartphone img {
  width: 38px;
  filter: brightness(0) invert(1);
}

.product-art.watch-face {
  width: 88px;
  height: 106px;
  border-radius: 24px;
  background:
    linear-gradient(#222 0 14px, transparent 14px 92px, #222 92px),
    radial-gradient(circle at 50% 56%, #0c163f 0 31px, #1e293b 32px 42px, transparent 43px);
}

.product-art.watch-face::after {
  content: "";
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #13b66b, #0c64d8);
  background:
    radial-gradient(circle at 28% 35%, #20e270 0 7px, transparent 8px),
    radial-gradient(circle at 70% 35%, #ea284f 0 7px, transparent 8px),
    radial-gradient(circle at 50% 70%, #1cc9ff 0 7px, transparent 8px),
    linear-gradient(135deg, #111e45, #263a78);
}

.product-art.dashboard {
  width: 132px;
  height: 78px;
  border: 5px solid #101827;
  border-radius: 7px;
  background:
    linear-gradient(90deg, #eaf2ff 0 28%, transparent 28%),
    repeating-linear-gradient(180deg, #ffffff 0 15px, #e9eff8 16px 17px);
  box-shadow: 0 14px 22px rgba(15, 26, 67, 0.14);
}

.product-art.router {
  width: 112px;
  height: 68px;
  margin-top: 28px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px #dce4ef, 0 14px 26px rgba(12, 36, 85, 0.12);
}

.product-art.router::before {
  content: "";
  width: 54px;
  height: 34px;
  border-top: 6px solid #15959b;
  border-radius: 50%;
  transform: translateY(-36px);
}

.product-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.26rem;
  line-height: 1.08;
}

.product-card.home h3 {
  color: var(--teal);
}

.product-card p {
  margin: 0;
  color: #14244d;
  font-size: 0.76rem;
  line-height: 1.38;
}

.product-button {
  width: 100%;
  min-height: 38px;
  margin-top: auto;
  border-radius: 10px;
  padding-inline: 12px;
  font-size: 0.82rem;
}

.product-button.purple { background: linear-gradient(135deg, #6841cf, #4927ad); }
.product-button.blue { background: linear-gradient(135deg, #095fce, #064aa8); }
.product-button.teal { background: linear-gradient(135deg, #14a2a6, #087d84); }

.guide,
.benefits,
.start-cta {
  padding: 0 0 8px;
}

.guide-panel,
.benefit-panel,
.start-panel {
  padding: 9px 20px;
}

.guide-table {
  overflow: hidden;
  border: 1px solid #dce7f5;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.guide-table div {
  position: relative;
  display: grid;
  grid-template-columns: 116px minmax(210px, 0.65fr) minmax(120px, 1fr) minmax(210px, 0.38fr);
  align-items: center;
  min-height: 36px;
  border-bottom: 1px solid #dce7f5;
}

.guide-table div::after {
  content: "";
  grid-column: 3;
  grid-row: 1;
  width: calc(100% - 34px);
  justify-self: center;
  border-top: 2px dotted #8db7ef;
}

.guide-table div::before {
  content: ">";
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  margin-right: 18px;
  color: #2b6fcf;
  font-weight: 900;
}

.guide-table div:last-child {
  border-bottom: 0;
}

.guide-table .mini {
  grid-column: 1;
  justify-self: center;
  width: 22px;
  height: 30px;
  border-width: 3px;
}

.mini-img {
  grid-column: 1;
  justify-self: center;
  width: 22px;
  height: 28px;
  object-fit: contain;
}

.guide-table p,
.guide-table b {
  margin: 0;
  font-size: 0.86rem;
}

.guide-table p {
  grid-column: 2;
  color: #13244d;
}

.guide-table b {
  grid-column: 4;
  color: #0c57b7;
}

.guide-table div:nth-child(1) .mini,
.guide-table div:nth-child(1) .mini-img,
.guide-table div:nth-child(1) b {
  color: var(--blue);
}

.guide-table div:nth-child(2) .mini,
.guide-table div:nth-child(2) .mini-img,
.guide-table div:nth-child(2) b {
  color: var(--green);
}

.guide-table div:nth-child(3) .mini,
.guide-table div:nth-child(3) .mini-img,
.guide-table div:nth-child(3) b {
  color: var(--purple);
}

.guide-table div:nth-child(4) .mini,
.guide-table div:nth-child(4) .mini-img,
.guide-table div:nth-child(4) b {
  color: var(--teal);
}

.guide-table .mini.home {
  height: 24px;
}

.guide-table .mini.home::before {
  width: 26px;
  height: 26px;
}

.guide-table .mini.home::after {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 24px;
  border-bottom: 3px solid currentColor;
}

.benefit-panel {
  padding: 7px 20px 9px;
  background: linear-gradient(90deg, #eefbf5, #eefaff);
  box-shadow: 0 9px 22px rgba(18, 55, 90, 0.08);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.benefit-grid article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 52px;
  padding: 0 10px;
  border-right: 1px solid #cfe0e7;
}

.benefit-grid article:last-child {
  border-right: 0;
}

.benefit-icon {
  position: relative;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 2px solid #39935a;
  border-radius: 50%;
  color: #39935a;
}

.benefit-icon-img {
  grid-row: 1 / span 2;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.benefit-icon.compass::before {
  content: "";
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  transform: rotate(45deg);
}

.benefit-icon.compass::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.benefit-icon.puzzle {
  border-radius: 14px;
  transform: rotate(45deg);
}

.benefit-icon.puzzle::before,
.benefit-icon.puzzle::after {
  content: "";
  position: absolute;
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: #f0fbf6;
}

.benefit-icon.puzzle::before {
  right: -8px;
}

.benefit-icon.puzzle::after {
  bottom: -8px;
}

.benefit-icon.people::before,
.benefit-icon.people::after {
  content: "";
  position: absolute;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.benefit-icon.people::before {
  top: 9px;
  width: 17px;
  height: 17px;
}

.benefit-icon.people::after {
  bottom: 8px;
  width: 34px;
  height: 18px;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.benefit-icon.chat::before {
  content: "";
  width: 30px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 16px;
}

.benefit-icon.chat::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 11px;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(24deg);
}

.benefit-grid h3 {
  grid-column: 2;
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 0.77rem;
  line-height: 1.12;
}

.benefit-grid p {
  grid-column: 2;
  margin: 0;
  color: #32405f;
  font-size: 0.62rem;
  line-height: 1.28;
}

.start-panel {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 300px;
  gap: 18px;
  align-items: center;
  padding: 10px 20px;
  background: linear-gradient(90deg, #ffffff, #f6fbff);
}

.family-icon {
  width: 78px;
  height: 78px;
  justify-self: center;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.family-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.24);
}

.start-panel h2 {
  margin: 0 0 5px;
  text-align: left;
}

.start-panel p {
  margin: 0;
  color: #263454;
  font-size: 0.94rem;
  line-height: 1.38;
}

.start-actions {
  display: grid;
  width: 100%;
  margin: 0;
  justify-content: flex-end;
}

.start-actions .button {
  width: 100%;
}

.site-footer {
  padding: 12px 0;
  background: #f3f8ff;
  border-top: 1px solid #dce7f5;
}

.footer-row {
  display: grid;
  grid-template-columns: minmax(230px, auto) minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.footer-row .brand-mark {
  width: 34px;
  height: 38px;
}

.footer-row .brand strong {
  font-size: 1.15rem;
}

.footer-row p {
  margin: 0;
  max-width: 520px;
  color: #3a4663;
  font-size: 0.78rem;
  line-height: 1.45;
}

.footer-row nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  font-weight: 700;
}

.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  padding: 20px;
}

.policy-modal.open {
  display: grid;
  place-items: center;
}

.policy-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 24, 73, 0.58);
  backdrop-filter: blur(8px);
}

.policy-dialog {
  position: relative;
  width: min(100%, 760px);
  max-height: min(86vh, 760px);
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #d9e4f3;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(7, 24, 73, 0.32);
  outline: none;
}

.policy-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 22px 16px;
  border-bottom: 1px solid #e4ecf7;
  background: linear-gradient(135deg, #f7fbff, #ffffff);
}

.policy-kicker,
.policy-updated {
  margin: 0;
  color: #4f5b77;
  font-size: 0.78rem;
  font-weight: 850;
}

.policy-kicker {
  color: var(--green);
  text-transform: uppercase;
}

.policy-header h2 {
  margin: 4px 0 5px;
  color: var(--navy);
  font-size: clamp(1.35rem, 4vw, 2rem);
  line-height: 1.12;
}

.policy-close {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid #d9e4f3;
  border-radius: 12px;
  background: #ffffff;
  cursor: pointer;
}

.policy-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #172756;
}

.policy-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.policy-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.policy-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 16px;
  border-bottom: 1px solid #e4ecf7;
  background: #ffffff;
}

.policy-tabs button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #d9e4f3;
  border-radius: 999px;
  color: var(--navy);
  background: #f6faff;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.policy-tabs button.active {
  color: #ffffff;
  border-color: var(--green);
  background: linear-gradient(135deg, #31a35a, #1d843e);
}

.policy-body {
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px 22px 24px;
}

.policy-panel {
  display: none;
}

.policy-panel.active {
  display: block;
}

.policy-panel p,
.policy-panel li {
  color: #1c2b55;
  font-size: 0.92rem;
  line-height: 1.66;
}

.policy-panel p {
  margin: 0 0 14px;
}

.policy-panel h3 {
  margin: 18px 0 7px;
  color: var(--navy);
  font-size: 1rem;
}

.policy-panel ul {
  display: grid;
  gap: 7px;
  margin: 0 0 14px;
  padding-left: 20px;
}

.match-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  pointer-events: none;
  visibility: hidden;
}

.match-modal.open {
  pointer-events: auto;
  visibility: visible;
}

.match-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 24, 73, 0.54);
  opacity: 0;
  transition: opacity 200ms ease;
}

.match-modal.open .match-modal__backdrop {
  opacity: 1;
}

.match-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  max-height: min(88vh, 720px);
  overflow-y: auto;
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid #d9e4f3;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 28px 70px rgba(7, 24, 73, 0.28);
  opacity: 0;
  transform: translateY(14px) scale(0.97);
  transition: opacity 200ms ease, transform 220ms ease;
}

.match-modal.open .match-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.match-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid #d9e4f3;
  border-radius: 12px;
  background: #ffffff;
  cursor: pointer;
}

.match-modal__close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.match-modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.match-modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.match-modal__eyebrow {
  width: fit-content;
  margin: 0;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--green);
  background: #e9f8ee;
  font-size: 0.72rem;
  font-weight: 950;
}

.match-progress {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 10px;
  align-items: center;
}

.match-progress span[data-match-step-label] {
  justify-self: end;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
}

.match-back {
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid #d9e4f3;
  border-radius: 999px;
  color: var(--navy);
  background: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
}

.match-back[disabled] {
  opacity: 0.42;
  cursor: default;
}

.match-progress__bar {
  grid-column: 1 / -1;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e4ecf8;
}

.match-progress__bar span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, #31a35a, #1d843e);
  transition: width 220ms ease;
}

.match-modal h2 {
  margin: 0;
  padding-right: 34px;
  color: var(--navy);
  font-size: 1.38rem;
  line-height: 1.12;
}

.match-modal__copy {
  margin: 0;
  color: #293454;
  font-size: 0.9rem;
  line-height: 1.45;
}

.match-modal__options {
  display: grid;
  gap: 9px;
}

.match-option {
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid #d9e4f3;
  border-radius: 16px;
  color: var(--ink);
  background: #ffffff;
  box-shadow:
    0 11px 20px rgba(12, 36, 85, 0.08),
    inset 0 -3px 0 rgba(8, 42, 117, 0.05);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.match-option strong {
  display: block;
  color: var(--navy);
  font-size: 0.86rem;
  line-height: 1.18;
}

.match-option small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.22;
}

.match-option::after {
  content: ">";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--green);
  font-weight: 950;
}

.match-option--select::after {
  content: "";
  border: 2px solid #b7c6de;
  background: #ffffff;
}

.match-option--select.selected {
  border-color: rgba(36, 143, 70, 0.72);
  background: linear-gradient(180deg, #ffffff 0%, #f0fff5 100%);
  box-shadow:
    0 14px 26px rgba(36, 143, 70, 0.14),
    inset 0 -3px 0 rgba(36, 143, 70, 0.08);
}

.match-option--select.selected::after {
  content: "\2713";
  border-color: var(--green);
  color: #ffffff;
  background: var(--green);
  font-size: 0.84rem;
}

.match-continue {
  min-height: 48px;
  border: 0;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #31a35a, #1d843e);
  box-shadow: 0 14px 28px rgba(36, 143, 70, 0.22);
  cursor: pointer;
  font: inherit;
  font-weight: 950;
}

@media (max-width: 840px) {
  .main-nav {
    gap: 18px;
  }

  .hero-grid,
  .product-grid,
  .need-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-visual img {
    width: 100%;
    border-radius: 26px;
  }

  .start-panel,
  .footer-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .start-panel h2 {
    text-align: center;
  }

  .start-actions,
  .footer-row nav {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 34px), 420px);
  }

  .hero > .shell {
    width: min(calc(100% - 34px), 420px);
    padding-left: 0;
    margin-inline: auto;
  }

  .nav-shell {
    min-height: 68px;
  }

  .main-nav {
    display: none;
  }

  .brand strong {
    font-size: 1.22rem;
  }

  .brand-mark {
    width: 38px;
    height: 44px;
  }

  .hero {
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 10px;
    padding: 24px 0 18px;
  }

  .hero-copy {
    padding: 0;
    text-align: center;
  }

  .hero h1 {
    max-width: 340px;
    margin-inline: auto;
    font-size: clamp(2.04rem, 8.9vw, 2.45rem);
    line-height: 1.12;
  }

  .hero-copy p {
    margin-inline: auto;
    max-width: 300px;
    font-size: 1rem;
    overflow-wrap: break-word;
  }

  .hero-actions,
  .trust-pills {
    justify-content: center;
    width: min(100%, 300px);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-actions .button {
    flex: 1 1 auto;
    width: 100%;
  }

  .button {
    width: 100%;
    min-height: 50px;
  }

  .trust-pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    width: min(100%, 330px);
  }

  .trust-pills span {
    min-height: 58px;
    justify-content: center;
    padding: 8px 7px;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: 0 10px 20px rgba(12, 36, 85, 0.08), inset 0 -2px 0 rgba(8, 42, 117, 0.06);
    font-size: 0.72rem;
    line-height: 1.12;
    text-align: center;
  }

  .trust-pills .trust-mobile-extra {
    display: inline-flex;
  }

  .hero-visual {
    position: relative;
    height: 310px;
    min-height: auto;
    overflow: hidden;
  }

  .hero-visual img {
    height: 356px;
    object-position: 52% top;
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .need-grid,
  .product-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    width: calc(100% - 18px);
    min-width: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .need-section h2,
  .recommendations h2,
  .guide h2,
  .benefits h2 {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.42rem, 6.7vw, 1.72rem);
    line-height: 1.16;
    overflow-wrap: break-word;
  }

  .need-card {
    min-height: 286px;
    gap: 6px;
    padding: 12px 9px;
    border-radius: 18px;
    border-width: 1px;
    box-shadow:
      0 14px 24px rgba(12, 36, 85, 0.08),
      inset 0 -4px 0 rgba(8, 42, 117, 0.05),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateZ(0);
    min-width: 0;
    overflow: hidden;
  }

  .need-card:active {
    box-shadow: 0 8px 16px rgba(12, 36, 85, 0.08), inset 0 2px 0 rgba(8, 42, 117, 0.06);
    transform: translateY(2px);
  }

  .need-tag {
    min-height: 20px;
    max-width: calc(100% - 30px);
    padding: 0 7px;
    font-size: 0.5rem;
    line-height: 1;
    text-align: center;
  }

  .need-card .product-art,
  .need-card .product-art.wide {
    width: min(128px, 90%);
    height: 92px;
    margin-top: 3px;
  }

  .need-card strong {
    min-height: 0;
    font-size: 0.92rem;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .need-card p {
    max-width: 128px;
    font-size: 0.62rem;
    line-height: 1.26;
  }

  .need-card small {
    gap: 2px;
    min-height: 34px;
    padding: 5px 22px 5px 8px;
    font-size: 0.56rem;
    line-height: 1.08;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .need-card b {
    font-size: 0.62rem;
  }

  .need-card::after {
    right: 11px;
    bottom: 16px;
    width: 19px;
    height: 19px;
    font-size: 0.9rem;
  }

  .need-card.product-card {
    min-height: 260px;
    gap: 7px;
    padding: 12px 9px;
    border-radius: 18px;
  }

  .need-card.product-card .product-art,
  .need-card.product-card .product-art.wide {
    width: min(126px, 88%);
    height: 86px;
    margin-top: 2px;
  }

  .need-card.product-card .badge {
    max-width: calc(100% - 30px);
  }

  .need-card.product-card .product-button {
    min-height: 34px;
    padding-inline: 8px;
    font-size: 0.56rem;
    line-height: 1.1;
  }

  .recommendations .panel,
  .guide-panel,
  .benefit-panel,
  .start-panel {
    padding: 16px 12px;
    border-radius: 18px;
  }

  .product-grid-wrap {
    gap: 12px;
  }

  .product-grid-heading {
    width: calc(100% - 18px);
  }

  .product-grid-heading h2 {
    font-size: clamp(1.42rem, 6.7vw, 1.72rem);
  }

  .product-grid-heading p {
    max-width: 310px;
    font-size: 0.76rem;
    line-height: 1.38;
  }

  .option-comparison {
    width: calc(100% - 8px);
    margin-inline: auto;
    gap: 12px;
    padding: 14px 8px;
    border-radius: 18px;
  }

  .comparison-heading h3 {
    max-width: 300px;
    font-size: 1.16rem;
  }

  .comparison-heading p:not(.comparison-eyebrow) {
    max-width: 300px;
    font-size: 0.72rem;
  }

  .comparison-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .comparison-points span {
    min-height: 38px;
    padding: 6px;
    border-radius: 14px;
    font-size: 0.62rem;
    line-height: 1.12;
  }

  .comparison-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: min(100%, 314px);
    min-height: 38px;
    margin: -2px auto 0;
    padding: 0 10px;
    border: 1px solid rgba(7, 84, 201, 0.22);
    border-radius: 999px;
    color: #07317d;
    background: linear-gradient(180deg, #ffffff 0%, #f1f7ff 100%);
    box-shadow: 0 10px 20px rgba(7, 84, 201, 0.09);
    text-align: center;
  }

  .comparison-swipe-hint strong {
    font-size: 0.62rem;
    font-weight: 950;
    line-height: 1.12;
  }

  .swipe-arrow {
    width: 23px;
    height: 23px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 999px;
    color: #ffffff;
    background: var(--blue);
    font-size: 0.72rem;
    font-weight: 950;
  }

  .swipe-arrow.left {
    animation: swipeNudgeLeft 1.5s ease-in-out infinite;
  }

  .swipe-arrow.right {
    animation: swipeNudgeRight 1.5s ease-in-out infinite;
  }

  .comparison-table-wrap {
    position: relative;
    border-radius: 14px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    box-shadow: 0 14px 30px rgba(12, 36, 85, 0.08), inset -20px 0 24px rgba(7, 84, 201, 0.06);
  }

  .comparison-table {
    min-width: 840px;
    font-size: 0.6rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 8px 6px;
  }

  .comparison-table th:first-child,
  .comparison-table td:first-child {
    width: 122px;
    min-width: 122px;
  }

  .compare-dot {
    min-width: 22px;
    min-height: 20px;
    padding: 0 6px;
    font-size: 0.54rem;
  }

  .comparison-cta-row a {
    width: 78px;
    min-height: 30px;
    padding: 0 5px;
    font-size: 0.54rem;
    line-height: 1.1;
  }

  .comparison-detail-toggle {
    width: min(100%, 260px);
    min-height: 42px;
    font-size: 0.72rem;
  }

  .comparison-scroll-cue {
    display: grid;
    grid-template-columns: repeat(3, 22px);
    justify-content: center;
    gap: 6px;
    margin-top: -2px;
  }

  .comparison-scroll-cue span {
    height: 5px;
    border-radius: 999px;
    background: #c8d9f1;
  }

  .comparison-scroll-cue span:nth-child(2) {
    width: 34px;
    background: var(--blue);
    animation: cuePulse 1.5s ease-in-out infinite;
  }

  .product-note {
    max-width: 300px;
    font-size: 0.64rem;
  }

  .product-card {
    min-height: 0;
    gap: 7px;
    padding: 12px 9px;
    border-radius: 18px;
    box-shadow:
      0 16px 26px rgba(12, 36, 85, 0.1),
      inset 0 -4px 0 rgba(8, 42, 117, 0.05);
    min-width: 0;
    overflow: hidden;
  }

  .product-art,
  .product-art.wide {
    width: min(126px, 88%);
    height: 92px;
  }

  .rank {
    top: 10px;
    left: 10px;
    width: 26px;
    height: 26px;
    font-size: 0.78rem;
  }

  .badge {
    max-width: calc(100% - 28px);
    min-height: 20px;
    padding: 0 7px;
    font-size: 0.5rem;
    line-height: 1.05;
  }

  .product-card h3 {
    font-size: 1rem;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .product-card p {
    font-size: 0.64rem;
    line-height: 1.28;
    overflow-wrap: anywhere;
  }

  .product-button {
    min-height: 34px;
    padding-inline: 5px;
    border-radius: 12px;
    font-size: 0.58rem;
    white-space: normal;
  }

  .guide-table {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: calc(100% - 18px);
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .guide-table div {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 7px;
    min-height: 128px;
    padding: 12px 9px;
    border: 1px solid #d9e4f3;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    box-shadow:
      0 12px 22px rgba(12, 36, 85, 0.08),
      inset 0 -4px 0 rgba(8, 42, 117, 0.05);
    text-align: center;
  }

  .guide-table div::before,
  .guide-table div::after {
    display: none;
  }

  .mini-img {
    grid-column: 1;
    grid-row: auto;
    align-self: center;
    width: 32px;
    height: 38px;
  }

  .guide-table p {
    grid-column: 1;
  }

  .guide-table b {
    grid-column: 1;
  }

  .guide-table p,
  .guide-table b {
    font-size: 0.72rem;
    line-height: 1.18;
  }

  .benefit-grid article {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 7px;
    min-height: 138px;
    padding: 13px 9px;
    border: 1px solid #cfe0e7;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow:
      0 12px 22px rgba(12, 36, 85, 0.07),
      inset 0 -4px 0 rgba(8, 42, 117, 0.04);
    text-align: center;
  }

  .benefit-grid article:last-child {
    border-bottom: 1px solid #cfe0e7;
  }

  .benefit-icon-img {
    grid-row: auto;
    width: 42px;
    height: 42px;
  }

  .benefit-grid h3,
  .benefit-grid p {
    grid-column: auto;
  }

  .benefit-grid h3 {
    margin-bottom: 0;
    font-size: 0.74rem;
  }

  .benefit-grid p {
    max-width: 125px;
    font-size: 0.6rem;
    line-height: 1.22;
  }

  .footer-row nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-row .brand {
    justify-self: center;
    justify-content: center;
  }

  .footer-row p {
    margin-inline: auto;
  }

  .policy-modal.open {
    align-items: end;
    padding: 14px;
  }

  .policy-dialog {
    width: calc(100vw - 28px);
    max-width: 390px;
    max-height: min(88vh, 720px);
    border-radius: 24px;
  }

  .policy-header {
    padding: 18px 16px 14px;
  }

  .policy-header h2 {
    font-size: 1.28rem;
  }

  .policy-tabs {
    flex-wrap: wrap;
    overflow-x: hidden;
    padding: 10px;
  }

  .policy-tabs button {
    flex: 1 1 calc(50% - 8px);
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .policy-body {
    padding: 16px 16px 20px;
  }

  .policy-panel h3 {
    font-size: 0.88rem;
  }

  .policy-panel p,
  .policy-panel li {
    font-size: 0.76rem;
    line-height: 1.5;
  }

  .match-modal {
    align-items: end;
    padding: 14px;
  }

  .match-modal__panel {
    width: min(100%, 390px);
    padding: 20px 16px calc(18px + env(safe-area-inset-bottom));
    border-radius: 24px;
  }

  .match-modal__panel::before {
    content: "";
    width: 44px;
    height: 5px;
    justify-self: center;
    margin: -6px 0 2px;
    border-radius: 999px;
    background: #d4def0;
  }

  .match-modal h2 {
    font-size: 1.2rem;
  }

  .match-option {
    border-radius: 18px;
  }

  .need-grid > .need-card.product-card {
    min-height: 318px;
    display: grid;
    grid-template-rows: auto 102px auto 1fr auto;
    align-content: start;
    gap: 7px;
    padding: 12px 9px 10px;
    overflow: hidden;
  }

  .need-grid > .need-card.product-card .rank {
    top: 9px;
    left: 9px;
  }

  .need-grid > .need-card.product-card .badge {
    max-width: calc(100% - 30px);
    min-height: 21px;
    margin-left: 22px;
    padding: 0 8px;
    font-size: 0.48rem;
    line-height: 1;
  }

  .need-grid > .need-card.product-card .product-art,
  .need-grid > .need-card.product-card .product-art.wide {
    width: 100%;
    height: 102px;
    display: grid;
    place-items: center;
    margin: 2px 0 0;
  }

  .need-grid > .need-card.product-card .product-art img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .need-grid > .need-card.product-card h3 {
    min-height: 30px;
    display: grid;
    place-items: center;
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.08;
  }

  .need-grid > .need-card.product-card p {
    max-width: 132px;
    margin: 0 auto;
    font-size: 0.59rem;
    line-height: 1.22;
  }

  .need-grid > .need-card.product-card .product-button {
    width: 100%;
    min-height: 34px;
    margin-top: auto;
    padding: 0 8px;
    font-size: 0.56rem;
    line-height: 1.05;
    white-space: normal;
  }

  .need-section .shell {
    width: min(calc(100% - 20px), 370px);
  }

  .need-section .need-grid {
    width: 100%;
    max-width: 344px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-inline: auto;
  }

  .need-section .need-grid > .need-card.product-card {
    width: 100%;
    min-width: 0;
    min-height: 330px;
    grid-template-rows: auto 88px 34px minmax(62px, 1fr) auto;
    gap: 7px;
    padding: 12px 8px 10px;
  }

  .need-section .need-grid > .need-card.product-card .product-art,
  .need-section .need-grid > .need-card.product-card .product-art.wide {
    width: 100%;
    height: 88px;
    margin: 4px 0 0;
  }

  .need-section .need-grid > .need-card.product-card h3 {
    min-height: 34px;
    font-size: 0.82rem;
    line-height: 1.08;
  }

  .need-section .need-grid > .need-card.product-card p {
    max-width: 124px;
    min-height: 62px;
    font-size: 0.58rem;
    line-height: 1.2;
  }

  .need-section .need-grid > .need-card.product-card .product-button {
    min-height: 36px;
    font-size: 0.52rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .need-card.is-best-match {
    animation: none;
  }
}

@media (max-width: 720px) {
  .need-section .need-grid {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    overflow: visible !important;
  }

  .need-section .need-grid > .need-card.product-card {
    min-height: 322px !important;
    display: grid !important;
    grid-template-rows: 22px 82px 34px 70px 36px !important;
    align-items: start !important;
    justify-items: center !important;
    gap: 7px !important;
    padding: 12px 7px 10px !important;
  }

  .need-section .need-grid > .need-card.product-card .badge {
    max-width: calc(100% - 30px) !important;
    align-self: center !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .need-section .need-grid > .need-card.product-card .product-art,
  .need-section .need-grid > .need-card.product-card .product-art.wide {
    width: 100% !important;
    height: 82px !important;
    max-height: 82px !important;
    overflow: hidden !important;
    display: grid !important;
    place-items: center !important;
    margin: 0 !important;
    background: #ffffff !important;
  }

  .need-section .need-grid > .need-card.product-card .product-art img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 82px !important;
    object-fit: contain !important;
  }

  .need-section .need-grid > .need-card.product-card h3 {
    min-height: 34px !important;
    margin: 0 !important;
    display: grid !important;
    place-items: center !important;
    font-size: 0.78rem !important;
    line-height: 1.08 !important;
    text-align: center !important;
  }

  .need-section .need-grid > .need-card.product-card p {
    min-height: 70px !important;
    max-height: 70px !important;
    max-width: 116px !important;
    margin: 0 auto !important;
    overflow: hidden !important;
    font-size: 0.55rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
  }

  .need-section .need-grid > .need-card.product-card .product-button {
    width: 100% !important;
    min-height: 36px !important;
    margin: 0 !important;
    padding: 0 8px !important;
    font-size: 0.5rem !important;
    line-height: 1.05 !important;
  }
}

.need-section .need-card.product-card {
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.9) 0 28%, rgba(246, 251, 255, 0.62) 44%, transparent 66%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 56%, #eef9f5 100%);
}

.need-section .need-card.product-card .product-art {
  position: relative;
  isolation: isolate;
  background: transparent;
}

.need-section .need-card.product-card .product-art::before {
  content: "";
  position: absolute;
  inset: 10% 4% 2%;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(7, 84, 201, 0.1), transparent 68%);
  filter: blur(2px);
}

.need-section .need-card.product-card.phone .product-art::before {
  background: radial-gradient(circle, rgba(49, 163, 90, 0.13), transparent 68%);
}

.need-section .need-card.product-card.watch .product-art::before {
  background: radial-gradient(circle, rgba(104, 65, 207, 0.13), transparent 68%);
}

.need-section .need-card.product-card.home .product-art::before {
  background: radial-gradient(circle, rgba(20, 162, 166, 0.13), transparent 68%);
}

.need-section .need-card.product-card .product-art img {
  mix-blend-mode: multiply;
  filter: drop-shadow(0 14px 18px rgba(20, 38, 86, 0.12));
}

@media (max-width: 720px) {
  .need-section .need-grid > .need-card.product-card .product-art,
  .need-section .need-grid > .need-card.product-card .product-art.wide {
    background: transparent !important;
  }

  .need-section .need-grid > .need-card.product-card .product-art::before {
    inset: 16% 4% 0;
  }

  .need-section .need-grid > .need-card.product-card .product-art img {
    mix-blend-mode: multiply !important;
    filter: drop-shadow(0 12px 14px rgba(20, 38, 86, 0.11)) !important;
  }
}

.path-picker {
  padding: 10px 0 12px;
  background:
    linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #f4f8ff 100%);
}

.path-picker h2 {
  margin: 0 0 18px;
  color: var(--navy);
  text-align: center;
  font-size: clamp(1.42rem, 2.5vw, 1.62rem);
  line-height: 1.16;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.path-card {
  position: relative;
  isolation: isolate;
  min-height: 306px;
  display: grid;
  grid-template-rows: 24px 118px 1fr 42px;
  gap: 10px;
  align-items: start;
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(159, 180, 216, 0.62);
  border-radius: 18px;
  color: var(--navy);
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.96) 0 19%, rgba(236, 246, 255, 0.82) 41%, rgba(255, 255, 255, 0) 62%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 58%, #effaf6 100%);
  box-shadow: 0 16px 30px rgba(12, 36, 85, 0.1);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.path-card:hover {
  border-color: rgba(7, 84, 201, 0.35);
  box-shadow: 0 20px 36px rgba(12, 36, 85, 0.14);
  transform: translateY(-2px);
}

.path-rank {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: #309853;
  box-shadow: 0 10px 18px rgba(36, 143, 70, 0.22);
  font-weight: 950;
}

.path-badge {
  justify-self: end;
  max-width: calc(100% - 36px);
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #18723b;
  background: #e9f8ee;
  font-size: 0.62rem;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.path-media {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 118px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 16px;
  background: transparent;
}

.path-media::before {
  content: "";
  position: absolute;
  inset: 20% 6% 0;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(7, 84, 201, 0.12), rgba(255, 255, 255, 0) 68%);
  filter: blur(2px);
}

.path-phone .path-media::before {
  background: radial-gradient(circle, rgba(49, 163, 90, 0.16), rgba(255, 255, 255, 0) 68%);
}

.path-phone .path-media {
  background: transparent;
}

.path-watch .path-media::before {
  background: radial-gradient(circle, rgba(104, 65, 207, 0.16), rgba(255, 255, 255, 0) 68%);
}

.path-watch .path-media {
  background: transparent;
}

.path-home .path-media::before {
  background: radial-gradient(circle, rgba(20, 162, 166, 0.16), rgba(255, 255, 255, 0) 68%);
}

.path-home .path-media {
  background: transparent;
}

.path-media img {
  max-width: 100%;
  max-height: 118px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 14px 18px rgba(20, 38, 86, 0.14));
}

.path-copy {
  display: grid;
  gap: 7px;
  align-content: start;
  justify-items: center;
}

.path-copy strong {
  color: var(--navy);
  font-size: 1.06rem;
  line-height: 1.08;
}

.path-home .path-copy strong {
  color: var(--teal);
}

.path-copy small {
  max-width: 178px;
  color: #14244d;
  font-size: 0.73rem;
  font-weight: 720;
  line-height: 1.34;
}

.path-action {
  width: 100%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 12px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #0754c9, #083f99);
  box-shadow: 0 12px 22px rgba(7, 84, 201, 0.18);
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1.08;
}

.path-action::after {
  content: ">";
  font-weight: 950;
}

.path-phone .path-action {
  background: linear-gradient(135deg, #31a35a, #1d843e);
}

.path-watch .path-action {
  background: linear-gradient(135deg, #6841cf, #4927ad);
}

.path-home .path-action {
  background: linear-gradient(135deg, #14a2a6, #087d84);
}

.path-card.is-best-match {
  border-color: rgba(36, 143, 70, 0.78);
  box-shadow: 0 20px 36px rgba(36, 143, 70, 0.18), 0 0 0 5px rgba(36, 143, 70, 0.1);
  animation: bestMatchPulse 1.15s ease-in-out infinite;
}

@media (max-width: 720px) {
  .path-picker .shell {
    width: min(calc(100% - 20px), 370px);
  }

  .path-picker h2 {
    max-width: 330px;
    margin-inline: auto;
    margin-bottom: 16px;
    font-size: clamp(1.42rem, 6.7vw, 1.72rem);
  }

  .path-grid {
    width: 100%;
    max-width: 340px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-inline: auto;
  }

  .path-card {
    min-height: 0;
    aspect-ratio: 1 / 1.06;
    grid-template-rows: 19px 72px 32px 34px;
    gap: 7px;
    padding: 10px 8px 8px;
    border-radius: 16px;
  }

  .path-rank {
    top: 9px;
    left: 9px;
    width: 24px;
    height: 24px;
    font-size: 0.72rem;
  }

  .path-badge {
    max-width: calc(100% - 30px);
    min-height: 18px;
    padding: 0 6px;
    font-size: 0.43rem;
  }

  .path-media {
    height: 72px;
    min-height: 72px;
    border-radius: 0;
    background: transparent;
  }

  .path-media img {
    max-height: 72px;
  }

  .path-copy {
    display: grid;
    place-items: center;
    gap: 0;
  }

  .path-copy strong {
    min-height: 32px;
    display: grid;
    place-items: center;
    font-size: 0.78rem;
    line-height: 1.08;
  }

  .path-copy small {
    display: none;
  }

  .path-action {
    min-height: 34px;
    padding: 0 6px;
    border-radius: 10px;
    font-size: 0.5rem;
  }
}

@media (max-width: 720px) {
  .path-picker {
    padding: 18px 0 16px;
    background: linear-gradient(180deg, #f6faff 0%, #eef5ff 100%);
  }

  .path-picker .shell {
    width: min(calc(100% - 18px), 376px);
  }

  .path-picker h2 {
    max-width: 330px;
    margin: 0 auto 16px;
    font-size: clamp(1.42rem, 6.7vw, 1.72rem);
    line-height: 1.12;
  }

  .path-grid {
    width: 100%;
    max-width: 348px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0 auto;
  }

  .path-card {
    position: relative;
    min-height: 0;
    aspect-ratio: 1 / 1;
    display: grid;
    grid-template-rows: 22px minmax(58px, 1fr) 28px 32px;
    gap: 5px;
    align-items: center;
    justify-items: center;
    overflow: hidden;
    padding: 10px 8px 8px;
    border-radius: 18px;
    border: 1px solid rgba(145, 171, 215, 0.62);
    box-shadow:
      0 12px 24px rgba(12, 36, 85, 0.09),
      inset 0 -5px 0 rgba(7, 84, 201, 0.04);
  }

  .path-app {
    background: linear-gradient(180deg, #ffffff 0%, #f1f7ff 68%, #eaf5ff 100%);
  }

  .path-phone {
    background: linear-gradient(180deg, #ffffff 0%, #f2fbf5 68%, #e8f8ed 100%);
  }

  .path-watch {
    background: linear-gradient(180deg, #ffffff 0%, #f7f3ff 68%, #f0eaff 100%);
  }

  .path-home {
    background: linear-gradient(180deg, #ffffff 0%, #f0fdff 68%, #e6f8fa 100%);
  }

  .path-rank {
    top: 9px;
    left: 9px;
    width: 24px;
    height: 24px;
    font-size: 0.72rem;
  }

  .path-badge {
    justify-self: end;
    max-width: calc(100% - 32px);
    min-height: 18px;
    padding: 0 7px;
    overflow: hidden;
    border-radius: 999px;
    font-size: 0.43rem;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .path-media {
    width: 100%;
    height: 100%;
    min-height: 58px;
    display: grid;
    place-items: center;
    overflow: visible;
    border-radius: 0;
    background: transparent;
  }

  .path-media::before {
    inset: 14% 12% 4%;
    opacity: 0.85;
  }

  .path-media img {
    width: auto;
    height: auto;
    max-width: 96%;
    max-height: 74px;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 10px 12px rgba(20, 38, 86, 0.12));
  }

  .path-copy {
    display: grid;
    place-items: center;
    min-width: 0;
  }

  .path-copy strong {
    min-height: 28px;
    display: grid;
    place-items: center;
    color: var(--navy);
    font-size: 0.74rem;
    line-height: 1.08;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .path-copy small {
    display: none;
  }

  .path-action {
    width: 100%;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 7px;
    border-radius: 11px;
    font-size: 0.48rem;
    line-height: 1.05;
    white-space: normal;
  }

  .path-action::after {
    flex: 0 0 auto;
  }
}

/* Final product-card treatment for "What does your family need most?" */
.need-section {
  padding: 22px 0 16px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

.need-section h2 {
  max-width: 720px;
  margin: 0 auto 18px;
  color: var(--navy);
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.08;
}

.need-section .need-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.need-section .need-option-card {
  position: relative;
  min-height: 332px;
  display: grid;
  grid-template-rows: 24px 136px minmax(88px, 1fr) 44px;
  gap: 9px;
  align-items: start;
  justify-items: center;
  padding: 16px 16px 14px;
  overflow: hidden;
  border: 1.5px solid #cbdcf2;
  border-radius: 18px;
  color: var(--navy);
  background: linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
  box-shadow: 0 18px 34px rgba(16, 45, 98, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.need-section .need-option-card::after {
  display: none;
  content: none;
}

.need-section .need-option-card:hover,
.need-section .need-option-card:focus-visible {
  border-color: rgba(30, 91, 180, 0.38);
  box-shadow: 0 22px 42px rgba(16, 45, 98, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  outline: none;
  transform: translateY(-3px);
}

.need-section .need-rank {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #36a75d, #218246);
  box-shadow: 0 10px 18px rgba(33, 130, 70, 0.24);
  font-size: 1rem;
  font-weight: 950;
}

.need-section .need-badge {
  justify-self: end;
  max-width: calc(100% - 42px);
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #1b7f42;
  background: #eaf8ef;
  font-size: 0.68rem;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.need-section .need-product-media {
  position: relative;
  width: 100%;
  height: 136px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 16px;
  background: radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.98) 0 36%, rgba(232, 243, 255, 0.74) 62%, rgba(255, 255, 255, 0) 100%), linear-gradient(180deg, #ffffff 0%, #f4faff 100%);
}

.need-section .need-product-media img {
  width: auto;
  height: auto;
  max-width: 94%;
  max-height: 124px;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(20, 38, 86, 0.16));
}

.need-section .need-product-media.wide img {
  max-width: 98%;
}

.need-section .need-product-copy {
  display: grid;
  grid-template-rows: 46px auto;
  align-content: start;
  justify-items: center;
  gap: 10px;
  min-width: 0;
}

.need-section .need-product-copy strong {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #07317d;
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 1.06;
  overflow-wrap: anywhere;
}

.need-section .need-product-copy small {
  width: auto;
  min-height: 0;
  display: block;
  margin: 0;
  padding: 0;
  border-radius: 0;
  color: #071a45;
  background: transparent !important;
  box-shadow: none;
  font-size: 0.8rem;
  font-weight: 560;
  line-height: 1.42;
}

.need-section .need-product-cta {
  width: 100%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 12px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #0754c9, #063f9b);
  box-shadow: 0 12px 22px rgba(7, 84, 201, 0.18);
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1.1;
}

.need-section .need-product-cta::after {
  content: ">";
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.85rem;
  font-weight: 950;
}

.need-section .need-option-card.phone {
  border-color: rgba(45, 160, 84, 0.28);
}

.need-section .need-option-card.phone .need-product-cta {
  background: linear-gradient(135deg, #31a35a, #1d843e);
  box-shadow: 0 12px 22px rgba(33, 130, 70, 0.18);
}

.need-section .need-option-card.watch {
  border-color: rgba(100, 63, 207, 0.28);
}

.need-section .need-option-card.watch .need-product-cta {
  background: linear-gradient(135deg, #6841cf, #4927ad);
  box-shadow: 0 12px 22px rgba(73, 39, 173, 0.18);
}

.need-section .need-option-card.home {
  border-color: rgba(20, 153, 160, 0.28);
}

.need-section .need-option-card.home .need-product-cta {
  background: linear-gradient(135deg, #14a2a6, #087d84);
  box-shadow: 0 12px 22px rgba(8, 125, 132, 0.18);
}

.need-section .need-option-card.is-best-match::before {
  top: auto;
  left: 50%;
  bottom: 64px;
  transform: translateX(-50%);
  z-index: 3;
}

@media (max-width: 720px) {
  .need-section {
    padding: 16px 0 18px;
  }

  .need-section h2 {
    max-width: 340px;
    margin-bottom: 16px;
    font-size: clamp(1.58rem, 7.4vw, 2rem);
    line-height: 1.02;
  }

  .need-section .need-grid {
    width: min(100% - 18px, 398px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
    margin-inline: auto;
  }

  .need-section .need-option-card {
    aspect-ratio: auto;
    min-height: 266px;
    grid-template-rows: 20px 102px 72px 34px;
    gap: 7px;
    padding: 11px 10px 10px;
    border-radius: 16px;
    box-shadow: 0 13px 24px rgba(16, 45, 98, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  }

  .need-section .need-rank {
    top: 9px;
    left: 9px;
    width: 26px;
    height: 26px;
    font-size: 0.78rem;
  }

  .need-section .need-badge {
    max-width: calc(100% - 34px);
    min-height: 18px;
    padding: 0 7px;
    font-size: 0.48rem;
  }

  .need-section .need-product-media {
    height: auto;
    min-height: 102px;
    padding: 7px;
    border: 1px solid rgba(190, 211, 238, 0.92);
    border-radius: 13px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), 0 8px 18px rgba(16, 45, 98, 0.05);
  }

  .need-section .need-product-media img {
    max-height: 88px;
  }

  .need-section .need-product-copy {
    grid-template-rows: 30px auto;
    gap: 7px;
  }

  .need-section .need-product-copy strong {
    min-height: 30px;
    font-size: 0.82rem;
    line-height: 1.08;
  }

  .need-section .need-product-copy small {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 0.52rem;
    font-weight: 600;
    line-height: 1.26;
  }

  .need-section .need-product-cta {
    min-height: 34px;
    padding: 0 8px;
    border-radius: 10px;
    font-size: 0.54rem;
    line-height: 1.04;
  }

  .need-section .need-product-cta::after {
    width: 16px;
    height: 16px;
    font-size: 0.62rem;
  }

  .need-section .need-option-card.is-best-match::before {
    bottom: 44px;
    min-height: 18px;
    font-size: 0.48rem;
  }
}

/* Confidence guide section replacing the quick guide */
.confidence-guide {
  display: grid;
  gap: 16px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid #d8e6f7;
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 0%, rgba(45, 160, 84, 0.1), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
  box-shadow: 0 18px 38px rgba(16, 45, 98, 0.1);
}

.confidence-heading {
  display: grid;
  justify-items: center;
  gap: 7px;
  max-width: 740px;
  margin-inline: auto;
  text-align: center;
}

.confidence-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.7vw, 2rem);
  line-height: 1.08;
}

.confidence-heading p:not(.comparison-eyebrow) {
  max-width: 620px;
  margin: 0;
  color: #1a2b58;
  font-size: 0.92rem;
  line-height: 1.55;
}

.confidence-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.confidence-cards article {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 9px;
  min-height: 170px;
  padding: 16px 14px;
  border: 1px solid #dce7f5;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 26px rgba(16, 45, 98, 0.07);
  text-align: center;
}

.confidence-icon {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.confidence-cards h3,
.best-fit-panel h3 {
  margin: 0;
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.18;
}

.confidence-cards p,
.best-fit-panel p {
  margin: 0;
  color: #20315b;
  font-size: 0.78rem;
  line-height: 1.48;
}

.best-fit-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid #cfe0f4;
  border-radius: 18px;
  background: linear-gradient(135deg, #f5fbff 0%, #ffffff 56%, #eef8f3 100%);
}

.best-fit-panel > div:first-child {
  display: grid;
  gap: 6px;
}

.fit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.fit-list span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid #d8e8f7;
  border-radius: 999px;
  color: #0b3c83;
  background: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
}

.fit-list span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-right: 7px;
  border-radius: 50%;
  background: #2fa35b;
}

.trust-compare {
  overflow: hidden;
  border: 1px solid #d8e6f5;
  border-radius: 16px;
  background: #ffffff;
}

.trust-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(120px, 0.65fr) minmax(150px, 0.8fr);
  min-height: 46px;
  border-bottom: 1px solid #e7eef8;
}

.trust-row:last-child {
  border-bottom: 0;
}

.trust-row span,
.trust-row b,
.trust-row em {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-right: 1px solid #edf2f9;
  color: #162756;
  font-size: 0.78rem;
  line-height: 1.25;
}

.trust-row em {
  border-right: 0;
  color: #52607e;
  font-style: normal;
  font-weight: 650;
}

.trust-row b {
  justify-content: center;
  color: #0b5f3f;
  background: #f1fbf5;
  font-weight: 950;
  text-align: center;
}

.trust-row b.good {
  color: #0b4f9f;
  background: #f1f7ff;
}

.trust-head {
  min-height: 40px;
  background: #eff6ff;
}

.trust-head span,
.trust-head b,
.trust-head em {
  color: var(--navy);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.honest-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 13px 14px;
  border: 1px solid #cfe1f5;
  border-radius: 16px;
  background: #ffffff;
  color: #162756;
  box-shadow: 0 10px 22px rgba(16, 45, 98, 0.06);
}

.honest-note strong {
  color: #0b5f3f;
  font-size: 0.82rem;
  white-space: nowrap;
}

.honest-note span {
  color: #25355f;
  font-size: 0.8rem;
  line-height: 1.45;
}

@media (max-width: 720px) {
  .guide {
    padding-bottom: 12px;
  }

  .confidence-guide {
    width: min(100% - 14px, 390px);
    gap: 13px;
    padding: 16px 10px;
    border-radius: 22px;
  }

  .confidence-heading {
    padding-inline: 6px;
  }

  .confidence-heading h2 {
    max-width: 320px;
    font-size: clamp(1.36rem, 6.6vw, 1.72rem);
  }

  .confidence-heading p:not(.comparison-eyebrow) {
    max-width: 320px;
    font-size: 0.76rem;
    line-height: 1.45;
  }

  .confidence-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .confidence-cards article {
    min-height: 154px;
    gap: 6px;
    padding: 12px 9px;
    border-radius: 16px;
  }

  .confidence-cards article:first-child {
    grid-column: 1 / -1;
    min-height: 118px;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    justify-items: start;
    text-align: left;
  }

  .confidence-cards article:first-child p,
  .confidence-cards article:first-child h3 {
    grid-column: 2;
  }

  .confidence-cards article:first-child .confidence-icon {
    grid-row: 1 / span 2;
  }

  .confidence-icon {
    width: 42px;
    height: 42px;
  }

  .confidence-cards h3,
  .best-fit-panel h3 {
    font-size: 0.78rem;
    line-height: 1.16;
  }

  .confidence-cards p,
  .best-fit-panel p {
    font-size: 0.62rem;
    line-height: 1.32;
  }

  .best-fit-panel {
    grid-template-columns: 1fr;
    gap: 11px;
    padding: 13px 10px;
    border-radius: 17px;
    text-align: center;
  }

  .fit-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .fit-list span {
    min-height: 32px;
    padding: 0 7px;
    border-radius: 12px;
    font-size: 0.56rem;
    line-height: 1.1;
  }

  .fit-list span::before {
    width: 6px;
    height: 6px;
    margin-right: 5px;
  }

  .trust-row {
    grid-template-columns: minmax(0, 1fr) 82px 92px;
    min-height: 42px;
  }

  .trust-row span,
  .trust-row b,
  .trust-row em {
    padding: 8px 6px;
    font-size: 0.55rem;
    line-height: 1.18;
  }

  .trust-head span,
  .trust-head b,
  .trust-head em {
    font-size: 0.5rem;
  }

  .honest-note {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 12px;
    text-align: center;
  }

  .honest-note strong {
    font-size: 0.72rem;
    white-space: normal;
  }

  .honest-note span {
    font-size: 0.64rem;
    line-height: 1.38;
  }
}

@keyframes swipeNudgeLeft {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-4px);
  }
}

@keyframes swipeNudgeRight {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(4px);
  }
}

@keyframes cuePulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scaleX(0.8);
  }

  50% {
    opacity: 1;
    transform: scaleX(1.08);
  }
}

@media (max-width: 720px) {
  .need-section h2 {
    max-width: none;
    width: 100%;
    padding-inline: 8px;
  }

  .need-section .need-grid {
    width: 100% !important;
    max-width: none !important;
  }
}
