:root {
  --green: #1f8a5b;
  --green-dark: #126642;
  --green-deep: #0c3d29;
  --green-soft: #e8f5ef;
  --orange: #f59e42;
  --ink: #17201b;
  --muted: #67726b;
  --line: #dde5e0;
  --bg: #f7f9f7;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 66, 44, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

button,
input {
  font: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(221, 229, 224, 0.75);
  background: rgba(247, 249, 247, 0.86);
  backdrop-filter: blur(16px);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: var(--green);
}

.brand-mark svg {
  width: 28px;
  stroke-width: 1.6;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: #465149;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--green);
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button svg {
  width: 19px;
}

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 30px rgba(31, 138, 91, 0.24);
}

.button-primary:hover {
  background: var(--green-dark);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  font-size: 14px;
}

.button-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.button-light {
  color: var(--green-deep);
  background: var(--white);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  height: 2px;
  display: block;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 90px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 9px 13px;
  border: 1px solid #cce8da;
  border-radius: 999px;
  background: rgba(232, 245, 239, 0.72);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(245, 158, 66, 0.15);
}

.hero h1 {
  max-width: 680px;
  margin: 26px 0 24px;
  font-size: clamp(52px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

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

.hero-text {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #465149;
  font-size: 13px;
  font-weight: 700;
}

.proof-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.proof-icon svg {
  width: 18px;
  color: var(--green);
}

.hero-visual {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone {
  position: relative;
  z-index: 2;
  width: 330px;
  height: 650px;
  padding: 10px;
  border: 8px solid #14231c;
  border-radius: 48px;
  background: #14231c;
  box-shadow: 0 45px 90px rgba(13, 62, 42, 0.22);
  transform: rotate(2deg);
}

.phone::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 92px;
  height: 26px;
  border-radius: 20px;
  background: #14231c;
  transform: translateX(-50%);
}

.phone-top {
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 29px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  color: #203028;
  font-size: 10px;
  font-weight: 800;
}

.phone-status {
  display: flex;
  align-items: end;
  gap: 3px;
}

.phone-status i {
  width: 3px;
  border-radius: 2px;
  background: #203028;
}

.phone-status i:nth-child(1) { height: 6px; }
.phone-status i:nth-child(2) { height: 8px; }
.phone-status i:nth-child(3) { height: 10px; }

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 34px;
  background: #f9fbf9;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 45px 18px 12px;
}

.app-header small,
.nearby-head small {
  display: block;
  color: #839088;
  font-size: 9px;
}

.app-header strong {
  display: block;
  font-size: 12px;
}

.avatar {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.search-box {
  height: 40px;
  margin: 0 16px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid #e1e8e4;
  border-radius: 12px;
  color: #98a39d;
  background: var(--white);
  font-size: 10px;
}

.search-box svg {
  width: 15px;
}

.map {
  position: relative;
  height: 208px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px),
    #dfece4;
  background-size: 34px 34px;
}

.map::before,
.map::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(125, 185, 148, 0.24);
}

.map::before {
  width: 120px;
  height: 120px;
  top: -20px;
  right: -20px;
}

.map::after {
  width: 90px;
  height: 90px;
  bottom: -10px;
  left: 40px;
}

.map-road {
  position: absolute;
  height: 10px;
  border: 3px solid rgba(255,255,255,.9);
  border-left: 0;
  border-right: 0;
  transform-origin: left center;
}

.road-one { width: 330px; top: 60px; left: -20px; transform: rotate(18deg); }
.road-two { width: 300px; top: 150px; left: 0; transform: rotate(-10deg); }
.road-three { width: 220px; top: 10px; left: 155px; transform: rotate(74deg); }

.marker {
  position: absolute;
  z-index: 2;
  padding: 5px 7px;
  border-radius: 8px 8px 8px 2px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 6px 12px rgba(31, 138, 91, 0.2);
  font-size: 9px;
  font-weight: 800;
}

.marker-one { top: 52px; left: 66px; }
.marker-two { top: 104px; right: 48px; background: var(--orange); }
.marker-three { bottom: 30px; left: 130px; }

.map-user {
  position: absolute;
  z-index: 2;
  top: 95px;
  left: 147px;
  width: 13px;
  height: 13px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: #3c7fd9;
  box-shadow: 0 0 0 7px rgba(60, 127, 217, 0.16);
}

.nearby-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 14px 17px 10px;
}

