:root {
  --bg: #f3f6fb;
  --surface: #ffffff;
  --surface-alt: #f7faff;
  --text: #0f172a;
  --muted: #4f5d75;
  --line: #d7dfeb;
  --primary: #1650d2;
  --primary-dark: #0d2f88;
  --primary-soft: #edf3ff;
  --accent: #ff7b2c;
  --accent-dark: #e36518;
  --shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 22px 60px rgba(15, 23, 42, 0.14);
  --radius: 22px;
  --radius-sm: 16px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(22, 80, 210, 0.10), transparent 26rem),
    radial-gradient(circle at 85% 12%, rgba(255, 123, 44, 0.08), transparent 20rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 52%, #eef3f9 100%);
  line-height: 1.6;
}

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

img {
  height: auto;
}

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

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
  background: none;
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--text);
  color: #fff;
  border-radius: 999px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.top-notice {
  background: #fff6bf;
  color: #6c5a1a;
  padding: 0.2rem 1rem 0.45rem;
  font-size: 0.72rem;
  line-height: 1.25;
  text-align: center;
}

.top-notice strong {
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(215, 223, 235, 0.88);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.95rem 0;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-wrap:hover .brand-mark-img,
.brand-wrap:focus-visible .brand-mark-img {
  transform: translateY(-1px);
}

.brand-mark-img {
  width: 2.6rem;
  height: 2.6rem;
  flex-shrink: 0;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(22, 80, 210, 0.24);
  transition: transform 0.18s ease;
}

.brand-copy {
  min-width: 0;
}

.brand-wordmark {
  width: auto;
  max-width: min(11.5rem, 42vw);
  height: 1.65rem;
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-weight: 800;
  line-height: 1.05;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  word-break: break-word;
  position: relative;
  padding-bottom: 0.2rem;
}

.brand-name::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(22, 80, 210, 0.18), rgba(255, 123, 44, 0.65));
  transform-origin: left;
  transform: scaleX(0.72);
}

