:root {
  --brand: #017bfe;
  --brand-50: #eaf3fe;
  --brand-100: #cfe3fd;
  --brand-200: #a9cefb;
  --brand-600: #0263ce;
  --brand-700: #024fa3;

  --accent: #f2fc2a;
  --accent-600: #d8e200;

  --ink-900: #0f172a;
  --ink-800: #1e293b;
  --ink-700: #334155;
  --ink-600: #475569;
  --ink-500: #64748b;
  --ink-400: #94a3b8;
  --ink-300: #cbd5e1;
  --ink-200: #e2e8f0;
  --ink-100: #f1f5f9;

  --amber-50: #fef6e7;
  --amber-100: #fdecc8;
  --amber-400: #fbbf24;
  --amber-500: #e8a400;
  --amber-700: #8a5d00;

  --bg: #e7ebf1;
  --surface: #ffffff;
  --line: rgba(15, 23, 42, 0.06);
  --line-strong: rgba(15, 23, 42, 0.09);

  --shadow-card: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px -12px rgba(15, 23, 42, 0.16);
  --shadow-search: 0 22px 48px -22px rgba(2, 79, 163, 0.5), 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-pri: 0 8px 18px -8px rgba(1, 123, 254, 0.55);
  --shadow-phone: 0 40px 80px -32px rgba(15, 23, 42, 0.45);

  --hero-grad: linear-gradient(158deg, #0f7bf4 0%, #0257ae 100%);

  --r-sm: 0.5rem;
  --r-md: 0.75rem;
  --r-lg: 1rem;
  --r-xl: 1.25rem;
  --r-2xl: 1.5rem;
  --r-3xl: 1.75rem;
  --r-full: 9999px;

  --container: 1180px;
  --font: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink-700);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
ul {
  list-style: none;
  padding: 0;
}
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: var(--brand);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--r-md);
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.section {
  padding-block: 88px;
}
.section--tight {
  padding-block: 56px;
}
.section-head {
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 52px;
}
.section-head.section-head--left {
  margin-inline: 0;
  text-align: left;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--r-full);
  background: var(--brand-50);
  color: var(--brand-700);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 6px 14px;
  margin-bottom: 18px;
}
.eyebrow i {
  font-size: 14px;
}
h1,
h2,
h3 {
  color: var(--ink-900);
  letter-spacing: -0.02em;
  line-height: 1.12;
  font-weight: 800;
}
.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
}
.section-sub {
  margin-top: 14px;
  color: var(--ink-500);
  font-size: 1.02rem;
  line-height: 1.65;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--r-lg);
  padding: 13px 22px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:active {
  transform: scale(0.98);
}
.btn i {
  font-size: 1.1em;
}
.btn-pri {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-pri);
}
.btn-pri:hover {
  background: var(--brand-600);
}
.btn-sec {
  background: var(--brand-50);
  color: var(--brand);
}
.btn-sec:hover {
  background: var(--brand-100);
}
.btn-ghost {
  background: #fff;
  color: var(--ink-700);
  box-shadow: inset 0 0 0 1.5px var(--ink-200);
}
.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.03);
}
.btn-light {
  background: #fff;
  color: var(--brand);
}
.btn-light:hover {
  background: var(--brand-50);
}

.store-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border-radius: var(--r-lg);
  padding: 11px 18px;
  background: var(--ink-900);
  color: #fff;
  transition: transform 0.12s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -12px rgba(15, 23, 42, 0.55);
}
.store-btn i {
  font-size: 26px;
}
.store-btn .sb-small {
  font-size: 10.5px;
  font-weight: 600;
  opacity: 0.75;
  line-height: 1.1;
  display: block;
}
.store-btn .sb-big {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
  display: block;
}
.store-btn--light {
  background: #fff;
  color: var(--ink-900);
  box-shadow: 0 8px 20px -12px rgba(15, 23, 42, 0.4);
}
.store-btns--onblue .store-btn {
  background: #fff;
  color: var(--ink-900);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px -18px rgba(15, 23, 42, 0.5);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  height: 23px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--r-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-600);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-links a:hover,
