/* =========================================================
   Maisha Track — website2
   Modern, simple, African-inspired design system
   ========================================================= */

:root {
  /* Brand palette */
  --green-900: #062a20;
  --green-800: #0a3d2e;
  --green-700: #115a44;
  --green-500: #1f7a52;
  --green-300: #7fc4a7;
  --green-50:  #eaf5ef;

  --orange-600: #c9621d;
  --orange-500: #e07a35;
  --gold-500:   #d4a017;

  --ink-900: #0e1a17;
  --ink-700: #2c3936;
  --ink-500: #56635f;
  --ink-300: #a3aca8;
  --ink-100: #e6ebe8;

  --bg:       #fbfaf6;
  --bg-soft:  #f4efe5;
  --bg-card:  #ffffff;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(6, 42, 32, 0.06), 0 1px 3px rgba(6, 42, 32, 0.04);
  --shadow:    0 8px 24px rgba(6, 42, 32, 0.08), 0 2px 6px rgba(6, 42, 32, 0.04);
  --shadow-lg: 0 24px 60px rgba(6, 42, 32, 0.14), 0 6px 16px rgba(6, 42, 32, 0.06);

  --container: 1140px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* Anchor targets clear sticky header */
  scroll-padding-top: 88px;
}
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink-900);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: max(20px, env(safe-area-inset-left, 0px));
  padding-right: max(20px, env(safe-area-inset-right, 0px));
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn-sm { padding: 8px 14px; font-size: 13.5px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--green-800);
  color: #fff;
  box-shadow: 0 6px 14px rgba(10, 61, 46, 0.25);
}
.btn-primary:hover { background: var(--green-700); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(10, 61, 46, 0.32); }

.btn-ghost {
  background: transparent;
  color: var(--green-800);
  border-color: rgba(10, 61, 46, 0.18);
}
.btn-ghost:hover { background: var(--green-50); border-color: var(--green-700); }

.btn-outline {
  background: transparent;
  color: var(--green-800);
  border-color: var(--green-800);
}
.btn-outline:hover { background: var(--green-800); color: #fff; }

/* =========================================================
   Header
   ========================================================= */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 250, 246, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(10, 61, 46, 0.07);
}
.header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 10px;
  padding-inline: max(20px, env(safe-area-inset-left, 0px)) max(20px, env(safe-area-inset-right, 0px));
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--green-900);
  min-width: 0;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}
.brand-mark img {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 6px;
}
.footer-brand .brand-mark img {
  width: 20px;
  height: 20px;
}
.brand-name { font-size: 16px; }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-700);
  position: relative;
  transition: color .15s ease;
}
.nav a:hover { color: var(--green-800); }
.nav a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px;
  background: var(--green-800); border-radius: 2px;
  transition: right .25s ease;
}
.nav a:hover::after { right: 0; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.country-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 8px 10px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-900);
  transition: border-color .15s ease, box-shadow .15s ease;
  flex-shrink: 0;
}
.country-pill:hover { border-color: var(--green-300); }
.country-pill .flag { font-size: 18px; line-height: 1; }
.country-pill .caret { color: var(--ink-500); }
.country-select {
  position: absolute; inset: 0;
  opacity: 0; cursor: pointer; width: 100%; height: 100%;
  border: 0; appearance: none;
  font-size: 16px; /* iOS: avoid zoom on focus */
}

