/* ============================================================
   TRAVEL DATA KIT — Global stylesheet
   Mobile-first. No framework. No JS dependencies.
   ============================================================ */

/* ---- Variables ---- */
:root {
  --blue:        #1a6bdb;
  --blue-dark:   #0f4fa8;
  --blue-light:  #e8f1fd;
  --green:       #1a8a52;
  --green-light: #e6f5ee;
  --orange:      #c4570a;
  --orange-light:#fff3ea;
  --ink:         #0f1923;
  --ink-mid:     #3a4a5a;
  --ink-light:   #6b7a8a;
  --border:      #dde4ed;
  --bg:          #f5f7fa;
  --white:       #ffffff;
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --shadow:      0 1px 4px rgba(15,25,35,.08), 0 4px 16px rgba(15,25,35,.06);
  --shadow-sm:   0 1px 3px rgba(15,25,35,.07);
  --max:         980px;
  --font:        'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 80px;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- Layout ---- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 16px; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: 52px; display: flex; align-items: center;
}
.header-inner {
  width: 100%; max-width: var(--max); margin: 0 auto;
  padding: 0 16px; display: flex; align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 700; color: var(--ink);
  letter-spacing: -.3px; text-decoration: none;
}
.brand-icon {
  width: 28px; height: 28px; background: var(--blue);
  border-radius: 7px; display: flex; align-items: center;
  justify-content: center; color: white;
  font-size: 12px; font-weight: 800; letter-spacing: -.5px;
  flex-shrink: 0;
}
.desktop-nav { display: none; }
.menu-button {
  background: none; border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 6px 12px;
  font-size: 13px; font-weight: 600; color: var(--ink-mid); cursor: pointer;
}
@media (min-width: 760px) {
  .menu-button { display: none; }
  .desktop-nav { display: flex; gap: 24px; align-items: center; }
  .desktop-nav a {
    font-size: 13.5px; font-weight: 600; color: var(--ink-mid);
    text-decoration: none; letter-spacing: -.1px;
  }
  .desktop-nav a:hover { color: var(--blue); }
  .desktop-nav a.active { color: var(--blue); }
}

/* ---- Buttons ---- */
.btn {
  display: block; width: 100%; text-align: center;
  padding: 13px 20px; border-radius: var(--radius-md);
  font-size: 15px; font-weight: 700; cursor: pointer;
  border: none; text-decoration: none;
  transition: opacity .15s; letter-spacing: -.1px;
}
.btn:hover { opacity: .88; text-decoration: none; }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-secondary { background: var(--white); color: var(--blue); border: 2px solid var(--blue); }
.btn-soft {
  display: inline-block; background: var(--blue-light);
  color: var(--blue-dark); font-size: 12px; font-weight: 700;
  padding: 6px 10px; border-radius: var(--radius-sm); text-decoration: none;
}
.btn-soft:hover { background: #d0e4fb; text-decoration: none; }
@media (min-width: 760px) {
  .btn { width: auto; padding: 13px 28px; }
}

/* ---- Pill / badge ---- */
.pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--blue-light); color: var(--blue-dark);
  font-size: 11.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .6px; padding: 4px 10px; border-radius: 20px;
  margin-bottom: 12px;
}

/* ---- Hero ---- */
.hero {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 28px 16px 24px;
}
.hero-inner { max-width: var(--max); margin: 0 auto; }
.hero h1 {
  font-size: 26px; font-weight: 800; letter-spacing: -.6px;
  line-height: 1.2; color: var(--ink); margin-bottom: 10px;
}
.hero-lead {
  font-size: 15px; color: var(--ink-mid); line-height: 1.5;
  margin-bottom: 18px; max-width: 560px;
}
.cta-stack { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 6px 14px; }
.trust-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 12.5px; color: var(--ink-light); font-weight: 500;
}
.trust-item::before { content: '✓'; color: var(--green); font-weight: 800; font-size: 13px; }
.last-checked { font-size: 11.5px; color: var(--ink-light); margin-top: 12px; }
@media (min-width: 760px) {
  .hero { padding: 40px 24px 36px; }
  .hero h1 { font-size: 36px; }
  .cta-stack { flex-direction: row; }
}

/* ---- Sections ---- */
.section { padding: 28px 0; }
.section-title {
  font-size: 18px; font-weight: 800; color: var(--ink);
  letter-spacing: -.4px; margin-bottom: 4px;
}
.section-sub { font-size: 13.5px; color: var(--ink-light); margin-bottom: 18px; }

