@font-face{font-family:system-ui-fallback;src:local("Inter"),local("Segoe UI"),local("SF Pro Display"),local("Roboto"),local("Helvetica Neue"),local("Arial");}
:root{
  --bg:#ffffff;
  --panel:#f6f7f9;
  --panel-2:#fbfbfc;
  --text:#111214;
  --muted:#5a5f69;
  --border:rgba(17,18,20,.10);
  --shadow:0 10px 30px rgba(17,18,20,.07);
  --shadow-soft:0 6px 18px rgba(17,18,20,.06);
  --accent:#d21f2b;
  --accent-2:#b51721;
  --radius:16px;
  --radius-sm:12px;
  --container:1120px;
}
*{box-sizing:border-box;}
html,body{height:100%;}
body{
  margin:0;
  font-family:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial,"Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}
a{color:inherit;}
.container{max-width:var(--container);margin:0 auto;padding:0 20px;}
.skip{
  position:absolute;
  left:12px;
  top:12px;
  padding:10px 12px;
  border:1px solid var(--border);
  background:var(--bg);
  border-radius:999px;
  transform:translateY(-160%);
  transition:transform .2s ease;
  z-index:50;
  text-decoration:none;
}
.skip:focus{transform:translateY(0);outline:none;box-shadow:0 0 0 4px rgba(210,31,43,.18);}

.site-header{
  background:linear-gradient(180deg, var(--panel-2), #fff 70%);
  border-bottom:1px solid var(--border);
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  padding:22px 0 10px;
}
.brand-mark{
  width:40px;
  height:40px;
  border-radius:12px;
  background:rgba(210,31,43,.08);
  position:relative;
  display:grid;
  place-items:center;
}
.brand-mark .dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--accent);
  display:block;
  position:absolute;
  left:12px;
  top:12px;
}
.brand-mark .ring{
  width:20px;
  height:20px;
  border-radius:999px;
  border:2px solid rgba(210,31,43,.40);
  display:block;
  position:absolute;
  right:9px;
  bottom:9px;
}
.brand-name{
  font-weight:800;
  letter-spacing:.02em;
}
.brand-tag{color:var(--muted);font-size:14px;}

.hero{
  padding:26px 0 40px;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:22px;
  align-items:stretch;
}
.hero-title{
  font-size:44px;
  line-height:1.08;
  margin:0 0 10px;
  letter-spacing:-.02em;
}
.hero-subtitle{
  margin:0 0 18px;
  color:var(--muted);
  font-size:16px;
  max-width:62ch;
}
.hero-icons{display:flex;gap:10px;align-items:center;margin:10px 0 16px;}
.emoji{font-size:18px;}

.mini-features{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
  margin-top:10px;
}
.mini-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px;
  display:flex;
  gap:10px;
  align-items:flex-start;
  box-shadow:var(--shadow-soft);
}
.mini-icon{
  width:34px;
  height:34px;
  border-radius:12px;
  background:rgba(210,31,43,.08);
  display:grid;
  place-items:center;
  color:var(--accent);
  flex:0 0 auto;
}
.mini-title{font-weight:700;font-size:13px;margin-top:1px;}
.mini-desc{font-size:12px;color:var(--muted);margin-top:2px;}

