/* ===== KLIQ tokens ===== */
:root {
  --navy: #0E2A38;
  --navy-2: #122F3F;
  --navy-3: #1A3D50;
  --teal: #1FA6A0;
  --teal-2: #18807C;
  --orange: #F4A93C;
  --sky: #7AB8E0;
  --cream: #F7F4EE;
  --cream-2: #EFEAE0;
  --ink: #0E2A38;
  --ink-soft: #4A5A65;
  --ink-mute: #8593A0;
  --line: rgba(255,255,255,0.10);
  --line-dark: rgba(14,42,56,0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "ss01","cv11";
  color: var(--ink);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }

/* ===== Logo ===== */
.kliq-logo { display: inline-flex; align-items: center; gap: 8px; }
.kliq-wordmark {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.02em;
}

/* ===== Nav ===== */
.nav {
  position: absolute; top: 0; left: 0; right: 0;
  z-index: 20;
  padding: 22px 0;
}
.nav__inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
.nav__links {
  display: flex; gap: 28px;
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
  justify-self: center;
}
.nav__links a:hover { color: #fff; }
.nav__right { display: flex; align-items: center; gap: 18px; font-size: 14px; color: rgba(255,255,255,0.85); }
.nav__currency { color: rgba(255,255,255,0.7); font-size: 13px; }
.nav__user { display: flex; align-items: center; gap: 14px; }
.nav__points {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(244,169,60,0.12);
  border: 1px solid rgba(244,169,60,0.3);
  color: var(--orange);
  padding: 6px 11px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12.5px;
}
.nav__pts-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 8px var(--orange); }
.nav__hi { color: #fff; font-weight: 500; }
.nav__link { font-size: 14px; }
.nav__cta {
  background: #fff; color: var(--navy);
  padding: 10px 18px; border-radius: 999px;
  font-weight: 600; font-size: 13px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: linear-gradient(180deg, #0A2230 0%, #0E2A38 60%, #0E2A38 100%);
  color: #fff;
  padding: 110px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero__grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(80% 60% at 50% 30%, #000 50%, transparent 100%);
}
.hero__glow {
  position: absolute; inset: 0;
  transition: background 0.6s ease;
}

.hero__inner {
  position: relative;
  max-width: 1320px; margin: 0 auto;
  padding: 0 40px;
}

/* tabs */
.tabs {
  display: inline-grid;
  grid-template-columns: repeat(3, 200px);
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 6px;
  margin-bottom: 56px;
}
.tabs__indicator {
  position: absolute;
  top: 6px; left: 6px;
  width: 200px; height: calc(100% - 12px);
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  transition: transform 0.35s cubic-bezier(0.65,0,0.35,1);
  border: 1px solid rgba(255,255,255,0.10);
}
.tabs__tab {
  position: relative;
  padding: 12px 18px;
  text-align: left;
  border-radius: 10px;
  display: flex; flex-direction: column; gap: 2px;
  color: rgba(255,255,255,0.6);
  transition: color 0.25s;
}
.tabs__tab.is-active { color: #fff; }
.tabs__label { font-weight: 700; font-size: 15px; letter-spacing: -0.01em; }
.tabs__sub { font-size: 11.5px; color: rgba(255,255,255,0.55); font-weight: 500; }
.tabs__tab.is-active .tabs__sub { color: rgba(255,255,255,0.8); }

/* hero body */
.hero__body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: start;
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
  transition: color 0.4s, border-color 0.4s;
}
.hero__eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  box-shadow: 0 0 10px currentColor;
  transition: background 0.4s;
}

.hero__h1 {
  font-size: clamp(48px, 6.4vw, 88px);
  line-height: 0.97;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin: 0 0 28px;
  text-wrap: balance;
}
.hero__h1-line {
  display: block;
  transition: color 0.5s ease;
}

.hero__sub {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  margin: 0 0 28px;
  text-wrap: pretty;
}

.hero__pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.85);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
}

.hero__cta { display: flex; gap: 12px; margin-bottom: 56px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14.5px;
  transition: transform 0.15s, opacity 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { color: var(--navy); }
.btn--ghost { color: #fff; border: 1px solid rgba(255,255,255,0.20); }
.btn--ghost:hover { background: rgba(255,255,255,0.05); }
.btn--teal { background: var(--teal); color: #fff; }
.btn--ghost-inv { color: #fff; border: 1px solid rgba(255,255,255,0.30); }
.btn--dark { background: var(--navy); color: #fff; }
.btn--ghost-dark { color: var(--navy); border: 1px solid rgba(14,42,56,0.18); }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 540px;
}
.stat__v {
  font-size: 26px; font-weight: 700; letter-spacing: -0.02em;
  transition: color 0.4s;
}
.stat__l { color: rgba(255,255,255,0.55); font-size: 12.5px; margin-top: 4px; }
.stat__v--teal { color: var(--teal) !important; }
.stat__l--inv { color: rgba(255,255,255,0.6); }

/* hero right */
.hero__right { display: flex; flex-direction: column; gap: 18px; }

/* ===== Coverage map ===== */
.map {
  position: relative;
  aspect-ratio: 1.1 / 1;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 20px;
  overflow: hidden;
}
.map__svg { width: 100%; height: 100%; display: block; }
.map__pin {
  position: absolute;
  font-size: 11px;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
  transform: translate(8px, -50%);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

/* ===== Points ticker ===== */
.ticker {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px 20px;
}
.ticker__row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.ticker__dot {
  width: 8px; height: 8px; border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.ticker__label { font-size: 11.5px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.ticker__num { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.ticker__pts { font-size: 16px; color: rgba(255,255,255,0.55); font-weight: 500; }
.ticker__cap { font-size: 12.5px; color: rgba(255,255,255,0.55); margin-top: 2px; }

/* ===== Supply visual ===== */
.supply-vis {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 22px 24px;
  font-size: 13px;
}
.supply-vis__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}
.supply-vis__title { font-weight: 700; font-size: 14px; }
.supply-vis__live {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}
.supply-vis__dot {
  width: 6px; height: 6px; border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
.supply-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.supply-row__name { color: rgba(255,255,255,0.85); font-weight: 500; font-size: 13px; }
.supply-row__bar { height: 4px; background: rgba(255,255,255,0.08); border-radius: 99px; overflow: hidden; }
.supply-row__bar-fill { height: 100%; border-radius: 99px; transition: width 1s ease; }
.supply-row__op { font-size: 11.5px; color: rgba(255,255,255,0.55); font-variant-numeric: tabular-nums; }
.supply-row__save { font-weight: 700; font-size: 13px; font-variant-numeric: tabular-nums; }

/* ===== Owner dash visual ===== */
.owner-vis {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 22px 24px;
}
.owner-vis__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 16px;
}
.owner-vis__caption { font-size: 10.5px; letter-spacing: 0.12em; color: rgba(255,255,255,0.5); font-weight: 600; }
.owner-vis__title { font-weight: 700; font-size: 14px; margin-top: 4px; }
.owner-vis__avg { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.owner-vis__chart {
  display: flex; align-items: flex-end; gap: 6px;
  height: 90px;
  margin: 12px 0 18px;
}
.owner-vis__bar-wrap { flex: 1; height: 100%; display: flex; align-items: flex-end; }
.owner-vis__bar { width: 100%; border-radius: 3px 3px 0 0; transition: height 0.4s; }
.owner-vis__foot {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 14px;
}
.owner-vis__metric-l { font-size: 11px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; }
.owner-vis__metric-v { font-size: 18px; font-weight: 700; margin-top: 2px; letter-spacing: -0.01em; }

/* ===== Search widget ===== */
.search {
  margin-top: 56px;
  background: rgba(255,255,255,0.97);
  border-radius: 14px;
  padding: 8px;
  color: var(--ink);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
  backdrop-filter: blur(20px);
}
.search__tabs { display: flex; gap: 4px; padding: 8px 8px 0; }
.search__tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-radius: 8px 8px 0 0;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.search__tab.is-on { background: var(--teal); color: #fff; }
.search__row {
  display: grid;
  grid-template-columns: 1.4fr 1.4fr 1fr 1fr auto;
  gap: 0;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--line-dark);
  align-items: stretch;
}
.search__field {
  padding: 12px 18px;
  border-right: 1px solid var(--line-dark);
  display: flex; flex-direction: column; gap: 4px;
}
.search__field:last-of-type { border-right: 0; }
.search__lbl { font-size: 10.5px; color: var(--ink-mute); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.search__val { font-size: 14px; font-weight: 500; color: var(--ink); }
.search__val--muted { color: var(--ink-mute); }
.search__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 26px;
  margin: 6px;
  border-radius: 99px;
  color: var(--navy);
  font-weight: 700; font-size: 14px;
}

/* ===== Sections ===== */
.section { padding: 110px 0; }
.section--cream { background: var(--cream); }
.section--white { background: #fff; }
.section--navy { background: var(--navy); color: #fff; }
.section__inner { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
.section__head { max-width: 720px; margin-bottom: 60px; }
.section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__eyebrow {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 18px;
}
.section__eyebrow--inv { color: var(--teal); }
.section__h2 {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.section__h2--inv { color: #fff; }
.section__lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 18px 0 0;
  max-width: 620px;
  text-wrap: pretty;
}
.section__lead--inv { color: rgba(255,255,255,0.72); }

/* ===== Points grid ===== */
.points-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.points-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  border: 1px solid var(--line-dark);
  position: relative;
  overflow: hidden;
}
.points-card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
}
.points-card__n {
  font-size: 13px; font-weight: 700; color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.points-card__t { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 10px; }
.points-card__d { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }

/* ===== Deals ===== */
.deals__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 36px;
}
.deals__nav { display: flex; align-items: center; gap: 16px; }
.deals__viewall { font-size: 14px; font-weight: 600; color: var(--teal); }
.deals__arrow {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line-dark);
  font-size: 16px;
  color: var(--ink-soft);
}
.deals__arrow:hover { background: var(--cream); color: var(--ink); }
.deals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .deals { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .deals { grid-template-columns: 1fr; }
}
.deal {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  transition: transform 0.2s, box-shadow 0.2s;
}
.deal:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -16px rgba(0,0,0,0.15); }
.deal__media {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 75%; /* 4:3 — fallback that works regardless of aspect-ratio support */
  background: linear-gradient(135deg, #E8DFD0 0%, #D6C9B0 100%);
  overflow: hidden;
}
.deal .deal__img {
  position: absolute !important;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}
.deal__placeholder {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(14,42,56,0.05) 0px,
    rgba(14,42,56,0.05) 8px,
    transparent 8px,
    transparent 16px
  );
  display: flex; align-items: center; justify-content: center;
}
.deal__placeholder span {
  font-family: "JetBrains Mono", "SF Mono", monospace;
  font-size: 11px;
  color: rgba(14,42,56,0.4);
  background: rgba(255,255,255,0.7);
  padding: 4px 10px;
  border-radius: 4px;
}
.deal__tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--teal);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.deal__heart {
  position: absolute; top: 12px; right: 12px;
  width: 30px; height: 30px;
  background: #fff; border-radius: 50%;
  font-size: 14px;
}
.deal__body { padding: 18px 18px 18px; }
.deal__top { display: flex; justify-content: space-between; align-items: center; }
.deal__name { font-weight: 700; font-size: 15px; letter-spacing: -0.01em; }
.deal__rating {
  font-size: 12px;
  color: var(--orange);
  background: rgba(244,169,60,0.12);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}
.deal__city { font-size: 12.5px; color: var(--ink-mute); margin-top: 4px; }
.deal__bottom {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-top: 16px;
}
.deal__cap { font-size: 9.5px; color: var(--ink-mute); letter-spacing: 0.1em; font-weight: 600; }
.deal__price { font-size: 18px; font-weight: 800; color: var(--teal); letter-spacing: -0.01em; margin-top: 2px; }
.deal__btn {
  background: var(--teal);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 12.5px;
}
.deal__btn:hover { background: var(--teal-2); }

/* ===== Supply teaser ===== */
.supply-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.supply-teaser__cta { display: flex; gap: 12px; margin: 32px 0 40px; }
.supply-teaser__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 28px;
}
.supply-teaser__stats > div { display: flex; flex-direction: column; }

/* ===== Owner teaser ===== */
.owner-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.owner-teaser__visual {
  background: var(--navy);
  border-radius: 24px;
  padding: 32px;
  color: #fff;
}
.owner-teaser__list { list-style: none; padding: 0; margin: 28px 0 36px; }
.owner-teaser__list li {
  font-size: 14.5px;
  padding: 8px 0;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-dark);
}
.owner-teaser__cta { display: flex; gap: 12px; }

/* ===== Routing block ===== */
.route {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.route__card {
  text-align: left;
  padding: 36px 30px;
  background: var(--cream);
  border-radius: 18px;
  border: 1px solid var(--line-dark);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}
.route__card:hover { transform: translateY(-4px); }
.route__bar { position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.route__t { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin-top: 10px; }
.route__d { font-size: 14.5px; color: var(--ink-soft); margin: 10px 0 32px; line-height: 1.5; }
.route__cta { font-size: 14px; font-weight: 700; }

/* ===== Footer ===== */
.footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 80px 0 40px; }
.footer__inner {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
}
.footer__tag { font-size: 14px; line-height: 1.55; max-width: 280px; margin: 16px 0 22px; color: rgba(255,255,255,0.55); }
.footer__social { display: flex; gap: 8px; }
.footer__social a {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}
.footer__social a:hover { background: rgba(255,255,255,0.05); color: #fff; }
.footer__cols {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.footer__cols > div { display: flex; flex-direction: column; gap: 10px; }
.footer__h { color: #fff; font-weight: 700; font-size: 13px; margin-bottom: 8px; }
.footer__cols a { font-size: 13.5px; color: rgba(255,255,255,0.55); }
.footer__cols a:hover { color: #fff; }
.footer__bottom {
  max-width: 1320px; margin: 60px auto 0; padding: 24px 40px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex; justify-content: space-between;
  font-size: 12.5px; color: rgba(255,255,255,0.5);
}
.footer__bottom-links { display: flex; gap: 18px; }

/* ===== Density ===== */
.density-compact .hero { padding: 90px 0 60px; }
.density-compact .section { padding: 80px 0; }
.density-spacious .hero { padding: 130px 0 100px; }
.density-spacious .section { padding: 140px 0; }

/* ===== Responsive (basic) ===== */
@media (max-width: 1100px) {
  .hero__body { grid-template-columns: 1fr; gap: 40px; }
  .points-grid { grid-template-columns: repeat(2, 1fr); }
  .supply-teaser, .owner-teaser { grid-template-columns: 1fr; gap: 40px; }
  .route { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .nav__links { display: none; }
  .search__row { grid-template-columns: 1fr 1fr; }
  .search__btn { grid-column: 1 / -1; margin: 8px; padding: 14px; justify-content: center; }
}
@media (max-width: 640px) {
  .nav__inner { padding: 0 20px; }
  .hero__inner, .section__inner, .footer__inner { padding: 0 20px; }
  .tabs { grid-template-columns: repeat(3, 1fr); width: 100%; }
  .tabs__indicator { width: calc(33.333% - 4px); }
}