.menu-btn {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--ink-100);
  background: #fff;
  color: var(--green-900);
}
.menu-btn span {
  display: block; height: 2.5px; width: 20px;
  background: currentColor; border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  padding:
    8px
    max(20px, env(safe-area-inset-right, 0px))
    calc(20px + env(safe-area-inset-bottom, 0px))
    max(20px, env(safe-area-inset-left, 0px));
  border-top: 1px solid rgba(10, 61, 46, 0.06);
  background: var(--bg);
  /* Keep menu + CTAs scrollable inside the viewport (safe area + short phones) */
  max-height: calc(100vh - 56px);
  max-height: calc(100dvh - 56px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav[hidden] { display: none !important; }
.mobile-nav a {
  padding: 12px 8px;
  font-weight: 600;
  color: var(--ink-900);
  border-bottom: 1px solid rgba(10, 61, 46, 0.06);
  flex-shrink: 0;
}
.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(10, 61, 46, 0.1);
  flex-shrink: 0;
}
.mobile-nav-actions .btn {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  margin-top: 0;
  border-bottom: 0;
}
.mobile-nav-actions .btn-primary {
  color: #fff;
}
.mobile-nav-actions .btn-outline {
  color: var(--green-800);
  background: #fff;
  border: 1.5px solid var(--green-800);
}
.mobile-nav-actions .btn-outline:hover {
  background: var(--green-50);
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: 28px 0 44px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 100% 0%, rgba(228, 198, 122, 0.18), transparent 60%),
    radial-gradient(60% 50% at 0% 30%, rgba(127, 196, 167, 0.18), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--green-50);
  color: var(--green-800);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(31, 122, 82, 0.18);
}

.hero h1 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin: 10px 0 10px;
  color: var(--green-900);
}
.hero h1 .hl {
  background: linear-gradient(120deg, var(--orange-600), var(--gold-500));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.lede {
  font-size: clamp(14px, 1.25vw, 16px);
  color: var(--ink-700);
  max-width: 520px;
  margin: 0 0 16px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.trust {
  list-style: none; padding: 0; margin: 0;
  display: flex;
  gap: 18px;
}
.trust li {
  display: flex; flex-direction: column;
  border-left: 2px solid var(--green-300);
  padding-left: 12px;
}
.trust strong {
  font-size: 19px;
  font-weight: 800;
  color: var(--green-900);
  letter-spacing: -0.01em;
}
.trust span {
  font-size: 12.5px;
  color: var(--ink-500);
}

/* Hero image */
.hero-figure { margin: 0; position: relative; }
.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--green-50), #fff);
  aspect-ratio: 16 / 11;
}
/* Skip the picture wrapper for sizing so the img fills the box like a lone img */
.hero-image-wrap picture {
  display: contents;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.float-card {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(6, 42, 32, 0.18);
  font-size: 13px;
  z-index: 2;
}
.float-title { font-weight: 700; color: var(--ink-900); line-height: 1.1; }
.float-sub   { font-size: 12px; color: var(--ink-500); }

.float-card--top {
  top: 16px; left: 16px;
}
.float-card--bottom {
  bottom: 16px; right: 16px;
}

.float-icon {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--green-50);
  color: var(--green-800);
  display: inline-flex; align-items: center; justify-content: center;
}
.float-pulse {
  position: relative;
  width: 10px; height: 10px; border-radius: 50%;
  background: #1f7a52;
  margin: 0 6px;
}
.float-pulse::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(31, 122, 82, 0.4);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(1.6); opacity: 0;   }
}

/* =========================================================
   Sections (shared)
   ========================================================= */
.section { padding: 48px 0; }

.section-head {
  max-width: 680px;
  margin: 0 0 28px;
}
.section-head--center {
  margin-left: auto; margin-right: auto;
  text-align: center;
}

.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin-bottom: 8px;
}
.kicker--light { color: var(--orange-500); }

.section-head h2 {
  font-size: clamp(24px, 2.75vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--green-900);
  margin: 0 0 6px;
}
.section-head p {
  font-size: 15px;
  color: var(--ink-500);
  margin: 0;
}

/* How it works */
.section-how { background: #fff; }
.install-layout {
  display: grid;
  grid-template-columns: minmax(260px, 430px) 1fr;
  align-items: center;
  gap: 18px;
}
.install-guide {
  margin: 0;
  padding: 10px;
  background: var(--bg);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.install-guide img {
  width: 100%;
  border-radius: var(--radius);
  background: #fff;
}
.install-guide figcaption {
  margin-top: 8px;
  color: var(--ink-500);
  font-size: 12.5px;
  text-align: center;
}
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  padding: 14px;
  background: var(--bg);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--green-300);
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--green-800);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}
.step h3 { margin: 0 0 4px; font-size: 16px; letter-spacing: -0.01em; color: var(--green-900); }
.step p  { margin: 0; color: var(--ink-500); font-size: 13px; }

