:root {
  --bg: #080B12;
  --bg-secondary: #0F1629;
  --bg-card: #0D1A2D;
  --fg: #F0EDE6;
  --fg-muted: #8A9BB0;
  --accent: #D4A843;
  --accent-dim: rgba(212, 168, 67, 0.15);
  --accent-glow: rgba(212, 168, 67, 0.08);
  --border: rgba(212, 168, 67, 0.12);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;
}

:root[data-theme="light"] {
  --bg: #F8F5EE;
  --bg-secondary: #EDE9E1;
  --bg-card: #FFFFFF;
  --fg: #1A1A1A;
  --fg-muted: #6B7280;
  --accent: #B8912A;
  --accent-dim: rgba(184, 145, 42, 0.12);
  --accent-glow: rgba(184, 145, 42, 0.06);
  --border: rgba(184, 145, 42, 0.2);
}

[data-theme="light"] .app-nav { background: var(--bg); }
[data-theme="light"] .filter-sidebar { background: var(--bg-secondary); }
[data-theme="light"] .flight-card { background: var(--bg-card); border-color: var(--border); }
[data-theme="light"] .filter-input, [data-theme="light"] .passenger-select, [data-theme="light"] .sort-select {
  background: var(--bg-card);
}
[data-theme="light"] .class-chip { background: var(--bg-card); }
[data-theme="light"] .empty-icon { background: var(--accent-dim); }
[data-theme="light"] .results-header { background: var(--bg); }
[data-theme="light"] .flights-hero { background: #1A1A1A; }
[data-theme="light"] .flights-hero::before { background: #1A1A1A; }
[data-theme="light"] .flights-hero .flights-headline,
[data-theme="light"] .flights-hero .flights-eyebrow-text { color: #F0EDE6; }
[data-theme="light"] .flights-hero .flights-sub { color: #8A9BB0; }

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px clamp(40px, 8vw, 96px);
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}

.eyebrow-text {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 28px;
}

.stat:first-child { padding-left: 0; }


.stat-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  font-weight: 400;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0D1A2D 0%, #080B12 60%, #0a1628 100%);
}

.atmosphere {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.runway-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(212, 168, 67, 0.04) 0%, transparent 100%);
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 168, 67, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 168, 67, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 60%, black 40%, transparent 100%);
}

.airplane-art {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plane-svg {
  width: 100%;
  max-width: 520px;
  height: auto;
  position: relative;
  z-index: 2;
}

.glow-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.glow-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.glow-2 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.12) 0%, transparent 70%);
  bottom: 20%;
  right: 15%;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.scroll-text {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.5;
}

/* ─── SHARED SECTION STYLES ─── */
.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.label-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

.label-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.6;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 20px;
}

.section-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 560px;
}

.section-body.centered {
  text-align: center;
  margin: 0 auto 56px;
}

/* ─── OPERATORS ─── */
.operators {
  padding: 120px 0;
  position: relative;
}

.operators::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.operators-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.operators-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 48px;
  margin-bottom: 32px;
}

.operator-card {
  background: var(--bg-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.2s ease;
  cursor: default;
}

.operator-card:hover {
  background: #0f1f35;
}

.operator-icon {
  margin-bottom: 8px;
}

.operator-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: 0.02em;
}

.operator-region {
  font-size: 11px;
  font-weight: 300;
  color: var(--fg-muted);
  opacity: 0.6;
}

.operator-more {
  background: rgba(212, 168, 67, 0.03);
}

.operators-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 24px;
  background: var(--accent-glow);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.operators-note p {
  font-size: 13px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ─── ROUTES ─── */
.routes {
  padding: 120px 0;
  position: relative;
}

.routes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.routes-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}

.process-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
}

.step-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  padding-top: 2px;
}

.step-content h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 6px;
}

.step-content p {
  font-size: 13px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.6;
}

.map-container {
  position: relative;
}

