/* ==========================================================================
   WayloShare website
   Palette taken from the logo: sky blue, field green, white road.
   ========================================================================== */
:root {
  --sky: #2775BA;
  --sky-deep: #1B5A93;
  --sky-soft: #E3EEF8;
  --field: #2D7E3C;
  --field-deep: #174F28;
  --field-text: #1F6B32;
  --ink: #13294B;
  --ink-2: #0F2138;
  --paper: #F3F7FB;
  --mist: #E4EEF8;
  --line: #D5E0EC;
  --muted: #45566E;
  --muted-2: #52627A;
  --amber: #F2C14E;
  --white: #ffffff;

  --font-display: 'Familjen Grotesk', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Mukta', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --wrap: 1280px;
  --gutter: clamp(20px, 5vw, 80px);
  --radius-lg: 28px;
  --radius-md: 16px;
  --shadow-phone: 0 40px 80px rgba(8, 30, 60, 0.30);
  --shadow-float: 0 16px 30px rgba(8, 30, 60, 0.22);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 20px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sky-deep); }
a:hover { color: var(--ink); }
h1, h2, h3 { font-family: var(--font-display); margin: 0; line-height: 1.05; letter-spacing: -0.02em; }
p { margin: 0; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; border-radius: 6px; }

.wrap { width: 100%; max-width: calc(var(--wrap) + 2 * var(--gutter)); margin: 0 auto; padding-inline: var(--gutter); }
.skip-link { position: absolute; left: -9999px; top: 8px; background: var(--white); color: var(--ink); padding: 10px 16px; border-radius: 8px; z-index: 100; }
.skip-link:focus { left: 12px; }

.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(38px, 4.4vw, 60px); max-width: 700px; }
.section-head p { font-size: 20px; max-width: 460px; color: var(--muted); }

/* ---------- Buttons ---------- */
.play-btn {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--ink); color: var(--white); text-decoration: none;
  padding: 12px 26px 12px 20px; border-radius: 14px; border: 2px solid var(--white);
  min-height: 60px; transition: transform .15s ease, background .15s ease;
}
.play-btn:hover { color: var(--white); background: var(--ink-2); transform: translateY(-1px); }
.play-btn span { display: flex; flex-direction: column; line-height: 1.1; }
.play-btn small { font-size: 13px; color: #C9D6E6; }
.play-btn strong { font-family: var(--font-display); font-size: 24px; font-weight: 600; }
.play-btn--small { min-height: 52px; padding: 8px 20px 8px 16px; }
.play-btn--small strong { font-size: 20px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 12px 28px; border: 0; border-radius: 12px;
  background: var(--sky); color: var(--white); font: 700 18px/1 var(--font-body); cursor: pointer;
}
.btn:hover { background: var(--sky-deep); }

.text-link { font-weight: 600; font-size: 19px; text-underline-offset: 6px; }
.text-link--light { color: var(--white); }
.text-link--light:hover { color: var(--sky-soft); }

/* ---------- Nav ---------- */
.nav { position: relative; z-index: 20; padding-top: env(safe-area-inset-top, 0px); }
.nav__inner {
  max-width: calc(var(--wrap) + 2 * var(--gutter)); margin: 0 auto;
  padding: 24px var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); text-decoration: none; }
.brand:hover { color: var(--white); }
.brand img { width: 44px; height: 44px; border-radius: 10px; border: 2px solid var(--white); }
.brand span { font-family: var(--font-display); font-weight: 700; font-size: 26px; letter-spacing: -0.01em; }
.nav__menu { display: flex; align-items: center; gap: 30px; font-size: 18px; font-weight: 500; }
.nav__menu a { color: var(--white); text-decoration: none; }
.nav__menu a:hover { text-decoration: underline; text-underline-offset: 6px; color: var(--white); }
.nav__cta {
  display: inline-flex; align-items: center; gap: 10px; min-height: 46px;
  background: var(--white); color: var(--ink) !important; padding: 10px 20px; border-radius: 999px; font-weight: 600;
}
.nav__cta:hover { text-decoration: none !important; background: var(--sky-soft); }
.nav__toggle { display: none; background: transparent; border: 0; color: var(--white); width: 48px; height: 48px; border-radius: 12px; cursor: pointer; align-items: center; justify-content: center; }
.nav__toggle .icon-close { display: none; }
.nav__toggle[aria-expanded="true"] .icon-open { display: none; }
.nav__toggle[aria-expanded="true"] .icon-close { display: block; }

/* ---------- Hero ---------- */
.hero { --road-h: max(240px, 16.667vw); position: relative; background: var(--sky); color: var(--white); padding-bottom: calc(var(--road-h) * 0.82 + 48px); overflow: hidden; }
.hero__body { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 40px; padding-top: 56px; position: relative; z-index: 2; }
.hero__copy { display: flex; flex-direction: column; gap: 28px; padding-top: 24px; }
.hero h1 { font-size: clamp(52px, 6.4vw, 92px); line-height: .98; letter-spacing: -0.028em; font-weight: 700; }
.hero__lede { font-size: clamp(19px, 1.6vw, 23px); max-width: 580px; color: var(--sky-soft); }
.hero__actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 8px; }
.hero__ticks { list-style: none; margin: 4px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 28px; font-size: 17px; color: var(--sky-soft); }
.hero__ticks li { display: flex; align-items: center; gap: 8px; }
.hero__ticks svg { color: var(--white); }

