:root {
  color-scheme: light;
  --brand-dark: #5e8a99;
  --brand-mid: #6e9baa;
  --brand-light: #86b2c1;
  --brand-soft: #b1c9d6;
  --brand-bg: #ebebeb;
  --brand-text: #c3c3c3;
  --navy: #071032;
  --ink: #121820;
  --muted: #66727c;
  --paper: #f7f8f8;
  --surface: #ffffff;
  --line: #e7e7e7;
  --blue: #86b2c1;
  --green: #67d89b;
  --green-dark: #5e8a99;
  --shadow: 0 18px 50px rgba(18, 24, 32, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% -18%, rgba(177, 201, 214, 0.62), transparent 34rem),
    linear-gradient(180deg, #fbfbfb 0%, var(--paper) 38%, #ffffff 100%);
  color: var(--ink);
  font-family: Arial, Helvetica, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 18%, rgba(134, 178, 193, 0.22), transparent 22rem),
    radial-gradient(circle at 84% 12%, rgba(94, 138, 153, 0.16), transparent 24rem);
  pointer-events: none;
}

button,
input,
select {
  font: inherit;
}

h1,
h2,
h3,
strong,
a,
button,
input,
select {
  font-family: Arial, Helvetica, "Segoe UI", sans-serif;
}

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

section[id] {
  scroll-margin-top: 92px;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 0 clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(231, 231, 231, 0.9);
  background: rgba(250, 250, 250, 0.88);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

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

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.76rem;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}

