:root {
  color-scheme: light;
  --bg: #ffffff;
  --ink: #102027;
  --muted: #617177;
  --line: #dbe8ea;
  --soft: #eff8f8;
  --soft-2: #f8fbfb;
  --teal: #147d8b;
  --teal-dark: #0b5863;
  --coral: #fb5a45;
  --coral-dark: #d84231;
  --gold: #c9892f;
  --shadow: 0 24px 70px rgba(5, 38, 48, 0.16);
  --radius: 8px;
  --container: min(1180px, calc(100vw - 40px));
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "Plus Jakarta Sans", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 132px;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font: 500 16px/1.5 var(--font-body);
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  border: 0;
  cursor: pointer;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
  overflow-wrap: anywhere;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #06242b;
  color: #d8f7f8;
}

.topbar__row,
.topbar__links,
.nav,
.nav__links,
.nav__tools,
.hero__actions,
.trust-row,
.final-cta__inner,
.site-footer__grid {
  display: flex;
  align-items: center;
}

.topbar__row {
  min-height: 38px;
  justify-content: space-between;
  gap: 18px;
}

.topbar p {
  margin: 0;
  color: rgba(216, 247, 248, 0.84);
  font-size: 0.82rem;
}

.topbar__links {
  gap: 16px;
  font-size: 0.82rem;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(16, 32, 39, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 82px;
  justify-content: space-between;
  gap: clamp(10px, 1.4vw, 18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 250px;
}

.brand__mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand__wordmark {
  width: 188px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

.brand span {
  display: grid;
  gap: 1px;
}

.brand strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand small {
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav__links {
  justify-content: center;
  gap: clamp(10px, 1.2vw, 20px);
}

.nav__links a {
  color: #172c32;
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
}

.nav__links a:hover {
  color: var(--teal);
}

.nav__link--active,
.nav__links a.nav__link--active {
  color: var(--coral-dark);
}

.nav__links a.nav__link--active {
  border-bottom: 2px solid currentColor;
}

.nav__tools {
  gap: 10px;
}

.language-switch select {
  min-height: 44px;
  border: 1px solid rgba(16, 32, 39, 0.14);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 0 12px;
  font-size: 0.84rem;
  font-weight: 900;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.button--primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 16px 34px rgba(251, 90, 69, 0.28);
}

.button--primary:hover {
  background: var(--coral-dark);
  box-shadow: 0 20px 42px rgba(251, 90, 69, 0.34);
}

.button--secondary {
  border: 1px solid rgba(16, 32, 39, 0.16);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
}

.button--copy {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(20, 125, 139, 0.24);
  background: #eef8f8;
  color: var(--teal-dark);
  box-shadow: none;
}

.button--copy:hover {
  background: #e1f3f3;
}

.button--light {
  background: #fff;
  color: var(--teal-dark);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  overflow: hidden;
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  z-index: -2;
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.84) 36%, rgba(255, 255, 255, 0.28) 66%, rgba(255, 255, 255, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 58%, #fff 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: 54px;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding: 56px 0 70px;
}

.hero--home .hero__grid {
  grid-template-columns: minmax(0, 760px);
}

.hero--home .hero__copy {
  max-width: 760px;
}

.hero__copy {
  max-width: 700px;
}

.hero__logo {
  width: min(58vw, 300px);
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

h1 {
  margin-bottom: 24px;
  max-width: 760px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.2vw, 5rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 590px;
  margin-bottom: 30px;
  color: #263f46;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.65;
}

.hero__actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

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

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(20, 125, 139, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  color: #17343b;
  font-size: 0.84rem;
  font-weight: 900;
}

.trust-row span::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--teal);
}

.hero-desk {
  width: 100%;
}

.quote-panel {
  width: 100%;
  padding: 26px;
  border: 1px solid rgba(16, 32, 39, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.quote-panel__head {
  margin-bottom: 20px;
}

.quote-panel__head span,
.section-head > span,
.section-copy > span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quote-panel h2 {
  margin-bottom: 5px;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

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

.quote-panel label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: #2a4349;
  font-size: 0.84rem;
  font-weight: 800;
}

.quote-panel input,
.quote-panel select,
.quote-panel textarea {
  width: 100%;
  border: 1px solid #cedde0;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 0 13px;
  font-size: 0.94rem;
  outline: none;
}

.quote-panel input,
.quote-panel select {
  min-height: 48px;
}

.quote-panel textarea {
  min-height: 82px;
  padding-top: 12px;
  resize: vertical;
}

.quote-panel input:focus,
.quote-panel select:focus,
.quote-panel textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(20, 125, 139, 0.12);
}

.quote-panel input[aria-invalid="true"],
.quote-panel textarea[aria-invalid="true"] {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(251, 90, 69, 0.12);
}

.quote-panel__split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 12px;
}

.quote-panel__submit {
  width: 100%;
  margin-top: 4px;
}

.quote-panel__copy {
  margin-bottom: 10px;
}

.quote-preview {
  display: grid;
  gap: 4px;
  margin: 2px 0 14px;
  padding: 14px;
  border: 1px solid rgba(20, 125, 139, 0.16);
  border-radius: var(--radius);
  background: #f5fbfb;
  color: #244148;
  font-size: 0.8rem;
  line-height: 1.45;
}

.quote-preview strong {
  color: var(--teal-dark);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.quote-quality {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 14px;
}

.quote-quality span {
  min-height: 34px;
  border: 1px solid rgba(140, 91, 17, 0.16);
  border-radius: var(--radius);
  background: #fff8e8;
  color: #8c5b11;
  padding: 8px 10px;
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.2;
}

.quote-quality span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: currentColor;
}

.quote-quality span[data-ready="true"] {
  border-color: rgba(20, 125, 139, 0.18);
  background: #eef8f8;
  color: var(--teal-dark);
}

.quote-panel__status {
  min-height: 20px;
  margin: 12px 0 0;
  font-size: 0.78rem;
  font-weight: 800;
}

.quote-panel__status[data-tone="ready"] {
  color: var(--teal-dark);
}

.quote-panel__status[data-tone="fallback"] {
  color: #9a5b14;
}

.quote-panel__status[data-tone="working"] {
  color: var(--coral-dark);
}

.quote-panel__note {
  margin: 14px 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-head--wide {
  max-width: 920px;
}

.section-head--compact {
  max-width: 680px;
}

.section-head h2,
.section-copy h2 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4.35rem);
  font-weight: 600;
  line-height: 0.96;
}

.section-head p,
.section-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.7;
}

.section-copy--center {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-copy--center p {
  margin-right: auto;
  margin-left: auto;
}

.command-section,
.service-preview,
.excursion-section,
.confirmation-section,
.process-section,
.faq-section {
  padding: 86px 0;
  background: #fff;
}

.command-section__grid {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 54px;
  align-items: start;
}

.command-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.command-card {
  display: grid;
  gap: 12px;
  min-height: 210px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft-2);
}

.command-card--primary {
  background: #06323b;
  color: #fff;
}

.command-card strong,
.service-card h3,
.excursion-card h3,
.operation-board h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.08;
}

