*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary: #1a3c6e;
  --primary-dark: #0f2444;
  --primary-light: #2a5298;
  --accent: #e8522a;
  --accent-hover: #c9401c;
  --text: #1a1a2e;
  --text-muted: #5c6070;
  --text-light: #8a8fa8;
  --bg: #ffffff;
  --bg-soft: #f7f8fc;
  --bg-dark: #0d1b35;
  --border: #e2e5f0;
  --radius: 10px;
  --radius-lg: 16px;
  --nav-height: 68px;
  --green: #22c55e;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 22px; color: var(--primary); }
.logo-icon {
  width: 36px; height: 36px; background: var(--primary); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 22px; height: 22px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 8px 13px; border-radius: 8px; font-size: 14px; font-weight: 500;
  color: var(--text-muted); transition: background .15s, color .15s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { background: var(--bg-soft); color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-ghost {
  padding: 9px 18px; border-radius: 8px; font-size: 14px; font-weight: 500;
  color: var(--primary); border: 1.5px solid var(--border); background: none; cursor: pointer;
  transition: border-color .15s; white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--primary); }
.btn-cta {
  padding: 9px 20px; border-radius: 8px; font-size: 14px; font-weight: 600;
  background: var(--accent); color: white; border: none; cursor: pointer;
  transition: background .15s; white-space: nowrap; display: inline-block;
}
.btn-cta:hover { background: var(--accent-hover); }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
  color: white; padding: 72px 24px 64px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; max-width: 780px; margin: 0 auto; }
.page-hero .badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px; padding: 5px 16px; font-size: 13px; font-weight: 500;
  margin-bottom: 22px; color: rgba(255,255,255,0.9);
}
.page-hero h1 { font-size: clamp(30px, 4.5vw, 52px); font-weight: 700; line-height: 1.15; margin-bottom: 16px; }
.page-hero h1 span { color: #ffb347; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto 36px; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-hero-main {
  padding: 14px 32px; border-radius: 10px; font-size: 16px; font-weight: 700;
  background: var(--accent); color: white; border: none; cursor: pointer; transition: .15s;
  display: inline-block;
}
.btn-hero-main:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-hero-out {
  padding: 13px 28px; border-radius: 10px; font-size: 16px; font-weight: 600;
  background: rgba(255,255,255,0.12); color: white; border: 1.5px solid rgba(255,255,255,0.35);
  display: inline-block; transition: .15s;
}
.btn-hero-out:hover { background: rgba(255,255,255,0.22); }

/* ── SECTIONS ── */
section { padding: 72px 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-block; background: #e8f0fe; color: var(--primary);
  border-radius: 100px; font-size: 12px; font-weight: 600; padding: 5px 14px;
  margin-bottom: 14px; letter-spacing: .04em; text-transform: uppercase;
}
.section-tag.white { background: rgba(255,255,255,0.15); color: white; }
.section-title { font-size: clamp(24px, 3.2vw, 38px); font-weight: 700; color: var(--text); margin-bottom: 12px; line-height: 1.25; }
.section-title.white { color: white; }
.section-desc { font-size: 17px; color: var(--text-muted); margin-bottom: 52px; line-height: 1.7; }
.section-desc.white { color: rgba(255,255,255,0.72); }
.text-center { text-align: center; }
.text-center .section-desc { max-width: 640px; margin-left: auto; margin-right: auto; }

