@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #1a4dff;
  --accent: #00c2ff;
  --dark: #0f172a;
  --light: #f8fafc;
  --muted: #64748b;
  --line: #dbe5ff;
  --panel: #ffffff;
  --glow: 0 20px 48px rgba(26, 77, 255, 0.16);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--dark);
  line-height: 1.5;
  background: #f5f8ff;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Shared content wrapper — constrains width inside full-bleed sections */
.content-wrap {
  width: min(1320px, 92vw);
  margin: 0 auto;
}

/* Legacy container alias (docs pages etc.) */
.container { width: min(1200px, 94vw); margin: 0 auto; }

/* ── NAV ──────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(245, 248, 255, 0.93);
  border-bottom: 1px solid rgba(26, 77, 255, 0.1);
}
.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  width: min(1320px, 92vw);
  margin: 0 auto;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: .01em; text-decoration: none; }
.brand-icon { height: 28px; width: 28px; flex-shrink: 0; }
.brand-wordmark { font-family: 'Inter', system-ui, sans-serif; font-size: 18px; font-weight: 700; color: #1E293B; letter-spacing: -.3px; }
.brand-frame { color: #2563EB; font-weight: 400; }
.nav-links { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.nav-link {
  padding: 8px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  color: var(--muted);
  transition: border-color .2s, color .2s, background .2s;
}
.nav-link:hover { border-color: rgba(26,77,255,.24); color: var(--dark); background: rgba(255,255,255,.8); }
.btn-nav-cta {
  background: linear-gradient(135deg, var(--primary), #2d6bff);
  color: #fff !important;
  border-color: transparent !important;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(26,77,255,.28);
  transition: box-shadow .2s, transform .15s;
}
.btn-nav-cta:hover { box-shadow: 0 6px 20px rgba(26,77,255,.42); transform: translateY(-1px); background: rgba(0,0,0,0) !important; background: linear-gradient(135deg, #1540e8, #1a4dff) !important; }

/* ── BUTTONS ──────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 12px;
  padding: 13px 26px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(26,77,255,.3);
  transition: box-shadow .2s, transform .15s;
  border: none;
}
.btn-primary:hover { box-shadow: 0 12px 32px rgba(26,77,255,.48); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  background: rgba(255,255,255,.9);
  color: var(--dark);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 15px;
  transition: background .2s, border-color .2s, transform .15s;
}
.btn-ghost:hover { background: #fff; border-color: rgba(26,77,255,.3); transform: translateY(-1px); }

/* ── HERO ─────────────────────────────────────────────────────────── */
.hero-section {
  background:
    radial-gradient(ellipse 70% 60% at 5% 0%, rgba(0,194,255,.14), transparent),
    radial-gradient(ellipse 60% 50% at 95% 0, rgba(26,77,255,.12), transparent),
    #f5f8ff;
  padding: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: 88px 0 52px;
}

.hero-text { display: flex; flex-direction: column; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(26,77,255,.07);
  border: 1px solid rgba(26,77,255,.22);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 600;
  margin-bottom: 16px;
  width: fit-content;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -.02em;
  color: var(--dark);
}

.lead {
  color: #334155;
  font-size: clamp(.95rem, 1.5vw, 1.12rem);
  max-width: 56ch;
  margin: 0 0 22px;
  line-height: 1.65;
}

.hero-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.chip {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid rgba(26,77,255,.26);
  background: rgba(26,77,255,.06);
  color: var(--primary);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(26,77,255,.12);
  border-radius: 16px;
  backdrop-filter: blur(6px);
  max-width: 460px;
}

.stat-item { display: flex; flex-direction: column; }
.stat-item strong { font-size: 18px; font-weight: 800; color: var(--dark); line-height: 1.1; }
.stat-item span { font-size: 11px; color: var(--muted); margin-top: 2px; }
.stat-sep { width: 1px; height: 32px; background: rgba(26,77,255,.15); flex-shrink: 0; }

/* ── HERO WIDGET PREVIEW ──────────────────────────────────────────── */
.hero-widget { display: flex; align-items: flex-start; }

