:root{
  --bg-top:#EAF4FB;
  --bg-bottom:#FFFFFF;
  --text:#111827;
  --muted:#6B7280;
  --border:#E5E7EB;
  --card:#FFFFFF;
  --shadow:0 10px 30px rgba(17,24,39,0.08);
  --shadow-hover:0 14px 36px rgba(17,24,39,0.12);
  --accent:#3B82F6;
  --radius:12px;
  --radius-lg:24px;
  --max:1120px;
  --gap:16px;
  --font: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:linear-gradient(180deg,var(--bg-top) 0%, var(--bg-bottom) 55%);
}

a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
header{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(140%) blur(10px);
  background:rgba(234,244,251,0.75);
  border-bottom:1px solid rgba(229,231,235,0.7);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{
  display:flex; align-items:center; gap:10px; text-decoration:none;
}
.brand img{width:40px; height:40px; border-radius:10px}
.brand span{font-weight:700; letter-spacing:-0.2px}
nav ul{list-style:none; display:flex; gap:18px; margin:0; padding:0; align-items:center}
nav a{
  text-decoration:none; color:var(--text);
  font-weight:600; font-size:14px;
  padding:8px 10px; border-radius:10px;
}
nav a:hover{background:rgba(59,130,246,0.08)}
.nav-cta{
  display:flex; align-items:center; gap:10px;
  font-size:13px; color:var(--muted);
}
.nav-cta a{color:var(--text); font-weight:700; text-decoration:none}
.nav-cta a:hover{text-decoration:underline}

main{padding:56px 0 36px}
.hero{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap:36px;
  align-items:center;
}
h1{
  margin:0;
  font-size:48px;
  line-height:1.15;
  letter-spacing:0;
  font-weight:700;
}
.lead{
  margin:14px 0 28px;
  font-size:16px;
  line-height:1.6;
  color:var(--muted);
  max-width:560px;
}
.card-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:var(--gap);
  max-width:520px;
}
.card{display:flex;align-items:center;gap:14px;padding:16px 18px;border:1px solid rgba(20,34,50,.10);border-radius:14px;background:#fff;box-shadow:0 10px 25px rgba(8,26,45,.06);transition:transform .12s ease, box-shadow .12s ease}
.card:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow-hover);
  background:#F9FAFB;
}
.icon{width:52px;height:52px;border-radius:14px;background:rgba(33,150,243,.12);display:flex;align-items:center;justify-content:center;flex:0 0 auto}
.card-title{font-size:15px; font-weight:600; line-height:1.2}

.hero-media{
  border-radius:28px;
  overflow:hidden;
  background:rgba(255,255,255,0.7);
  border:1px solid rgba(229,231,235,0.9);
  box-shadow:0 18px 50px rgba(17,24,39,0.10);
  min-height:320px;
}
.hero-media .media-inner{
  width:100%; height:100%;
  display:grid; place-items:center;
  padding:16px;
}
.hero-media img{
  width:100%; height:auto; display:block;
}

.section{
  margin-top:46px;
}
.section h2{
  font-size:22px; margin:0 0 14px; letter-spacing:-0.2px;
}
.muted{color:var(--muted)}
.steps{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:16px;
}
.step{
  background:rgba(255,255,255,0.85);
  border:1px solid rgba(229,231,235,0.9);
  border-radius:16px;
  padding:16px;
  box-shadow:0 10px 26px rgba(17,24,39,0.06);
}
.step strong{display:block; margin-bottom:6px}
.faq{
  max-width:820px;
}
.faq-item{
  border:1px solid rgba(229,231,235,0.9);
  background:rgba(255,255,255,0.85);
  border-radius:16px;
  margin:10px 0;
  overflow:hidden;
}
.faq-q{
  width:100%;
  background:none;
  border:0;
  text-align:left;
  padding:16px 16px;
  font:inherit;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
}
.faq-q span{font-size:15px}
.faq-q .chev{
  width:20px; height:20px;
  transition:transform 180ms ease;
}
.faq-a{
  padding:0 16px 16px;
  color:var(--muted);
  line-height:1.6;
  display:none;
}
.faq-item.open .faq-a{display:block}
.faq-item.open .faq-q .chev{transform:rotate(180deg)}

