/* ─── Reset & base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-900: #1B4332;
  --green-700: #2D6A4F;
  --green-500: #40916C;
  --green-300: #52B788;
  --green-100: #D8F3DC;
  --accent:    #E65100;
  --text:      #1A2E1E;
  --muted:     #5A7060;
  --surface:   #F7F9F7;
  --border:    #D0DDD3;
  --white:     #FFFFFF;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --radius-sm: .5rem;
  --shadow:    0 4px 24px rgba(27,67,50,.10);
  --shadow-lg: 0 12px 48px rgba(27,67,50,.15);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a { color: var(--green-500); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ─── Layout ────────────────────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section--alt { background: var(--surface); }

/* ─── Navigation ─────────────────────────────────────────────────────────────  */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav__logo {
  display: flex; align-items: center; gap: .6rem;
  font-weight: 800; font-size: 1.2rem; color: var(--green-700);
  text-decoration: none;
}
.nav__logo-icon { font-size: 1.6rem; }
.nav__links { display: flex; gap: 2rem; list-style: none; }
.nav__links a { font-size: .9rem; font-weight: 500; color: var(--muted); }
.nav__links a:hover { color: var(--green-700); text-decoration: none; }
.nav__cta {
  background: var(--green-700); color: #fff; padding: .45rem 1.1rem;
  border-radius: 2rem; font-size: .85rem; font-weight: 600;
}
.nav__cta:hover { background: var(--green-900); text-decoration: none; }

@media (max-width: 700px) {
  .nav__links { display: none; }
}

