:root {
  --brand: #ef3f4e;
  --brand-dark: #cf2938;
  --brand-soft: #fff0f1;
  --ink: #10243e;
  --ink-soft: #526277;
  --muted: #718096;
  --line: #dce7ec;
  --surface: #ffffff;
  --surface-soft: #f4faf9;
  --teal: #087f78;
  --teal-dark: #075e59;
  --teal-soft: #dff6f2;
  --gold: #f4b740;
  --shadow-sm: 0 10px 30px rgba(16, 36, 62, 0.08);
  --shadow-lg: 0 28px 70px rgba(16, 36, 62, 0.16);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(8, 127, 120, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 104px 0;
}

.section-soft {
  background: var(--surface-soft);
}

.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 12% 12%, rgba(239, 63, 78, 0.2), transparent 28%),
    radial-gradient(circle at 88% 86%, rgba(38, 201, 185, 0.2), transparent 30%),
    #0c2238;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--brand);
  content: "";
  box-shadow: 0 0 0 5px var(--brand-soft);
}

.section-dark .eyebrow {
  color: #8ee9df;
}

.section-dark .eyebrow::before {
  box-shadow: 0 0 0 5px rgba(239, 63, 78, 0.18);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5.7vw, 5.2rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.8vw, 3.35rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.lead {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
}

.section-dark .lead,
.section-dark p {
  color: #cbd7e2;
}

.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .lead {
  margin-inline: auto;
}

.emergency-note {
  position: relative;
  z-index: 60;
  padding: 8px 0;
  color: #fff;
  background: var(--ink);
  font-size: 0.78rem;
  text-align: center;
}

.emergency-note p {
  margin: 0;
}

.emergency-note a {
  color: #9cf1e8;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(16, 36, 62, 0.07);
}

.nav-wrap {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-width: 208px;
  align-items: center;
  gap: 11px;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  color: var(--ink);
  font-size: 1.13rem;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.brand-tagline {
  margin-top: 5px;
  color: var(--brand-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 27px;
}

.nav-menu > a:not(.button) {
  position: relative;
  color: #3f5063;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-menu > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--brand);
  content: "";
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.nav-menu > a:not(.button):hover::after,
.nav-menu > a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 12px 28px rgba(239, 63, 78, 0.23);
}

.button-primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 15px 34px rgba(239, 63, 78, 0.3);
}

.button-secondary {
  border-color: #b9d8d5;
  color: var(--teal-dark);
  background: #fff;
}

.button-secondary:hover {
  border-color: var(--teal);
  background: var(--teal-soft);
}

.button-light {
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.button svg {
  width: 18px;
  height: 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 78px;
  background:
    radial-gradient(circle at 72% 14%, rgba(8, 127, 120, 0.12), transparent 25%),
    radial-gradient(circle at 8% 88%, rgba(239, 63, 78, 0.09), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f8fcfb 100%);
}

.hero::before {
  position: absolute;
  top: 44px;
  left: -160px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(239, 63, 78, 0.13);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(239, 63, 78, 0.025);
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(46px, 7vw, 92px);
  grid-template-columns: minmax(0, 1.05fr) minmax(370px, 0.75fr);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

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

.hero-copy .lead {
  max-width: 650px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 30px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-points span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 610px;
  place-items: center;
}

.visual-halo {
  position: absolute;
  width: min(100%, 520px);
  aspect-ratio: 1;
  border-radius: 46% 54% 58% 42% / 53% 38% 62% 47%;
  background: linear-gradient(145deg, #dff6f2, #fff0f1);
  animation: morph 12s ease-in-out infinite alternate;
}

@keyframes morph {
  to {
    border-radius: 57% 43% 42% 58% / 39% 58% 42% 61%;
    transform: rotate(4deg) scale(1.03);
  }
}

.phone-shell {
  position: relative;
  z-index: 2;
  width: 302px;
  padding: 11px;
  border: 7px solid #10243e;
  border-radius: 44px;
  background: #10243e;
  box-shadow: var(--shadow-lg);
  transform: rotate(2.5deg);
}

.phone-screen {
  min-height: 566px;
  overflow: hidden;
  border-radius: 31px;
  background: #f6fbfa;
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 4;
  width: 92px;
  height: 22px;
  border-radius: 0 0 14px 14px;
  background: #10243e;
  transform: translateX(-50%);
}

.app-top {
  padding: 46px 20px 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #ff7580);
}

.app-top small {
  display: block;
  margin-bottom: 5px;
  opacity: 0.85;
}

.app-top strong {
  display: block;
  font-size: 1.15rem;
}

.app-body {
  padding: 18px;
}

.app-search {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: #738193;
  background: #fff;
  font-size: 0.75rem;
}

.app-categories {
  display: grid;
  gap: 8px;
  margin: 16px 0;
  grid-template-columns: repeat(3, 1fr);
}

.app-category {
  padding: 11px 5px;
  border-radius: 12px;
  color: var(--ink-soft);
  background: #fff;
  box-shadow: 0 5px 16px rgba(16, 36, 62, 0.06);
  font-size: 0.63rem;
  font-weight: 800;
  text-align: center;
}

.app-category b {
  display: grid;
  width: 30px;
  height: 30px;
  margin: 0 auto 6px;
  border-radius: 9px;
  color: var(--brand);
  background: var(--brand-soft);
  font-size: 0.95rem;
  place-items: center;
}

.app-label {
  margin: 12px 0 8px;
  color: var(--ink);
  font-size: 0.73rem;
  font-weight: 800;
}

.provider-card {
  display: grid;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid #e3ecef;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(16, 36, 62, 0.06);
  grid-template-columns: 46px 1fr auto;
}

.provider-card + .provider-card {
  margin-top: 9px;
}

.provider-avatar {
  display: grid;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #38b9ae);
  font-size: 0.78rem;
  font-weight: 900;
  place-items: center;
}

.provider-copy {
  min-width: 0;
}

.provider-copy strong,
.provider-copy span {
  display: block;
}

.provider-copy strong {
  overflow: hidden;
  font-size: 0.72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.provider-copy span {
  color: var(--muted);
  font-size: 0.59rem;
}

.provider-rating {
  color: #9a6700;
  font-size: 0.63rem;
  font-weight: 900;
}

.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  width: 188px;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note strong {
  font-size: 0.78rem;
}

.floating-note span {
  color: var(--muted);
  font-size: 0.66rem;
}

.floating-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 12px;
  color: #fff;
  background: var(--teal);
  place-items: center;
}

.floating-note.one {
  top: 110px;
  left: -8px;
}

.floating-note.two {
  right: -5px;
  bottom: 88px;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 13px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 13px;
  color: var(--teal-dark);
  background: var(--teal-soft);
  place-items: center;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font-size: 0.88rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.4;
}

.card-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 36, 62, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: #b7d8d4;
  box-shadow: var(--shadow-sm);
  transform: translateY(-6px);
}

.service-card::after {
  position: absolute;
  right: -32px;
  bottom: -42px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--brand-soft);
  content: "";
}

.service-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(145deg, var(--brand), #ff727e);
  box-shadow: 0 12px 28px rgba(239, 63, 78, 0.2);
  place-items: center;
}

.service-icon svg {
  width: 27px;
  height: 27px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.process-grid {
  display: grid;
  gap: 24px;
  counter-reset: process;
  grid-template-columns: repeat(3, 1fr);
}

.process-card {
  position: relative;
  padding: 34px 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  counter-increment: process;
}

.process-card::before {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  color: #fff;
  background: rgba(239, 63, 78, 0.9);
  content: "0" counter(process);
  font-size: 0.86rem;
  font-weight: 900;
  place-items: center;
}

.process-card p {
  margin: 0;
  font-size: 0.94rem;
}

.split {
  display: grid;
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid #d7e8e6;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #eaf9f6, #fff7f7);
}

.feature-panel::after {
  position: absolute;
  top: -120px;
  right: -100px;
  width: 280px;
  height: 280px;
  border: 50px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  content: "";
}

.feature-stack {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 28px rgba(16, 36, 62, 0.06);
}

.feature-row b {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 12px;
  color: #fff;
  background: var(--teal);
  place-items: center;
}

.feature-row strong,
.feature-row span {
  display: block;
}

.feature-row strong {
  margin-bottom: 3px;
  font-size: 0.92rem;
}

.feature-row span {
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.45;
}

.check-list {
  display: grid;
  gap: 15px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--ink-soft);
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--teal-soft);
  content: "✓";
  font-size: 0.76rem;
  font-weight: 900;
  place-items: center;
}

.download-panel {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #0c2238;
  box-shadow: var(--shadow-lg);
  grid-template-columns: 1fr 1fr;
}

.download-half {
  position: relative;
  padding: clamp(34px, 6vw, 66px);
}

.download-half + .download-half {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.04);
}

.download-half h3 {
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.download-half p {
  color: #cbd7e2;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.store-button {
  display: flex;
  min-width: 176px;
  align-items: center;
  gap: 11px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 160ms ease, background 160ms ease;
}

.store-button:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.store-button svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.store-button small,
.store-button strong {
  display: block;
  line-height: 1.15;
}

.store-button small {
  margin-bottom: 3px;
  color: #b8c6d3;
  font-size: 0.58rem;
  text-transform: uppercase;
}

.store-button strong {
  font-size: 0.88rem;
}

.faq-list {
  max-width: 860px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}

.faq-question::after {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--teal-soft);
  content: "+";
  font-size: 1.2rem;
  place-items: center;
  transition: transform 160ms ease;
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 200ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--ink-soft);
}