.nav-links a.is-active {
  background: rgba(15, 23, 42, 0.05);
  color: var(--ink-900);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  color: var(--ink-800);
  font-size: 24px;
  place-items: center;
}
.nav-toggle:hover {
  background: rgba(15, 23, 42, 0.05);
}

.lang-switch {
  position: relative;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: var(--r-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-700);
  box-shadow: inset 0 0 0 1.5px var(--ink-200);
  background: #fff;
}
.lang-btn i {
  font-size: 15px;
}
.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 168px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: 0 18px 40px -20px rgba(15, 23, 42, 0.4);
  padding: 6px;
  display: none;
  z-index: 60;
}
.lang-switch.open .lang-menu {
  display: block;
}
.lang-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-700);
}
.lang-menu a:hover {
  background: var(--brand-50);
  color: var(--brand-700);
}
.lang-menu a.is-active {
  background: var(--brand-50);
  color: var(--brand-700);
}
.lang-menu a .tick {
  color: var(--brand);
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 12px 24px 20px;
}
.mobile-menu.open {
  display: block;
}
.mobile-menu a {
  display: block;
  padding: 12px 6px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-800);
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn {
  width: 100%;
  margin-top: 16px;
}
.mobile-langs {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.mobile-langs a {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  border: 0;
  border-radius: var(--r-md);
  box-shadow: inset 0 0 0 1.5px var(--ink-200);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-700);
}
.mobile-langs a.is-active {
  background: var(--brand-50);
  color: var(--brand-700);
  box-shadow: inset 0 0 0 1.5px var(--brand-200);
}

.hero {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-3xl);
  background: var(--hero-grad);
  box-shadow: 0 40px 90px -40px rgba(2, 79, 163, 0.65);
}
.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.9;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
  padding: 64px 56px 0;
}
.hero-copy {
  padding-bottom: 72px;
  color: #fff;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 14px;
  margin-bottom: 22px;
}
.hero-badge .dot {
  position: relative;
  display: inline-flex;
  width: 8px;
  height: 8px;
}
.hero-badge .dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-full);
  background: #34d399;
  opacity: 0.75;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.hero-badge .dot::after {
  content: "";
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: var(--r-full);
  background: #10b981;
}
@keyframes ping {
  75%,
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.hero h1 .hl {
  color: var(--accent);
}
.hero-lead {
  margin-top: 18px;
  max-width: 30rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
.hero-cta {
  margin-top: 28px;
}
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-stat .num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.hero-stat .lbl {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.hero-phone-wrap {
  align-self: end;
  display: flex;
  justify-content: center;
}

.phone {
  position: relative;
  width: 320px;
  border: 11px solid #0b0b12;
  border-radius: 2.9rem;
  box-shadow: var(--shadow-phone);
  overflow: hidden;
  background: #eef1f6;
  flex-shrink: 0;
}
.phone--tall {
  align-self: flex-end;
  margin-bottom: -1px;
}
.phone-scroll {
  height: 620px;
  overflow: hidden;
}
.statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.3rem 0.1rem;
  font-size: 0.72rem;
  font-weight: 700;
}
.statusbar .sb-icons {
  display: flex;
  gap: 6px;
}
.phone-hero {
  position: relative;
  overflow: hidden;
  background: var(--hero-grad);
  color: #fff;
}
.phone-hero .ph-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px 6px;
}
.phone-hero .ph-logo-img {
  height: 19px;
  width: auto;
  display: block;
}
.phone-hero .ph-bell {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.15);
  font-size: 18px;
  color: #fff;
}
.phone-hero h2 {
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.15;
  padding: 20px 20px 0;
}
.phone-hero p {
  padding: 6px 20px 60px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
}
.search-card {
  position: relative;
  z-index: 3;
  margin: -46px 16px 0;
  background: #fff;
  border-radius: 26px;
  padding: 16px;
  box-shadow: var(--shadow-search);
}
.search-field {
  position: relative;
  margin-bottom: 10px;
}
.search-field:last-of-type {
  margin-bottom: 0;
}
.search-field > i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-400);
  font-size: 15px;
}
.search-field > i.dot {
  left: 16px;
  font-size: 9px;
  color: var(--brand);
}
.input {
  width: 100%;
  border-radius: var(--r-lg);
  border: 1px solid rgba(15, 23, 42, 0.07);
  background: rgba(15, 23, 42, 0.02);
  padding: 12px 14px 12px 34px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-900);
  outline: none;
}
.swap {
  position: absolute;
  right: 14px;
  top: calc(50% - 5px);
  transform: translateY(-50%);
  z-index: 5;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: var(--r-full);
  background: #fff;
  color: var(--brand);
  box-shadow: 0 4px 10px -2px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.seg-group {
  display: flex;
  gap: 4px;
  margin-top: 10px;
  border-radius: var(--r-lg);
  background: rgba(15, 23, 42, 0.05);
  padding: 4px;
}
.seg {
  flex: 1;
  border-radius: var(--r-md);
  padding: 8px 0;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-500);
}
.seg.on {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.1);
}
.phone-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 10px;
  border-radius: var(--r-lg);
  background: var(--brand);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 12px 0;
  box-shadow: var(--shadow-pri);
}