.map-bg {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

.route-map-svg {
  width: 100%;
  height: 100%;
}

.map-overlay-text {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
}

.map-overlay-text span {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.5;
}

/* ─── PRICING ─── */
.pricing {
  padding: 120px 0;
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  transition: border-color 0.3s ease;
}

.pricing-card-accent {
  border-color: rgba(212, 168, 67, 0.3);
  background: linear-gradient(135deg, #0f1a2e 0%, #0d1a2d 100%);
}

.card-header {
  margin-bottom: 24px;
}

.card-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
}

.card-badge {
  display: inline-block;
  margin-left: 12px;
  padding: 3px 10px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 10px;
  font-weight: 400;
  color: var(--accent);
  opacity: 0.8;
}

.card-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.price-from {
  font-size: 12px;
  font-weight: 300;
  color: var(--fg-muted);
}

.price-value {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}

.price-note {
  font-size: 12px;
  font-weight: 300;
  color: var(--fg-muted);
}

.card-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 300;
  color: var(--fg-muted);
}

/* ─── CLOSING ─── */
.closing {
  position: relative;
  padding: 160px 0 120px;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  position: relative;
}

.closing-bg-art {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  overflow: hidden;
  pointer-events: none;
}

.closing-svg {
  width: 100%;
  height: 300px;
}

.closing-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}

.closing-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 560px;
}

.closing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 16px;
  background: var(--accent-glow);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 400;
  color: var(--accent);
  opacity: 0.7;
  letter-spacing: 0.03em;
}

/* ─── FOOTER ─── */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.05em;
}

.footer-tagline {
  font-size: 12px;
  font-weight: 300;
  color: var(--fg-muted);
  opacity: 0.6;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 300;
  color: var(--fg-muted);
  opacity: 0.5;
}

.footer-sep { opacity: 0.4; }

/* ─── APP SHELL ─── */
.app-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,11,18,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(24px, 5vw, 80px); height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-brand-name { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--fg); letter-spacing: 0.05em; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 8px 14px; border-radius: 6px; font-size: 13px; font-weight: 400; color: var(--fg-muted); text-decoration: none; transition: color .15s, background .15s; }
.nav-link:hover { color: var(--fg); background: var(--accent-glow); }
.nav-link.active { color: var(--fg); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.lang-toggle { display: flex; gap: 2px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.lang-btn { padding: 5px 10px; font-size: 11px; font-weight: 500; color: var(--fg-muted); background: transparent; border: none; cursor: pointer; transition: all .15s; text-decoration: none; display: inline-block; }
.lang-btn.active { color: var(--accent); background: var(--accent-dim); }
.lang-btn:hover:not(.active) { color: var(--fg); }

/* ─── APP CONTAINER ─── */
.app-container { max-width: 1200px; margin: 0 auto; padding: 40px clamp(24px, 5vw, 80px); }
.app-page-header { margin-bottom: 40px; }
.app-page-title { font-family: var(--font-display); font-size: clamp(28px,4vw,42px); font-weight: 600; color: var(--fg); margin-bottom: 8px; }
.app-page-subtitle { font-size: 15px; color: var(--fg-muted); font-weight: 300; }

/* ─── FLIGHT CARDS ─── */
.flight-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.flight-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 24px; transition: border-color .2s, transform .2s; display: flex; flex-direction: column; gap: 16px; }
.flight-card:hover { border-color: rgba(212,168,67,.3); transform: translateY(-2px); }
.flight-route { display: flex; align-items: center; gap: 12px; }
.flight-airport { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--fg); }
.flight-arrow { color: var(--accent); font-size: 18px; opacity: .6; }
.flight-datetime { font-size: 12px; color: var(--fg-muted); margin-top: 4px; }
.flight-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid var(--border); }
.flight-aircraft { font-size: 13px; color: var(--fg-muted); }
.flight-price { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--accent); }
.flight-seats { font-size: 11px; color: var(--fg-muted); text-align: right; }

/* ─── FILTER BAR ─── */
.filter-bar { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; padding: 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; }
.filter-field { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 160px; }
.filter-label { font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-muted); opacity: .7; }
.filter-input, .filter-select { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: 6px; padding: 10px 12px; color: var(--fg); font-family: var(--font-body); font-size: 14px; font-weight: 300; outline: none; transition: border-color .2s; }
.filter-input:focus, .filter-select:focus { border-color: rgba(212,168,67,.4); }
.filter-select { appearance: none; cursor: pointer; }