/* ---- Decide block ---- */
.decide-block {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.decide-header {
  background: var(--ink); color: var(--white);
  padding: 12px 18px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .8px;
}
.decide-row {
  display: flex; align-items: center; padding: 13px 18px;
  border-bottom: 1px solid var(--border); gap: 12px;
}
.decide-row:last-child { border-bottom: none; }
.decide-situation { flex: 1; font-size: 14px; color: var(--ink-mid); }
.decide-arrow { color: var(--border); font-size: 14px; }
.decide-pick { font-size: 14px; font-weight: 700; color: var(--blue); white-space: nowrap; }
.decide-pick.green { color: var(--green); }

/* ---- Need grid ---- */
.need-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.need-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 14px; box-shadow: var(--shadow-sm);
}
.need-card-label { font-size: 13px; font-weight: 800; color: var(--ink); letter-spacing: -.2px; margin-bottom: 3px; }
.need-card-caption { font-size: 12px; color: var(--ink-light); line-height: 1.45; margin-bottom: 10px; }
@media (min-width: 760px) {
  .need-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---- Provider cards ---- */
.provider-list { display: flex; flex-direction: column; gap: 12px; }
.provider-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 16px 18px;
  box-shadow: var(--shadow-sm); display: flex; align-items: flex-start;
  gap: 14px; flex-direction: column;
}
.provider-badge {
  width: 40px; height: 40px; border-radius: 10px; display: flex;
  align-items: center; justify-content: center; font-size: 11px;
  font-weight: 800; letter-spacing: -.3px; flex-shrink: 0; text-transform: uppercase;
}
.provider-badge.airalo  { background: #fff0e6; color: #c45000; }
.provider-badge.saily   { background: #e8f4ff; color: #0060b8; }
.provider-badge.holafly { background: #e8faf0; color: #1a7a45; }
.provider-name { font-size: 14.5px; font-weight: 800; color: var(--ink); letter-spacing: -.3px; }
.provider-desc { font-size: 12.5px; color: var(--ink-light); margin-top: 2px; margin-bottom: 8px; }
.provider-tag {
  font-size: 11px; font-weight: 700; padding: 3px 8px;
  border-radius: 12px; white-space: nowrap; display: inline-block; margin-bottom: 8px;
}
.tag-budget    { background: #fff0e6; color: #c45000; }
.tag-simple    { background: #e8f4ff; color: #0060b8; }
.tag-unlimited { background: #e8faf0; color: #1a7a45; }
.provider-card .btn { width: 100%; }
@media (min-width: 760px) {
  .provider-list { display: grid; grid-template-columns: repeat(3, 1fr); }
}

/* ---- Field tip ---- */
.tip {
  background: var(--orange-light); border: 1px solid #f5c4a0;
  border-left: 4px solid var(--orange); border-radius: var(--radius-md);
  padding: 16px 18px; margin: 4px 0;
}
.tip-label {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .7px; color: var(--orange); margin-bottom: 6px;
}
.tip-text { font-size: 14px; color: #5a2f0a; line-height: 1.55; }

/* ---- Warning block ---- */
.warning {
  background: #fff8e6; border: 1px solid #f5d788;
  border-left: 4px solid #c48a0a; border-radius: var(--radius-md);
  padding: 16px 18px; margin: 4px 0;
}
.warning-label {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .7px; color: #8a5e00; margin-bottom: 6px;
}
.warning-text { font-size: 14px; color: #5a3f00; line-height: 1.55; }

/* ---- Checklist ---- */
.checklist {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm);
}
.checklist-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--ink);
}
.checklist-item:last-child { border-bottom: none; }
.check-icon {
  width: 18px; height: 18px; border: 2px solid var(--border);
  border-radius: 4px; flex-shrink: 0; margin-top: 1px;
}

/* ---- Mini kit ---- */
.mini-kit {
  background: var(--ink); border-radius: var(--radius-lg);
  padding: 20px; color: var(--white);
}
.mini-kit-title {
  font-size: 13px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .7px; color: rgba(255,255,255,.5); margin-bottom: 12px;
}
.kit-items { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.kit-item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,.85); }
.kit-dot { width: 7px; height: 7px; background: var(--blue); border-radius: 50%; flex-shrink: 0; }
.kit-dot.green  { background: #3dd68c; }
.kit-dot.orange { background: #f9a455; }
.more-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13.5px; font-weight: 700; color: var(--white);
  text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 1px;
}
.more-link:hover { border-color: white; text-decoration: none; }

/* ---- Reassurance ---- */
.reassurance {
  background: var(--green-light); border: 1px solid #b8e5cf;
  border-left: 4px solid var(--green); border-radius: var(--radius-md);
  padding: 16px 18px; margin: 4px 0;
}
.reassurance-label {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .7px; color: var(--green); margin-bottom: 6px;
}
.reassurance-text { font-size: 14px; color: #0d3a20; line-height: 1.55; margin-bottom: 10px; }

/* ---- Disclosure ---- */
.disclosure {
  font-size: 12px; color: var(--ink-light); line-height: 1.6;
  padding: 18px 0 10px; border-top: 1px solid var(--border); margin-top: 32px;
}
.disclosure strong { color: var(--ink-mid); }

/* ---- FAQ ---- */
.faq { margin-top: 8px; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); margin-bottom: 8px;
  overflow: hidden;
}
.faq-q {
  font-size: 14px; font-weight: 700; color: var(--ink);
  padding: 14px 16px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-q::after { content: '+'; font-size: 18px; color: var(--blue); font-weight: 400; }
.faq-a { font-size: 13.5px; color: var(--ink-mid); padding: 0 16px 14px; line-height: 1.6; }

/* ---- Stat row ---- */
.stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin: 20px 0;
}
.stat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 16px; text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-number { font-size: 24px; font-weight: 800; color: var(--blue); letter-spacing: -.5px; }
.stat-label { font-size: 12px; color: var(--ink-light); margin-top: 3px; }

/* ---- Sticky bottom bar ---- */
.bottom-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white); border-top: 1px solid var(--border);
  box-shadow: 0 -2px 12px rgba(15,25,35,.1);
  padding: 10px 16px; z-index: 200;
}
.bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; max-width: var(--max); margin: 0 auto;
}
.bottom-label { font-size: 12.5px; color: var(--ink-mid); line-height: 1.3; }
.bottom-label strong { display: block; font-size: 14px; color: var(--ink); font-weight: 800; }
.bottom-bar .btn { width: auto; white-space: nowrap; padding: 11px 20px; font-size: 14px; }
@media (min-width: 760px) {
  .bottom-bar { display: none; }
  body { padding-bottom: 0; }
}

/* ---- Footer ---- */
.site-footer {
  background: var(--white); border-top: 1px solid var(--border);
  padding: 24px 16px; margin-top: 32px;
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center; justify-content: space-between;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 20px; }
.footer-links a { font-size: 12.5px; color: var(--ink-light); text-decoration: none; }
.footer-links a:hover { color: var(--blue); }
.footer-copy { font-size: 12px; color: var(--ink-light); }

/* ---- Homepage specific ---- */
.home-intro {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 36px 16px 32px;
}
.home-intro h1 {
  font-size: 28px; font-weight: 800; letter-spacing: -.7px;
  line-height: 1.2; color: var(--ink); margin-bottom: 12px; max-width: 620px;
}
.home-intro p {
  font-size: 16px; color: var(--ink-mid); max-width: 520px;
  line-height: 1.55; margin-bottom: 24px;
}
.path-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px;
}
.path-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 14px 16px;
  display: flex; flex-direction: column; gap: 6px;
  text-decoration: none; transition: border-color .15s, box-shadow .15s;
}
.path-card:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); text-decoration: none; }
.path-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-light);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.path-label { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.path-desc { font-size: 12px; color: var(--ink-light); line-height: 1.4; }
@media (min-width: 760px) {
  .home-intro { padding: 48px 24px 40px; }
  .home-intro h1 { font-size: 40px; }
  .path-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Destination card grid ---- */
.dest-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.dest-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 14px 16px;
  text-decoration: none; display: flex; flex-direction: column; gap: 4px;
  transition: border-color .15s; box-shadow: var(--shadow-sm);
}
.dest-card:hover { border-color: var(--blue); text-decoration: none; }
.dest-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.dest-note { font-size: 12px; color: var(--ink-light); line-height: 1.4; }
@media (min-width: 760px) {
  .dest-grid { grid-template-columns: repeat(4, 1fr); }
}
