:root {
  --navy: #143055;
  --navy-deep: #0b1c30;
  --ink: #152033;
  --muted: #5c6b7c;
  --gold: #c99712;
  --gold-bright: #e8b84a;
  --paper: #f3f6fa;
  --white: #ffffff;
  --line: #d5deea;
  --blue: #1a3e72;
  --blue-soft: #e8eef6;
  --success: #1f7a4d;
  --success-soft: #e8f6ee;
  --shadow: 0 16px 40px rgba(11, 28, 48, 0.08);
  --shadow-tight: 0 8px 22px rgba(11, 28, 48, 0.08);
  --radius: 18px;
  --max: 1140px;
  --header: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0.6em;
}

.benefit,
.section[id],
#features,
#seats,
#settings,
#landers,
#location,
#agent,
#batch,
#monitor,
#plans,
#about,
#products,
#contact,
#services,
#offer,
#location-manager {
  scroll-margin-top: 96px;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--gold);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section {
  padding: 88px 0;
}

.section.tight {
  padding: 64px 0;
}

.section.paper {
  background: var(--paper);
}

.section.navy {
  background: var(--navy-deep);
  color: #d7e2ef;
}

.section.navy h2,
.section.navy h3 {
  color: var(--white);
}

.section-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.lede {
  color: var(--muted);
  font-size: 1.08rem;
}

.section.navy .lede {
  color: #b7c6d6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold-bright);
  color: var(--navy-deep);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: transparent;
}