.hero__visual { position: relative; display: flex; justify-content: center; align-items: flex-start; min-height: 600px; }
.phone { background: var(--ink-2); border-radius: 48px; padding: 12px; box-shadow: var(--shadow-phone); }
.phone img { width: 100%; aspect-ratio: 1 / 2; object-fit: cover; object-position: top; border-radius: 38px; }
.phone--hero { width: min(330px, 78vw); position: relative; z-index: 2; margin-bottom: -40px; }

.float-card {
  position: absolute; z-index: 3; background: var(--white); color: var(--ink);
  border-radius: var(--radius-md); padding: 14px 18px; box-shadow: var(--shadow-float);
  display: flex; flex-direction: column; gap: 2px;
}
.float-card strong { font-family: var(--font-display); font-size: 26px; font-weight: 700; line-height: 1.1; }
.float-card .float-card__small { font-family: var(--font-body); font-size: 17px; }
.float-card__label { font-size: 14px; color: var(--muted-2); }
.float-card__note { font-size: 14px; color: var(--field-text); font-weight: 600; }
.float-card--price { left: 0; top: 140px; }
.float-card--verified { right: 0; top: 400px; flex-direction: row; align-items: center; gap: 12px; }
.float-card--verified > span:last-child { display: flex; flex-direction: column; line-height: 1.25; }
.float-card__icon { color: var(--field); display: flex; }

.road { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: var(--road-h); z-index: 1; overflow: visible; }