.hero-panel{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.panel-top{padding:18px 18px 12px;}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  color:var(--accent-2);
  background:rgba(210,31,43,.08);
  border:1px solid rgba(210,31,43,.18);
  padding:6px 10px;
  border-radius:999px;
  margin-bottom:10px;
}
.panel-title{font-weight:800;font-size:16px;margin:2px 0 10px;}
.panel-list{margin:0;padding:0 0 0 18px;color:var(--muted);}
.panel-list li{margin:8px 0;}
.pill{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  color:#1a1a1a;
  background:var(--panel);
  border:1px solid var(--border);
  padding:2px 8px;
  border-radius:999px;
  margin-right:6px;
}
.panel-bottom{padding:14px 18px 18px;background:linear-gradient(180deg, #fff, var(--panel-2));border-top:1px solid var(--border);}
.panel-note{display:flex;gap:10px;color:var(--muted);font-size:13px;align-items:flex-start;}
.note-icon{flex:0 0 auto;}

.section{padding:54px 0;}
.section-soft{background:var(--panel);border-top:1px solid var(--border);border-bottom:1px solid var(--border);}
.section-head{display:flex;flex-direction:column;gap:8px;margin-bottom:16px;}
.section-head h2{margin:0;font-size:26px;letter-spacing:-.01em;}
.muted{margin:0;color:var(--muted);}

.table-wrap{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
  overflow:auto;
  -webkit-overflow-scrolling:touch;
}
.table-wrap:focus{outline:none;box-shadow:0 0 0 4px rgba(210,31,43,.16), var(--shadow-soft);}
.rate-table{border-collapse:separate;border-spacing:0;min-width:820px;width:100%;}
.rate-table thead th{
  position:sticky;
  top:0;
  background:linear-gradient(180deg, #fff, var(--panel-2));
  text-align:left;
  font-size:12px;
  color:#2b2f36;
  letter-spacing:.04em;
  text-transform:uppercase;
  border-bottom:1px solid var(--border);
  padding:14px 14px;
}
.rate-table tbody td{
  padding:14px 14px;
  border-bottom:1px solid var(--border);
  color:#1a1b1e;
}
.rate-table tbody tr:last-child td{border-bottom:none;}
.rate-table tbody tr:hover td{background:rgba(210,31,43,.035);}
.zone{white-space:nowrap;}
.zone-badge{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(210,31,43,.20);
  background:rgba(210,31,43,.08);
  color:var(--accent-2);
  font-weight:800;
  font-size:12px;
}
.country{font-weight:700;}
.hint{margin-top:10px;color:var(--muted);font-size:13px;}

.cards{
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:12px;
}
.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:12px;
  min-height:128px;
}
.card-top{display:flex;align-items:center;justify-content:space-between;gap:10px;}
.card-icon{font-size:18px;}
.card-title{font-weight:800;color:var(--accent-2);}
.card-route{color:#1a1b1e;font-weight:700;}
.card-price{margin-top:4px;color:var(--muted);font-weight:700;}

.notes{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
  padding:16px;
}
.note-list{margin:0;padding:0;list-style:none;display:grid;gap:10px;}
.note-list li{display:flex;gap:10px;align-items:flex-start;color:#1a1b1e;}
.note-ico{flex:0 0 auto;}

.cta{
  padding:56px 0;
  background:linear-gradient(180deg, #fff, var(--panel-2));
  border-top:1px solid var(--border);
}
.cta-inner{
  background:#fff;
  border:1px solid var(--border);
  border-radius:calc(var(--radius) + 4px);
  box-shadow:var(--shadow);
  padding:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.cta-inner h2{margin:0;font-size:24px;}
.cta-sub{margin:6px 0 0;color:var(--muted);}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:12px;
  background:var(--accent);
  color:#fff;
  font-weight:800;
  text-decoration:none;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 10px 18px rgba(210,31,43,.18);
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space:nowrap;
}
.btn:focus{outline:none;box-shadow:0 0 0 4px rgba(210,31,43,.22), 0 10px 18px rgba(210,31,43,.18);}
.btn:hover{background:var(--accent-2);transform:translateY(-1px);}
.btn:active{transform:translateY(0);}

.footer{padding:22px 0;background:#fff;border-top:1px solid var(--border);}
.footer-inner{display:flex;align-items:center;justify-content:center;}
.footer-text{color:var(--muted);font-size:13px;}

@media (max-width: 980px){
  .hero{grid-template-columns:1fr;}
  .hero-title{font-size:38px;}
  .mini-features{grid-template-columns:1fr;}
  .cards{grid-template-columns:repeat(2, minmax(0, 1fr));}
  .cta-inner{flex-direction:column;align-items:flex-start;}
}
@media (max-width: 520px){
  .hero-title{font-size:32px;}
  .cards{grid-template-columns:1fr;}
  .rate-table{min-width:980px;}
}
@media (prefers-reduced-motion: reduce){
  .btn{transition:none;}
  .skip{transition:none;}
}