/* ─── BUTTONS ─── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border-radius: 8px; font-family: var(--font-body); font-size: 14px; font-weight: 400; cursor: pointer; text-decoration: none; border: none; transition: all .2s; }
.btn-primary { background: var(--accent); color: #0a0a0a; }
.btn-primary:hover { background: #e0b850; transform: translateY(-1px); }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--fg-muted); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ─── FORMS ─── */
.form-card { max-width: 440px; margin: 0 auto; padding: 48px 40px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; }
.form-title { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--fg); margin-bottom: 8px; text-align: center; }
.form-subtitle { font-size: 14px; color: var(--fg-muted); text-align: center; margin-bottom: 32px; }
.form-field { margin-bottom: 20px; }
.form-label { display: block; font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 8px; opacity: .7; }
.form-input { width: 100%; background: var(--bg-secondary); border: 1px solid var(--border); border-radius: 8px; padding: 12px 16px; color: var(--fg); font-family: var(--font-body); font-size: 14px; font-weight: 300; outline: none; transition: border-color .2s; }
.form-input:focus { border-color: rgba(212,168,67,.4); }
.form-error { color: #e05a5a; font-size: 13px; margin-top: 16px; padding: 12px 16px; background: rgba(224,90,90,.1); border: 1px solid rgba(224,90,90,.2); border-radius: 8px; }
.form-success { color: #5adf9a; font-size: 13px; margin-top: 16px; padding: 12px 16px; background: rgba(90,223,154,.1); border: 1px solid rgba(90,223,154,.2); border-radius: 8px; }
.form-link { font-size: 13px; color: var(--fg-muted); text-align: center; margin-top: 24px; }
.form-link a { color: var(--accent); text-decoration: none; }
.form-link a:hover { text-decoration: underline; }

/* ─── BOOKING LIST ─── */
.booking-list { display: flex; flex-direction: column; gap: 16px; }
.booking-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 20px 24px; display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center; transition: border-color .2s; }
.booking-item:hover { border-color: rgba(212,168,67,.3); }
.booking-info { display: flex; flex-direction: column; gap: 6px; }
.booking-route { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--fg); }
.booking-meta { font-size: 13px; color: var(--fg-muted); }
.booking-status { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 500; letter-spacing: .05em; }
.status-confirmed { background: rgba(90,223,154,.1); color: #5adf9a; border: 1px solid rgba(90,223,154,.2); }
.status-pending   { background: rgba(212,168,67,.1); color: var(--accent); border: 1px solid rgba(212,168,67,.2); }
.status-cancelled { background: rgba(224,90,90,.1); color: #e05a5a; border: 1px solid rgba(224,90,90,.2); }
.status-completed { background: rgba(138,155,176,.1); color: var(--fg-muted); border: 1px solid rgba(138,155,176,.2); }

/* ─── WHATSAPP WIDGET ─── */
.wa-widget { position: fixed; bottom: 28px; right: 28px; z-index: 9999; }
.wa-btn { display: flex; align-items: center; gap: 10px; padding: 14px 20px; background: #25D366; border-radius: 50px; color: white; font-family: var(--font-body); font-size: 14px; font-weight: 500; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: transform .2s, box-shadow .2s; }
.wa-btn:hover { transform: scale(1.05); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
.wa-icon { width: 24px; height: 24px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* ─── DASHBOARD ─── */
.dashboard-hero { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 40px; margin-bottom: 40px; display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; }
.dashboard-welcome { font-family: var(--font-display); font-size: clamp(24px,3vw,36px); font-weight: 600; color: var(--fg); margin-bottom: 8px; }
.dashboard-sub { font-size: 15px; color: var(--fg-muted); font-weight: 300; }

/* ─── CONFIRMATION ─── */
.confirm-card { max-width: 480px; margin: 0 auto; padding: 48px 40px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; text-align: center; }
.confirm-icon { width: 64px; height: 64px; margin: 0 auto 24px; background: rgba(90,223,154,.1); border: 1px solid rgba(90,223,154,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.confirm-title { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--fg); margin-bottom: 12px; }
.confirm-msg { font-size: 15px; color: var(--fg-muted); font-weight: 300; margin-bottom: 32px; }

/* ─── PROFILE ─── */
.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-right {
    height: 280px;
    order: -1;
  }

  .hero-left {
    padding: 60px 24px 40px;
  }

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

  .routes-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .operators-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }

  .stat {
    padding: 0;
  }

  .pricing-card {
    padding: 28px;
  }

  .closing {
    padding: 80px 0 60px;
  }

  .closing-headline br { display: none; }
}