:root {
  --green: #2d7a4f;
  --green-light: #e8f3ed;
  --green-hover: #246b43;
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

.container--wide {
  max-width: 900px;
}

.container--narrow {
  max-width: 640px;
}

/* Header / App bar */
.site-header {
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
  background: var(--white);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
}

.header-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  color: inherit;
  margin-left: -6px;
}

.header-brand:hover .logo {
  color: var(--green-hover);
}

.logo {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-decoration: none;
  animation: logo-appear 0.55s ease-out both;
}

@keyframes logo-appear {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

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

@media (prefers-reduced-motion: reduce) {
  .logo {
    animation: none;
  }
}

.tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.3;
  font-weight: 400;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-nav a {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
}

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

/* Hamburger menu */
.header-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--text);
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.header-menu-btn:hover {
  background: var(--gray-100);
  color: var(--green);
}

.header-menu-icon,
.header-menu-icon::before,
.header-menu-icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.header-menu-icon {
  position: relative;
}

.header-menu-icon::before,
.header-menu-icon::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
}

.header-menu-icon::before {
  transform: translateY(-6px);
}

.header-menu-icon::after {
  transform: translateY(6px);
}

.site-header.menu-open .header-menu-icon {
  background: transparent;
}

.site-header.menu-open .header-menu-icon::before {
  transform: translateY(0) rotate(45deg);
}

.site-header.menu-open .header-menu-icon::after {
  transform: translateY(0) rotate(-45deg);
}

@media (max-width: 640px) {
  .header-menu-btn {
    display: flex;
  }

  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.2s ease, visibility 0.2s ease;
  }

  .site-header {
    position: relative;
  }

  .site-header.menu-open .header-nav {
    max-height: 280px;
    opacity: 1;
    visibility: visible;
  }

  .header-nav a {
    display: block;
    padding: 14px 24px;
    font-size: 1rem;
    border-radius: 0;
  }
}

@media (min-width: 641px) {
  .site-header.menu-open .header-nav {
    max-height: none;
    opacity: 1;
    visibility: visible;
  }
}

@media (prefers-reduced-motion: reduce) {

  .header-menu-icon,
  .header-menu-icon::before,
  .header-menu-icon::after {
    transition: none;
  }

  .header-nav {
    transition: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.btn:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
}

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

.btn--secondary {
  background: var(--white);
  color: var(--green);
  border: 2px solid var(--green);
}

.btn--secondary:hover {
  background: var(--green-light);
}

.btn--large {
  padding: 18px 32px;
  font-size: 1.1rem;
}

/* Hero */
.hero {
  padding: 56px 0 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-100) 100%);
  overflow: visible;
}

.hero-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  background: var(--green-light);
  padding: 8px 16px;
  border-radius: 999px;
  margin: 0 0 20px;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(1.85rem, 5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.hero .subheadline {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 48px;
}

.hero-cta-primary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-cta-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Three phones: middle iPhone-style, side phones tucked in; extends behind next section */
.mockup-phones-stack {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  gap: -50px;
  margin: 0 auto -50px;
  max-width: 90vw;
  animation: mockup-card-in 0.6s ease-out both;
  position: relative;
  z-index: 0;
}

.mockup-phone-slice {
  width: 200px;
  min-height: 299px;
  border-radius: 18px 18px 10px 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15), 0 0 0 2px rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  position: relative;
  background: #1a1a1a;
  z-index: 0;
}

.mockup-phone-slice--left {
  transform: translateY(12px) translateX(18px) scale(0.96);
}

.mockup-phone-slice--center {
  transform: translateY(0) scale(1.08);
  z-index: 2;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.22), 0 0 0 2px rgba(255, 255, 255, 0.1);
  width: 220px;
  min-height: 329px;
  border-radius: 32px 32px 14px 14px;
  background: #2c2c2e;
}

.mockup-phone-slice--right {
  transform: translateY(12px) translateX(-18px) scale(0.96);
}

@media (max-width: 640px) {

  .mockup-phone-slice--left,
  .mockup-phone-slice--right {
    display: none;
  }
}