.contact-card{
  max-width:820px;
  background:rgba(255,255,255,0.85);
  border:1px solid rgba(229,231,235,0.9);
  border-radius:16px;
  padding:18px;
  box-shadow:0 10px 26px rgba(17,24,39,0.06);
}
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-top:10px;
}
.contact-grid div{padding:10px 12px; border:1px solid rgba(229,231,235,0.9); border-radius:14px; background:#fff}
.contact-grid a{color:var(--text); font-weight:700; text-decoration:none}
.contact-grid a:hover{text-decoration:underline}

.notice{
  margin-top:22px;
  font-size:12px;
  line-height:1.5;
  color:var(--muted);
  max-width:880px;
}

footer{
  margin-top:50px;
  padding:28px 0 40px;
  border-top:1px solid rgba(229,231,235,0.85);
  background:rgba(255,255,255,0.65);
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  font-size:13px;
  margin-bottom:14px;
}
.footer-links a{color:var(--text); text-decoration:none; font-weight:700}
.footer-links a:hover{text-decoration:underline}
.footer-body{
  display:grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap:18px;
  align-items:start;
}
.small{font-size:13px; line-height:1.55; color:#374151}
.address{
  font-size:13px;
  line-height:1.5;
  color:#374151;
  text-align:right;
}
.address strong{color:var(--text)}
.copyright{margin-top:10px; font-size:12px; color:var(--muted); text-align:right}

.badge{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  padding:6px 10px;
  border:1px solid rgba(229,231,235,0.9);
  border-radius:999px;
  background:rgba(255,255,255,0.8);
  color:#0f172a;
}

.page-title{
  font-size:34px;
  font-weight:700;
  letter-spacing:-0.3px;
  margin:0 0 10px;
}
.prose{
  max-width:860px;
  color:#374151;
  line-height:1.7;
}
.prose h2{margin-top:28px}
.prose a{color:#1d4ed8; font-weight:700; text-decoration:none}
.prose a:hover{text-decoration:underline}

.coming{
  display:grid;
  place-items:center;
  min-height:55vh;
  text-align:center;
}
.coming h1{font-size:44px}
.coming p{color:var(--muted); max-width:680px; margin:12px auto 0; line-height:1.6}
.coming .pill-row{display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-top:18px}
.coming .pill-row a{ text-decoration:none }
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(229,231,235,0.9);
  box-shadow:0 10px 26px rgba(17,24,39,0.06);
  font-weight:800;
}
.pill:hover{transform:translateY(-1px)}
.pill small{font-weight:700; color:var(--muted)}

@media (max-width: 920px){
  h1{font-size:40px}
}
@media (max-width: 760px){
  .hero{grid-template-columns:1fr}
  h1{font-size:34px}
  .steps{grid-template-columns:1fr}
  .footer-body{grid-template-columns:1fr}
  .address{text-align:left}
  .copyright{text-align:left}
  nav ul{display:none}
  .nav{align-items:flex-start}
  .nav-cta{margin-left:auto}
  .contact-grid{grid-template-columns:1fr}
}/* Travel page additions */
.callout{margin:14px 0 0;padding:12px 14px;border:1px solid rgba(20,34,50,.10);border-radius:12px;background:rgba(255,255,255,.75)}
.small{font-size:13px;line-height:1.45}
.muted{color:rgba(20,34,50,.65)}
.cta-row{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}
.btn{display:inline-flex;align-items:center;justify-content:center;padding:12px 16px;border-radius:12px;border:1px solid rgba(20,34,50,.14);background:#fff;color:#142232;text-decoration:none;font-weight:600}
.btn.primary{background:#1e88e5;border-color:#1e88e5;color:#fff}
.btn:hover{filter:brightness(.98)}
.partner-badges{margin-top:18px;display:flex;flex-direction:column;gap:10px}
.partner-card{display:flex;gap:12px;align-items:center;padding:14px 16px;border-radius:14px;border:1px solid rgba(20,34,50,.10);background:rgba(255,255,255,.8);box-shadow:0 10px 25px rgba(8,26,45,.06)}
.partner-logo{width:54px;height:54px;object-fit:contain;border-radius:12px;background:#fff;border:1px solid rgba(20,34,50,.08);padding:6px}
.partner-title{font-weight:800}
.steps{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin-top:14px}
.step{display:flex;gap:12px;align-items:flex-start;padding:14px 16px;border-radius:14px;border:1px solid rgba(20,34,50,.10);background:#fff;box-shadow:0 10px 25px rgba(8,26,45,.06)}
.step-num{width:30px;height:30px;border-radius:10px;background:rgba(33,150,243,.14);display:flex;align-items:center;justify-content:center;font-weight:800;color:#1e88e5}
.step-title{font-weight:800;margin-bottom:4px}
@media (max-width: 900px){.steps{grid-template-columns:1fr}}


/* Make product icons fill their icon container a bit more */
.icon img{width:28px;height:28px;display:block;}




/* ---- Icon sizing tweaks (Jan 2026) ---- */
.icon{
  width:56px;
  height:56px;
  border-radius:16px;
}
.icon img{
  width:38px;
  height:38px;
}
@media (max-width: 640px){
  .icon{width:52px;height:52px;border-radius:16px;}
  .icon img{width:36px;height:36px;}
}
/* Partner logo */
.partner-logo{
  max-width:220px;
  height:auto;
  display:block;
}