.command-card p {
  color: var(--muted);
  line-height: 1.65;
}

.command-card--primary p {
  color: rgba(255, 255, 255, 0.75);
}

.command-card em {
  align-self: end;
  color: var(--teal);
  font-style: normal;
  font-weight: 900;
}

.command-card--primary em {
  color: #fff;
}

.service-cards,
.excursion-grid,
.confirmation-grid,
.process-steps,
.readiness-grid,
.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.excursion-card,
.process-steps article,
.readiness-card,
.channel-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft-2);
  padding: 24px;
}

.service-card {
  display: grid;
  min-height: 356px;
}

.card-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #fff;
  color: var(--teal);
  box-shadow: inset 0 0 0 1px rgba(20, 125, 139, 0.18);
}

.card-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.service-card > span,
.excursion-card > span,
.process-steps span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.service-card p,
.excursion-card p,
.process-steps p,
.readiness-card p,
.channel-card p {
  color: var(--muted);
  line-height: 1.65;
}

.service-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #3e5358;
  font-size: 0.92rem;
}

.service-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.service-card button,
.excursion-card button {
  align-self: end;
  margin-top: 22px;
  padding: 0;
  background: transparent;
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 900;
  text-align: left;
}

.service-card button::after,
.excursion-card button::after {
  content: " ->";
}

.media-band {
  padding: 0 0 88px;
  background: #fff;
}