.nearby-head strong {
  display: block;
  font-size: 12px;
}

.nearby-head button {
  padding: 4px 9px;
  border: 0;
  border-radius: 8px;
  color: var(--green);
  background: var(--green-soft);
  font-size: 9px;
  font-weight: 800;
}

.app-card {
  margin: 0 15px;
  overflow: hidden;
  border: 1px solid #e1e8e4;
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 9px 22px rgba(22, 65, 47, 0.08);
}

.app-card-image {
  position: relative;
  height: 72px;
  background:
    radial-gradient(circle at 28% 60%, #d79751 0 18px, transparent 19px),
    radial-gradient(circle at 52% 45%, #f1bc70 0 21px, transparent 22px),
    radial-gradient(circle at 74% 58%, #b76e37 0 18px, transparent 19px),
    linear-gradient(135deg, #f6d5a3, #ca8a50);
}

.app-card-image span {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 4px 6px;
  border-radius: 7px;
  color: #8d4b1c;
  background: #fff4e5;
  font-size: 8px;
  font-weight: 800;
}

.app-card-content {
  padding: 10px 11px 11px;
}

.app-card-title {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.app-card-title h3 {
  margin: 0;
  font-size: 11px;
}

.app-card-title p {
  margin: 1px 0 0;
  color: #7f8b84;
  font-size: 8px;
}

.app-card-title > strong {
  color: var(--green);
  font-size: 15px;
}

.app-card-meta {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  color: #657169;
  font-size: 7.5px;
  font-weight: 700;
}

.app-tabs {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 57px;
  display: flex;
  justify-content: space-around;
  padding-top: 8px;
  border-top: 1px solid #e1e8e4;
  background: rgba(255,255,255,.96);
}

.app-tabs div {
  min-width: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #95a098;
  font-size: 7px;
  font-weight: 700;
}

.app-tabs span {
  font-size: 15px;
  line-height: 1.1;
}

.app-tabs .active {
  color: var(--green);
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 215px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 50px rgba(13, 62, 42, 0.14);
  backdrop-filter: blur(15px);
}

.floating-card-top {
  top: 105px;
  left: -12px;
}

.floating-card-bottom {
  right: -8px;
  bottom: 105px;
}

.floating-icon,
.rating {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--green);
  background: var(--green-soft);
  font-weight: 800;
}

.rating {
  color: #a35d13;
  background: #fff1dc;
}

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

.floating-card strong {
  font-size: 14px;
}

.floating-card span {
  color: var(--muted);
  font-size: 10px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
}

.hero-orb-one {
  width: 540px;
  height: 540px;
  right: -150px;
  top: 90px;
  background: rgba(152, 216, 183, 0.28);
}

.hero-orb-two {
  width: 280px;
  height: 280px;
  left: -100px;
  bottom: -100px;
  background: rgba(245, 158, 66, 0.12);
}

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

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

.trust-grid div {
  padding: 28px 26px;
  border-right: 1px solid var(--line);
}

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

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

.trust-grid strong {
  font-size: 17px;
}

.trust-grid span {
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 560px;
}

.section-heading.center {
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading h2,
.benefits-copy h2,
.business-copy h2,
.safety-copy h2,
.waitlist-copy h2 {
  margin: 12px 0 16px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.section-heading p,
.benefits-copy > p,
.business-copy > p,
.safety-copy > p,
.waitlist-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

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

.step-card {
  position: relative;
  min-height: 320px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.step-card.featured {
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.step-number {
  position: absolute;
  top: 14px;
  right: 22px;
  color: rgba(23, 32, 27, 0.08);
  font-size: 64px;
  font-weight: 800;
}

.featured .step-number {
  color: rgba(255, 255, 255, 0.15);
}

.step-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--green);
  background: var(--green-soft);
}

.featured .step-icon {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.step-icon svg {
  width: 28px;
}

.step-card h3 {
  margin: 34px 0 12px;
  font-size: 22px;
  line-height: 1.3;
}

.step-card p {
  margin: 0;
  color: var(--muted);
}

.featured p {
  color: rgba(255,255,255,.8);
}

.benefits {
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 85px;
}

.benefit-list {
  margin-top: 34px;
  display: grid;
  gap: 22px;
}

.benefit-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
}

.benefit-check {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--green);
  background: var(--green-soft);
  font-weight: 800;
}

.benefit-row h3 {
  margin: 0 0 5px;
  font-size: 17px;
}

.benefit-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.benefits-panel {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #f0e2cd;
  box-shadow: var(--shadow);
}

.panel-tag {
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 20px;
  padding: 8px 11px;
  border-radius: 10px;
  color: var(--green-deep);
  background: rgba(255,255,255,.88);
  font-size: 11px;
  font-weight: 800;
}

.panel-image {
  position: relative;
  height: 320px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 18%, rgba(255,255,255,.38), transparent 26%),
    linear-gradient(135deg, #f4c989, #ba7345);
}

.panel-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 70px;
  background: var(--white);
  clip-path: polygon(0 45%, 100% 0, 100% 100%, 0 100%);
}

.bread {
  position: absolute;
  border-radius: 50% 50% 45% 45%;
  background: linear-gradient(140deg, #f6d692, #b76d35);
  box-shadow: inset -12px -12px 24px rgba(128, 64, 22, .2);
}

.bread::before,
.bread::after {
  content: "";
  position: absolute;
  top: 20%;
  width: 4px;
  height: 42%;
  border-radius: 10px;
  background: rgba(139, 74, 31, 0.45);
  transform: rotate(28deg);
}

.bread::before { left: 38%; }
.bread::after { left: 56%; }

.bread-one {
  width: 160px;
  height: 120px;
  left: 34px;
  top: 100px;
  transform: rotate(-13deg);
}

.bread-two {
  width: 180px;
  height: 135px;
  right: 30px;
  top: 64px;
  transform: rotate(16deg);
}

.bread-three {
  width: 145px;
  height: 110px;
  left: 170px;
  top: 170px;
  transform: rotate(6deg);
}

.panel-content {
  position: relative;
  z-index: 2;
  padding: 10px 28px 28px;
  background: var(--white);
}

.verified {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.panel-content h3 {
  margin: 0;
  font-size: 26px;
}

.panel-content p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.panel-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.panel-stats div {
  padding: 14px;
  border-radius: 14px;
  background: var(--bg);
}

.panel-stats small,
.panel-stats strong {
  display: block;
}

.panel-stats small,
.panel-price small {
  color: var(--muted);
  font-size: 10px;
}

.panel-stats strong {
  margin-top: 2px;
  font-size: 13px;
}

.panel-price {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.panel-price div span {
  display: block;
  color: var(--muted);
  text-decoration: line-through;
  font-size: 14px;
}

.panel-price > strong {
  color: var(--green);
  font-size: 34px;
  line-height: 1;
}

.business-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 65px;
  padding: 70px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(255,255,255,.12), transparent 30%),
    linear-gradient(135deg, #0d5437, #0a3d29);
  box-shadow: var(--shadow);
}

.section-kicker.light {
  color: #bcebd5;
}

.business-copy > p {
  color: rgba(255,255,255,.72);
}

.business-copy .button {
  margin-top: 28px;
}

.business-metrics {
  display: grid;
  gap: 14px;
}

.metric-card {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}

.metric-card span {
  color: #8bd2ae;
  font-size: 12px;
  font-weight: 800;
}

.metric-card h3 {
  margin: 7px 0 4px;
  font-size: 18px;
}

.metric-card p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 13px;
}

.safety-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  align-items: center;
  gap: 80px;
}

.safety-visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background:
    radial-gradient(circle at center, rgba(31, 138, 91, .16), transparent 50%),
    #eef7f2;
}

.shield {
  width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
  border-radius: 42px;
  color: var(--green);
  background: var(--white);
  box-shadow: 0 28px 65px rgba(21, 92, 61, 0.18);
  transform: rotate(-4deg);
}

.shield svg {
  width: 92px;
  stroke-width: 2;
}

.safety-chip {
  position: absolute;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 14px 30px rgba(16, 66, 44, .09);
  font-size: 11px;
  font-weight: 800;
}

.chip-one {
  top: 55px;
  right: 34px;
}

.chip-two {
  left: 28px;
  bottom: 65px;
}

.safety-copy ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.safety-copy li {
  font-size: 14px;
  font-weight: 700;
}

.safety-copy li span {
  color: var(--green);
}

.faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}

.accordion {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg);
}

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

.faq-item button i {
  color: var(--green);
  font-size: 20px;
  font-style: normal;
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.faq-item.active .faq-answer {
  display: block;
}

.waitlist-card {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 70px;
  padding: 65px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: linear-gradient(135deg, #17201b, #0d5035);
}

.waitlist-copy > p {
  color: rgba(255,255,255,.72);
}

.waitlist-form {
  align-self: center;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.08);
}

.waitlist-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.form-row input {
  min-width: 0;
  height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px;
  outline: 0;
  color: var(--white);
  background: rgba(255,255,255,.1);
}

.form-row input::placeholder {
  color: rgba(255,255,255,.5);
}

.form-row input:focus {
  border-color: #8bd2ae;
  box-shadow: 0 0 0 4px rgba(139, 210, 174, .14);
}

.waitlist-form small {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.52);
  font-size: 10px;
}

.form-message {
  min-height: 20px;
  margin-top: 8px;
  color: #bcebd5;
  font-size: 12px;
  font-weight: 700;
}

footer {
  padding: 70px 0 26px;
  background: #f0f4f1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  padding-bottom: 45px;
}

.footer-brand p {
  margin: 12px 0 0;
  color: var(--muted);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 150px);
  gap: 35px;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 5px;
  font-size: 13px;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

@media (max-width: 980px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links.open {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: grid;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .hero-grid,
  .benefits-grid,
  .business-card,
  .safety-grid,
  .faq-grid,
  .waitlist-card {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

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

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

  .step-card.featured {
    transform: none;
  }

  .business-card {
    padding: 50px;
  }

  .faq-grid,
  .waitlist-card {
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding-top: 125px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-proof {
    gap: 12px;
  }

  .hero-visual {
    min-height: 565px;
    transform: scale(.88);
    margin: -20px 0 -50px;
  }

  .phone {
    width: 310px;
    height: 620px;
  }

  .floating-card-top {
    left: -30px;
  }

  .floating-card-bottom {
    right: -32px;
  }

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

  .trust-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 80px 0;
  }

  .section-heading h2,
  .benefits-copy h2,
  .business-copy h2,
  .safety-copy h2,
  .waitlist-copy h2 {
    font-size: 36px;
  }

  .step-card {
    min-height: auto;
    padding: 28px;
  }

  .benefits-grid {
    gap: 50px;
  }

  .panel-image {
    height: 260px;
  }

  .business-card,
  .waitlist-card {
    padding: 34px 24px;
  }

  .safety-grid {
    gap: 45px;
  }

  .safety-copy ul {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-row .button {
    width: 100%;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 25px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}