/* ── CARDS ── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.card {
  background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px 26px; transition: border-color .2s, transform .2s; position: relative;
}
.card:hover { border-color: #a0b4d8; transform: translateY(-2px); }
.card.featured { border-color: var(--primary); border-width: 2px; }
.card-icon {
  width: 50px; height: 50px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px;
}
.card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600;
  color: var(--primary); transition: gap .15s;
}
.card-link:hover { gap: 10px; }
.tag-hot {
  position: absolute; top: 16px; right: 16px;
  background: #fff3e8; color: #c9401c; font-size: 11px; font-weight: 700;
  border-radius: 100px; padding: 3px 10px; text-transform: uppercase; letter-spacing: .05em;
}

/* ── PLANS ── */
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.plan-card {
  background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px 26px; display: flex; flex-direction: column; position: relative; transition: border-color .2s;
}
.plan-card.featured { border-color: var(--primary); border-width: 2px; }
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: white; font-size: 12px; font-weight: 600;
  border-radius: 100px; padding: 3px 16px; white-space: nowrap;
}
.plan-name { font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.plan-price { display: flex; align-items: baseline; gap: 3px; margin-bottom: 4px; }
.plan-price strong { font-size: clamp(30px, 3vw, 36px); font-weight: 700; color: var(--text); }
.plan-price span { font-size: 15px; color: var(--text-muted); }
.plan-sub { font-size: 12px; color: var(--text-light); margin-bottom: 22px; }
.plan-btn {
  display: block; text-align: center; padding: 12px; border-radius: 9px;
  font-size: 15px; font-weight: 600; margin-bottom: 24px; cursor: pointer;
  transition: .15s; border: none; font-family: 'Inter', sans-serif;
}
.plan-card.featured .plan-btn { background: var(--accent); color: white; }
.plan-card.featured .plan-btn:hover { background: var(--accent-hover); }
.plan-card:not(.featured) .plan-btn {
  background: var(--bg-soft); color: var(--primary); border: 1.5px solid var(--border);
}
.plan-card:not(.featured) .plan-btn:hover { border-color: var(--primary); }
.plan-features { display: flex; flex-direction: column; gap: 9px; flex: 1; }
.pf { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--text-muted); }
.pf-check { color: var(--green); font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.pf-x { color: #cbd5e1; font-size: 15px; flex-shrink: 0; margin-top: 1px; }

/* ── FEATURES ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
.feat { text-align: center; }
.feat-icon {
  width: 60px; height: 60px; border-radius: 18px; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center; font-size: 28px;
}
.feat h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feat p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ── LOCATIONS ── */
.locations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.location-card {
  background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px 22px; display: flex; align-items: center; gap: 16px;
  transition: border-color .2s;
}
.location-card:hover { border-color: var(--primary); }
.location-flag { font-size: 32px; }
.location-info h4 { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.location-info span { font-size: 12px; color: var(--text-muted); }
.location-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); margin-left: auto; flex-shrink: 0; }

/* ── TABLE ── */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1.5px solid var(--border); }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th { background: var(--bg-soft); padding: 14px 18px; text-align: left; font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; border-bottom: 1px solid var(--border); }
td { padding: 14px 18px; border-bottom: 1px solid var(--border); color: var(--text-muted); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--bg-soft); }
td.name { font-weight: 600; color: var(--text); }
td .check { color: var(--green); }
td .x { color: #cbd5e1; }

/* ── STEPS ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; counter-reset: step; }
.step { position: relative; padding-left: 0; text-align: center; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%; background: var(--primary); color: white;
  display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700;
  margin: 0 auto 16px;
}
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg, var(--accent) 0%, #c94a1a 100%);
  color: white; text-align: center; padding: 72px 24px;
}
.cta-strip h2 { font-size: clamp(24px, 3.5vw, 38px); font-weight: 700; margin-bottom: 12px; }
.cta-strip p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.cta-strip a {
  display: inline-block; background: white; color: var(--accent); padding: 14px 36px;
  border-radius: 10px; font-size: 16px; font-weight: 700; transition: .15s;
}
.cta-strip a:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ── STAT CARDS ── */
.stats-row { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; margin-top: 48px; }
.stat-card {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg); padding: 24px 32px; text-align: center; min-width: 160px;
}
.stat-card strong { display: block; font-size: 36px; font-weight: 700; color: white; }
.stat-card span { font-size: 13px; color: rgba(255,255,255,0.7); }

/* ── FAQ ── */
.faq { display: flex; flex-direction: column; gap: 12px; max-width: 780px; margin: 0 auto; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  padding: 18px 22px; font-weight: 600; font-size: 15px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: var(--bg); transition: background .15s;
}
.faq-q:hover { background: var(--bg-soft); }
.faq-q .arrow { transition: transform .2s; font-size: 18px; color: var(--text-muted); }
.faq-item.open .arrow { transform: rotate(180deg); }
.faq-a { padding: 0 22px 18px; font-size: 14px; color: var(--text-muted); line-height: 1.7; display: none; }
.faq-item.open .faq-a { display: block; }

/* ── FOOTER ── */
footer { background: var(--bg-dark); color: rgba(255,255,255,0.7); padding: 60px 24px 28px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
.footer-brand .logo { color: white; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 230px; }
.footer-social { display: flex; gap: 8px; margin-top: 18px; }
.social-btn {
  width: 34px; height: 34px; border-radius: 7px; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; font-size: 13px;
  font-weight: 700; color: rgba(255,255,255,0.6); transition: background .15s;
}
.social-btn:hover { background: rgba(255,255,255,0.18); color: white; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color .15s; }
.footer-col ul a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
}
.footer-bottom p { font-size: 13px; }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color .15s; }
.footer-legal a:hover { color: white; }

/* ── BREADCRUMB ── */
.breadcrumb { padding: 12px 24px; background: var(--bg-soft); border-bottom: 1px solid var(--border); font-size: 13px; color: var(--text-muted); }
.breadcrumb .bc-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 8px; align-items: center; }
.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: var(--text-light); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  section { padding: 52px 16px; }
}