.media-band__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 42px;
  align-items: center;
}

.media-band img {
  width: 100%;
  min-height: 340px;
  max-height: 460px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.media-band h2 {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.98;
}

.media-band p {
  color: var(--muted);
  line-height: 1.7;
}

.media-band span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.excursion-section,
.routes-section,
.channels-section {
  background: var(--soft);
}

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

.excursion-card {
  min-height: 232px;
  background: #fff;
}

.fleet-section,
.operations-section {
  padding: 92px 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.98)),
    var(--soft);
}

.fleet-section__grid,
.operations-section__grid,
.launch-roadmap-section__grid,
.routes-section__grid,
.channels-section__grid,
.faq-section__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 56px;
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 132px;
}

.fleet-stack,
.operation-board,
.route-list,
.faq-list {
  display: grid;
  gap: 14px;
}

.fleet-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(20, 125, 139, 0.16);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 54px rgba(6, 36, 43, 0.08);
}

.fleet-card div {
  display: grid;
  gap: 7px;
}

.fleet-card strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.05;
}

.fleet-card span {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
}

.fleet-card p {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.fleet-card em {
  justify-self: end;
  min-width: 76px;
  text-align: center;
  border-radius: var(--radius);
  background: #eff8f8;
  color: var(--teal-dark);
  padding: 9px 10px;
  font-style: normal;
  font-weight: 900;
}

.routes-section {
  padding: 88px 0;
}

.route-list article,
.operation-board article {
  display: grid;
  gap: 7px;
  padding: 24px;
  border: 1px solid rgba(20, 125, 139, 0.14);
  border-radius: var(--radius);
  background: #fff;
}

.route-card {
  align-content: start;
  box-shadow: 0 18px 54px rgba(6, 36, 43, 0.07);
}

.route-list .route-card__kind {
  width: fit-content;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e9f7f7;
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.route-list strong {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.05;
}

.route-list p,
.route-list dd {
  color: var(--muted);
  line-height: 1.65;
}

.route-list p {
  margin-bottom: 8px;
}

.route-list dl {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.route-list dl div {
  display: grid;
  gap: 3px;
  padding-top: 10px;
  border-top: 1px solid rgba(20, 125, 139, 0.12);
}

.route-list dt {
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-list dd {
  margin: 0;
  font-size: 0.9rem;
}

.route-card button {
  justify-self: start;
  margin-top: 12px;
  padding: 0;
  background: transparent;
  color: var(--coral-dark);
  font-size: 0.88rem;
  font-weight: 900;
  text-align: left;
}

.route-card button::after {
  content: " ->";
}

.confirmation-section {
  background: #fff;
}

.confirmation-card {
  display: grid;
  gap: 13px;
  min-height: 310px;
  padding: 26px;
  border: 1px solid rgba(20, 125, 139, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 251, 0.98)),
    #fff;
}

.confirmation-card > span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.confirmation-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.05;
}

.confirmation-card p {
  color: var(--muted);
  line-height: 1.65;
}

.confirmation-card ul {
  display: grid;
  align-self: end;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #344b51;
  font-size: 0.9rem;
}

.confirmation-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--gold);
}

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

.process-steps article {
  background: #fff;
}

.process-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: #fff;
  color: var(--teal);
  box-shadow: inset 0 0 0 1px rgba(20, 125, 139, 0.18);
}

.process-steps h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.08;
}

.operation-board article {
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 8px 18px;
  box-shadow: 0 18px 54px rgba(6, 36, 43, 0.08);
}

.operation-board strong {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #e9f7f7;
  color: var(--teal-dark);
  font-size: 0.9rem;
}

.operation-board p {
  margin-bottom: 0;
}

.readiness-section {
  padding: 88px 0;
  background: #fff;
}

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

.readiness-card span,
.channel-card span {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #eef8f8;
  color: var(--teal-dark);
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.readiness-card[data-state="blocked"] span,
.channel-card[data-state="blocked"] span {
  background: #fff1ef;
  color: var(--coral-dark);
}

.readiness-card[data-state="pending"] span,
.readiness-card[data-state="setup"] span,
.channel-card[data-state="pending"] span,
.channel-card[data-state="setup"] span {
  background: #fff8e8;
  color: #8c5b11;
}

.readiness-card strong,
.channel-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.02rem;
  font-weight: 900;
}