.widget-preview {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 64px rgba(26,77,255,.14);
  transition: box-shadow .25s, transform .25s;
  width: 100%;
}
.widget-preview:hover { box-shadow: 0 32px 80px rgba(26,77,255,.24); transform: translateY(-3px); }
.widget-preview:hover .wp-overlay { opacity: 1; }
.wp-overlay {
  position: absolute; inset: 0;
  background: rgba(26,77,255,.07);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .2s; pointer-events: none;
}
.wp-overlay span {
  background: var(--primary); color: #fff;
  padding: 12px 28px; border-radius: 50px;
  font-weight: 700; font-size: 14px;
  box-shadow: 0 6px 20px rgba(26,77,255,.4);
}
.wp-header {
  font-size: 15px; font-weight: 700; color: #1f2937;
  padding: 16px 20px 12px;
  border-bottom: 1px solid #e8ecf7;
  display: flex; align-items: center; gap: 8px;
}
.wp-form { padding: 12px 20px 14px; display: flex; flex-direction: column; gap: 10px; border-bottom: 1px solid #e8ecf7; }
.wp-row { display: flex; gap: 8px; align-items: flex-end; }
.wp-field { flex: 1; }
.wp-label { font-size: 10px; color: #94a3b8; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.wp-input { border: 1px solid #dbe1ee; border-radius: 8px; padding: 8px 11px; font-size: 13px; color: #1f2937; font-weight: 500; background: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wp-swap { color: #94a3b8; font-size: 14px; padding-bottom: 6px; flex-shrink: 0; }
.wp-btn { background: var(--primary); color: #fff; border: none; border-radius: 10px; padding: 10px 20px; font-weight: 700; font-size: 14px; width: 100%; margin-top: 2px; cursor: default; }
.wp-result { display: grid; grid-template-columns: 68px 1fr 76px; align-items: center; gap: 10px; padding: 12px 20px; border-bottom: 1px solid #f0f4ff; }
.wp-result-dim { opacity: .48; }
.wp-airline-name { font-size: 11px; font-weight: 700; color: #193e74; text-transform: uppercase; }
.wp-flight-no { font-size: 10px; color: #94a3b8; margin-top: 2px; }
.wp-route { display: flex; align-items: center; justify-content: space-between; gap: 6px; font-size: 12px; color: #374151; }
.wp-rt { display: flex; flex-direction: column; align-items: flex-start; }
.wp-rt strong { font-size: 14px; font-weight: 700; color: #0f172a; line-height: 1.1; }
.wp-rt small { font-size: 10px; color: #94a3b8; }
.wp-mid { text-align: center; font-size: 10px; color: #6b7280; flex: 1; line-height: 1.6; }
.wp-price { text-align: right; }
.wp-amount { font-size: 14px; font-weight: 800; color: #0f172a; line-height: 1.1; }
.wp-amount span { font-size: 10px; font-weight: 400; color: #94a3b8; }
.wp-sel { display: inline-block; background: var(--primary); color: #fff; border-radius: 6px; padding: 3px 9px; font-size: 11px; font-weight: 700; margin-top: 4px; cursor: default; }

/* ── AIRLINES STRIP ───────────────────────────────────────────────── */
.airlines-strip {
  border-top: 1px solid rgba(26,77,255,.1);
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(4px);
  padding: 14px 0;
}
.airlines-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.airlines-label { font-size: 11px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-right: 6px; flex-shrink: 0; }
.airline-tag {
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}
.airlines-more { font-size: 12px; color: var(--muted); margin-left: 4px; }

/* ── SECTION BASE ─────────────────────────────────────────────────── */
.section-light {
  background: #fff;
  padding: 80px 0 72px;
}
.section-light:nth-of-type(odd) {
  background: #f8fafd;
}
.section-contact {
  background: #f5f8ff !important;
  border-top: 1px solid rgba(26,77,255,.08);
}

.section-dark {
  background: linear-gradient(135deg, #060e20 0%, #0a1628 45%, #0c1e3a 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,77,255,.2), transparent 65%);
  pointer-events: none;
}
.section-dark::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(0,194,255,.12), transparent 65%);
  pointer-events: none;
}

.section-header { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-header h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin: 0 0 10px; letter-spacing: -.02em; }
.section-header p { color: var(--muted); font-size: 16px; margin: 0; }

.section-header-light { text-align: center; max-width: 640px; margin: 0 auto 52px; position: relative; z-index: 1; }
.eyebrow-light {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(0,194,255,.9);
  background: rgba(0,194,255,.1);
  border: 1px solid rgba(0,194,255,.3);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 600;
  margin-bottom: 14px;
}
.h-light { font-size: clamp(2rem, 3.8vw, 3rem); color: #fff; margin: 0 0 12px; line-height: 1.1; letter-spacing: -.02em; }
.p-light { color: rgba(255,255,255,.6); font-size: 16px; margin: 0; }

/* ── HOW IT WORKS — STEPS ─────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(15,23,42,.04);
  transition: box-shadow .2s, transform .2s;
  position: relative;
}
.step-card:hover { box-shadow: 0 12px 36px rgba(26,77,255,.1); transform: translateY(-2px); }
.step-num {
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  color: rgba(26,77,255,.12);
  letter-spacing: -.04em;
  margin-bottom: 14px;
}
.step-card h3 { font-size: 18px; margin: 0 0 10px; font-weight: 700; }
.step-card p { color: #475569; font-size: 14px; margin: 0; line-height: 1.7; }

/* ── PRICING ──────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 28px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: #fff;
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 32px 80px rgba(0,0,0,.45), 0 0 0 1px rgba(26,77,255,.25);
  position: sticky;
  top: 76px;
}
.plan-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--primary); margin-bottom: 10px; }
.plan-price { font-size: 54px; font-weight: 800; color: var(--dark); line-height: 1; margin-bottom: 4px; letter-spacing: -.03em; }
.plan-price span { font-size: 18px; font-weight: 500; color: var(--muted); }
.plan-desc { font-size: 14px; color: var(--muted); margin: 10px 0 20px; line-height: 1.5; }
.plan-features {
  list-style: none; padding: 0; margin: 0 0 20px;
  display: flex; flex-direction: column; gap: 9px;
  border-top: 1px solid var(--line); padding-top: 18px;
}
.plan-features li { font-size: 14px; color: #334155; display: flex; align-items: flex-start; gap: 10px; }
.plan-features li::before { content: "✓"; color: #16a34a; font-weight: 800; font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.plan-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.plan-badges span { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; border-radius: 8px; font-size: 12px; font-weight: 600; padding: 4px 10px; }
.btn-pricing-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 12px;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 8px 24px rgba(26,77,255,.35);
  transition: box-shadow .2s, transform .15s;
}
.btn-pricing-cta:hover { box-shadow: 0 12px 32px rgba(26,77,255,.52); transform: translateY(-1px); }

.pricing-options { display: flex; flex-direction: column; gap: 16px; }
.option-item {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  backdrop-filter: blur(10px);
  transition: background .2s, border-color .2s;
}
.option-item:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.22); }
.option-item-accent { background: rgba(26,77,255,.22); border-color: rgba(26,77,255,.45); }
.option-icon-wrap {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(255,255,255,.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(0,194,255,.9);
}
.option-item h3 { font-size: 16px; font-weight: 700; color: #fff; margin: 0 0 8px; }
.option-item p { font-size: 14px; color: rgba(255,255,255,.7); margin: 0 0 12px; line-height: 1.6; }
.option-item p strong { color: rgba(255,255,255,.95); }
.option-item p em { color: rgba(255,255,255,.95); font-style: normal; }
.option-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.option-tags span {
  font-size: 12px; font-weight: 600;
  color: rgba(0,194,255,.9);
  background: rgba(0,194,255,.1);
  border: 1px solid rgba(0,194,255,.25);
  border-radius: 6px;
  padding: 3px 9px;
}

/* ── FEATURES ─────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(15,23,42,.04);
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover { box-shadow: 0 10px 32px rgba(26,77,255,.1); transform: translateY(-2px); }
.feature-icon-wrap {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(26,77,255,.1), rgba(0,194,255,.08));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
}
.feature-card h3 { font-size: 16px; font-weight: 700; margin: 0 0 8px; }
.feature-card p { color: #475569; font-size: 14px; margin: 0; line-height: 1.65; }

.features-cta {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, rgba(26,77,255,.06), rgba(0,194,255,.04));
  border: 1px solid rgba(26,77,255,.12);
  border-radius: 20px;
}
.features-cta p { font-size: 18px; font-weight: 600; margin: 0 0 16px; }

/* ── CONTACT SECTION ──────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 52px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; }
.contact-info .eyebrow { margin-bottom: 14px; }
.contact-info h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 0 0 12px; letter-spacing: -.02em; }
.contact-lead { color: #475569; font-size: 15px; line-height: 1.7; margin: 0 0 28px; }

.contact-channels { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.contact-channel {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: #334155;
  padding: 10px 14px;
  background: rgba(255,255,255,.8);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color .2s, background .2s;
}
.contact-channel:hover { border-color: rgba(26,77,255,.3); background: #fff; color: var(--primary); }
.cc-icon {
  width: 32px; height: 32px;
  background: rgba(26,77,255,.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); flex-shrink: 0;
}

.contact-promises { display: flex; flex-direction: column; gap: 8px; }
.promise { display: flex; align-items: center; gap: 9px; font-size: 14px; color: #334155; font-weight: 500; }
.promise svg { color: #16a34a; flex-shrink: 0; }

.contact-form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 12px 44px rgba(15,23,42,.07);
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg label { font-size: 13px; font-weight: 600; color: #334155; }
.fg input, .fg select, .fg textarea {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--dark);
  background: #f8fafc;
  transition: border-color .2s, background .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26,77,255,.1);
}
.fg textarea { resize: vertical; min-height: 80px; }
.btn-form {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(26,77,255,.3);
  transition: box-shadow .2s, transform .15s;
  width: 100%;
}
.btn-form:hover { box-shadow: 0 12px 32px rgba(26,77,255,.45); transform: translateY(-1px); }
.form-note { font-size: 12px; color: var(--muted); margin: 0; text-align: center; }

/* ── FOOTER ───────────────────────────────────────────────────────── */
.site-footer {
  background: #060e20;
  color: rgba(255,255,255,.55);
  padding: 52px 0 36px;
  font-size: 14px;
}
.footer-wrap {
  width: min(1320px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 52px;
  align-items: start;
}
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-brand span { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.6; max-width: 260px; }
.footer-legal-name { font-size: 11px !important; color: rgba(255,255,255,.3) !important; margin-top: 4px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.3); margin-bottom: 4px; }
.footer-col a { color: rgba(255,255,255,.55); font-size: 13px; transition: color .15s; }
.footer-col a:hover { color: rgba(255,255,255,.9); }

/* ── DOCS / OTHER PAGES ───────────────────────────────────────────── */
.kpi { font-size: 28px; font-weight: 700; margin: 8px 0; }
.code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  background: #0f172a;
  color: #dbeafe;
  border-radius: 12px;
  padding: 16px;
  overflow-x: auto;
}
.docs-nav { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.docs-nav a { border: 1px solid var(--line); border-radius: 999px; padding: 6px 10px; color: var(--muted); font-size: 14px; }
.docs-nav a:hover { color: var(--dark); border-color: rgba(26,77,255,.28); }

/* Legacy card/grid classes (docs pages etc.) */
.grid { display: grid; gap: 16px; grid-template-columns: repeat(12, 1fr); margin: 28px 0 0; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 22px; box-shadow: 0 4px 16px rgba(15,23,42,.04); transition: box-shadow .2s, transform .2s; }
.card:hover { box-shadow: 0 10px 28px rgba(15,23,42,.08); transform: translateY(-1px); }
.card small { color: var(--primary); font-size: 12px; letter-spacing: .03em; font-weight: 700; text-transform: uppercase; display: block; margin-bottom: 6px; }
.card h3 { margin: 0 0 8px; font-size: 18px; }
.card p { margin: 0; color: #475569; font-size: 14px; line-height: 1.65; }
.span-4 { grid-column: span 4; }
.span-6 { grid-column: span 6; }
.span-8 { grid-column: span 8; }
.span-12 { grid-column: span 12; }

/* ── ANIMATIONS ───────────────────────────────────────────────────── */
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate { animation: rise 0.5s ease both; }

/* ── RESPONSIVE ───────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: 340px 1fr; }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; padding: 64px 0 44px; gap: 32px; }
  .hero-text h1 { max-width: none; }
  .hero-stats { max-width: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-wrap { grid-template-columns: 1fr; gap: 36px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .span-4, .span-6, .span-8 { grid-column: span 12; }
}

@media (max-width: 640px) {
  .section-light, .section-dark { padding: 56px 0 48px; }
  .hero-grid { padding: 52px 0 32px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-sep { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .nav-links { gap: 3px; }
  .nav-link { font-size: 13px; padding: 7px 10px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; text-align: center; }
  h1 { font-size: 2rem; }
  .airlines-strip { display: none; }
  .contact-form-card { padding: 22px; }
  .pricing-card { padding: 24px; }
}

/* ── LANGUAGE TOGGLE ──────────────────────────────────────────────── */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 6px 12px;
  border: 1px solid rgba(26,77,255,.28);
  border-radius: 999px;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: var(--muted);
  font-family: inherit;
  transition: border-color .2s, color .2s, background .2s;
  white-space: nowrap;
}
.lang-toggle:hover { border-color: var(--primary); color: var(--primary); background: rgba(26,77,255,.04); }
.lt-sep { color: rgba(100,116,139,.4); font-weight: 300; margin: 0 1px; }
.lt-opt { transition: color .15s; }
.lt-active { color: var(--primary); }

/* ── RTL OVERRIDES ────────────────────────────────────────────────── */
html[dir="rtl"] body { font-family: 'Inter', 'Segoe UI', Tahoma, 'Arabic Typesetting', sans-serif; }
html[dir="rtl"] .site-nav-inner { flex-direction: row-reverse; }
html[dir="rtl"] .nav-links { flex-direction: row-reverse; }
html[dir="rtl"] .hero-grid { direction: rtl; }
html[dir="rtl"] .hero-text { text-align: right; }
html[dir="rtl"] .hero-chips { justify-content: flex-end; }
html[dir="rtl"] .hero-actions { flex-direction: row-reverse; }
html[dir="rtl"] .hero-stats { direction: rtl; }
html[dir="rtl"] .airlines-inner { direction: rtl; }
html[dir="rtl"] .section-header, html[dir="rtl"] .section-header-light { text-align: right; }
html[dir="rtl"] .steps-grid { direction: rtl; }
html[dir="rtl"] .step-card { text-align: right; }
html[dir="rtl"] .step-num { text-align: right; }
html[dir="rtl"] .features-grid { direction: rtl; }
html[dir="rtl"] .feature-card { text-align: right; }
html[dir="rtl"] .pricing-grid { direction: rtl; }
html[dir="rtl"] .plan-features { padding-right: 0; padding-left: 0; text-align: right; }
html[dir="rtl"] .plan-features li { padding-left: 0; padding-right: 20px; }
html[dir="rtl"] .plan-features li::before { left: auto; right: 0; }
html[dir="rtl"] .plan-badges { justify-content: flex-end; }
html[dir="rtl"] .pricing-options { direction: rtl; }
html[dir="rtl"] .option-item { direction: rtl; }
html[dir="rtl"] .option-item > div { text-align: right; }
html[dir="rtl"] .option-tags { justify-content: flex-end; }
html[dir="rtl"] .contact-grid { direction: rtl; }
html[dir="rtl"] .contact-info { text-align: right; }
html[dir="rtl"] .contact-channels { align-items: flex-end; }
html[dir="rtl"] .contact-channel { flex-direction: row-reverse; }
html[dir="rtl"] .contact-promises { align-items: flex-end; }
html[dir="rtl"] .promise { flex-direction: row-reverse; }
html[dir="rtl"] .contact-form-card { direction: rtl; }
html[dir="rtl"] .fg label { text-align: right; display: block; }
html[dir="rtl"] input, html[dir="rtl"] textarea, html[dir="rtl"] select { text-align: right; direction: rtl; }
html[dir="rtl"] .footer-wrap { direction: rtl; }
html[dir="rtl"] .footer-brand { text-align: right; }
html[dir="rtl"] .footer-col { text-align: right; }
html[dir="rtl"] .features-cta { direction: rtl; }