.mockup-phones-stack .mockup-phone {
  margin: 0;
  flex-shrink: 0;
  width: 200px;
  max-width: none;
  animation: none;
  position: relative;
}

.mockup-phones-stack .mockup-phone-slice--center .mockup-phone {
  width: 220px;
}

.mockup-phones-stack .mockup-phone-frame {
  box-shadow: none;
}

/* Center = iPhone style: rounded frame */
.mockup-phones-stack .mockup-phone-slice--center .mockup-phone-frame {
  border-radius: 30px;
  padding: 8px;
  background: #2c2c2e;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.mockup-phones-stack .mockup-phone-slice--center .mockup-phone-notch {
  display: none;
}

.mockup-phones-stack .mockup-phone-slice--center .mockup {
  border-radius: 24px;
}

.mockup-phones-stack .mockup-phone-notch {
  width: 56px;
  height: 14px;
  border-radius: 0 0 12px 12px;
}

.mockup-phone {
  margin: 0 auto;
  width: 240px;
  max-width: 56vw;
  animation: mockup-card-in 0.6s ease-out both;
}

.mockup-phone-frame {
  background: #1a1a1a;
  border-radius: 28px;
  padding: 10px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15), 0 0 0 2px rgba(255, 255, 255, 0.08);
  position: relative;
  aspect-ratio: 9 / 19.2;
  min-height: 420px;
}

.mockup-phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 18px;
  background: #1a1a1a;
  border-radius: 0 0 14px 14px;
  z-index: 1;
}

.mockup-phone .mockup {
  background: var(--white);
  border-radius: 18px;
  padding: 0;
  box-shadow: none;
  max-width: none;
  margin: 0;
  border: none;
  border-radius: 14px;
  overflow: hidden;
  animation: none;
  min-height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.mockup-phone .mockup::before {
  display: none;
}

.mockup-appbar {
  background: var(--green);
  color: var(--white);
  padding: 8px 14px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  min-height: 44px;
  box-sizing: border-box;
}

.mockup-appbar-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 5.2em;
  min-width: 0;
  margin-left: -12px;
}

.mockup-appbar-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  white-space: nowrap;
}

.mockup-appbar-tagline {
  font-size: 0.3rem;
  font-weight: 500;
  opacity: 0.9;
  line-height: 1.2;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
  letter-spacing: -0.01em;
}

.mockup-appbar-area {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.95;
}

.mockup-screen {
  padding: 14px 14px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.mockup-phone .mockup-title {
  font-size: 0.8rem;
  margin-bottom: 4px;
}


.mockup-phone .mockup-list {
  flex: 1;
}

.mockup-phone .mockup-list li {
  padding: 8px 0;
  font-size: 0.875rem;
}

.mockup-phone .mockup-list li:last-child {
  border-bottom: none;
}

.mockup-phone .mockup-footer {
  font-size: 0.7rem;
  margin-top: 10px;
}

.mockup-phone .mockup-title,
.mockup-phone .mockup-list li,
.mockup-phone .mockup-footer {
  animation: mockup-line-in 0.45s ease-out both;
}

.mockup-phone .mockup-title {
  animation-delay: 0.25s;
}

.mockup-phone .mockup-list li:nth-child(1) {
  animation-delay: 0.4s;
}

.mockup-phone .mockup-list li:nth-child(2) {
  animation-delay: 0.5s;
}

.mockup-phone .mockup-list li:nth-child(3) {
  animation-delay: 0.6s;
}

.mockup-phone .mockup-list li:nth-child(4) {
  animation-delay: 0.7s;
}

.mockup-phone .mockup-footer {
  animation-delay: 0.85s;
}

.mockup {
  background: var(--white);
  border-radius: 24px;
  padding: 28px 20px;
  box-shadow: var(--shadow-md), 0 0 0 10px var(--gray-100);
  max-width: 280px;
  margin: 0 auto;
  border: 2px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  animation: mockup-card-in 0.6s ease-out both;
}

.mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--green);
}