.launch-roadmap-section {
  padding: 92px 0;
  background:
    linear-gradient(180deg, rgba(239, 248, 248, 0.98), rgba(255, 255, 255, 0.98)),
    var(--soft);
}

.missing-data-section {
  padding: 92px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 253, 253, 0.98)),
    #fff;
}

.missing-data-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.missing-data-card {
  display: grid;
  align-content: start;
  gap: 15px;
  min-height: 450px;
  padding: 22px;
  border: 1px solid rgba(20, 125, 139, 0.14);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 54px rgba(6, 36, 43, 0.08);
}

.missing-data-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.missing-data-card__top span {
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.missing-data-card__top em {
  flex: 0 0 auto;
  border-radius: 999px;
  background: #fff8e8;
  color: #8c5b11;
  padding: 6px 9px;
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.missing-data-card[data-state="blocked"] .missing-data-card__top em {
  background: #fff1ef;
  color: var(--coral-dark);
}

.missing-data-card[data-state="ready"] .missing-data-card__top em {
  background: #eef8f8;
  color: var(--teal-dark);
}

.missing-data-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.05;
}

.missing-data-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.missing-data-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 14px 0;
  border-block: 1px solid rgba(20, 125, 139, 0.12);
}

.missing-data-card dl div {
  display: grid;
  gap: 3px;
}

.missing-data-card dt,
.missing-data-card strong {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.missing-data-card dd {
  margin: 0;
  color: #344b51;
  font-size: 0.88rem;
  line-height: 1.45;
}

.missing-data-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #344b51;
  font-size: 0.86rem;
  line-height: 1.45;
}

.missing-data-card li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.missing-data-card[data-state="blocked"] li::before {
  background: var(--coral);
}

.missing-data-card[data-state="ready"] li::before {
  background: var(--teal);
}

.execution-queue-section {
  padding: 92px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 251, 0.98)),
    #fff;
}

.execution-queue {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.execution-card {
  display: grid;
  align-content: start;
  gap: 15px;
  min-height: 420px;
  padding: 22px;
  border: 1px solid rgba(20, 125, 139, 0.14);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 54px rgba(6, 36, 43, 0.08);
}

.execution-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.execution-card__top span {
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.execution-card__top em {
  flex: 0 0 auto;
  border-radius: 999px;
  background: #eef8f8;
  color: var(--teal-dark);
  padding: 6px 9px;
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.execution-card[data-state="blocked"] .execution-card__top em {
  background: #fff1ef;
  color: var(--coral-dark);
}

.execution-card[data-state="pending"] .execution-card__top em,
.execution-card[data-state="setup"] .execution-card__top em {
  background: #fff8e8;
  color: #8c5b11;
}

.execution-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.05;
}

.execution-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.execution-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 14px 0;
  border-block: 1px solid rgba(20, 125, 139, 0.12);
}

.execution-card dl div {
  display: grid;
  gap: 3px;
}

.execution-card dt,
.execution-card strong {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.execution-card dd {
  margin: 0;
  color: #344b51;
  font-size: 0.88rem;
  line-height: 1.45;
}

.execution-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #344b51;
  font-size: 0.86rem;
  line-height: 1.45;
}

.execution-card li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.execution-card[data-state="blocked"] li::before {
  background: var(--coral);
}

.execution-card[data-state="pending"] li::before,
.execution-card[data-state="setup"] li::before {
  background: var(--gold);
}

.launch-roadmap {
  display: grid;
  gap: 14px;
}

.launch-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(20, 125, 139, 0.14);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 54px rgba(6, 36, 43, 0.08);
}

.launch-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.launch-card__meta span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.launch-card__meta em {
  width: max-content;
  max-width: 100%;
  border-radius: 999px;
  background: #eef8f8;
  color: var(--teal-dark);
  padding: 6px 10px;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.launch-card[data-state="blocked"] .launch-card__meta em {
  background: #fff1ef;
  color: var(--coral-dark);
}

.launch-card[data-state="pending"] .launch-card__meta em,
.launch-card[data-state="setup"] .launch-card__meta em {
  background: #fff8e8;
  color: #8c5b11;
}

.launch-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1.05;
}