/* Features */
.section-features { background: var(--bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.feature {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  padding: 18px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--green-300);
}
.feature-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--c) 12%, white);
  color: var(--c);
  margin-bottom: 10px;
}
.feature h3 { margin: 0 0 4px; font-size: 15px; letter-spacing: -0.005em; color: var(--green-900); }
.feature p  { margin: 0; color: var(--ink-500); font-size: 14px; }
.feature a {
  color: var(--green-800);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* App downloads (footer band) */
.section-apps {
  padding: 28px 0 32px;
  background: #fff;
  border-top: 1px solid var(--ink-100);
}
.apps-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.apps-simple-title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-500);
  letter-spacing: -0.01em;
}
.apps-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  align-items: center;
  justify-content: center;
}
.store-badge {
  display: block;
  line-height: 0;
  border-radius: 8px;
  transition: opacity .15s ease, transform .15s ease;
}
.store-badge:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}
.store-badge:focus-visible {
  outline: 3px solid var(--green-500);
  outline-offset: 3px;
}
.store-badge img {
  height: 38px;
  width: auto;
  max-width: 100%;
}

/* Coverage */
.section-coverage {
  background: linear-gradient(180deg, #fff, var(--bg-soft));
}
.countries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 860px;
  margin: 0 auto;
}
.country-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 12px;
  background: #fff;
  border: 1.5px solid var(--ink-100);
  border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.country-card:hover {
  transform: translateY(-3px);
  border-color: var(--green-700);
  box-shadow: var(--shadow);
}
.country-card.is-active {
  border-color: var(--green-700);
  background: var(--green-50);
}
.country-flag { font-size: 28px; line-height: 1; }
.country-name { font-weight: 700; color: var(--green-900); font-size: 14.5px; }
.country-curr { font-size: 11.5px; font-weight: 600; color: var(--ink-500); letter-spacing: 0.06em; }
.coverage-links {
  max-width: 860px;
  margin: 18px auto 0;
  text-align: center;
  color: var(--ink-500);
  font-size: 14px;
}
.coverage-links a {
  color: var(--green-800);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Pricing */
.section-pricing { background: var(--bg); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 14px;
  align-items: stretch;
  max-width: 860px;
  margin: 0 auto;
}
.plan {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease;
}
.plan:hover { box-shadow: var(--shadow); }
.plan--featured {
  background: linear-gradient(160deg, var(--green-900), var(--green-700));
  color: #fff;
  border: 0;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.plan--featured .plan-name,
.plan--featured .plan-amount,
.plan--featured .plan-list strong { color: #fff; }
.plan--featured .plan-sub,
.plan--featured .plan-period,
.plan--featured .plan-list { color: rgba(255,255,255,0.85); }
.plan--featured .plan-list li::before { background: var(--gold-500); }
.plan--featured .btn-primary {
  background: #fff; color: var(--green-900);
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}
.plan--featured .btn-primary:hover { background: var(--gold-500); color: var(--green-900); }

.plan-tag {
  display: inline-block;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--gold-500);
  color: var(--green-900);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.plan-tag--soft {
  background: var(--green-50); color: var(--green-800);
}
.plan-name { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; color: var(--green-900); margin: 0 0 4px; }
.plan-sub  { font-size: 14px; color: var(--ink-500); margin: 0 0 14px; }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 14px;
}
.plan:not(.plan--featured) .plan-price {
  border-color: var(--ink-100);
}
.plan-amount {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--green-900);
}
.plan-period { font-size: 13.5px; color: var(--ink-500); }

.plan-list {
  list-style: none; padding: 0; margin: 0 0 18px;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 14px;
  color: var(--ink-700);
}
.plan-list li {
  position: relative; padding-left: 22px;
}
.plan-list li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 12px; height: 12px;
  background: var(--green-500);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") no-repeat center / contain;
}