.mockup-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 16px;
  text-align: left;
  opacity: 0;
  animation: mockup-line-in 0.45s ease-out 0.2s both;
}

.mockup-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.mockup-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 1rem;
  opacity: 0;
  animation: mockup-line-in 0.45s ease-out both;
}

.mockup-list li:nth-child(1) {
  animation-delay: 0.35s;
}

.mockup-list li:nth-child(2) {
  animation-delay: 0.45s;
}

.mockup-list li:nth-child(3) {
  animation-delay: 0.55s;
}

.mockup-list li:last-child {
  border-bottom: none;
}

.mockup-item-right {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.mockup-list .price {
  font-weight: 600;
  color: var(--green);
}

.mockup-item-reports {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 0.42rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

/* People/group icon – “reported by X users” (plural) */
.mockup-icon-person {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  opacity: 0.8;
}

.mockup-footer {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: left;
  opacity: 0;
  animation: mockup-line-in 0.45s ease-out 0.7s both;
}

@keyframes mockup-card-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }

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

@keyframes mockup-line-in {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }

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

@media (prefers-reduced-motion: reduce) {

  .mockup,
  .mockup-phone,
  .mockup-phones-stack,
  .mockup-title,
  .mockup-list li,
  .mockup-footer {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Social proof – editorial card + rotating quotes */
.social-proof {
  padding: 40px 0 48px;
}

.social-proof-heading {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 20px;
  text-align: center;
}

.social-proof-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  position: relative;
}

.social-proof-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-light) 100%);
}

.social-proof-quotes {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.social-proof-rotator {
  position: relative;
  min-height: 100px;
  padding: 28px 28px 12px;
}

.social-proof-rotator-inner {
  position: relative;
  min-height: 72px;
}

.social-proof-rotator .social-proof-item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.social-proof-rotator .social-proof-item.is-visible {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .social-proof-rotator .social-proof-item {
    transition: opacity 0.2s ease, visibility 0.2s ease;
    transform: none;
  }
}

.social-proof-quote-mark {
  display: block;
  font-size: 3rem;
  line-height: 1;
  color: var(--green);
  opacity: 0.35;
  font-family: Georgia, serif;
  margin-bottom: -8px;
}

.social-proof-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  margin: 0 0 12px;
}

.social-proof-author {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  font-weight: 500;
}

.social-proof-footer {
  padding: 0 28px 20px;
}

.social-proof-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-proof-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.35;
  transition: opacity 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.social-proof-dot.is-active {
  background: var(--green);
  opacity: 1;
  transform: scale(1.25);
}

.social-proof-join-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: linear-gradient(180deg, var(--green-light) 0%, rgba(232, 243, 237, 0.5) 100%);
  border-top: 1px solid rgba(45, 122, 79, 0.12);
}

.social-proof-join-icon {
  flex-shrink: 0;
  color: var(--green);
  opacity: 0.9;
}

.social-proof-join {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.4;
}

.social-proof-join strong {
  color: var(--green);
  font-weight: 700;
}

/* Sections */
section {
  padding: 56px 0;
}

section:nth-child(even) {
  background: var(--gray-100);
}

.section-title,
.trust h2,
.launch h2,
.faq h2 {
  font-size: clamp(1.45rem, 4vw, 1.8rem);
  font-weight: 700;
  margin: 0 0 24px;
  color: var(--text);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust h2::before,
.launch h2::before,
.faq h2::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

.section-intro {
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.65;
}

/* Why People Overpay – single card with list */
.problem {
  position: relative;
  z-index: 1;
  margin-top: -50px;
  padding-top: 106px;
}

.problem-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 32px 28px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-light) 100%);
}

.problem-card h2 {
  font-size: clamp(1.35rem, 3.5vw, 1.65rem);
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.problem-intro {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 0 24px;
  line-height: 1.55;
}

.problem-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 20px;
}

.problem-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