.launch-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.launch-card ul {
  display: grid;
  gap: 9px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  color: #344b51;
  font-size: 0.9rem;
}

.launch-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.launch-card[data-state="blocked"] li::before {
  background: var(--coral);
}

.launch-card[data-state="pending"] li::before,
.launch-card[data-state="setup"] li::before {
  background: var(--gold);
}

.channels-section {
  padding: 90px 0;
}

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

.social-kit-section {
  padding: 92px 0;
  background: #fff;
}

.channel-desk-section {
  padding: 92px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 248, 0.78)),
    #fff;
}

.platform-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.platform-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 360px;
  padding: 24px;
  border: 1px solid rgba(20, 125, 139, 0.14);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 54px rgba(6, 36, 43, 0.07);
}

.platform-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.platform-card__head span {
  flex: 0 0 auto;
  max-width: 100%;
  border-radius: 999px;
  background: #fff8e8;
  color: #8c5b11;
  padding: 7px 10px;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.platform-card[data-state="ready"] .platform-card__head span {
  background: #eef8f8;
  color: var(--teal-dark);
}

.platform-card[data-state="blocked"] .platform-card__head span {
  background: #fff1ef;
  color: var(--coral-dark);
}

.platform-card__head strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.05;
}

.platform-card__account {
  margin: 0;
  color: var(--teal-dark);
  font-size: 0.88rem;
  font-weight: 900;
}

.platform-card > a {
  width: fit-content;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
}

.platform-card > a::after {
  content: " ->";
}

.platform-card__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.platform-card em {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #344b51;
  font-size: 0.86rem;
  line-height: 1.45;
}

.platform-card li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.platform-card[data-state="setup"] li::before,
.platform-card[data-state="pending"] li::before {
  background: var(--gold);
}

.platform-card[data-state="blocked"] li::before {
  background: var(--coral);
}

.platform-card__blocker {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(20, 125, 139, 0.12);
  color: var(--muted);
  line-height: 1.55;
}

.platform-card__blocker strong {
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-kit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.social-kit-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 430px;
  padding: 24px;
  border: 1px solid rgba(20, 125, 139, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 251, 0.98)),
    #fff;
  box-shadow: 0 18px 54px rgba(6, 36, 43, 0.08);
}

.social-kit-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.social-kit-card__top span {
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-kit-card__top em {
  flex: 0 0 auto;
  border-radius: 999px;
  background: #fff8e8;
  color: #8c5b11;
  padding: 6px 9px;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.social-kit-card[data-state="ready"] .social-kit-card__top em {
  background: #eef8f8;
  color: var(--teal-dark);
}

.social-kit-card[data-state="blocked"] .social-kit-card__top em {
  background: #fff1ef;
  color: var(--coral-dark);
}

.social-kit-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.05;
}

.social-kit-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.social-kit-card strong {
  margin-top: 4px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-kit-card ul {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  color: #344b51;
  font-size: 0.86rem;
  line-height: 1.45;
}

.social-kit-card li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.social-kit-card[data-state="blocked"] li::before {
  background: var(--coral);
}

.quick-replies-section {
  padding: 92px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 251, 0.98)),
    #fff;
}

.quick-replies-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.quick-reply-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 16px;
  min-height: 380px;
  padding: 24px;
  border: 1px solid rgba(20, 125, 139, 0.14);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 54px rgba(6, 36, 43, 0.08);
}

.quick-reply-card__head {
  display: grid;
  gap: 8px;
}

.quick-reply-card__head span {
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  background: #fff3ec;
  color: var(--coral-dark);
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.quick-reply-card__head strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.05;
}

.quick-reply-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.quick-reply-card pre {
  min-height: 172px;
  max-height: 260px;
  margin: 0;
  overflow: auto;
  white-space: pre-wrap;
  border: 1px solid rgba(20, 125, 139, 0.14);
  border-radius: var(--radius);
  background: #f7fbfb;
  color: #284248;
  padding: 14px;
  font: 700 0.82rem/1.55 var(--font-body);
}

.quick-reply-card button {
  min-height: 44px;
  border-radius: var(--radius);
  background: var(--teal-dark);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 900;
}

.quick-reply-card button:hover {
  background: var(--coral-dark);
}