.plan a.btn { margin-top: auto; }

.price-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-500);
  max-width: 720px;
  margin: 16px auto 0;
}

/* Payments strip */
.payments {
  margin: 22px auto 0;
  max-width: 760px;
  text-align: center;
}
.payments-label {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin: 0 0 10px;
}
.payments-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.pay-badge:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.pay-badge img,
.pay-badge svg {
  display: block;
  height: 22px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
}

/* FAQ */
.section-faq { background: #fff; }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 8px;
}
.faq-item {
  background: var(--bg);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  padding: 4px 0;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.faq-item[open] {
  border-color: var(--green-300);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 700;
  color: var(--green-900);
  cursor: pointer;
  list-style: none;
  letter-spacing: -0.005em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-weight: 600;
  font-size: 22px;
  color: var(--green-700);
  transition: transform .2s ease;
  line-height: 1;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item p {
  margin: 0;
  padding: 0 16px 14px;
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.6;
}

/* Contact */
.section-contact {
  background: linear-gradient(160deg, var(--green-900), var(--green-800));
  color: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.contact-copy h2 { color: #fff; font-size: clamp(22px, 2.5vw, 28px); letter-spacing: -0.02em; margin: 0 0 8px; }
.contact-copy p  { color: rgba(255,255,255,0.78); font-size: 15px; margin: 0 0 14px; max-width: 460px; }
.contact-points {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 6px;
}
.contact-points li {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.contact-points span {
  color: var(--gold-500);
  margin-right: 8px;
  font-weight: 700;
}

.contact-form {
  position: relative;
  background: #fff;
  color: var(--ink-900);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 10px;
}
.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.field { display: flex; flex-direction: column; gap: 5px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-700);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 10px 12px;
  font: inherit;
  font-size: 14.5px;
  border: 1.5px solid var(--ink-100);
  background: #fff;
  border-radius: 10px;
  color: var(--ink-900);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(17, 90, 68, 0.12);
}
.field textarea { resize: vertical; min-height: 72px; }
.form-foot {
  font-size: 12px;
  color: var(--ink-500);
  text-align: center;
  margin: 4px 0 0;
}

/* Order page */
.order-main {
  padding: 28px 0 48px;
}
.order-intro {
  max-width: 560px;
  margin: 0 auto 22px;
  text-align: center;
}
.order-intro h1 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.75vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--green-900);
}
.order-intro p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-500);
}
.order-intro a {
  color: var(--green-700);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.order-intro a:hover { color: var(--green-800); }
.order-layout {
  max-width: 560px;
  margin: 0 auto;
}
.order-summary {
  background: var(--green-50);
  border: 1px solid rgba(10, 61, 46, 0.12);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 18px;
}
.order-summary-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin: 0 0 6px;
}
.order-summary-detail {
  margin: 0;
  font-size: 14px;
  color: var(--ink-700);
}
.order-total-line {
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px solid rgba(10, 61, 46, 0.1);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--green-900);
}
.order-summary-hint {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--ink-500);
}
.order-form .field-readonly input[readonly] {
  background: var(--bg);
  color: var(--ink-700);
  cursor: default;
}
.order-back {
  display: inline-block;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-700);
}
.order-back:hover { color: var(--green-800); }

/* Privacy policy page */
.privacy-main {
  padding: 24px 0 44px;
}
.privacy-intro {
  max-width: 760px;
  margin: 0 auto 16px;
}
.privacy-intro h1 {
  margin: 0 0 6px;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
  color: var(--green-900);
}
.privacy-intro p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-500);
}
.privacy-layout {
  max-width: 760px;
  margin: 0 auto;
}
.privacy-card {
  background: #fff;
  border: 1px solid rgba(10, 61, 46, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.policy-section + .policy-section {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(10, 61, 46, 0.08);
}
.policy-section h2 {
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--green-900);
}
.policy-section p {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-700);
}
.policy-section p:last-child {
  margin-bottom: 0;
}
.policy-section a {
  color: var(--green-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.policy-section a:hover {
  color: var(--green-800);
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--green-900);
  color: rgba(255,255,255,0.7);
  padding: 24px 0 max(24px, env(safe-area-inset-bottom, 0px));
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 12px;
  text-align: center;
}
.footer-brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff; font-weight: 800;
}
.footer-tag { margin: 0; font-size: 14px; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  list-style: none; padding: 0; margin: 0;
  font-size: 14px;
  line-height: 1.4;
  max-width: 860px;
}
.footer-links a { display: inline-flex; padding: 3px 0; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 13px; margin: 0; }