/* ─── Hero ───────────────────────────────────────────────────────────────────  */
.hero {
  background: linear-gradient(145deg, var(--green-900) 0%, var(--green-700) 60%, var(--green-500) 100%);
  color: #fff;
  padding: 6rem 0 5rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__inner {
  position: relative;
  display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  border-radius: 2rem; padding: .3rem .9rem; font-size: .8rem; font-weight: 600;
  letter-spacing: .05em; margin-bottom: 1.5rem;
}
.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero__title span { color: var(--green-300); }
.hero__subtitle {
  font-size: 1.15rem; opacity: .85;
  max-width: 520px; margin-bottom: 2.5rem;
}
.hero__buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: 2rem;
  font-size: .95rem; font-weight: 700; cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn--primary {
  background: #fff; color: var(--green-700);
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.btn--primary:hover { box-shadow: 0 8px 32px rgba(0,0,0,.25); }
.btn--outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.5);
}
.btn--outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.hero__phone {
  width: 200px; flex-shrink: 0;
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(255,255,255,.2);
  border-radius: 2.5rem;
  padding: 1.5rem 1rem;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.hero__phone-screen {
  width: 100%; background: var(--green-900);
  border-radius: 1.5rem; padding: 1rem .75rem;
  font-size: .75rem; color: rgba(255,255,255,.8); line-height: 1.8;
}
.hero__phone-screen .dot { color: var(--green-300); }
.hero__phone-label { font-size: .7rem; opacity: .5; text-align: center; }

@media (max-width: 700px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__phone { display: none; }
}

/* ─── Stats bar ──────────────────────────────────────────────────────────────  */
.stats {
  background: var(--green-700);
  padding: 2rem 0;
}
.stats__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem; text-align: center;
}
.stats__item-num { font-size: 2rem; font-weight: 900; color: #fff; }
.stats__item-label { font-size: .85rem; color: var(--green-100); margin-top: .25rem; }

/* ─── Features ───────────────────────────────────────────────────────────────  */
.section__label {
  font-size: .8rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--green-500);
  margin-bottom: .75rem;
}
.section__title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900; line-height: 1.2;
  margin-bottom: 1rem;
}
.section__lead {
  font-size: 1.05rem; color: var(--muted); max-width: 560px;
  margin-bottom: 3rem;
}
.features__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-card__icon {
  font-size: 2.2rem; margin-bottom: 1rem;
  width: 56px; height: 56px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  background: var(--green-100);
}
.feature-card__title { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.feature-card__text { font-size: .9rem; color: var(--muted); line-height: 1.7; }

/* ─── How it works ───────────────────────────────────────────────────────────  */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.step { text-align: center; }
.step__number {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--green-700); color: #fff;
  font-size: 1.3rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.step__title { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.step__text { font-size: .9rem; color: var(--muted); }

/* ─── Audience ───────────────────────────────────────────────────────────────  */
.audience__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.audience-card {
  border-radius: var(--radius-lg); padding: 2rem 1.5rem;
  text-align: center;
}
.audience-card--hunter { background: var(--green-900); color: #fff; }
.audience-card--walker { background: var(--green-100); color: var(--text); }
.audience-card--cyclist { background: var(--green-700); color: #fff; }
.audience-card__icon { font-size: 2.5rem; margin-bottom: .75rem; }
.audience-card__title { font-size: 1.1rem; font-weight: 800; margin-bottom: .5rem; }
.audience-card__text { font-size: .85rem; opacity: .8; }

/* ─── Download section ───────────────────────────────────────────────────────  */
.download {
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: #fff; text-align: center;
  padding: 5rem 0;
}
.download .section__title { color: #fff; margin-bottom: 1rem; }
.download__lead { font-size: 1.05rem; opacity: .85; margin-bottom: 2.5rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.download__buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.store-badge {
  display: flex; align-items: center; gap: .75rem;
  background: rgba(255,255,255,.1); border: 2px solid rgba(255,255,255,.3);
  border-radius: var(--radius-md); padding: .75rem 1.5rem;
  color: #fff; font-weight: 700; font-size: .95rem;
  cursor: not-allowed; opacity: .7;
}
.store-badge span { font-size: .7rem; font-weight: 400; display: block; opacity: .8; }
.coming-soon {
  margin-top: 1rem; font-size: .85rem; opacity: .65;
}

/* ─── Footer ─────────────────────────────────────────────────────────────────  */
.footer {
  background: var(--green-900); color: rgba(255,255,255,.7);
  padding: 3rem 0 2rem;
}
.footer__inner {
  display: grid; grid-template-columns: 1fr auto;
  gap: 2rem; align-items: start; margin-bottom: 2rem;
}
.footer__brand { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: .5rem; }
.footer__tagline { font-size: .85rem; }
.footer__links { list-style: none; display: flex; gap: 2rem; flex-wrap: wrap; }
.footer__links a { color: rgba(255,255,255,.65); font-size: .85rem; }
.footer__links a:hover { color: #fff; text-decoration: none; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: .8rem;
}

@media (max-width: 600px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ─── Legal pages ─────────────────────────────────────────────────────────────  */
.legal-hero {
  background: var(--green-900); color: #fff;
  padding: 4rem 0 3rem;
}
.legal-hero h1 { font-size: 2.2rem; font-weight: 900; margin-bottom: .5rem; }
.legal-hero p  { opacity: .7; font-size: .95rem; }

.legal-content {
  max-width: 800px; margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
.legal-content h2 {
  font-size: 1.3rem; font-weight: 800;
  color: var(--green-700); margin: 2.5rem 0 .75rem;
  padding-bottom: .4rem; border-bottom: 2px solid var(--green-100);
}
.legal-content h3 { font-size: 1rem; font-weight: 700; margin: 1.5rem 0 .5rem; }
.legal-content p  { margin-bottom: 1rem; font-size: .95rem; line-height: 1.8; color: var(--text); }
.legal-content ul, .legal-content ol {
  margin: .75rem 0 1rem 1.5rem;
  font-size: .95rem; line-height: 1.8; color: var(--text);
}
.legal-content li { margin-bottom: .4rem; }
.legal-content table {
  width: 100%; border-collapse: collapse;
  margin: 1rem 0; font-size: .9rem;
}
.legal-content th, .legal-content td {
  border: 1px solid var(--border);
  padding: .6rem .9rem; text-align: left;
}
.legal-content th { background: var(--surface); font-weight: 700; }
.legal-content .highlight {
  background: var(--green-100); border-left: 4px solid var(--green-500);
  padding: .9rem 1.1rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1rem 0;
}
.legal-content a { color: var(--green-500); font-weight: 500; }

/* ─── Support page ───────────────────────────────────────────────────────────  */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  margin-bottom: 1rem; overflow: hidden;
}
.faq-item summary {
  padding: 1.1rem 1.25rem; font-weight: 700; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--green-500); transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body { padding: 0 1.25rem 1.25rem; font-size: .95rem; color: var(--muted); line-height: 1.8; }

.contact-card {
  background: var(--green-900); color: #fff;
  border-radius: var(--radius-lg); padding: 2.5rem;
  text-align: center; margin-top: 4rem;
}
.contact-card h2 { font-size: 1.5rem; font-weight: 900; margin-bottom: .75rem; }
.contact-card p  { opacity: .8; margin-bottom: 1.5rem; }
.contact-card a.btn { background: #fff; color: var(--green-900); margin: .25rem; }

/* ─── Utility ────────────────────────────────────────────────────────────────  */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