.problem-list li + li {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.problem-list-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--green-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.problem-list-icon svg {
  display: block;
}

.problem-closing {
  margin: 0;
  padding: 16px 20px;
  background: var(--green-light);
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}

/* How It Works – redesign with numbered steps + connector */
.how-it-works h2 {
  font-size: clamp(1.45rem, 4vw, 1.8rem);
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.how-header {
  margin-bottom: 36px;
}

.how-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px 0;
  margin-top: 0;
}

@media (min-width: 640px) {
  .steps {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: 0 8px;
  }
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.25s ease, transform 0.2s ease;
  position: relative;
}

.step:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.step-num {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.step-icon {
  width: 52px;
  height: 52px;
  margin: 20px 0 16px;
  background: var(--green-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.step-icon svg {
  flex-shrink: 0;
}

.step-body {
  flex: 1;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--text);
}

.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.45;
}

.step-connector {
  display: none;
  width: 24px;
  align-self: center;
  border-top: 2px dashed rgba(45, 122, 79, 0.35);
}

@media (min-width: 640px) {
  .step-connector {
    display: block;
  }
}

/* Features – redesign with accent bar */
.features-section h2 {
  font-size: clamp(1.45rem, 4vw, 1.8rem);
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.features-header {
  margin-bottom: 32px;
}

.features-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 0;
}

@media (min-width: 500px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature {
  position: relative;
  background: var(--white);
  padding: 24px 24px 24px 28px;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.25s ease, border-color 0.2s ease;
  overflow: hidden;
}

.feature:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  border-color: rgba(45, 122, 79, 0.12);
}

.feature-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-light) 100%);
  opacity: 0.9;
}

.feature--highlight .feature-accent {
  width: 5px;
  opacity: 1;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--green);
}

.feature h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--text);
}

.feature p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Trust */
.trust-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-left: 4px solid var(--green);
}

.trust .trust-card h2 {
  margin-top: 0;
}

.trust .section-intro {
  margin-bottom: 16px;
}

.trust .disclaimer {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 24px 0 0;
}

/* Launch city */
.launch-cta {
  margin-top: 24px;
}

/* FAQ */
.faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-item {
  border-bottom: 1px solid var(--gray-100);
  padding-left: 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--gray-100);
}

.faq-q {
  font-size: 1.08rem;
  font-weight: 600;
  margin: 0;
  padding: 22px 0 8px 20px;
  position: relative;
  border-left: 3px solid transparent;
  transition: border-color 0.2s;
}

.faq-item:hover .faq-q {
  border-left-color: var(--green-light);
}

.faq-q::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 28px;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.faq-a {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
  padding: 0 0 22px 20px;
  line-height: 1.6;
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 72px 0;
  background: linear-gradient(180deg, var(--green-light) 0%, rgba(232, 243, 237, 0.5) 100%);
}

.final-cta-inner {
  max-width: 480px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  margin: 0 0 28px;
  letter-spacing: -0.02em;
}

.final-cta .subtext {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 20px;
}

/* Footer */
.site-footer {
  padding: 40px 0 36px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--gray-100);
}

.footer-brand {
  margin-bottom: 24px;
}

.footer-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 4px;
}