.nav a,
.top-action {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  color: #26313b;
  font-size: 0.9rem;
  font-weight: 800;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.nav a:hover {
  background: #f0f0f0;
  box-shadow: 0 10px 24px rgba(18, 24, 32, 0.08);
  transform: translateY(-1px);
}

.top-action {
  background: var(--brand-dark);
  color: #fff;
  box-shadow:
    0 12px 26px rgba(94, 138, 153, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.top-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(94, 138, 153, 0.34);
}

.hero {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(58px, 8vw, 104px) 20px clamp(52px, 7vw, 82px);
  text-align: center;
  animation: arrive 700ms ease both;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: min(560px, calc(100% - 40px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94, 138, 153, 0.3), transparent);
  transform: translateX(-50%);
}

.hero-logo {
  width: clamp(92px, 12vw, 142px);
  height: auto;
  margin: 0 auto 18px;
}

.kicker {
  margin: 0 0 16px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(2.65rem, 6.4vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero > p:not(.kicker) {
  max-width: 650px;
  margin: 24px auto 0;
  color: #3e4851;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(18, 24, 32, 0.11);
}

.button-primary {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
  color: #fff;
}

.button-secondary {
  background: #fff;
  color: var(--ink);
}

.mini-proof {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.mini-proof a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  background: #fff;
  color: #4e5963;
  font-size: 0.86rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.mini-proof a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(18, 24, 32, 0.08);
}

.brand-grade {
  width: min(360px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 28px auto 0;
}

.brand-grade span {
  height: 6px;
  border-radius: 999px;
}

.brand-grade span:nth-child(1) {
  background: var(--brand-dark);
}

.brand-grade span:nth-child(2) {
  background: var(--brand-mid);
}

.brand-grade span:nth-child(3) {
  background: var(--brand-light);
}

.brand-grade span:nth-child(4) {
  background: var(--brand-soft);
}

.wallet-showcase {
  padding: 0 clamp(14px, 4vw, 44px) clamp(48px, 7vw, 86px);
  background: var(--paper);
}

.wallet-panel {
  max-width: 1480px;
  margin: 0 auto;
  padding: clamp(46px, 6vw, 74px) clamp(18px, 4vw, 64px) 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(94, 138, 153, 0.32), transparent 42%),
    radial-gradient(circle at 52% 0%, rgba(177, 201, 214, 0.18), transparent 34rem),
    var(--navy);
  animation: arrive 700ms ease both;
}

.wallet-panel h2 {
  max-width: 1180px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(2.15rem, 4.5vw, 4.35rem);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-align: center;
}

.wallet-panel h2 span {
  color: var(--brand-light);
  font-weight: 850;
}

.wallet-cards {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: clamp(10px, 1.25vw, 18px);
  align-items: stretch;
  max-width: 1320px;
  margin: clamp(40px, 5vw, 62px) auto 0;
  transform: translateY(42px);
}

.wallet-cards article {
  position: relative;
  min-height: 322px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 12px 18px;
  border: 1px solid #efefef;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 249, 0.98)),
    #fff;
  box-shadow:
    0 18px 50px rgba(18, 24, 32, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  text-align: center;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
  animation: cardArrive 620ms ease both;
  overflow: hidden;
}

.wallet-cards article:nth-child(1) {
  animation-delay: 40ms;
}

.wallet-cards article:nth-child(2) {
  animation-delay: 90ms;
}

.wallet-cards article:nth-child(3) {
  animation-delay: 140ms;
}

.wallet-cards article:nth-child(4) {
  animation-delay: 190ms;
}

.wallet-cards article:nth-child(5) {
  animation-delay: 240ms;
}

.wallet-cards article:nth-child(6) {
  animation-delay: 290ms;
}

.wallet-cards article:nth-child(7) {
  animation-delay: 340ms;
}

.wallet-cards article:hover {
  border-color: rgba(94, 138, 153, 0.34);
  box-shadow: 0 28px 70px rgba(18, 24, 32, 0.16);
  transform: translateY(-8px);
}

.wallet-cards article:focus {
  outline: 3px solid rgba(134, 178, 193, 0.32);
  outline-offset: 4px;
}

.wallet-cards article::before {
  content: "";
  width: 42px;
  height: 5px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-dark), var(--brand-light));
}

.wallet-icon {
  display: grid;
  width: 82px;
  aspect-ratio: 1;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, var(--brand-bg));
  color: var(--brand-dark);
  font-size: 2.6rem;
  line-height: 1;
  box-shadow: 0 18px 36px rgba(18, 24, 32, 0.08);
  transition:
    transform 220ms cubic-bezier(0.2, 0.9, 0.2, 1.35),
    box-shadow 220ms ease,
    background 220ms ease;
}

.wallet-cards article:hover .wallet-icon {
  background: linear-gradient(180deg, #ffffff, #e6f0f2);
  box-shadow: 0 24px 44px rgba(94, 138, 153, 0.24);
  transform: translateY(-6px) scale(1.08) rotate(-3deg);
}

.wallet-cards h3 {
  color: #050505;
  font-size: clamp(1.18rem, 1.45vw, 1.62rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.wallet-cards p {
  max-width: 164px;
  margin-top: 10px;
  color: #111;
  font-size: clamp(0.9rem, 0.96vw, 1.02rem);
  line-height: 1.24;
}

.wallet-detail {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  min-height: 118px;
  max-height: calc(100% - 20px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(134, 178, 193, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 251, 0.98));
  box-shadow:
    0 22px 52px rgba(18, 24, 32, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  opacity: 0;
  pointer-events: none;
  text-align: left;
  transform: translateY(12px) scale(0.98);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.wallet-detail strong {
  color: var(--brand-dark);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.wallet-detail span {
  color: var(--ink);
  font-size: clamp(0.78rem, 0.76vw, 0.9rem);
  font-weight: 800;
  line-height: 1.26;
  overflow-wrap: anywhere;
}

.wallet-cards article:hover .wallet-detail,
.wallet-cards article:focus .wallet-detail {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.feature-section {
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 20px;
  animation: arrive 700ms ease both;
}

.feature-section h2 {
  max-width: 660px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

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

.feature-grid article {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 18px 44px rgba(18, 24, 32, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.feature-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(18, 24, 32, 0.11);
}

.feature-grid span {
  font-size: 2rem;
}

.feature-grid strong {
  color: var(--ink);
  font-size: 1.06rem;
}

.feature-grid p {
  color: var(--muted);
  line-height: 1.45;
}

.vt-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
  padding: clamp(62px, 8vw, 104px) clamp(18px, 5vw, 64px);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 4%, rgba(103, 216, 155, 0.18), transparent 24rem),
    linear-gradient(135deg, rgba(7, 16, 50, 0.98), rgba(8, 28, 54, 0.95));
  color: #fff;
  animation: arrive 700ms ease both;
}

.vt-section::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  pointer-events: none;
}

.vt-copy,
.vt-grid,
.vt-note {
  position: relative;
  z-index: 1;
}

.vt-copy h2 {
  max-width: 760px;
  font-size: clamp(2.25rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.vt-copy p:not(.kicker) {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.58;
}

.vt-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin-top: 24px;
}

.vt-metrics span {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.vt-metrics strong {
  color: #fff;
  font-size: clamp(1.5rem, 2.3vw, 2.15rem);
  line-height: 0.95;
}

.vt-metrics small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.25;
}

.vt-copy .button {
  margin-top: 28px;
  border-color: #fff;
  background: #fff;
  color: var(--navy);
}

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

.vt-card {
  min-height: 198px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 20px 58px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.vt-card:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  transform: translateY(-4px);
}

.vt-grid span {
  display: grid;
  width: 48px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 1.8rem;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
  transition:
    transform 180ms cubic-bezier(0.2, 0.9, 0.2, 1.28),
    box-shadow 180ms ease;
}

.vt-card:hover span {
  transform: translateY(-3px) scale(1.08) rotate(-2deg);
  box-shadow: 0 22px 48px rgba(103, 216, 155, 0.22);
}

.vt-grid strong {
  color: #fff;
  font-size: 1.1rem;
}

.vt-grid p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.vt-note {
  grid-column: 1 / -1;
  max-width: 920px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
  line-height: 1.5;
}

.extras-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
  padding: clamp(58px, 8vw, 102px) clamp(18px, 5vw, 64px);
  background:
    radial-gradient(circle at 82% 8%, rgba(177, 201, 214, 0.36), transparent 28rem),
    linear-gradient(135deg, rgba(177, 201, 214, 0.18), transparent 38%),
    #fff;
  animation: arrive 700ms ease both;
}

.extras-heading h2 {
  max-width: 740px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.extras-heading p:not(.kicker) {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.58;
}

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

.extras-grid article {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 251, 251, 0.96)),
    #fff;
  box-shadow:
    0 18px 44px rgba(18, 24, 32, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.extras-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(18, 24, 32, 0.11);
}

.extras-grid span {
  display: grid;
  width: 48px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #edf4f6);
  font-size: 1.8rem;
  box-shadow: 0 14px 30px rgba(18, 24, 32, 0.08);
  transition:
    transform 180ms cubic-bezier(0.2, 0.9, 0.2, 1.28),
    box-shadow 180ms ease;
}

.extras-grid article:hover span {
  transform: translateY(-3px) scale(1.08) rotate(-2deg);
  box-shadow: 0 20px 38px rgba(94, 138, 153, 0.18);
}

.extras-grid strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.extras-grid p {
  color: var(--muted);
  line-height: 1.45;
}

.simple-section {
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  margin: 0 auto;
  padding: clamp(62px, 9vw, 118px) 20px;
  animation: arrive 700ms ease both;
}

.simple-section h2,
.lead-copy h2 {
  max-width: 680px;
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.steps span {
  color: var(--brand-dark);
  font-weight: 900;
}

.steps strong {
  display: block;
  font-size: 1.08rem;
}

.steps p {
  grid-column: 2;
  margin-top: -6px;
  color: var(--muted);
  line-height: 1.45;
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 0.95fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
  padding: clamp(58px, 9vw, 112px) clamp(18px, 5vw, 64px);
  background: #fff;
  animation: arrive 700ms ease both;
}

.lead-copy {
  position: sticky;
  top: 100px;
}

.lead-copy p:not(.kicker) {
  max-width: 520px;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.58;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.lead-form:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 70px rgba(18, 24, 32, 0.12);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #2d343a;
  font-size: 0.9rem;
  font-weight: 850;
}

.lead-form label:nth-of-type(5),
.lead-form label:nth-of-type(6) {
  grid-column: 1 / -1;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
  color: var(--ink);
}

.lead-form input:focus,
.lead-form select:focus {
  outline: 3px solid rgba(134, 178, 193, 0.22);
  border-color: var(--brand-dark);
}

.form-submit,
.fine-print {
  grid-column: 1 / -1;
}

.form-submit {
  border: 0;
}

.fine-print {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
  text-align: center;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(30px, 6vw, 86px);
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 64px);
  background: var(--paper);
  animation: arrive 700ms ease both;
}

.faq-heading h2 {
  max-width: 620px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--brand-dark);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 720px;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.68fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: #fff;
  animation: arrive 700ms ease both;
}

.location-copy h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.location-copy p:not(.kicker) {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.58;
}

.rating-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
}

.rating-line strong {
  color: var(--ink);
  font-size: 1.25rem;
}

.rating-line span {
  color: #f5b83d;
  letter-spacing: 0.04em;
}

.rating-line small {
  color: var(--muted);
  font-weight: 800;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.location-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(18, 24, 32, 0.07);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.location-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 70px rgba(18, 24, 32, 0.12);
}

.location-card h3 {
  font-size: 1.35rem;
}

.location-card p {
  color: var(--muted);
  line-height: 1.5;
}

.phone-link {
  color: var(--brand-dark);
  font-weight: 900;
}

.hours-list {
  display: grid;
  gap: 0;
  margin: 6px 0 0;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.hours-list dt {
  color: var(--ink);
  font-weight: 900;
}

.hours-list dd {
  margin: 0;
  color: var(--muted);
}

iframe {
  max-width: 100%;
}

.map-frame {
  width: 100%;
  min-height: 260px;
  border: 0;
  border-radius: 8px;
  filter: saturate(0.88);
}

.map-frame:hover {
  filter: saturate(1);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 26px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: #fff;
  color: #3f4850;
}

.site-footer img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.site-footer a {
  font-weight: 900;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  width: 54px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 38px rgba(18, 24, 32, 0.18);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 24px 48px rgba(37, 211, 102, 0.34);
}

.whatsapp-float svg {
  width: 34px;
  fill: currentColor;
}

@keyframes arrive {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardArrive {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@supports (animation-timeline: view()) {
  .wallet-panel,
  .feature-section,
  .vt-section,
  .simple-section,
  .extras-section,
  .lead-section,
  .faq-section,
  .location-section {
    animation-timeline: view();
    animation-range: entry 0% cover 24%;
  }
}

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

@media (max-width: 1180px) {
  .wallet-cards {
    grid-template-columns: repeat(7, minmax(170px, 1fr));
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x proximity;
  }

  .wallet-cards article {
    scroll-snap-align: center;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav {
    display: none;
  }

  .simple-section,
  .feature-section,
  .vt-section,
  .extras-section,
  .lead-section,
  .faq-section,
  .location-section {
    grid-template-columns: 1fr;
  }

  .lead-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
    padding-inline: 14px;
  }

  .brand small,
  .top-action {
    display: none;
  }

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

  .hero {
    padding: 52px 14px 44px;
    text-align: left;
  }

  .hero-logo,
  .brand-grade {
    margin-left: 0;
  }

  h1 {
    font-size: clamp(2.5rem, 15vw, 4rem);
  }

  .hero > p:not(.kicker) {
    margin-left: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

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

  .mini-proof a {
    width: 100%;
  }

  .wallet-showcase {
    padding-inline: 0;
  }

  .wallet-panel {
    padding: 42px 14px 0;
  }

  .wallet-panel h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
    text-align: left;
  }

  .wallet-cards {
    margin-top: 34px;
    transform: translateY(34px);
  }

  .wallet-cards article {
    min-height: 292px;
  }

  .wallet-icon {
    width: 76px;
  }

  .feature-section {
    padding-top: 82px;
  }

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

  .vt-section {
    padding-top: 82px;
  }

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

  .vt-metrics {
    grid-template-columns: 1fr;
  }

  .extras-section {
    padding-top: 82px;
  }

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

  .simple-section {
    padding-top: 82px;
  }

  .lead-form {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .form-submit,
  .fine-print {
    grid-column: auto;
  }
}