.feed {
  padding: 20px 16px 24px;
}
.feed-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 12px;
}
.fcard {
  border-radius: var(--r-3xl);
  border: 1px solid var(--line);
  background: #fff;
  padding: 16px;
  box-shadow: var(--shadow-card);
}
.fcard + .fcard {
  margin-top: 14px;
}
.fcard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}
.tbadge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--r-full);
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.tbadge--trip {
  background: var(--brand-50);
  color: var(--brand-700);
}
.tbadge--ship {
  background: var(--amber-100);
  color: var(--amber-700);
}
.heart {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: var(--r-full);
  font-size: 18px;
  color: var(--ink-400);
}
.heart.on {
  color: var(--brand);
}
.fp {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fp-side {
  flex: 1 1 0;
  min-width: 0;
}
.fp-side.r {
  text-align: right;
}
.fp-city {
  font-size: 1.2rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fp-country {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ink-400);
}
.fp-mid {
  display: flex;
  align-items: center;
  gap: 4px;
}
.fp-dot {
  width: 7px;
  height: 7px;
  border-radius: var(--r-full);
  background: var(--brand);
}
.fp-dot--o {
  background: #fff;
  box-shadow: inset 0 0 0 2px var(--brand);
}
.fp-track {
  width: 14px;
  border-top: 2px dashed #bfdbfe;
}
.fp-badge {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: var(--r-full);
  background: var(--brand-50);
  color: var(--brand);
  font-size: 14px;
}
.fp-badge--ship {
  background: var(--amber-100);
  color: var(--amber-500);
}
.fcard-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}
.date-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--r-md);
  background: var(--brand-50);
  padding: 6px 10px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--ink-900);
}
.date-pill i {
  color: var(--brand);
}
.date-pill .time {
  color: var(--brand);
}
.price {
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.price .amt {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink-900);
}
.price .per {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-400);
}
.owner {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.avatar {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}
.avatar--blue {
  background: var(--brand);
  color: #fff;
}
.avatar--soft {
  background: var(--brand-100);
  color: var(--brand-700);
}
.owner-info {
  min-width: 0;
  flex: 1;
}
.owner-name {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-900);
}
.owner-name .seal {
  color: var(--brand);
}
.tier {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: var(--r-sm);
  padding: 2px 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.tier--platinum {
  background: #e0e7ff;
  color: #4338ca;
}
.owner-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
  font-size: 0.75rem;
  color: var(--ink-500);
}
.owner-rating .star {
  color: var(--amber-400);
}
.fcard-actions {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 10px;
  margin-top: 14px;
}
.fcard-actions .a-pri,
.fcard-actions .a-sec {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--r-lg);
  padding: 11px 0;
  font-size: 0.82rem;
  font-weight: 700;
}
.fcard-actions .a-pri {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-pri);
}
.fcard-actions .a-sec {
  background: var(--brand-50);
  color: var(--brand);
}
.botnav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  padding: 8px 8px 10px;
}
.botnav .navi {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--ink-400);
  font-size: 10px;
  font-weight: 600;
}
.botnav .navi i {
  font-size: 20px;
}
.botnav .navi.on {
  color: var(--brand);
  font-weight: 700;
}
.botnav .navi-plus {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-top: -22px;
  border-radius: var(--r-lg);
  background: var(--brand);
  color: #fff;
  font-size: 24px;
  box-shadow: var(--shadow-pri);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: 26px 24px;
  box-shadow: var(--shadow-card);
  text-align: center;
}
.stat .ic {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  border-radius: var(--r-md);
  background: var(--brand-50);
  color: var(--brand);
  font-size: 22px;
}
.stat .num {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}
.stat .lbl {
  margin-top: 4px;
  font-size: 0.88rem;
  color: var(--ink-500);
  font-weight: 500;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-3xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
}
.step-num {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--r-lg);
  background: var(--brand);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  box-shadow: var(--shadow-pri);
  margin-bottom: 20px;
}
.step h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.step p {
  color: var(--ink-500);
  font-size: 0.95rem;
  line-height: 1.6;
}
.step-arrow {
  position: absolute;
  top: 52px;
  right: -24px;
  z-index: 2;
  color: var(--brand-200);
  font-size: 26px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-3xl);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px -20px rgba(1, 123, 254, 0.3);
}
.feature .ic {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--r-lg);
  background: var(--brand-50);
  color: var(--brand);
  font-size: 26px;
  margin-bottom: 18px;
}
.feature h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.feature p {
  color: var(--ink-500);
  font-size: 0.93rem;
  line-height: 1.6;
}

.audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.aud-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-3xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.aud-card--blue {
  background: var(--hero-grad);
  color: #fff;
}
.aud-card--light {
  background: #fff;
  border: 1px solid var(--line);
}
.aud-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: var(--r-lg);
  font-size: 28px;
  margin-bottom: 22px;
}
.aud-card--blue .aud-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.aud-card--light .aud-icon {
  background: var(--brand-50);
  color: var(--brand);
}
.aud-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.aud-card--blue h3 {
  color: #fff;
}
.aud-lead {
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.aud-card--blue .aud-lead {
  color: rgba(255, 255, 255, 0.85);
}
.aud-card--light .aud-lead {
  color: var(--ink-500);
}
.aud-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.96rem;
  font-weight: 500;
}
.aud-list li i {
  font-size: 20px;
  margin-top: 1px;
  flex-shrink: 0;
}
.aud-card--blue .aud-list li {
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.aud-card--blue .aud-list li i {
  color: var(--accent);
}
.aud-card--light .aud-list li {
  color: var(--ink-700);
  border-bottom: 1px solid var(--line);
}
.aud-card--light .aud-list li i {
  color: var(--brand);
}
.aud-list li:last-child {
  border-bottom: none;
}
.aud-card .btn {
  margin-top: 26px;
}

.safety {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.safety-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.safety-badge {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.safety-badge i {
  font-size: 30px;
  color: var(--brand);
}
.safety-badge h4 {
  margin-top: 12px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink-900);
}
.safety-badge p {
  margin-top: 4px;
  font-size: 0.85rem;
  color: var(--ink-500);
  line-height: 1.5;
}
.safety-badge:nth-child(2) i {
  color: var(--amber-500);
}

.routes {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.routes::-webkit-scrollbar {
  display: none;
}
.route-card {
  flex-shrink: 0;
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: 20px;
  box-shadow: var(--shadow-card);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.route-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -20px rgba(1, 123, 254, 0.3);
}
.route-card .rc-cities {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink-900);
}
.route-card .rc-cities i {
  font-size: 13px;
  color: var(--brand);
}
.route-card .rc-count {
  margin-top: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-400);
}
.route-card .rc-price {
  margin-top: 16px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-3xl);
  padding: 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.testimonial .stars {
  color: var(--amber-400);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial p {
  color: var(--ink-700);
  font-size: 0.98rem;
  line-height: 1.65;
  flex: 1;
}
.testimonial .who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.testimonial .who .name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-900);
  display: flex;
  align-items: center;
  gap: 5px;
}
.testimonial .who .name .seal {
  color: var(--brand);
  font-size: 14px;
}
.testimonial .who .meta {
  font-size: 0.78rem;
  color: var(--ink-400);
}