.faq-question[aria-expanded="true"] + .faq-answer {
  grid-template-rows: 1fr;
}

.contact-card {
  display: grid;
  gap: 38px;
  padding: clamp(32px, 6vw, 62px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fff, #f1faf8);
  box-shadow: var(--shadow-sm);
  grid-template-columns: 1.15fr 0.85fr;
}

.contact-links {
  display: grid;
  gap: 12px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.contact-link b {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 12px;
  color: var(--brand);
  background: var(--brand-soft);
  place-items: center;
}

.contact-link span,
.contact-link strong {
  display: block;
}

.contact-link span {
  color: var(--muted);
  font-size: 0.72rem;
}

.contact-link strong {
  font-size: 0.88rem;
}

.site-footer {
  color: #b8c6d3;
  background: #081a2b;
}

.footer-grid {
  display: grid;
  gap: 50px;
  padding: 70px 0 46px;
  grid-template-columns: 1.5fr 0.75fr 0.75fr 1fr;
}

.footer-brand .brand-name {
  color: #fff;
}

.footer-brand .brand-tagline {
  color: #ff9ba4;
}

.footer-brand p {
  max-width: 360px;
  margin-top: 22px;
  color: #a9b9c8;
  font-size: 0.88rem;
}

.footer-column h3 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 10px 0;
  color: #b8c6d3;
  font-size: 0.86rem;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.76rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #fff;
}

.legal-hero {
  padding: 72px 0 58px;
  background:
    radial-gradient(circle at 85% 20%, rgba(8, 127, 120, 0.12), transparent 24%),
    var(--surface-soft);
}

.legal-hero h1 {
  margin-bottom: 15px;
  font-size: clamp(2.35rem, 5vw, 4rem);
}

.legal-meta {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.legal-layout {
  display: grid;
  align-items: start;
  gap: 54px;
  grid-template-columns: 250px minmax(0, 760px);
}

.legal-toc {
  position: sticky;
  top: 112px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.legal-toc strong {
  display: block;
  margin-bottom: 12px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-toc a {
  display: block;
  padding: 5px 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.legal-toc a:hover {
  color: var(--brand);
}

.legal-content section {
  margin-bottom: 44px;
  scroll-margin-top: 118px;
}

.legal-content h2 {
  margin-bottom: 14px;
  font-size: 1.55rem;
  letter-spacing: -0.025em;
}

.legal-content h3 {
  margin-top: 24px;
  font-size: 1.03rem;
  letter-spacing: -0.015em;
}

.legal-content p,
.legal-content li {
  color: #46586c;
}

.legal-content ul,
.legal-content ol {
  display: grid;
  gap: 9px;
  padding-left: 22px;
}

.legal-callout {
  margin-bottom: 36px;
  padding: 20px 22px;
  border: 1px solid #bfe3df;
  border-left: 5px solid var(--teal);
  border-radius: 14px;
  background: #effaf8;
  color: #274a49;
}

.legal-callout strong {
  color: var(--ink);
}

.mobile-download-bar {
  display: none;
}

@media (max-width: 1060px) {
  .nav-menu {
    gap: 17px;
  }

  .nav-menu > a:not(.button) {
    font-size: 0.82rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 390px;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
  }

  .footer-column:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 880px) {
  .section {
    padding: 82px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 110px;
    right: 20px;
    left: 20px;
    display: grid;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 170ms ease, transform 170ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu > a:not(.button) {
    padding: 8px 0;
    font-size: 1rem;
  }

  .nav-menu .button {
    margin-top: 8px;
  }

  .hero {
    padding-top: 68px;
  }

  .hero-grid,
  .split,
  .contact-card {
    grid-template-columns: 1fr;
  }

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

  .hero-copy .lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-points {
    justify-content: center;
  }

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

  .floating-note.one {
    left: max(1%, calc(50% - 250px));
  }

  .floating-note.two {
    right: max(1%, calc(50% - 250px));
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .download-panel {
    grid-template-columns: 1fr;
  }

  .download-half + .download-half {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 70px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .emergency-note {
    font-size: 0.69rem;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-tagline {
    font-size: 0.6rem;
  }

  .nav-menu {
    top: 101px;
    right: 14px;
    left: 14px;
  }

  .hero {
    padding: 56px 0 46px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.55rem);
  }

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

  .hero-points {
    display: grid;
    gap: 8px;
  }

  .hero-visual {
    min-height: 520px;
    transform: scale(0.88);
    transform-origin: top center;
    margin-bottom: -70px;
  }

  .phone-shell {
    width: 285px;
  }

  .floating-note {
    width: 165px;
  }

  .floating-note.one {
    left: -3%;
  }

  .floating-note.two {
    right: -3%;
  }

  .trust-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 95px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .service-card {
    min-height: 0;
  }

  .download-half {
    padding: 34px 24px;
  }

  .store-buttons {
    display: grid;
  }

  .store-button {
    width: 100%;
  }

  .contact-card {
    padding: 28px 22px;
  }

  .footer-grid {
    gap: 34px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
  }

  .legal-hero {
    padding: 52px 0 44px;
  }

  .legal-toc {
    padding: 18px;
  }

  .mobile-download-bar {
    position: fixed;
    right: 12px;
    bottom: 10px;
    left: 12px;
    z-index: 70;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    background: var(--brand);
    box-shadow: 0 12px 36px rgba(16, 36, 62, 0.28);
    font-size: 0.88rem;
    font-weight: 850;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