.template-status {
  min-height: 24px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.template-status[data-tone="ready"] {
  color: var(--teal-dark);
}

.template-status[data-tone="fallback"] {
  color: var(--coral-dark);
}

.template-fallback {
  width: 100%;
  min-height: 154px;
  margin-top: 14px;
  resize: vertical;
  border: 1px solid rgba(251, 90, 69, 0.28);
  border-radius: var(--radius);
  background: #fffaf7;
  color: #284248;
  padding: 16px;
  font: 700 0.92rem/1.55 var(--font-body);
}

.template-fallback[hidden] {
  display: none;
}

.faq-section {
  background: #f7fbfb;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 0 22px;
}

.faq-list summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.65;
}

.final-cta {
  padding: 62px 0;
  background: linear-gradient(135deg, #06323b, #147d8b);
  color: #fff;
}

.final-cta__inner {
  justify-content: space-between;
  gap: 24px;
}

.final-cta h2 {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1;
}

.final-cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  padding: 44px 0;
  background: #071f25;
  color: #d8f7f8;
}

.site-footer__grid {
  justify-content: space-between;
  align-items: flex-start;
  gap: 34px;
}

.site-footer__brand-mark {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 252, 245, 0.98), rgba(236, 250, 249, 0.94));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.site-footer__brand-mark img {
  width: 190px;
  height: auto;
  margin: 0;
}

.site-footer p {
  max-width: 420px;
  margin: 0;
  color: rgba(216, 247, 248, 0.72);
  line-height: 1.65;
}

.site-footer__grid > div {
  display: grid;
  gap: 8px;
}

.site-footer strong {
  color: #fff;
}

.site-footer a {
  color: #d8f7f8;
  font-weight: 800;
}

.studio-credit {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 16px;
  margin-top: 28px;
  max-width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(231, 250, 249, 0.92));
  color: #173b42;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.site-footer .studio-credit {
  color: #173b42;
}

.studio-credit:hover {
  background: #fff;
  color: #0d2c33;
  transform: translateY(-1px);
}

.site-footer .studio-credit:hover {
  color: #0d2c33;
}