.faq {
  max-width: 780px;
  margin-inline: auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink-900);
}
.faq-q i {
  font-size: 20px;
  color: var(--brand);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-q i {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}
.faq-a-inner {
  padding: 0 24px 22px;
  color: var(--ink-600);
  font-size: 0.96rem;
  line-height: 1.7;
}

.cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-3xl);
  background: var(--hero-grad);
  padding: 64px 56px;
  color: #fff;
  text-align: center;
  box-shadow: 0 40px 90px -40px rgba(2, 79, 163, 0.65);
}
.cta-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.9;
}
.cta-inner {
  position: relative;
  z-index: 2;
}
.cta h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
}
.cta p {
  margin-top: 14px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 34rem;
  margin-inline: auto;
}
.cta .store-btns {
  justify-content: center;
  margin-top: 30px;
}

.site-footer {
  background: var(--ink-900);
  color: var(--ink-300);
  padding: 68px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo {
  height: 30px;
  width: auto;
  display: block;
}
.footer-brand p {
  margin-top: 16px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-400);
  max-width: 22rem;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 19px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.footer-social a:hover {
  background: var(--brand);
  transform: translateY(-2px);
}
.footer-col h4 {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  padding: 7px 0;
  font-size: 0.92rem;
  color: var(--ink-400);
  transition: color 0.15s ease;
}
.footer-col a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: var(--ink-500);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

.page-hero {
  background: var(--hero-grad);
  color: #fff;
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero .eyebrow {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 3rem);
}
.page-hero p {
  margin-top: 14px;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.08rem;
  line-height: 1.6;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--ink-400);
  margin-bottom: 20px;
}
.breadcrumbs a {
  color: var(--ink-500);
  font-weight: 600;
}
.breadcrumbs a:hover {
  color: var(--brand);
}
.breadcrumbs i {
  font-size: 12px;
  color: var(--ink-300);
}
.breadcrumbs span {
  color: var(--ink-600);
  font-weight: 600;
}

.cat-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: var(--r-full);
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-600);
  box-shadow: var(--shadow-card);
  transition: color 0.15s ease, background 0.15s ease;
}
.cat-chip:hover {
  color: var(--brand);
}
.cat-chip.is-active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px -20px rgba(1, 123, 254, 0.3);
}
.post-cover {
  aspect-ratio: 16 / 9;
  background: var(--hero-grad);
  position: relative;
  display: block;
  overflow: hidden;
}
.post-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-cover .cover-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 40px;
}
.post-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post-cat {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--r-full);
  background: var(--brand-50);
  color: var(--brand-700);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.post-card h3 {
  font-size: 1.15rem;
  line-height: 1.3;
  margin-bottom: 8px;
}
.post-card h3 a:hover {
  color: var(--brand);
}
.post-card .excerpt {
  color: var(--ink-500);
  font-size: 0.92rem;
  line-height: 1.6;
  flex: 1;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--ink-400);
  font-weight: 600;
}
.post-meta .dot-sep {
  width: 4px;
  height: 4px;
  border-radius: var(--r-full);
  background: var(--ink-300);
}