.btn-line {
  border-color: var(--line);
  background: var(--white);
  color: var(--navy);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(11, 28, 48, 0.05);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  object-position: top;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 17px;
  letter-spacing: -0.03em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.nav a:hover,
.nav a.is-active {
  color: var(--gold);
}

.nav-cta {
  min-height: 40px;
  padding: 0 16px;
  background: var(--navy);
  color: var(--white) !important;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--navy);
  content: "";
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before {
  position: absolute;
  top: -6px;
}

.nav-toggle span::after {
  position: absolute;
  top: 6px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 88px;
  color: #d7e2ef;
  background:
    radial-gradient(circle at 80% 10%, rgba(232, 184, 74, 0.16), transparent 28%),
    linear-gradient(160deg, #0b1c30 0%, #143055 58%, #1a3e72 100%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 72px;
  background: linear-gradient(to bottom, transparent, var(--white));
  content: "";
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  max-width: 14ch;
}

.hero .lede {
  max-width: 52ch;
  color: #c5d3e2;
  font-size: 1.15rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.hero-stats div {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stats strong {
  display: block;
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.3rem;
}

.hero-stats span {
  color: #9fb1c4;
  font-size: 13px;
}

.product-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.product-card h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.product-card p {
  color: #c5d3e2;
}

.product-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

.mini {
  padding: 16px;
  border-radius: 14px;
  background: rgba(11, 28, 48, 0.35);
}

.mini strong {
  display: block;
  color: var(--gold-bright);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  margin-bottom: 4px;
}

.mini span {
  color: #d0dbe7;
  font-size: 14px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
  color: #9fb1c4;
  font-size: 13px;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 20px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card,
.feature,
.step,
.plan {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-tight);
}

.card h3,
.feature h3,
.step h3,
.plan h3 {
  font-size: 1.2rem;
}

.muted {
  color: var(--muted);
}

.icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.icon.gold {
  background: #fff4d6;
  color: #8a6908;
}

.feature-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 8px 0 8px 22px;
  border-top: 1px solid #eef2f6;
  color: var(--muted);
}

.feature-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "▸";
}

.flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step {
  counter-increment: day;
}

.step .icon {
  background: var(--navy);
  color: var(--gold-bright);
}

.step[data-demo-jump] {
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.step[data-demo-jump]:hover,
.step[data-demo-jump]:focus-visible {
  border-color: var(--gold);
}

.step[data-demo-jump].is-on {
  border-color: var(--gold);
  box-shadow: 0 18px 40px rgba(201, 151, 18, 0.14);
}

.day-demo {
  margin-top: 28px;
}

.day-stage {
  position: relative;
  padding: 0 64px;
}

.day-slides {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-tight);
}

.day-slides figure {
  display: none;
  margin: 0;
}

.day-slides figure.is-on {
  display: block;
}

.day-slides img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.day-stage .slide-arrow {
  z-index: 2;
}

.day-demo .foot-dots {
  margin-top: 18px;
}

.flagship {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
  align-items: stretch;
}

.flagship-copy,
.flagship-panel {
  padding: 36px;
  border-radius: 24px;
}

.flagship-copy {
  color: #d7e2ef;
  background: var(--navy);
}

.flagship-copy h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.flagship-copy .lede {
  color: #c5d3e2;
}

.flagship-panel {
  background: var(--white);
  border: 1px solid var(--line);
}

.flag-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.flag-item {
  padding: 16px;
  border-radius: 14px;
  background: var(--paper);
}

.flag-item strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 36px;
}

.toc a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.toc a:hover {
  border-color: var(--navy);
}

.detail {
  margin-bottom: 22px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.detail h4 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.detail p {
  color: var(--muted);
}

.benefit {
  padding: 8px 0 18px;
}

.plan {
  display: flex;
  flex-direction: column;
}

.plan.featured {
  border-color: var(--gold);
  box-shadow: 0 22px 50px rgba(201, 151, 18, 0.16);
}

.plan .price-note {
  margin: 8px 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.plans {
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.plans.panel.is-open {
  display: grid;
}

.plan-view {
  justify-content: center;
}

.mark {
  display: inline;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--gold-bright);
  color: var(--navy-deep);
  font-weight: 800;
  white-space: nowrap;
}

.plan-table-wrap.panel.is-open {
  display: block;
  overflow-x: auto;
}

.plan-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.plan-table th,
.plan-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #eef2f6;
  text-align: center;
  font-size: 14px;
  vertical-align: middle;
}

.plan-table th[scope="row"] {
  text-align: left;
  color: var(--navy);
  font-weight: 700;
  background: #f7f9fc;
}

.plan-table thead th {
  background: var(--navy);
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plan-table thead th.is-hot,
.plan-table td.is-hot {
  background: #fff8e6;
}

.plan-table thead th.is-hot {
  background: var(--gold);
  color: var(--navy-deep);
}

.plan-table tr:last-child th,
.plan-table tr:last-child td {
  border-bottom: 0;
}

.plan-table .btn {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  font-size: 13px;
}

.plan-table-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.plan-price {
  margin: 0;
  color: var(--navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.plan-price span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}

.plan-gift {
  margin: 0 0 14px;
  padding: 8px 10px;
  border-radius: 10px;
  background: #fff4d6;
  color: #8a6908;
  font-size: 13px;
  font-weight: 700;
}

.plan-limits,
.plan-features {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.plan-limits li,
.plan-features li {
  position: relative;
  padding: 8px 0 8px 18px;
  border-top: 1px solid #eef2f6;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
}

.plan-limits li::before,
.plan-features li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "▸";
}

.plan-limits {
  margin-bottom: 8px;
}

.plan-limits li {
  font-size: 14px;
}

.plan-limits .is-out {
  color: var(--muted);
}

.plan-limits .is-out::before {
  color: #c5d0dc;
  content: "–";
}

.plan-in-label,
.plan-out-label {
  margin: 4px 0 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-in-label {
  color: var(--navy);
}

.plan-out-label {
  color: #8a6908;
}

.plan-highlights {
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.plan-highlights li {
  position: relative;
  padding: 8px 0 8px 18px;
  border-top: 1px solid #eef2f6;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.plan-highlights li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "▸";
}

.plan-out {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.plan-out li {
  position: relative;
  padding: 8px 0 8px 18px;
  border-top: 1px solid #eef2f6;
  color: var(--muted);
  font-size: 14px;
}

.plan-out li::before {
  position: absolute;
  left: 0;
  color: #c5d0dc;
  content: "–";
}

.plan-none {
  margin: 0 0 14px;
  padding: 8px 0 8px 18px;
  border-top: 1px solid #eef2f6;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.plan-in {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.plan .btn {
  width: 100%;
  margin-top: auto;
}

.plan-demo {
  background: var(--paper);
}

.badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff4d6;
  color: #8a6908;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
}

.contact-card {
  padding: 28px;
  border-radius: 20px;
  background: var(--navy);
  color: #d7e2ef;
}

.contact-card h2,
.contact-card a {
  color: var(--white);
}

.contact-card a:hover {
  color: var(--gold-bright);
}

.form {
  position: relative;
  display: grid;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.form textarea {
  min-height: 130px;
  resize: vertical;
}

.checks {
  display: grid;
  gap: 8px;
}

.form .checks label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.form-note {
  color: var(--muted);
  font-size: 14px;
}

.form-note:empty {
  display: none;
}

.form-note.is-ok {
  color: var(--success);
}

.form-note.is-err {
  color: #b42318;
}

.form-note.is-wait {
  color: var(--navy);
}

.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.site-footer {
  padding: 48px 0 24px;
  background: var(--navy-deep);
  color: #9fb1c4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
}

.site-footer a:hover {
  color: var(--gold-bright);
}

.legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 18px;
  font-size: 14px;
}

.page-hero {
  padding: 28px 0 32px;
  background:
    radial-gradient(circle at 90% 0%, rgba(232, 184, 74, 0.14), transparent 26%),
    linear-gradient(160deg, #0b1c30, #143055);
  color: #d7e2ef;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  max-width: 14ch;
}

.page-hero .lede {
  max-width: 46ch;
  margin-bottom: 0;
  color: #c5d3e2;
  font-size: 1rem;
}

.page-hero .tags {
  margin: 12px 0 4px;
}

.page-hero .tag {
  background: rgba(255, 255, 255, 0.08);
  color: #e8b84a;
}

.page-hero .btn-row {
  margin-top: 16px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.7fr;
  gap: 32px;
  align-items: center;
}

.lm-shot-wrap {
  position: relative;
  max-width: 280px;
  margin-left: auto;
  padding-top: 14px;
}

.lm-shot {
  overflow: hidden;
  border-radius: 20px;
  border: 2px solid var(--gold);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.lm-shot img {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: contain;
}

.lm-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.lm-col {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-tight);
}

.lm-col.is-featured {
  border-color: var(--gold);
  box-shadow: 0 22px 50px rgba(201, 151, 18, 0.14);
}

.lm-col-head {
  margin-bottom: 18px;
}

.lm-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lm-col h3 {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1.45rem;
}

.lm-col-head p {
  margin: 0;
  color: var(--muted);
}

.feat-grid {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feat-grid li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}

.feat-grid li strong {
  color: var(--navy);
  font-weight: 800;
}

.feat-grid li::before {
  flex: 0 0 22px;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: #fff4d6;
  color: #8a6908;
  font-size: 12px;
  font-weight: 800;
  line-height: 22px;
  text-align: center;
  content: "✓";
}

.lm-col.is-featured .feat-grid li::before {
  background: var(--navy);
  color: var(--gold-bright);
}

.top-bar {
  background: var(--navy-deep);
  color: #c5d3e2;
  font-size: 13px;
}

.top-bar .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  justify-content: center;
  min-height: 38px;
}

.top-bar strong {
  color: var(--gold-bright);
}

.ticker {
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #9fb1c4;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.ticker.navy-tick {
  background: var(--navy-deep);
}

.ticker-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: ticker 32s linear infinite;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag {
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
}

.tag.gray {
  background: #eef2f6;
  color: var(--muted);
}

.switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.switcher button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.switcher button.is-on,
.switcher button:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.switcher button.is-new {
  padding-right: 14px;
}

.switcher .star {
  display: inline-block;
  margin-right: 4px;
  color: var(--gold);
  font-size: 15px;
  line-height: 1;
}

.switcher button.is-on .star,
.switcher button:hover .star {
  color: var(--gold-bright);
}

.need-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.form .need-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f7f9fc;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.form .need-item span {
  min-width: 0;
}

.form .need-item input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.form .need-item .toggle {
  position: relative;
  flex: 0 0 42px;
  width: 42px;
  height: 24px;
  border-radius: 999px;
  background: #c5d0dc;
  box-shadow: inset 0 0 0 1px rgba(20, 48, 85, 0.08);
}

.form .need-item .toggle::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(15, 35, 65, 0.2);
  content: "";
  transition: transform 0.18s ease;
}

.form .need-item:has(input:checked),
.form .need-item.is-on {
  border-color: var(--navy);
  background: var(--blue-soft);
}

.form .need-item:has(input:checked) .toggle,
.form .need-item.is-on .toggle {
  background: var(--navy);
}

.form .need-item:has(input:checked) .toggle::after,
.form .need-item.is-on .toggle::after {
  transform: translateX(18px);
}

.panel {
  display: none;
}

.panel.is-open {
  display: block;
}

.panel[hidden] {
  display: none;
}

.points {
  margin: 0;
  padding: 0;
  list-style: none;
}

.points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #eef2f6;
  color: var(--ink);
}

.points li:last-child {
  border-bottom: 0;
}

.points b {
  flex: 0 0 18px;
  color: var(--gold);
}

.offer-box {
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: 18px;
  background: var(--paper);
}

.section-head h2 .accent {
  color: var(--blue);
}

.footprint {
  position: relative;
  padding: 28px 88px 8px;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  padding: 0;
  border: 1px solid #e6edf5;
  border-radius: 50%;
  background: var(--white);
  color: #94a3b8;
  box-shadow: 0 8px 24px rgba(15, 35, 65, 0.08);
  cursor: pointer;
}

.slide-arrow svg {
  width: 22px;
  height: 22px;
}

.slide-arrow.prev {
  left: 0;
}

.slide-arrow.next {
  right: 0;
}

.slide-arrow:hover {
  background: var(--white);
  border-color: var(--gold);
  color: var(--navy);
}

.foot-slide.panel.is-open {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: 48px;
  align-items: center;
}

.foot-kicker {
  margin-bottom: 12px;
  color: #94a3b8;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.foot-copy h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: clamp(2.2rem, 4.4vw, 3.55rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.foot-copy h4 {
  margin: 26px 0 12px;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.foot-copy .tags {
  gap: 10px;
  margin-top: 0;
}

.foot-copy .tag {
  padding: 9px 16px;
  border: 1px solid #d5deea;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
}

.foot-copy .tag.gray {
  border-color: #e6eaf0;
  background: #f7f8fa;
  color: #8b97a8;
}

.foot-cta {
  margin-top: 26px;
}

.foot-visual-wrap {
  position: relative;
}

.foot-badge {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--gold-bright);
  color: var(--navy-deep);
  box-shadow: 0 10px 24px rgba(201, 151, 18, 0.35);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

.foot-visual {
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 1;
  padding: 0;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(15, 35, 65, 0.08);
}

.foot-slide.is-featured .foot-visual {
  border: 2px solid var(--gold);
  box-shadow: 0 22px 60px rgba(201, 151, 18, 0.2);
}

.foot-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.foot-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.foot-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d5deea;
  cursor: pointer;
}

.foot-dots button.is-on {
  width: 28px;
  background: var(--navy);
}

.foot-dots button.is-new {
  width: 14px;
  height: 14px;
  background: var(--gold-bright);
  box-shadow: 0 0 0 5px rgba(232, 184, 74, 0.28);
}

.foot-dots button.is-new.is-on {
  width: 36px;
  background: var(--gold);
}

.crumbs {
  margin-bottom: 18px;
  color: #9fb1c4;
  font-size: 14px;
}

.crumbs a:hover {
  color: var(--gold-bright);
}

@media (max-width: 1100px) {
  .plans {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .flagship,
  .contact-grid,
  .grid-4,
  .flow,
  .page-hero-grid,
  .lm-cols,
  .foot-slide.panel.is-open {
    grid-template-columns: 1fr;
  }

  .footprint {
    padding: 24px 56px 12px;
  }

  .day-stage {
    padding: 0 52px;
  }

  .foot-visual,
  .foot-visual-wrap,
  .lm-shot-wrap {
    width: min(100%, 420px);
    margin-inline: auto;
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav {
    position: absolute;
    top: var(--header);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 12px;
  }

  .hero::after {
    display: none;
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(var(--max), calc(100% - 28px));
  }

  .section {
    padding: 64px 0;
  }

  .grid-2,
  .grid-3,
  .hero-stats,
  .product-split,
  .flag-grid,
  .footer-grid,
  .plans {
    grid-template-columns: 1fr;
  }

  .brand-copy {
    display: none;
  }

  .footprint {
    padding: 20px 0 64px;
  }

  .day-stage {
    padding: 0 0 56px;
  }

  .slide-arrow {
    width: 40px;
    height: 40px;
    margin-top: 0;
    top: auto;
    bottom: 0;
  }

  .slide-arrow.prev {
    left: 8px;
  }

  .slide-arrow.next {
    right: 8px;
  }

  .foot-visual,
  .foot-visual-wrap {
    width: min(100%, 360px);
  }

  .foot-copy h3 {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .foot-dots {
    margin-bottom: 36px;
  }
}