.studio-credit span {
  color: inherit;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.studio-credit img {
  width: 198px;
  max-width: min(52vw, 198px);
  height: auto;
  margin: 0;
}

@media (max-width: 1080px) {
  .nav {
    min-height: 76px;
  }

  .brand {
    min-width: 220px;
  }

  .brand__mark {
    width: 50px;
    height: 50px;
  }

  .brand__wordmark {
    width: 160px;
  }

  .nav__links {
    gap: 9px;
  }

  .nav__links a {
    font-size: 0.76rem;
  }

  .header-cta {
    min-height: 44px;
    padding-inline: 16px;
  }

  .hero__grid,
  .command-section__grid,
  .fleet-section__grid,
  .operations-section__grid,
  .launch-roadmap-section__grid,
  .routes-section__grid,
  .channels-section__grid,
  .faq-section__grid,
  .media-band__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    padding-top: 48px;
  }

  .hero-desk {
    max-width: 620px;
  }

  .sticky-copy {
    position: static;
  }

  .process-steps,
  .confirmation-grid,
  .readiness-grid,
  .missing-data-grid,
  .execution-queue,
  .platform-board,
  .social-kit-grid,
  .quick-replies-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .nav {
    flex-wrap: wrap;
    padding-block: 8px 10px;
  }

  .nav__links {
    order: 3;
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav__links::-webkit-scrollbar {
    display: none;
  }

  .nav__links a {
    flex: 0 0 auto;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(20, 125, 139, 0.14);
    border-radius: 999px;
    background: #fff;
    padding: 0 11px;
    font-size: 0.74rem;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 28px, 1180px);
  }

  html {
    scroll-padding-top: 122px;
  }

  .topbar {
    display: none;
  }

  .nav {
    min-height: 72px;
    gap: 8px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    gap: 7px;
  }

  .brand__mark {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
  }

  .brand__wordmark {
    width: 122px;
    max-height: 38px;
  }

  .brand strong {
    font-size: 0.82rem;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .language-switch select {
    min-height: 40px;
    max-width: 112px;
    padding-inline: 10px;
    font-size: 0.78rem;
  }

  .nav__links a {
    min-height: 32px;
    padding-inline: 10px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: auto;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.84) 46%, rgba(255, 255, 255, 0.96) 100%);
  }

  .hero__grid {
    min-height: auto;
    padding: 34px 0 54px;
    gap: 34px;
  }

  .hero__logo {
    width: min(64vw, 196px);
    margin-bottom: 16px;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(2.18rem, 10.5vw, 3.35rem);
    line-height: 1;
  }

  .hero__lead {
    font-size: 1rem;
    line-height: 1.58;
    margin-bottom: 24px;
  }

  .button {
    width: 100%;
    min-height: 46px;
    padding-inline: 16px;
  }

  .trust-row span {
    width: 100%;
    min-height: 36px;
    padding-block: 8px;
    line-height: 1.3;
  }

  .quote-panel {
    padding: 18px;
  }

  .quote-panel__split,
  .command-grid,
  .service-cards,
  .excursion-grid,
  .confirmation-grid,
  .process-steps,
  .readiness-grid,
  .channel-grid,
  .missing-data-grid,
  .execution-queue,
  .platform-board,
  .social-kit-grid,
  .quick-replies-grid {
    grid-template-columns: 1fr;
  }

  .platform-card__columns {
    grid-template-columns: 1fr;
  }

  .command-section,
  .service-preview,
  .excursion-section,
  .confirmation-section,
  .process-section,
  .fleet-section,
  .operations-section,
  .routes-section,
  .readiness-section,
  .launch-roadmap-section,
  .missing-data-section,
  .execution-queue-section,
  .channels-section,
  .channel-desk-section,
  .social-kit-section,
  .quick-replies-section,
  .faq-section {
    padding: 58px 0;
  }

  .section-head h2,
  .section-copy h2 {
    font-size: clamp(2.1rem, 11vw, 3.4rem);
  }

  .media-band {
    padding-bottom: 58px;
  }

  .media-band img {
    min-height: 260px;
  }

  .command-card,
  .service-card,
  .excursion-card,
  .confirmation-card,
  .missing-data-card,
  .execution-card,
  .platform-card,
  .social-kit-card,
  .quick-reply-card {
    min-height: auto;
    padding: 20px;
  }

  .launch-card__meta,
  .platform-card__head,
  .missing-data-card__top,
  .execution-card__top,
  .social-kit-card__top {
    display: grid;
    justify-content: start;
    gap: 10px;
  }

  .launch-card__meta em,
  .platform-card__head span,
  .missing-data-card__top em,
  .execution-card__top em,
  .social-kit-card__top em {
    width: fit-content;
  }

  .fleet-card,
  .operation-board article {
    grid-template-columns: 1fr;
  }

  .fleet-card em {
    justify-self: start;
  }

  .operation-board strong {
    grid-row: auto;
  }

  .final-cta__inner,
  .site-footer__grid {
    display: grid;
  }

  .site-footer__brand-mark {
    width: 100%;
    padding: 10px 12px;
  }

  .site-footer__brand-mark img {
    width: min(100%, 190px);
  }

  .studio-credit {
    display: grid;
    justify-items: start;
    width: 100%;
    gap: 10px;
    padding: 16px;
  }

  .studio-credit img {
    max-width: 100%;
  }

  .studio-credit span {
    white-space: normal;
  }
}

@media (max-width: 420px) {
  :root {
    --container: min(100vw - 24px, 1180px);
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .brand__wordmark {
    width: 108px;
    max-height: 34px;
  }

  .language-switch select {
    max-width: 104px;
    min-height: 38px;
    padding-inline: 8px;
    font-size: 0.74rem;
  }

  .nav__links {
    gap: 7px;
  }

  .nav__links a {
    min-height: 31px;
    padding-inline: 9px;
    font-size: 0.7rem;
  }

  .hero__grid {
    padding-top: 28px;
  }

  .hero__logo {
    width: min(68vw, 184px);
  }

  h1 {
    font-size: clamp(2rem, 10.2vw, 2.75rem);
  }

  .section-head h2,
  .section-copy h2,
  .final-cta h2 {
    font-size: clamp(1.95rem, 10vw, 2.75rem);
    line-height: 1.02;
  }

  .quote-quality {
    grid-template-columns: 1fr;
  }

  .quote-panel input,
  .quote-panel select,
  .quote-panel textarea {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