.featured-post {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 44px;
}
.featured-post .fp-cover {
  min-height: 320px;
  background: var(--hero-grad);
  position: relative;
}
.featured-post .fp-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-post .fp-cover .cover-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 64px;
}
.featured-post .fp-content {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-post .fp-flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: var(--r-full);
  background: var(--accent);
  color: var(--ink-900);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.featured-post h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.2;
  margin-bottom: 12px;
}
.featured-post h2 a:hover {
  color: var(--brand);
}
.featured-post p {
  color: var(--ink-500);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.featured-post .fp-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--ink-400);
  font-weight: 600;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 44px;
}
.pagination a,
.pagination span {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: var(--r-md);
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-600);
}
.pagination a:hover {
  color: var(--brand);
  border-color: var(--brand-200);
}
.pagination .active span {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.pagination .disabled span {
  opacity: 0.4;
}

.empty-state {
  text-align: center;
  padding: 60px 0;
  color: var(--ink-400);
  font-size: 1rem;
  font-weight: 600;
}

.article {
  max-width: 760px;
  margin-inline: auto;
}
.article-head {
  margin-bottom: 28px;
}
.article-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--r-full);
  background: var(--brand-50);
  color: var(--brand-700);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}
.article-head h1 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.15;
}
.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  font-size: 0.88rem;
  color: var(--ink-400);
  font-weight: 600;
}
.article-meta .author {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-700);
}
.article-cover {
  margin: 8px 0 32px;
  border-radius: var(--r-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.article-cover img {
  width: 100%;
  display: block;
}
.prose {
  color: var(--ink-700);
  font-size: 1.06rem;
  line-height: 1.8;
}
.prose > * + * {
  margin-top: 1.15em;
}
.prose h2 {
  font-size: 1.5rem;
  margin-top: 1.8em;
  color: var(--ink-900);
}
.prose h3 {
  font-size: 1.25rem;
  margin-top: 1.6em;
  color: var(--ink-900);
}
.prose a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.prose ul,
.prose ol {
  padding-left: 1.4em;
}
.prose ul {
  list-style: disc;
}
.prose ol {
  list-style: decimal;
}
.prose li + li {
  margin-top: 0.5em;
}
.prose img {
  border-radius: var(--r-2xl);
  margin: 1.4em 0;
}
.prose blockquote {
  border-left: 4px solid var(--brand-200);
  padding: 4px 0 4px 20px;
  color: var(--ink-600);
  font-style: italic;
}
.prose code {
  background: var(--ink-100);
  padding: 2px 6px;
  border-radius: var(--r-sm);
  font-size: 0.9em;
}
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.article-tags a {
  padding: 6px 12px;
  border-radius: var(--r-full);
  background: var(--ink-100);
  color: var(--ink-600);
  font-size: 0.82rem;
  font-weight: 700;
}
.article-tags a:hover {
  background: var(--brand-50);
  color: var(--brand-700);
}
.related {
  margin-top: 64px;
}
.related h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  text-align: center;
}

.reading-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 60;
  background: transparent;
  pointer-events: none;
}
.reading-bar > span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.article-hero {
  position: relative;
  overflow: hidden;
  background: var(--hero-grad);
  color: #fff;
  padding: 46px 0 118px;
}
.article-hero .hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  pointer-events: none;
}
.article-hero .container {
  position: relative;
  z-index: 2;
}
.breadcrumbs--light {
  color: rgba(255, 255, 255, 0.7);
}
.breadcrumbs--light a {
  color: rgba(255, 255, 255, 0.78);
}
.breadcrumbs--light a:hover {
  color: #fff;
}
.breadcrumbs--light span {
  color: #fff;
}
.breadcrumbs--light i {
  color: rgba(255, 255, 255, 0.4);
}
.article-hero-inner {
  max-width: 820px;
}
.article-hero-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 18px;
}
.article-hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.article-hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.article-hero-meta .author {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
}
.article-hero-meta .avatar {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 12px;
}
.article-hero-meta .dot-sep {
  width: 4px;
  height: 4px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.45);
}