.footer-inner--compact {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 14px;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (min-width: 981px) {
  html { scroll-padding-top: 76px; }
}

@media (max-width: 980px) {
  html { scroll-padding-top: 92px; }

  .nav { display: none; }
  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    touch-action: manipulation;
  }
  .header-actions .btn { display: none; }

  .header .header-inner { padding-block: 14px; }
  .mobile-nav:not([hidden]) {
    display: flex;
    max-height: calc(100vh - 52px);
    max-height: calc(100dvh - 52px);
  }

  .hero { padding: 22px 0 36px; }
  .hero-grid { grid-template-columns: 1fr; gap: 22px; }
  .install-layout { grid-template-columns: 1fr; }
  .install-guide {
    max-width: 520px;
    margin: 0 auto;
  }

  .trust {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px 22px;
  }

  .section { padding: 36px 0; }

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

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

  .plan a.btn { width: 100%; box-sizing: border-box; }

  .contact-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; row-gap: 8px; }
}

@media (max-width: 600px) {
  html { scroll-padding-top: 84px; }

  .header .header-inner { padding-block: 12px; gap: 10px; }
  .mobile-nav:not([hidden]) {
    max-height: calc(100vh - 58px);
    max-height: calc(100dvh - 58px);
  }

  .brand-name { font-size: 15px; }
  .country-pill { padding: 8px 10px; }
  .menu-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .mobile-nav > a {
    padding-top: 14px;
    padding-bottom: 14px;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .mobile-nav-actions .btn {
    min-height: 48px;
    padding-top: 12px;
    padding-bottom: 12px;
    touch-action: manipulation;
  }

  .hero { padding: 18px 0 30px; }
  .hero h1 { font-size: clamp(28px, 8.2vw, 40px); }
  .lede { font-size: 16px; line-height: 1.6; }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 18px;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    padding-top: 14px;
    padding-bottom: 14px;
    touch-action: manipulation;
  }

  .trust { gap: 12px 18px; }
  .trust strong { font-size: 17px; }
  .trust span { font-size: 12px; }

  .section { padding: 28px 0; }
  .section-head { margin-bottom: 20px; }
  .section-head h2 { font-size: clamp(22px, 6vw, 28px); }

  .privacy-main { padding: 20px 0 34px; }
  .privacy-card { padding: 16px 14px; }
  .policy-section h2 { font-size: 14.5px; }
  .policy-section p { font-size: 12.5px; }

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

  .step,
  .feature { padding: 18px 16px; }

  .country-card { padding: 14px 10px; }

  .faq-item summary {
    min-height: 52px;
    padding: 14px 16px;
    font-size: 15px;
    touch-action: manipulation;
  }
  .faq-item p {
    font-size: 15px;
    padding-bottom: 16px;
  }

  .field-row { grid-template-columns: 1fr; }
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
    min-height: 48px;
    padding: 12px 14px;
  }
  .field textarea { min-height: 100px; }
  .contact-form { padding: 16px; }
  .contact-form .btn {
    min-height: 48px;
    touch-action: manipulation;
  }

  .order-main { padding: 20px 0 40px; }
  .order-form .btn {
    width: 100%;
    min-height: 48px;
    touch-action: manipulation;
  }

  .float-card { display: none; }

  .store-badge img { height: 36px; }

  .payments-list { gap: 8px; }
  .pay-badge { min-height: 40px; padding: 8px 14px; }

  .apps-simple { gap: 12px; }
  .section-apps { padding: 22px 0 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