.footer-logo:hover {
  color: var(--green-hover);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

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

.footer-email {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-email a {
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
}

.footer-email a:hover {
  text-decoration: underline;
}

/* Policy / Legal pages (shared: privacy & terms) */
.policy-page {
  padding: 32px 0 56px;
  background: linear-gradient(180deg, var(--gray-100) 0%, #eaecea 100%);
  min-height: 60vh;
}

.policy-page .policy-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md), 0 1px 0 0 rgba(0, 0, 0, 0.04);
  padding: 0;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.policy-page .policy-inner::before {
  content: '';
  display: block;
  height: 4px;
  background: var(--green);
}

.policy-page .policy-inner>.policy-title,
.policy-page .policy-inner>.policy-meta,
.policy-page .policy-inner>.policy-divider {
  margin-left: 24px;
  margin-right: 24px;
}

.policy-page .policy-inner>.policy-title {
  margin-top: 32px;
  margin-bottom: 8px;
  padding-left: 16px;
  border-left: 4px solid var(--green);
}

.policy-page .policy-inner>.policy-meta {
  margin-bottom: 24px;
}

.policy-page .policy-inner>.policy-divider {
  margin-bottom: 8px;
}

.policy-page .policy-inner>.policy-section {
  margin-left: 0;
  margin-right: 0;
  padding: 28px 24px 32px;
  margin-bottom: 0;
  border-bottom: 1px solid var(--gray-100);
}

.policy-page .policy-inner>.policy-section:last-child {
  border-bottom: none;
}

.policy-page .policy-inner>.policy-section:nth-of-type(even) {
  background: rgba(232, 243, 237, 0.35);
}

@media (min-width: 680px) {

  .policy-page .policy-inner>.policy-title,
  .policy-page .policy-inner>.policy-meta,
  .policy-page .policy-inner>.policy-divider {
    margin-left: 48px;
    margin-right: 48px;
  }

  .policy-page .policy-inner>.policy-title {
    margin-top: 40px;
    padding-left: 20px;
  }

  .policy-page .policy-inner>.policy-section {
    padding: 32px 48px 40px;
  }
}

.policy-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.policy-back {
  margin: 0;
  font-size: 0.95rem;
}

.policy-back a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--white);
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid var(--green);
  box-shadow: var(--shadow);
  transition: background 0.2s, box-shadow 0.2s;
}

.policy-back a:hover {
  background: var(--green-light);
  box-shadow: 0 2px 8px rgba(45, 122, 79, 0.15);
}

.policy-cross-links {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.policy-cross-links a {
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
}

.policy-cross-links a:hover {
  text-decoration: underline;
}

.policy-title {
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  font-weight: 700;
  margin: 0;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.policy-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  padding: 10px 14px;
  background: var(--gray-100);
  border-radius: var(--radius);
  display: inline-block;
}

.policy-divider {
  border: none;
  border-top: 1px solid var(--gray-100);
  margin: 0;
}

.policy-section {
  margin-bottom: 0;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--text);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-light);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-section h2::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

.policy-section h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 24px 0 10px;
  color: var(--text);
  padding-left: 12px;
  border-left: 3px solid var(--green-light);
}

.policy-section p {
  margin: 0 0 14px;
  color: var(--text);
  line-height: 1.65;
}

.policy-section p+p {
  margin-top: 14px;
}

.policy-section ul {
  margin: 14px 0 20px;
  padding-left: 0;
  list-style: none;
}

.policy-section ul li {
  margin-bottom: 8px;
  padding-left: 1.4em;
  position: relative;
  line-height: 1.55;
}

.policy-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.policy-section a {
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
}

.policy-section a:hover {
  text-decoration: underline;
}

.policy-contact {
  margin-top: 16px;
  padding: 20px 24px;
  background: var(--green-light);
  border-radius: var(--radius);
  border: 1px solid rgba(45, 122, 79, 0.15);
}

.policy-contact a {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
}

.policy-contact a:hover {
  text-decoration: underline;
}

/* Coming soon overlay */
.coming-soon-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.25s, opacity 0.25s ease-out;
}

.coming-soon-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.coming-soon-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.coming-soon-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  max-width: 400px;
  width: 100%;
  box-shadow: var(--shadow-md), 0 24px 48px rgba(0, 0, 0, 0.12);
  text-align: center;
  transform: scale(0.96);
  transition: transform 0.25s ease-out;
}

.coming-soon-overlay.is-open .coming-soon-card {
  transform: scale(1);
}

.coming-soon-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.coming-soon-close:hover {
  color: var(--text);
  background: var(--gray-100);
}

.coming-soon-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  background: var(--green-light);
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 0 20px;
}

.coming-soon-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.coming-soon-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 12px;
}

.coming-soon-cta {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  margin: 0 0 28px;
}

.coming-soon-card .btn {
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {

  .coming-soon-overlay,
  .coming-soon-card {
    transition: none;
  }
}