/* ---------- Routes (highway signs) ---------- */
.routes { background: var(--field); color: var(--white); padding: 40px 0 110px; }
.routes .section-head p { color: #E4F1E6; }
.signs { list-style: none; margin: 56px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; }
.sign { display: flex; flex-direction: column; align-items: center; }
.sign__board {
  flex-grow: 1; width: 100%; background: var(--field-deep);
  border: 4px solid var(--white); outline: 6px solid var(--field-deep); border-radius: 12px;
  padding: 24px 22px; display: flex; flex-direction: column; gap: 10px;
}
.sign__route { font-family: var(--font-display); font-size: 30px; font-weight: 700; line-height: 1.1; }
.sign__meta { font-size: 18px; color: #D6EAD9; }
.sign__price { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--amber); }
.sign__posts { display: flex; gap: 120px; }
.sign__posts span { width: 10px; height: 56px; background: #B7C3CF; }

/* ---------- Features ---------- */
.features { padding: 130px 0 110px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 56px; margin-top: 64px; }
.feature { display: flex; flex-direction: column; gap: 14px; border-top: 3px solid var(--sky); padding-top: 28px; }
.feature svg { color: var(--sky); }
.feature--field { border-top-color: var(--field); }
.feature--field svg { color: var(--field); }
.feature h3 { font-size: 28px; }
.feature p { font-size: 19px; color: var(--muted); }

/* ---------- How it works ---------- */
.how { background: var(--mist); padding: 120px 0; }
.how__inner { display: grid; grid-template-columns: minmax(0, 560px) minmax(0, 1fr); gap: 80px; align-items: start; }
.how h2 { font-size: clamp(38px, 4.4vw, 60px); }
.steps { list-style: none; margin: 40px 0 0; padding: 0; }
.steps li { display: flex; gap: 24px; padding: 22px 0; border-top: 2px solid #C7D7E8; }
.steps li:last-child { border-bottom: 2px solid #C7D7E8; }
.steps__num { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--sky); width: 32px; flex-shrink: 0; }
.steps li:last-child .steps__num { color: var(--field); }
.steps li > span:last-child { display: flex; flex-direction: column; gap: 4px; }
.steps strong { font-size: 22px; }
.steps li > span:last-child > span { font-size: 18px; color: var(--muted); }
.how__phones { position: relative; min-height: 760px; }
.how__phones .phone { position: absolute; width: 300px; border-radius: 44px; padding: 11px; box-shadow: 0 30px 60px rgba(19, 41, 75, 0.22); }
.how__phones .phone img { border-radius: 34px; }
.phone--a { left: 0; top: 0; }
.phone--b { left: 340px; top: 120px; }

/* ---------- Booking & refunds ---------- */
.booking { padding: 120px 0 110px; }
.modes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; margin-top: 56px; }
.mode { background: var(--white); border: 2px solid var(--line); border-radius: var(--radius-lg); padding: 40px; display: flex; flex-direction: column; gap: 12px; }
.mode h3 { font-size: 32px; }
.mode p { color: var(--muted); font-size: 19px; }
.timeline__title { font-size: 28px; margin-top: 72px; }
.timeline { list-style: none; margin: 28px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.timeline__item { position: relative; padding: 36px 28px 0 0; display: flex; flex-direction: column; gap: 6px; border-top: 8px solid var(--field); }
.timeline__item::before { content: ""; position: absolute; left: 0; top: -16px; width: 24px; height: 24px; border-radius: 50%; background: var(--white); border: 6px solid currentColor; }
.timeline__item--good { color: var(--field); }
.timeline__item--mid { color: var(--sky); border-top-color: var(--sky); }
.timeline__item--end { color: var(--ink); border-top-color: var(--ink); }
.timeline__when { font-size: 16px; font-weight: 600; color: var(--muted-2); }
.timeline__item strong { font-family: var(--font-display); font-size: 24px; color: var(--ink); line-height: 1.15; }
.timeline__item > span:last-child { color: var(--muted); }
.booking__note { margin-top: 48px; display: flex; align-items: flex-start; gap: 12px; background: var(--white); border-radius: var(--radius-md); padding: 18px 22px; border: 2px solid var(--line); }
.booking__note svg { color: var(--field); flex-shrink: 0; margin-top: 3px; }

/* ---------- Safety ---------- */
.safety { background: var(--ink); color: var(--white); padding: 120px 0; }
.safety__inner { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 80px; align-items: center; }
.safety h2 { font-size: clamp(38px, 4.4vw, 60px); }
.safety__copy > p { margin-top: 28px; font-size: 21px; color: #C9D6E6; }
.ticks { list-style: none; margin: 32px 0 0; padding: 0; display: flex; flex-direction: column; gap: 16px; font-size: 19px; line-height: 1.45; }
.ticks li { display: flex; gap: 14px; }
.ticks svg { color: #7FD28F; flex-shrink: 0; }
.verify-card { justify-self: center; width: min(440px, 100%); background: var(--white); color: var(--ink); border-radius: var(--radius-lg); padding: 36px; display: flex; flex-direction: column; gap: 18px; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3); }
.verify-card__head { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-display); font-size: 26px; font-weight: 700; }
.badge { font-family: var(--font-body); background: #E3F2E6; color: var(--field-text); font-weight: 700; font-size: 15px; padding: 6px 12px; border-radius: 999px; }
.verify-card__row { display: flex; align-items: center; gap: 16px; padding: 18px; background: var(--paper); border-radius: var(--radius-md); font-size: 19px; font-weight: 600; }
.verify-card__row > svg:first-child { color: var(--sky); }
.verify-card__row span { flex-grow: 1; }
.verify-card__row .ok { color: var(--field); stroke-width: 2.6; }

/* ---------- Why ---------- */
.why { padding: 120px 0; }
.why__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.why__card { border-radius: var(--radius-lg); padding: 44px; display: flex; flex-direction: column; gap: 16px; }
.why__card h3 { font-size: 36px; }
.why__card p { font-size: 19px; }
.why__card--sky { background: var(--sky); color: var(--white); }
.why__card--sky p { color: var(--sky-soft); }
.why__card--field { background: var(--field); color: var(--white); }
.why__card--field p { color: #E4F1E6; }
.why__card--plain { background: var(--white); border: 2px solid var(--line); }
.why__card--plain p { color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { padding: 0 0 130px; }
.faq__inner { display: grid; grid-template-columns: minmax(0, 400px) minmax(0, 1fr); gap: 80px; }
.faq__head h2 { font-size: clamp(38px, 4.4vw, 60px); }
.faq__head p { margin-top: 18px; font-size: 20px; color: var(--muted); }
.faq__list details { border-top: 2px solid var(--line); }
.faq__list details:last-child { border-bottom: 2px solid var(--line); }
.faq__list summary {
  list-style: none; cursor: pointer; padding: 22px 48px 22px 0; position: relative;
  font-family: var(--font-display); font-size: 23px; font-weight: 600; line-height: 1.25;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 14px; height: 14px; margin-top: -10px;
  border-right: 3px solid var(--sky); border-bottom: 3px solid var(--sky); transform: rotate(45deg); transition: transform .2s ease;
}
.faq__list details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq__list details p { padding: 0 48px 24px 0; color: var(--muted); font-size: 19px; }

/* ---------- Download ---------- */
.download { position: relative; background: var(--sky); color: var(--white); padding: 150px 0 120px; }
.download__wave { position: absolute; left: 0; top: 0; width: 100%; height: 90px; }
.download__inner { display: flex; align-items: center; justify-content: space-between; gap: 60px; flex-wrap: wrap; }
.download__copy { display: flex; align-items: center; gap: 36px; }
.download__copy img { width: 150px; height: 150px; border-radius: 34px; border: 4px solid var(--white); flex-shrink: 0; }
.download h2 { font-size: clamp(40px, 4.8vw, 64px); max-width: 700px; }
.download__copy p { margin-top: 14px; font-size: 21px; color: var(--sky-soft); }
.download__cta { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.qr { width: 160px; height: 160px; border-radius: var(--radius-md); background: var(--white); }
.download__cta > span { font-size: 15px; color: var(--sky-soft); }

/* ---------- Contact ---------- */
.contact { padding: 120px 0; }
.contact__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 80px; align-items: start; }
.contact h2 { font-size: clamp(38px, 4.4vw, 60px); }
.contact__info > p { margin-top: 18px; font-size: 20px; color: var(--muted); max-width: 480px; }
.contact__list { margin: 40px 0 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 40px; }
.contact__list div { border-top: 2px solid var(--line); padding-top: 18px; }
.contact__list dt { display: flex; align-items: center; gap: 8px; font-size: 16px; color: var(--muted-2); }
.contact__list dt svg { color: var(--sky); }
.contact__list dd { margin: 6px 0 0; font-size: 20px; font-weight: 600; line-height: 1.4; overflow-wrap: anywhere; }
.contact__form { background: var(--white); border: 2px solid var(--line); border-radius: var(--radius-lg); padding: 40px; display: flex; flex-direction: column; gap: 20px; }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.field { display: flex; flex-direction: column; gap: 6px; font-weight: 600; font-size: 16px; }
.field em { font-style: normal; font-weight: 400; color: var(--muted-2); }
.field input, .field select, .field textarea {
  font: 400 18px/1.4 var(--font-body); color: var(--ink); background: var(--paper);
  border: 2px solid var(--line); border-radius: 12px; padding: 12px 14px; min-height: 52px; width: 100%;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sky); background: var(--white); }
.contact__form .btn { align-self: flex-start; }
.form-small { font-size: 15px; color: var(--muted-2); }
.form-msg { padding: 14px 18px; border-radius: 12px; font-weight: 600; }
.form-msg--ok { background: #E3F2E6; color: var(--field-text); }
.form-msg--err { background: #FCE8E6; color: #9B2C1F; }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #C9D6E6; font-size: 16px; }
.footer__inner {
  max-width: calc(var(--wrap) + 2 * var(--gutter)); margin: 0 auto; padding: 72px var(--gutter) 48px;
  display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); gap: 40px;
}
.footer__brand { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.footer__brand .brand img { width: 40px; height: 40px; border-radius: 8px; }
.footer__brand .brand span { font-size: 22px; }
.footer__brand p { max-width: 320px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h2 { font-family: var(--font-body); font-size: 15px; font-weight: 700; color: var(--white); letter-spacing: 0; margin-bottom: 4px; }
.footer__col a { color: #C9D6E6; text-decoration: none; overflow-wrap: anywhere; }
.footer__col a:hover { color: var(--white); text-decoration: underline; }
.footer__base {
  max-width: calc(var(--wrap) + 2 * var(--gutter)); margin: 0 auto; padding: 24px var(--gutter) 32px;
  border-top: 1px solid rgba(201, 214, 230, 0.2); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 15px;
}

/* ---------- Policy pages ---------- */
.page-head { position: relative; background: var(--sky); color: var(--white); padding-bottom: 90px; }
.page-head__body { padding-top: 40px; }
.page-head h1 { font-size: clamp(44px, 5.5vw, 76px); }
.page-head__body p { margin-top: 14px; font-size: 19px; color: var(--sky-soft); }
.page-head__wave { position: absolute; left: 0; bottom: -1px; width: 100%; height: 60px; }
.policy { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 72px; padding-top: 48px; padding-bottom: 120px; }
.policy__toc { position: sticky; top: 24px; align-self: start; max-height: calc(100vh - 48px); overflow: auto; }
.policy__toc summary { list-style: none; cursor: pointer; font-weight: 700; font-size: 15px; color: var(--muted-2); display: flex; align-items: center; justify-content: space-between; }
.policy__toc summary::-webkit-details-marker { display: none; }
@media (min-width: 901px) { .policy__toc summary { pointer-events: none; } }
@media (max-width: 900px) { .policy__toc summary { font-size: 17px; color: var(--ink); } .policy__toc summary::after { content: ""; width: 10px; height: 10px; border-right: 3px solid var(--sky); border-bottom: 3px solid var(--sky); transform: rotate(45deg); margin-top: -4px; } .policy__toc[open] summary::after { transform: rotate(-135deg); margin-top: 4px; } }
.policy__toc h2 { font-family: var(--font-body); font-size: 15px; font-weight: 700; color: var(--muted-2); letter-spacing: 0; }
.policy__toc ol { margin: 14px 0 0; padding: 0 0 0 20px; display: flex; flex-direction: column; gap: 8px; font-size: 16px; line-height: 1.35; }
.policy__toc a { color: var(--ink); text-decoration: none; }
.policy__toc a:hover { color: var(--sky-deep); text-decoration: underline; }
.policy__other { margin-top: 24px; font-size: 16px; font-weight: 600; }
.policy__body { max-width: 760px; }
.policy__body h2 { font-size: 32px; margin: 56px 0 16px; padding-top: 24px; border-top: 2px solid var(--line); scroll-margin-top: 16px; }
.policy__body h2:first-child { margin-top: 0; }
.policy__body h3 { font-size: 22px; margin: 32px 0 10px; letter-spacing: -0.01em; }
.policy__body p { margin: 0 0 14px; color: #2B3D57; }
.policy__body ul { margin: 0 0 18px; padding-left: 22px; display: flex; flex-direction: column; gap: 6px; color: #2B3D57; }
.policy__body li::marker { color: var(--field); }
.to-top {
  position: fixed; right: 20px; bottom: calc(20px + env(safe-area-inset-bottom, 0px)); z-index: 30;
  width: 48px; height: 48px; border-radius: 50%; background: var(--ink); color: var(--white);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-float);
}
.to-top:hover { color: var(--white); background: var(--sky); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .nav__menu { gap: 22px; font-size: 17px; }
  .signs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .phone--b { left: 260px; }
  .how__inner { gap: 48px; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .how__phones .phone { width: 260px; }
  .how__phones { min-height: 680px; }
  .footer__inner { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer__brand { grid-column: 1 / -1; }
}


/* ---------- Google Play badge ---------- */
.play-badge { display: inline-flex; border-radius: 12px; transition: transform .15s ease, box-shadow .15s ease; }
.play-badge img { height: 64px; width: auto; }
.play-badge:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(8, 30, 60, 0.28); }
.play-badge--small img { height: 52px; }

.hero__eyebrow {
  align-self: flex-start; font-weight: 700; font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(255, 255, 255, 0.16); border: 1px solid rgba(255, 255, 255, 0.35); padding: 6px 14px; border-radius: 999px;
}
.hero__copy .hero__eyebrow { margin-bottom: -8px; }

/* Gentle floating on the hero cards */
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.float-card--price { animation: floaty 6s ease-in-out infinite; }
.float-card--verified { animation: floaty 6s ease-in-out 1.5s infinite; }

/* ---------- App tour ---------- */
.tour { padding: 120px 0 100px; overflow: hidden; }
.tour__body { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 420px); gap: 80px; align-items: center; margin-top: 56px; }
.tour__tabs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.tour__tab {
  position: relative; overflow: hidden; display: flex; align-items: center; gap: 10px; text-align: left;
  min-height: 60px; padding: 12px 14px; border-radius: 14px; border: 2px solid var(--line); background: var(--white);
  font: 600 17px/1.2 var(--font-body); color: var(--ink); cursor: pointer; transition: border-color .2s, background .2s, color .2s;
}
.tour__tab:hover { border-color: var(--sky); }
.tour__tab.is-active { background: var(--ink); border-color: var(--ink); color: var(--white); }
.tour__num {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-size: 15px; font-weight: 700; background: var(--mist); color: var(--sky-deep);
}
.tour__tab.is-active .tour__num { background: var(--sky); color: var(--white); }
.tour__bar { position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: transparent; }
.tour__bar span { display: block; height: 100%; width: 0; background: var(--field); }
.tour__tab.is-active .tour__bar span { animation: tourbar var(--tour-ms, 5500ms) linear forwards; }
.tour.is-paused .tour__tab.is-active .tour__bar span { animation-play-state: paused; }
@keyframes tourbar { to { width: 100%; } }
.tour__panel { margin-top: 36px; min-height: 250px; }
.tour__panel.is-active { animation: panelin .45s ease both; }
@keyframes panelin { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.tour__panel h3 { font-size: clamp(30px, 3vw, 42px); }
.tour__panel > p { margin-top: 14px; font-size: 20px; color: var(--muted); max-width: 560px; }
.ticks--dark { color: var(--ink); font-size: 18px; margin-top: 24px; }
.ticks--dark svg { color: var(--field); }

.tour__stage { position: relative; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.tour__glow {
  position: absolute; left: 50%; top: 45%; width: 460px; height: 460px; transform: translate(-50%, -50%);
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(39, 117, 186, 0.22) 0%, rgba(45, 126, 60, 0.14) 45%, transparent 70%);
}
.tour__phone { position: relative; width: 320px; aspect-ratio: 720 / 1510; padding: 12px; z-index: 1; touch-action: pan-y; }
/* Screen area: every screenshot sits exactly inside the frame's inner edge */
.tour__phone::before {
  content: ""; position: absolute; inset: 12px; border-radius: 38px; background: var(--white);
}
.tour__phone .tour__shot {
  position: absolute; top: 12px; left: 12px; right: 12px; bottom: 12px;
  width: calc(100% - 24px); height: calc(100% - 24px); aspect-ratio: auto;
  object-fit: cover; object-position: top center; border-radius: 38px;
  opacity: 0; transition: opacity .45s ease;
}
.tour__phone .tour__shot.is-active { opacity: 1; }
.tour__nav { display: flex; align-items: center; gap: 12px; z-index: 1; }
.tour__arrow, .tour__play {
  width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--line); background: var(--white); color: var(--ink);
  display: grid; place-items: center; cursor: pointer;
}
.tour__arrow:hover, .tour__play:hover { border-color: var(--sky); color: var(--sky-deep); }
.i-pause, .i-play { display: block; width: 14px; height: 16px; }
.i-pause { border-left: 4px solid currentColor; border-right: 4px solid currentColor; }
.i-play { width: 0; height: 0; border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-left: 13px solid currentColor; margin-left: 3px; }

/* ---------- Stats band ---------- */
.stats { background: var(--ink); color: var(--white); padding: 72px 0; }
.stats__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 40px; }
.stat { display: flex; flex-direction: column; gap: 8px; border-left: 3px solid var(--field); padding-left: 22px; }
.stat:nth-child(2n) { border-left-color: var(--sky); }
.stat__value { font-family: var(--font-display); font-weight: 700; font-size: clamp(40px, 4vw, 58px); line-height: 1; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.stat__label { font-size: 17px; color: #C9D6E6; line-height: 1.4; }

/* ---------- Calculators ---------- */
.calc { padding: 0 0 120px; }
.calc__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; margin-top: 56px; }
.calc-card { background: var(--white); border: 2px solid var(--line); border-radius: var(--radius-lg); padding: 40px; display: flex; flex-direction: column; gap: 24px; }
.calc-card__head { display: flex; align-items: center; gap: 14px; }
.calc-card__head svg { color: var(--sky); flex-shrink: 0; }
.calc-card--impact .calc-card__head svg { color: var(--field); }
.calc-card__head h3 { font-size: 30px; }
.range { display: flex; flex-direction: column; gap: 10px; }
.range__top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-weight: 600; font-size: 17px; }
.range__top output { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--sky-deep); font-variant-numeric: tabular-nums; }
.range input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 36px; background: transparent; cursor: pointer; }
.range input[type=range]::-webkit-slider-runnable-track { height: 10px; border-radius: 999px; background: linear-gradient(to right, var(--sky) var(--fill, 50%), var(--mist) var(--fill, 50%)); }
.range input[type=range]::-moz-range-track { height: 10px; border-radius: 999px; background: var(--mist); }
.range input[type=range]::-moz-range-progress { height: 10px; border-radius: 999px; background: var(--sky); }
.range input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 30px; height: 30px; margin-top: -10px; border-radius: 50%; background: var(--white); border: 4px solid var(--sky); box-shadow: 0 4px 10px rgba(19, 41, 75, 0.25); }
.range input[type=range]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--white); border: 4px solid var(--sky); }
.calc-card--impact .range input[type=range]::-webkit-slider-runnable-track { background: linear-gradient(to right, var(--field) var(--fill, 50%), #E3F2E6 var(--fill, 50%)); }
.calc-card--impact .range input[type=range]::-webkit-slider-thumb { border-color: var(--field); }
.calc-card--impact .range input[type=range]::-moz-range-progress { background: var(--field); }
.calc-card--impact .range__top output { color: var(--field-text); }
.calc-card__result { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; background: var(--paper); border-radius: var(--radius-md); padding: 22px; }
.calc-card__result > div { display: flex; flex-direction: column; gap: 4px; font-size: 16px; color: var(--muted); }
.calc-card__big { font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 3vw, 40px); color: var(--ink); line-height: 1; font-variant-numeric: tabular-nums; }
.calc-card__big--green { color: var(--field-text); }
.calc-card__note { font-size: 15px; color: var(--muted-2); margin-top: auto; }
.impact-trees { display: flex; flex-wrap: wrap; gap: 4px; min-height: 30px; color: var(--field); }
.impact-trees svg { animation: pop .3s ease both; }
@keyframes pop { from { transform: scale(0.4); opacity: 0; } to { transform: none; opacity: 1; } }

/* ---------- Scroll reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1); }
.js .reveal.is-in { opacity: 1; transform: none; }
.js .feature-grid .reveal:nth-child(3n+2), .js .why__grid .reveal:nth-child(2), .js .signs .reveal:nth-child(2), .js .stats__list .reveal:nth-child(2) { transition-delay: .1s; }
.js .feature-grid .reveal:nth-child(3n+3), .js .why__grid .reveal:nth-child(3), .js .signs .reveal:nth-child(3), .js .stats__list .reveal:nth-child(3) { transition-delay: .2s; }
.js .signs .reveal:nth-child(4), .js .stats__list .reveal:nth-child(4) { transition-delay: .3s; }

/* ---------- Made in India ---------- */
.flag-in { display: inline-block; flex-shrink: 0; border-radius: 3px; box-shadow: 0 0 0 1px rgba(19, 41, 75, 0.18), 0 2px 6px rgba(8, 30, 60, 0.18); }
.hero__ticks .hero__tick--flag { font-weight: 700; color: var(--white); }
.why__flag-title { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.made-in { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; }
.download__copy .made-in { margin-top: 16px; font-size: 18px; color: var(--white); background: rgba(255, 255, 255, 0.14); padding: 8px 14px 8px 10px; border-radius: 999px; }
.made-in--footer { color: var(--white); gap: 8px; }

/* ---------- Mobile-only pieces (hidden on desktop) ---------- */
.app-bar, .quick-actions, .swipe-hint { display: none; }

@media (max-width: 1100px) {
  .tour__body { grid-template-columns: minmax(0, 1fr) minmax(0, 340px); gap: 48px; }
  .tour__phone { width: 290px; }
  .tour__tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  body { font-size: 17px; }

  /* App tour: chips on top, phone, then text */
  .tour { padding: 72px 0 64px; }
  .tour__body { grid-template-columns: 1fr; gap: 24px; margin-top: 28px; }
  .tour__side { display: contents; }
  .tour__tabs {
    order: 1; display: flex; gap: 8px; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none;
    margin: 0 calc(-1 * var(--gutter)); padding: 2px var(--gutter) 6px;
  }
  .tour__tabs::-webkit-scrollbar { display: none; }
  .tour__tab { flex: 0 0 auto; min-height: 48px; padding: 8px 16px 8px 8px; border-radius: 999px; font-size: 16px; scroll-snap-align: start; }
  .tour__num { width: 30px; height: 30px; }
  .tour__stage { order: 2; }
  .tour__phone { width: min(270px, 72vw); border-radius: 40px; padding: 10px; }
  .tour__phone::before { inset: 10px; border-radius: 31px; }
  .tour__phone .tour__shot { top: 10px; left: 10px; right: 10px; bottom: 10px; width: calc(100% - 20px); height: calc(100% - 20px); border-radius: 31px; }
  .tour__glow { width: 340px; height: 340px; }
  .tour__panel { order: 3; margin-top: 0; min-height: 0; }
  .tour__panel > p { font-size: 18px; }
  .ticks--dark { font-size: 17px; }

  .stats { padding: 56px 0; }
  .stats__list { gap: 32px 20px; }
  .stat { padding-left: 16px; }
  .stat__label { font-size: 15px; }

  .calc { padding-bottom: 72px; }
  .calc__grid { grid-template-columns: 1fr; gap: 20px; margin-top: 32px; }
  .calc-card { padding: 24px; border-radius: 22px; gap: 20px; }
  .calc-card__head h3 { font-size: 24px; }
  .range__top { font-size: 16px; }
  .range input[type=range] { height: 44px; }
  html { scroll-padding-top: 12px; }

  /* Nav: full-width sheet with big tap targets */
  .nav__inner { padding: 16px var(--gutter); }
  .brand img { width: 40px; height: 40px; }
  .brand span { font-size: 23px; }
  .nav__toggle { display: inline-flex; background: rgba(255, 255, 255, 0.14); }
  .nav__menu {
    position: absolute; left: 12px; right: 12px; top: calc(100% + 4px);
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--white); border-radius: 22px; padding: 10px; box-shadow: 0 24px 48px rgba(8, 30, 60, 0.28);
    display: none;
  }
  .nav__menu.is-open { display: flex; }
  .nav__menu a { color: var(--ink); padding: 15px 16px; border-radius: 14px; font-size: 19px; font-weight: 600; }
  .nav__menu a:hover, .nav__menu a:active { background: var(--paper); color: var(--ink); text-decoration: none; }
  .nav__cta { justify-content: center; margin-top: 8px; min-height: 54px; background: var(--ink); color: var(--white) !important; }
  .nav__cta:hover, .nav__cta:active { background: var(--ink-2) !important; }
  body.menu-open { overflow: hidden; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(15, 33, 56, 0.35); z-index: 15; }

  /* Hero */
  .hero { --road-h: 170px; padding-bottom: calc(var(--road-h) * 0.82 + 32px); }
  .hero__body { grid-template-columns: 1fr; gap: 28px; padding-top: 12px; }
  .hero__copy { padding-top: 0; gap: 20px; }
  .hero__actions .play-btn { flex-grow: 1; justify-content: center; }
  .hero__ticks { gap: 8px; }
  .hero__ticks li { background: rgba(255, 255, 255, 0.14); border-radius: 999px; padding: 6px 12px 6px 10px; font-size: 15px; }
  .hero__visual { min-height: 0; padding-bottom: 10px; }
  .phone--hero { width: 260px; margin-bottom: 0; border-radius: 40px; padding: 10px; }
  .phone--hero img { border-radius: 31px; }
  .float-card--price { left: max(0px, calc(50% - 230px)); top: 40px; }
  .float-card--verified { right: max(0px, calc(50% - 230px)); top: auto; bottom: 70px; }

  .section-head { gap: 14px; }
  .section-head p { font-size: 18px; }

  /* Routes: swipeable row of signs */
  .routes { padding: 24px 0 64px; }
  .signs {
    display: flex; gap: 18px; margin: 32px calc(-1 * var(--gutter)) 0; padding: 8px var(--gutter) 4px;
    overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter);
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .signs::-webkit-scrollbar { display: none; }
  .sign { flex: 0 0 min(78%, 300px); scroll-snap-align: start; }
  .sign__route { font-size: 26px; }
  .sign__posts span { height: 34px; }
  .swipe-hint { display: flex; align-items: center; gap: 8px; margin-top: 16px; font-size: 15px; color: #D6EAD9; }

  /* Sections: tighter spacing */
  .features, .booking, .why, .contact { padding: 72px 0; }
  .feature-grid { grid-template-columns: 1fr; gap: 0; margin-top: 36px; }
  .feature { display: grid; grid-template-columns: 48px 1fr; column-gap: 16px; row-gap: 4px; padding: 20px 0; border-top-width: 2px; }
  .feature svg { grid-row: span 2; width: 30px; height: 30px; margin-top: 2px; }
  .feature h3 { font-size: 22px; }
  .feature p { font-size: 17px; }

  .how { padding: 72px 0; }
  .how__inner { grid-template-columns: 1fr; gap: 36px; }
  .steps { margin-top: 28px; }
  .steps li { padding: 18px 0; gap: 16px; }
  .steps strong { font-size: 20px; }
  .steps li > span:last-child > span { font-size: 17px; }
  .how__phones {
    min-height: 0; display: flex; gap: 16px; justify-content: flex-start;
    margin: 0 calc(-1 * var(--gutter)); padding: 4px var(--gutter) 24px;
    overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
  }
  .how__phones::-webkit-scrollbar { display: none; }
  .how__phones .phone { position: static; flex: 0 0 220px; padding: 8px; border-radius: 32px; scroll-snap-align: start; box-shadow: 0 16px 32px rgba(19, 41, 75, 0.2); }
  .how__phones .phone img { border-radius: 25px; }
  .phone--b { margin-top: 0; }

  .modes { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
  .mode { padding: 24px; border-radius: 22px; }
  .mode h3 { font-size: 24px; }
  .mode p { font-size: 17px; }
  .timeline__title { margin-top: 48px; font-size: 24px; }
  .booking__note { margin-top: 28px; font-size: 16px; }

  .safety { padding: 72px 0; }
  .safety__inner { grid-template-columns: 1fr; gap: 40px; }
  .safety__copy > p { font-size: 18px; margin-top: 18px; }
  .ticks { font-size: 17px; gap: 14px; }

  .why__grid { grid-template-columns: 1fr; gap: 14px; }
  .why__card { padding: 26px; border-radius: 22px; }
  .why__card h3 { font-size: 26px; }
  .why__card p { font-size: 17px; }

  .faq { padding-bottom: 72px; }
  .faq__inner { grid-template-columns: 1fr; gap: 24px; }
  .faq__list summary { font-size: 19px; padding: 18px 40px 18px 0; min-height: 56px; }
  .faq__list details p { font-size: 17px; padding-right: 0; }

  .contact__inner { grid-template-columns: 1fr; gap: 36px; }
  .quick-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
  .quick-actions a {
    display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 56px;
    border-radius: 14px; font-weight: 700; font-size: 18px; text-decoration: none;
  }
  .quick-actions__call { background: var(--field); color: var(--white); }
  .quick-actions__mail { background: var(--sky); color: var(--white); }
  .quick-actions a:hover { color: var(--white); }
  .contact__list { margin-top: 28px; gap: 20px; }

  .policy { grid-template-columns: 1fr; gap: 24px; padding-top: 28px; }
  .policy__toc { position: static; max-height: none; background: var(--white); border: 2px solid var(--line); border-radius: var(--radius-md); padding: 0; }
  .policy__toc summary { padding: 16px 20px; min-height: 56px; }
  .policy__toc ol { padding: 0 20px 18px 40px; margin: 0; gap: 4px; }
  .policy__toc li a { display: block; padding: 6px 0; }
  .policy__other { padding: 0 20px 18px; margin: 0; }

  /* Sticky install bar */
  .app-bar {
    display: flex; align-items: center; gap: 12px;
    position: fixed; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom, 0px)); z-index: 40;
    background: var(--ink); color: var(--white); border-radius: 18px; padding: 10px 10px 10px 12px;
    box-shadow: 0 16px 36px rgba(8, 30, 60, 0.35);
    transform: translateY(140%); transition: transform .25s ease;
  }
  .app-bar.is-visible { transform: none; }
  .app-bar img { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; }
  .app-bar__text { display: flex; flex-direction: column; line-height: 1.2; flex-grow: 1; min-width: 0; }
  .app-bar__text strong { font-family: var(--font-display); font-size: 18px; }
  .app-bar__text span { font-size: 14px; color: #C9D6E6; }
  .app-bar__btn {
    display: inline-flex; align-items: center; gap: 8px; min-height: 46px; padding: 0 18px;
    background: var(--field); color: var(--white); border-radius: 12px; font-weight: 700; text-decoration: none; flex-shrink: 0;
  }
  .app-bar__btn:hover { color: var(--white); background: var(--field-deep); }
  body.has-app-bar .footer__base { padding-bottom: 100px; }
  body.has-app-bar .to-top { bottom: calc(92px + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 600px) {
  :root { --gutter: 20px; }
  .hero h1 { font-size: 44px; letter-spacing: -0.03em; }
  .hero__lede { font-size: 18px; }
  .hero__actions { gap: 14px; }
  .hero__actions .text-link { width: 100%; text-align: center; }
  .float-card { padding: 10px 14px; }
  .float-card strong { font-size: 20px; }
  .float-card--price { left: 0; top: 28px; }
  .float-card--verified { display: none; }
  .phone--hero { width: 230px; }

  .section-head h2, .how h2, .safety h2, .faq__head h2, .contact h2 { font-size: 34px; }

  .timeline { grid-template-columns: 1fr; border-left: 6px solid var(--line); margin-left: 9px; }
  .timeline__item { border-top: 0; padding: 0 0 28px 26px; }
  .timeline__item:last-child { padding-bottom: 4px; }
  .timeline__item::before { left: -21px; top: 2px; width: 20px; height: 20px; border-width: 5px; }
  .timeline__item strong { font-size: 21px; }

  .verify-card { padding: 22px; gap: 12px; }
  .verify-card__head { font-size: 21px; }
  .verify-card__row { padding: 14px; font-size: 17px; }

  .download { padding: 100px 0 72px; }
  .download__inner { flex-direction: column; align-items: stretch; gap: 32px; }
  .download__copy { flex-direction: column; align-items: flex-start; gap: 20px; }
  .download__copy img { width: 88px; height: 88px; border-radius: 22px; border-width: 3px; }
  .download h2 { font-size: 38px; }
  .download__copy p { font-size: 18px; }
  .download__cta { align-items: stretch; }
  .download__cta .play-btn { justify-content: center; }
  .download__cta .qr, .download__cta > span { display: none; } /* you can't scan a QR on the phone you're holding */

  .contact__form { padding: 22px; border-radius: 22px; gap: 16px; }
  .contact__form .btn { align-self: stretch; }
  .play-badge img { height: 58px; }
  .hero__actions .play-badge { flex-grow: 1; justify-content: center; background: #000; border-radius: 12px; }
  .download__cta .play-badge { justify-content: center; background: #000; }
  .calc-card__result { padding: 16px; gap: 12px; }
  .calc-card__result > div { font-size: 14px; }
  .stats__list { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 16px; }
  .contact__list { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr 1fr; padding-top: 48px; gap: 32px 24px; }
  .footer__col:last-child { grid-column: 1 / -1; }
  .footer__col a { padding: 4px 0; }
  .footer__base { flex-direction: column; gap: 6px; }

  .page-head { padding-bottom: 64px; }
  .page-head h1 { font-size: 40px; }
  .page-head__body { padding-top: 16px; }
  .page-head__body p { font-size: 16px; }
  .policy__body h2 { font-size: 24px; margin-top: 40px; }
  .policy__body h3 { font-size: 20px; }
  .policy__body p, .policy__body ul { font-size: 17px; }
}

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