.article-wrap {
  margin-top: -80px;
  position: relative;
  z-index: 3;
  padding-bottom: 80px;
}
.article-cover-lg {
  max-width: 940px;
  margin: 0 auto 0;
  border-radius: var(--r-3xl);
  overflow: hidden;
  box-shadow: 0 34px 80px -34px rgba(15, 23, 42, 0.55);
  aspect-ratio: 16 / 8;
  background: var(--surface);
}
.article-cover-lg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-body {
  max-width: 820px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-3xl);
  padding: 48px 56px;
  box-shadow: var(--shadow-card);
}
.article-cover-lg + .article-body {
  margin-top: 28px;
}
.article-share {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.article-share .lbl {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-400);
  margin-right: 4px;
}
.article-share a,
.article-share button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--r-full);
  background: var(--ink-100);
  color: var(--ink-600);
  font-size: 17px;
  transition: background 0.15s ease, color 0.15s ease, transform 0.12s ease;
}
.article-share a:hover,
.article-share button:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}
.article-share button.copied {
  background: var(--brand);
  color: #fff;
}
.article-body .prose > p:first-of-type {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--ink-800);
}
.article-cta {
  max-width: 820px;
  margin: 28px auto 0;
  position: relative;
  overflow: hidden;
  background: var(--hero-grad);
  border-radius: var(--r-3xl);
  padding: 38px 44px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 30px 70px -34px rgba(2, 79, 163, 0.6);
}
.article-cta .cta-copy h3 {
  color: #fff;
  font-size: 1.4rem;
}
.article-cta .cta-copy p {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 5px;
  font-size: 0.96rem;
}
.article-related {
  max-width: 1180px;
  margin: 64px auto 0;
  padding: 0 24px;
}
.article-related h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  text-align: center;
}

@media (max-width: 720px) {
  .article-hero {
    padding: 34px 0 96px;
  }
  .article-body {
    padding: 30px 22px;
  }
  .article-cta {
    padding: 28px 24px;
  }
  .article-cover-lg {
    aspect-ratio: 16 / 10;
    border-radius: var(--r-2xl);
  }
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 52px 40px 0;
    text-align: center;
  }
  .hero-copy {
    padding-bottom: 20px;
  }
  .hero-lead {
    margin-inline: auto;
  }
  .hero-cta .store-btns,
  .hero-stats {
    justify-content: center;
  }
  .hero-phone-wrap {
    margin-top: 8px;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps,
  .features,
  .testimonials,
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .step-arrow {
    display: none;
  }
  .safety {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .featured-post {
    grid-template-columns: 1fr;
  }
  .featured-post .fp-cover {
    min-height: 220px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .container {
    padding-inline: 18px;
  }
  .section {
    padding-block: 60px;
  }
  .nav-links {
    display: none;
  }
  .nav-actions .lang-switch,
  .nav-actions .btn:not(.nav-toggle) {
    display: none;
  }
  .nav-toggle {
    display: grid;
  }
  .hero-inner {
    padding: 40px 22px 0;
  }
  .hero {
    padding-inline: 0;
  }
  .hero .container {
    padding-inline: 12px;
  }
  .stats,
  .steps,
  .features,
  .testimonials,
  .audience,
  .post-grid {
    grid-template-columns: 1fr;
  }
  .aud-card,
  .cta {
    padding: 32px 24px;
  }
  .cta {
    border-radius: var(--r-2xl);
  }
  .featured-post .fp-content {
    padding: 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section-head {
    margin-bottom: 36px;
  }
}