.brand-name-main {
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.brand-name-accent {
  color: var(--accent-dark);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.brand-tagline {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.cta,
.cta-secondary,
.hero-select,
.problem-card,
.category-tile {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.cta,
.cta-secondary,
.hero-select {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.15rem;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
}

.cta {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #ff9a57);
  box-shadow: 0 16px 36px rgba(255, 123, 44, 0.28);
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--accent-dark), #f37c2c);
}

.cta-secondary,
.hero-select {
  background: rgba(255, 255, 255, 0.88);
  color: var(--primary-dark);
  border: 1px solid rgba(22, 80, 210, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.cta-secondary:hover,
.cta-secondary:focus-visible,
.hero-select:hover,
.hero-select:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(22, 80, 210, 0.28);
  background: #f7faff;
}

.cta:focus-visible,
.cta-secondary:focus-visible,
.hero-select:focus-visible,
.problem-card:focus-visible,
.category-tile:focus-visible,
.faq-item summary:focus-visible,
input:focus-visible,
.footer-link-button:focus-visible {
  outline: 3px solid rgba(15, 99, 255, 0.28);
  outline-offset: 3px;
}

main section {
  padding: 2.5rem 0;
}

.hero {
  position: relative;
  padding: 2.6rem 0 2.35rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(94deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.62) 100%),
    radial-gradient(circle at 86% 22%, rgba(22, 80, 210, 0.14), transparent 20rem),
    url("images/ausfall-board.svg");
  background-position: center;
  background-size: cover;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 7rem;
  background: linear-gradient(180deg, rgba(245, 247, 251, 0), rgba(245, 247, 251, 0.95));
  z-index: 0;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.hero-copy {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: calc(var(--radius) + 6px);
  padding: 1.45rem;
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(14px);
}

.hero .conversion-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  background: linear-gradient(155deg, rgba(10, 26, 58, 0.96), rgba(22, 80, 210, 0.84));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-strong);
  color: #ffffff;
}

.hero .conversion-card::before {
  content: "";
  position: absolute;
  inset: auto -4rem -4rem auto;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 70%);
  pointer-events: none;
}

.hero .conversion-card .card-media {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: calc(var(--radius-sm) - 2px);
  margin-bottom: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero .conversion-card h2,
.hero .conversion-card p,
.hero .conversion-card a {
  position: relative;
  z-index: 1;
}

.hero .conversion-card h2 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.hero .conversion-card p {
  color: rgba(255, 255, 255, 0.82);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h1 {
  margin-top: 0.2rem;
  font-size: clamp(2.2rem, 6vw, 4.35rem);
  max-width: 11ch;
}

.hero-copy p,
.section-intro,
.conversion-card p,
.urgency-card p,
.final-cta p {
  color: var(--muted);
  margin: 1rem 0 0;
  font-size: 1rem;
}

.hero-search {
  margin-top: 1.35rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(215, 223, 235, 0.92);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.05rem;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.search-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  text-align: center;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.search-icon {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  color: var(--muted);
}

.search-input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 0;
}

.search-input::placeholder {
  color: #78829b;
}

.hero-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.hero-trust {
  margin-top: 0.95rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.hero-search .hero-trust,
.hero-search .call-rate-notice {
  margin-top: 0.4rem;
  font-size: 0.62rem;
  line-height: 1.35;
  color: #64748b;
}

.hero-search .call-rate-notice strong {
  color: #64748b;
  font-weight: 400;
}

.call-rate-notice {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
}

.call-rate-notice strong {
  color: inherit;
  font-weight: 400;
}

.transport-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 1.15rem;
}

.transport-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(215, 223, 235, 0.9);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.card-media,
.tile-media,
.step-media,
.section-banner img,
.page-banner img {
  width: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-sm) - 2px);
}

.card-media {
  aspect-ratio: 16 / 9;
  margin-bottom: 0.85rem;
}

.board-media {
  padding: 0.7rem 0.8rem;
  border-radius: calc(var(--radius-sm) - 2px);
  background: linear-gradient(180deg, #101b2d, #16243b);
  border: 1px solid #263b5c;
  color: #d8e6ff;
  display: grid;
  align-content: start;
  gap: 0.45rem;
}

.board-title {
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: #9fc2ff;
  margin-bottom: 0.1rem;
}

.board-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.8rem;
  padding: 0.28rem 0.35rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

.board-cancel {
  color: #ff6b6b;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.airport-screen {
  min-height: 9.5rem;
  background: linear-gradient(180deg, #0b1424 0%, #152640 100%);
  box-shadow: inset 0 0 0 1px rgba(143, 178, 255, 0.12);
}

.airport-screen .board-row {
  font-size: 0.74rem;
}

.airport-screen .board-row span:first-child {
  flex: 1;
  min-width: 0;
  font-weight: 700;
}

.airport-screen .board-row span:nth-child(2) {
  color: #b8cff0;
  font-variant-numeric: tabular-nums;
}

.board-ok {
  color: #5ee08a;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.board-warn {
  color: #ffb020;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.rebook-media {
  position: relative;
  min-height: 9.5rem;
  padding: 0;
  overflow: hidden;
  border: 1px solid #9ec5ef;
  background: #b9dcff;
}

.rebook-map {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 9.5rem;
}

.rebook-train {
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  transform: translateX(-50%);
  width: 8.5rem;
}

.train-body {
  display: flex;
  gap: 0.28rem;
  padding: 0.35rem 0.45rem;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, #ff8f3c, #e36518);
  border: 2px solid #b84f12;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.2);
}

.train-window {
  width: 1.35rem;
  height: 0.85rem;
  border-radius: 3px;
  background: #dff3ff;
  border: 1px solid #8eb4d8;
}

.train-wheels {
  display: flex;
  justify-content: space-between;
  padding: 0 0.55rem;
  margin-top: -0.15rem;
}

.train-wheels span {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #1e293b;
  border: 2px solid #64748b;
}

.bus-media {
  position: relative;
  min-height: 9.5rem;
  overflow: hidden;
  border: 1px solid #9eb6d4;
  background: linear-gradient(180deg, #dbeafe 0%, #bfdbfe 45%, #94a3b8 100%);
}

.bus-road {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2.4rem;
  background: #475569;
  border-top: 3px solid #f8fafc;
}

.bus-road::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 3px;
  transform: translateY(-50%);
  background: repeating-linear-gradient(90deg, #facc15 0 14px, transparent 14px 28px);
}

.coach-bus {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 0;
  width: min(92%, 18rem);
}

.coach-front {
  position: relative;
  flex-shrink: 0;
  width: 2.1rem;
  height: 3.1rem;
  border-radius: 10px 4px 4px 10px;
  background: linear-gradient(180deg, #ffffff, #e2e8f0);
  border: 2px solid #1650d2;
  border-right: 0;
  box-shadow: inset -6px 0 0 rgba(22, 80, 210, 0.15);
}

.coach-front::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0.55rem;
  width: 1.2rem;
  height: 1.5rem;
  border-radius: 4px;
  background: linear-gradient(135deg, #b9dcff, #7eb6ef);
  border: 1px solid #5b8ec9;
}

.coach-body {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.22rem;
  flex: 1;
  min-height: 3.1rem;
  padding: 0.35rem 0.45rem;
  border-radius: 4px;
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  border: 2px solid #1650d2;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}

.coach-body::after {
  content: "BUS";
  position: absolute;
  right: 0.45rem;
  bottom: 0.2rem;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #1650d2;
  opacity: 0.75;
}

.coach-window {
  width: 1.15rem;
  height: 1.35rem;
  border-radius: 3px;
  background: linear-gradient(180deg, #dff3ff, #9ec5ef);
  border: 1px solid #6b9fd4;
}

.coach-wheels {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: -0.55rem;
  display: flex;
  justify-content: space-between;
}

.coach-wheels span {
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: #0f172a;
  border: 2px solid #64748b;
}

.hotel-media {
  position: relative;
  min-height: 9.5rem;
  padding: 0.85rem 0.9rem 0.75rem;
  background: linear-gradient(145deg, #fff7ed 0%, #fde8d4 55%, #f8d9b8 100%);
  border: 1px solid #f0c9a0;
  overflow: hidden;
}

.hotel-building {
  position: relative;
  width: min(72%, 11rem);
  margin: 0.15rem auto 0;
}

.hotel-sign {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  color: #9a3412;
}

.hotel-facade {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  padding: 0.55rem 0.5rem 0.65rem;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, #ffffff 0%, #fff1e4 100%);
  border: 2px solid #ea580c;
  box-shadow: 0 8px 18px rgba(124, 45, 18, 0.14);
}

.hotel-window {
  height: 1.1rem;
  border-radius: 3px;
  background: linear-gradient(180deg, #fff7d6, #fcd34d);
  border: 1px solid #f59e0b;
}

.hotel-door {
  grid-column: 2;
  height: 1.45rem;
  margin-top: 0.1rem;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, #fdba74, #ea580c);
  border: 1px solid #c2410c;
}

.booking-chip {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.28rem 0.45rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #d4d4d8;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.1);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1650d2;
}

.ticket-media {
  position: relative;
  min-height: 9.5rem;
  padding: 0.85rem 0.9rem 0.75rem;
  background: linear-gradient(145deg, #e8f2ff 0%, #d4e4fb 55%, #c5d9f5 100%);
  border: 1px solid #b8cfea;
  overflow: hidden;
}

.ticket-media::before {
  content: "";
  position: absolute;
  right: 0.65rem;
  top: 0.55rem;
  width: 2.4rem;
  height: 2.4rem;
  background:
    linear-gradient(135deg, transparent 42%, #1650d2 42%, #1650d2 58%, transparent 58%),
    linear-gradient(45deg, transparent 42%, #1650d2 42%, #1650d2 58%, transparent 58%);
  opacity: 0.22;
  transform: rotate(-8deg);
}

.flight-pass {
  position: relative;
  width: min(88%, 17.5rem);
  padding: 0.55rem 0.65rem 0.5rem;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #c8d9ee;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1e293b;
}

.flight-pass-back {
  margin-left: 0.35rem;
  transform: rotate(-4deg);
  opacity: 0.92;
  z-index: 1;
}

.flight-pass-front {
  margin-top: -3.1rem;
  margin-left: 1.35rem;
  z-index: 2;
}

.flight-pass-head {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #1650d2;
}

.flight-pass-route {
  margin-top: 0.2rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #0f172a;
}

.flight-pass-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #475569;
}

.flight-pass-barcode {
  margin-top: 0.45rem;
  height: 0.85rem;
  border-radius: 2px;
  background: repeating-linear-gradient(
    90deg,
    #0f172a 0 2px,
    transparent 2px 4px,
    #0f172a 4px 5px,
    transparent 5px 8px
  );
}

.tile-media {
  aspect-ratio: 4 / 3;
  margin-bottom: 0.7rem;
}

.step-media {
  aspect-ratio: 16 / 10;
  margin-bottom: 0.85rem;
}

.problem-card,
.category-tile,
.step-card {
  overflow: hidden;
}

.section-banner {
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.section-banner img {
  aspect-ratio: 21 / 7;
  max-height: 220px;
}

.conversion-card.has-media,
.urgency-card.has-media,
.final-cta.has-media {
  display: grid;
  gap: 1.1rem;
}

.conversion-card.has-media .section-banner,
.urgency-card.has-media .section-banner,
.final-cta.has-media .section-banner {
  margin: -0.25rem -0.25rem 0;
  border: 0;
  box-shadow: none;
  border-radius: calc(var(--radius) - 4px);
}

.page-banner {
  margin-bottom: 1.35rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.page-banner img {
  aspect-ratio: 21 / 6;
  max-height: 180px;
}

.legal-content {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.45rem;
}

.section-heading h2 {
  font-size: clamp(1.65rem, 4vw, 2.6rem);
}

.section-intro {
  max-width: 58ch;
}

.problem-grid,
.category-grid,
.steps-grid {
  display: grid;
  gap: 1.05rem;
}

.problem-card,
.category-tile,
.step-card,
.conversion-card,
.urgency-card,
.final-cta,
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.problem-card {
  width: 100%;
  text-align: left;
  padding: 1.25rem;
  background: linear-gradient(180deg, #ffffff, #f9fbff);
}

.problem-card:hover,
.problem-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(22, 80, 210, 0.22);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

.problem-card strong,
.category-tile strong,
.step-card h3 {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 0.45rem;
}

.problem-card p,
.category-tile p,
.step-card p,
.footer-note,
.footer-mini p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.conversion-card,
.urgency-card,
.final-cta {
  padding: 1.45rem;
}

.conversion-card,
.final-cta {
  background:
    linear-gradient(145deg, rgba(22, 80, 210, 0.08), rgba(255, 123, 44, 0.06)),
    var(--surface);
}

.urgency-card {
  background:
    linear-gradient(145deg, rgba(13, 47, 136, 0.04), rgba(255, 255, 255, 0.98)),
    var(--surface);
}

.steps-grid {
  counter-reset: step-counter;
}

.step-card {
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #fbfcff);
}

.step-card::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  right: 1rem;
  top: 0.8rem;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 800;
  color: rgba(15, 99, 255, 0.10);
}

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

.category-tile {
  padding: 1.05rem;
  background: linear-gradient(180deg, #ffffff, #f9fbff);
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #fbfcff);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 1.8rem;
  height: 1.8rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 1.15rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
}

.site-footer {
  padding: 2.8rem 0 2.8rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), #f7f9fd);
  border-top: 1px solid rgba(215, 223, 235, 0.9);
}

.footer-layout {
  display: grid;
  gap: 1.35rem;
}

.footer-top {
  display: grid;
  gap: 1.15rem;
}

.footer-contact-card {
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(215, 223, 235, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.footer-contact-card h3 {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
}

.footer-nav a {
  color: var(--muted);
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--primary-dark);
}

.footer-bottom {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  text-align: center;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(215, 223, 235, 0.9);
}

.footer-copyright {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.footer-disclaimer {
  margin: 0;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(215, 223, 235, 0.6);
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: 62ch;
}

.footer-disclaimer strong {
  font-weight: 400;
}

.footer-grid {
  display: grid;
  gap: 1rem;
}

.footer-brand {
  display: grid;
  gap: 0.55rem;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
}

.footer-mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(22, 80, 210, 0.18);
}

.footer-wordmark {
  width: auto;
  max-width: 9.5rem;
  height: 1.45rem;
}

.footer-brand strong,
.footer-company-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.footer-company-name {
  margin: 0;
}

.footer-brand-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-address {
  font-style: normal;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.footer-contact-list li {
  display: grid;
  gap: 0.12rem;
}

.footer-contact-list .contact-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-contact-list a {
  color: var(--primary-dark);
  text-decoration: none;
  word-break: break-word;
}

.footer-contact-list a:hover,
.footer-contact-list a:focus-visible {
  text-decoration: underline;
}

.contact-grid {
  display: grid;
  gap: 0.9rem;
}

.contact-card {
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(215, 223, 235, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.contact-card h3 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-card a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 500;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.95rem;
  align-items: center;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--primary-dark);
}

.footer-link-button {
  padding: 0;
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-link-button:hover {
  color: var(--primary-dark);
}

.footer-mini {
  display: grid;
  gap: 0.85rem;
  color: var(--muted);
}

.footer-mini > div {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(215, 223, 235, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.footer-mini h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.footer-note strong {
  color: inherit;
  font-weight: 400;
}

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

/* Cookie modal */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.fast-call-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.fast-call-modal {
  width: min(520px, 100% - 2rem);
  background: linear-gradient(155deg, rgba(10, 26, 58, 0.96), rgba(22, 80, 210, 0.84));
  color: #ffffff;
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.28);
  padding: 1.6rem 1.5rem 1.35rem;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.fast-call-close {
  position: absolute;
  top: 0.6rem;
  right: 0.7rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1;
  display: grid;
  place-items: center;
}

.fast-call-modal h2 {
  margin: 0 2.25rem 0 0;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

.fast-call-modal p {
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.fast-call-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.fast-call-actions .cta-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.cookie-modal {
  width: min(480px, 100% - 2rem);
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.28);
  padding: 1.6rem 1.5rem 1.4rem;
}

.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.cookie-modal p {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0.35rem 0;
}

.cookie-options {
  margin-top: 0.9rem;
  padding: 0.75rem 0.85rem;
  border-radius: 18px;
  background: #f7f9ff;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.cookie-option + .cookie-option {
  margin-top: 0.55rem;
}

.cookie-option strong {
  display: block;
  color: var(--text);
}

.cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.cookie-btn {
  min-height: 2.5rem;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #ffffff;
  font-size: 0.93rem;
}

.cookie-btn-primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), #ff9a57);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(255, 123, 44, 0.28);
}

.cookie-btn-primary:hover,
.cookie-btn-primary:focus-visible {
  background: linear-gradient(135deg, var(--accent-dark), #f37c2c);
}

@media (max-width: 559px) {
  .transport-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .transport-strip img:nth-child(n + 4) {
    display: none;
  }
}

@media (max-width: 699px) {
  .hero-copy {
    text-align: center;
  }

  h1 {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-items: center;
  }

  #common-problems .section-heading {
    gap: 0.5rem;
    margin-bottom: 1.1rem;
  }

  #common-problems .section-heading h2 {
    font-size: clamp(1.45rem, 6.2vw, 1.75rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-wrap: balance;
  }

  #common-problems .section-intro {
    font-size: 0.97rem;
    line-height: 1.45;
    text-wrap: pretty;
  }

  #common-problems .problem-card {
    padding: 1rem;
  }

  #common-problems .problem-card .card-media {
    aspect-ratio: 16 / 8.5;
    max-height: 7.6rem;
    margin-bottom: 0.72rem;
  }

  #common-problems .problem-card .board-media,
  #common-problems .problem-card .rebook-media,
  #common-problems .problem-card .ticket-media {
    min-height: 7.6rem;
  }
}

@media (min-width: 700px) {
  .conversion-card.has-media,
  .urgency-card.has-media,
  .final-cta.has-media {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
  }

  .hero-actions {
    grid-template-columns: auto auto;
    justify-content: start;
  }

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

  .footer-grid {
    grid-template-columns: 1.3fr 1fr;
    align-items: start;
  }

  .footer-top {
    grid-template-columns: 1.35fr 1fr;
    align-items: start;
  }

  .footer-contact-card .footer-contact-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 960px) {
  main section {
    padding: 3.8rem 0;
  }

  .hero {
    padding: 3.5rem 0 3rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
    gap: 1.7rem;
  }

  .hero-copy {
    padding: 2.1rem;
  }

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

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

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

  .footer-mini {
    grid-template-columns: minmax(0, 1fr);
  }

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

@media (min-width: 720px) {
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

