/* ============================================================
   SIMPIRATE.COM — Master Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── Variables ──────────────────────────────────────────────────────────── */
:root {
  --red:      #c94733;
  --red2:     #b33e2c;
  --red-glow: rgba(201,71,51,.35);
  --gold:     #d4af37;
  --gold2:    #b8941e;
  --dark:     #0d0d14;
  --dark2:    #111119;
  --dark3:    #1a1a28;
  --dark4:    #252535;
  --light:    #f4f4f8;
  --white:    #ffffff;
  --border:   #e4e4ec;
  --border2:  #d0d0de;
  --text:     #1a1a2e;
  --muted:    #5c5c78;
  --muted2:   #8888a0;
  --radius:   12px;
  --radius-lg: 20px;
  --shadow:    0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.16);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;
  --max-width: 1120px;
  --header-h: 78px;
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--light);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── Container ──────────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ─────────────────────────────────────────────────────────────── */
.site-header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  box-shadow: 0 2px 24px rgba(0,0,0,.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo { display: block; flex-shrink: 0; }
.logo img { height: 68px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 4px; }

.main-nav a {
  display: inline-block;
  color: #bbb;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all .2s;
  letter-spacing: .02em;
  white-space: nowrap;
}
.main-nav a:hover { background: rgba(255,255,255,.08); color: #fff; }
.main-nav a.active { background: var(--red); color: #fff; }

.nav-cta {
  display: inline-block;
  background: var(--red) !important;
  color: #fff !important;
  padding: 9px 18px !important;
  border-radius: 8px;
  font-weight: 700 !important;
  margin-left: 6px;
  transition: all .2s !important;
}
.nav-cta:hover { background: var(--red2) !important; transform: translateY(-1px); }

.menu-toggle {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  padding: 6px;
  user-select: none;
}

/* ── Breadcrumb ─────────────────────────────────────────────────────────── */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); transition: color .15s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { margin: 0 6px; }

/* ── Trust bar ──────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.trust-sep { width: 1px; height: 18px; background: var(--border); }

/* ── Hero (dark) ────────────────────────────────────────────────────────── */
.hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: gridDrift 24s linear infinite;
  pointer-events: none;
}
.hero-wave {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 70px;
  background: linear-gradient(to bottom, transparent, var(--light));
  pointer-events: none;
  z-index: 2;
}
.hero-glow {
  position: absolute;
  top: -150px; right: -150px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,71,51,.2) 0%, transparent 65%);
  pointer-events: none;
}
.hero-glow-left {
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.07) 0%, transparent 65%);
  pointer-events: none;
}
@keyframes gridDrift {
  0%   { background-position: 0 0; }
  100% { background-position: 64px 64px; }
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 3;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,.1);
  border: 1px solid rgba(212,175,55,.28);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 40px;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-lead {
  font-size: 18px;
  color: #aaa;
  max-width: 520px;
  line-height: 1.72;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.07);
  flex-wrap: wrap;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: 12px; color: #777; margin-top: 5px; letter-spacing: .03em; }

/* Hero card (right side) */
.hero-card {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 26px;
  backdrop-filter: blur(10px);
}
.hero-card-title { font-size: 12px; color: #777; text-transform: uppercase; letter-spacing: .07em; font-weight: 700; margin-bottom: 16px; }

.mini-deal {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  margin-bottom: 8px;
  text-decoration: none;
  transition: all .2s;
}
.mini-deal:hover { background: rgba(255,255,255,.08); border-color: rgba(201,71,51,.4); }
.mini-deal img { height: 20px; width: auto; filter: brightness(0) invert(1); opacity: .8; }
.mini-deal-pname { font-size: 13px; color: #fff; font-weight: 600; width: 90px; }
.mini-deal-info { flex: 1; }
.mini-deal-sub { font-size: 12px; color: #777; }
.mini-deal-price { font-size: 16px; font-weight: 800; color: var(--gold); }
.hero-card-footer { margin-top: 16px; text-align: center; font-size: 13px; }
.hero-card-footer a { color: var(--red); font-weight: 600; }
.hero-card-footer a:hover { color: #e05540; }

/* ── Page hero (inner pages) ────────────────────────────────────────────── */
.page-hero {
  background: var(--dark);
  padding: 60px 0 76px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.page-hero-glow {
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,71,51,.18) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
}
.page-hero-inner .page-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,.1);
  border: 1px solid rgba(212,175,55,.28);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 40px;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.page-hero-inner h1 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 16px;
}
.page-hero-inner p {
  font-size: 18px;
  color: #999;
  max-width: 620px;
  line-height: 1.7;
}
.page-hero-wave {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--light));
  pointer-events: none;
  z-index: 2;
}

/* ── Section ─────────────────────────────────────────────────────────────── */
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }

.section-tag {
  display: inline-block;
  background: rgba(201,71,51,.1);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 40px;
  margin-bottom: 14px;
}
.section-tag-gold {
  background: rgba(212,175,55,.12);
  color: var(--gold2);
}
.section h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.18;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
}
.section-header { margin-bottom: 44px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: all .2s;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  text-decoration: none;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 18px var(--red-glow);
}
.btn-primary:hover { background: var(--red2); transform: translateY(-2px); box-shadow: 0 8px 28px var(--red-glow); }

.btn-outline {
  border: 1.5px solid #444;
  color: #bbb;
  background: transparent;
}
.btn-outline:hover { border-color: #999; color: #fff; }

.btn-outline-dark {
  border: 2px solid var(--text);
  color: var(--text);
  background: transparent;
}
.btn-outline-dark:hover { background: var(--text); color: #fff; }

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); }

.btn-sm { padding: 9px 18px; font-size: 13px; }

/* Deal button */
.btn-deal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: #fff;
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  transition: all .2s;
  box-shadow: 0 3px 10px rgba(201,71,51,.3);
}
.btn-deal:hover { background: var(--red2); transform: translateY(-1px); }

.btn-deal-soon {
  display: inline-block;
  background: #ededf2;
  color: #aaa;
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 12px;
  white-space: nowrap;
  letter-spacing: .02em;
  cursor: default;
  border: 1.5px dashed #d4d4e0;
}

/* ── Provider Table ──────────────────────────────────────────────────────── */
.providers-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.filter-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.filter-label { font-size: 12px; color: var(--muted); font-weight: 700; letter-spacing: .05em; text-transform: uppercase; margin-right: 4px; }
.filter-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 12.5px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  transition: all .18s;
  background: transparent;
  font-family: var(--font-body);
  letter-spacing: .01em;
}
.filter-pill:hover { border-color: var(--text); color: var(--text); }
.filter-pill.active { background: var(--dark); color: #fff; border-color: var(--dark); }

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.ptable {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}
.ptable th {
  text-align: left;
  padding: 13px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted2);
  background: #fafafa;
  border-bottom: 1px solid var(--border);
}
.ptable td {
  padding: 16px 18px;
  border-bottom: 1px solid #f2f2f8;
  vertical-align: middle;
  font-size: 14px;
}
.ptable tr:last-child td { border-bottom: none; }
.ptable tbody tr:hover td { background: #fafbff; }

.prov-cell { display: flex; align-items: center; gap: 12px; }
.prov-logo-wrap { width: 100px; height: 32px; display: flex; align-items: center; flex-shrink: 0; }
.prov-logo-wrap img { max-height: 26px; width: auto; }
.prov-logo-text { font-weight: 700; font-size: 15px; color: var(--text); }
.prov-name { font-weight: 700; font-size: 14px; color: var(--text); }
.prov-sub { font-size: 12px; color: var(--muted2); margin-top: 2px; }

.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 40px;
  letter-spacing: .02em;
  white-space: nowrap;
}
.badge-best     { background: rgba(212,175,55,.14); color: #8a6800; border: 1px solid rgba(212,175,55,.35); }
.badge-popular  { background: rgba(201,71,51,.1);   color: var(--red);  border: 1px solid rgba(201,71,51,.22); }
.badge-value    { background: rgba(34,139,34,.1);   color: #1a6b1a; border: 1px solid rgba(34,139,34,.25); }

.data-cell { font-weight: 700; font-size: 14px; }
.data-cell small { display: block; font-size: 11px; font-weight: 400; color: var(--muted2); margin-top: 2px; }
.price-cell { font-weight: 800; font-size: 18px; color: var(--text); }
.price-cell small { display: block; font-size: 11px; font-weight: 400; color: var(--muted2); margin-top: 2px; }

.stars { color: var(--gold); font-size: 12px; letter-spacing: -1px; }
.rating-num { font-size: 12px; font-weight: 600; color: var(--muted); margin-left: 3px; }

.bool-yes { color: #1a9a3a; font-size: 15px; }
.bool-no  { color: #ccc; font-size: 13px; }

.table-footer {
  padding: 14px 22px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  background: #fafafa;
}
.table-footer p { font-size: 12px; color: var(--muted2); }
.table-footer a { font-size: 13px; font-weight: 600; color: var(--red); }

/* ── Countries Grid ──────────────────────────────────────────────────────── */
.countries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.country-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: all .2s;
  text-align: center;
  text-decoration: none;
}
.country-card:hover {
  border-color: var(--red);
  background: #fff5f4;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201,71,51,.1);
  color: var(--red);
}
.country-flag { width: 48px; height: 36px; display: block; overflow: hidden; border-radius: 4px; box-shadow: 0 2px 6px rgba(0,0,0,.12); }
.country-flag img { width: 100%; height: 100%; object-fit: cover; }
.country-price { font-size: 11px; color: var(--muted2); font-weight: 400; }

/* ── How it works steps ──────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 34px;
  left: calc(12.5% + 34px);
  right: calc(12.5% + 34px);
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  opacity: .2;
}
.step-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: all .25s;
}
.step-card:hover { background: rgba(255,255,255,.07); border-color: rgba(201,71,51,.35); transform: translateY(-4px); }
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red2));
  color: #fff;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(201,71,51,.4);
}
.step-icon { font-size: 26px; margin-bottom: 10px; }
.step-card h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.step-card p { font-size: 13px; color: #888; line-height: 1.6; }

/* ── Why cards ───────────────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  padding: 30px 26px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  opacity: 0;
  transition: opacity .25s;
}
.why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.why-card:hover::before { opacity: 1; }
.why-icon { font-size: 34px; margin-bottom: 16px; }
.why-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── Dark section background ────────────────────────────────────────────── */
.dark-section {
  background: var(--dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.dark-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(201,71,51,.12) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 50%, rgba(212,175,55,.08) 0%, transparent 55%);
  pointer-events: none;
}
.dark-section .section-tag { background: rgba(212,175,55,.12); color: var(--gold); }
.dark-section h2 { color: #fff; }
.dark-section .section-sub { color: #888; }

/* ── Banner CTA ──────────────────────────────────────────────────────────── */
.banner-section { padding: 0 0 80px; }
.banner {
  background: linear-gradient(135deg, var(--dark) 0%, #1c0908 100%);
  border-radius: 24px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.05);
}
.banner::before {
  content: '';
  position: absolute; right: -80px; top: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.1) 0%, transparent 65%);
}
.banner-content { position: relative; z-index: 2; }
.banner h2 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}
.banner p { font-size: 16px; color: #888; max-width: 460px; line-height: 1.7; }
.banner-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.banner-mascot { position: relative; z-index: 2; flex-shrink: 0; }
.banner-mascot img { height: 150px; width: auto; animation: float 4s ease-in-out infinite; }

/* ── Content prose ───────────────────────────────────────────────────────── */
.prose { max-width: 780px; }
.prose h2 { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--text); margin: 40px 0 14px; }
.prose h3 { font-size: 20px; font-weight: 700; color: var(--text); margin: 28px 0 10px; }
.prose p { font-size: 16px; color: #444; line-height: 1.75; margin-bottom: 18px; }
.prose ul, .prose ol { margin: 0 0 20px 20px; }
.prose li { font-size: 16px; color: #444; line-height: 1.7; margin-bottom: 8px; list-style: disc; }
.prose ol li { list-style: decimal; }
.prose a { color: var(--red); font-weight: 500; }
.prose a:hover { text-decoration: underline; }
.prose strong { color: var(--text); }

/* Info box */
.info-box {
  background: rgba(212,175,55,.08);
  border: 1px solid rgba(212,175,55,.25);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
}
.info-box strong { color: var(--gold2); }

/* ── Province/region pills ───────────────────────────────────────────────── */
.region-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.region-tab {
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  transition: all .18s;
  background: var(--white);
}
.region-tab:hover { border-color: var(--text); color: var(--text); }
.region-tab.active { background: var(--dark); color: #fff; border-color: var(--dark); }

/* ── Provider card grid ──────────────────────────────────────────────────── */
.provider-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.provider-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all .25s;
  display: flex;
  flex-direction: column;
}
.provider-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--border2); }
.provider-card-head {
  padding: 24px 22px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
}
.provider-card-logo { height: 28px; width: auto; max-width: 110px; }
.provider-card-logo-text { font-weight: 800; font-size: 18px; color: var(--text); }
.provider-card-body { padding: 18px 22px; flex: 1; }
.provider-card-body p { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.provider-card-stats { display: flex; gap: 18px; margin-bottom: 16px; }
.pcard-stat-num { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--text); }
.pcard-stat-label { font-size: 11px; color: var(--muted2); margin-top: 2px; }
.provider-card-foot { padding: 14px 22px; border-top: 1px solid var(--border); background: #fafafa; display: flex; justify-content: space-between; align-items: center; }
.provider-card-price { font-size: 12px; color: var(--muted); }
.provider-card-price strong { font-size: 16px; font-weight: 800; color: var(--text); }

/* ── Blog grid ───────────────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all .25s;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--dark3), var(--dark4));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: relative;
  overflow: hidden;
}
.blog-card-thumb::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom right, rgba(201,71,51,.2), transparent);
}
.blog-card-body { padding: 22px 20px; }
.blog-cat { font-size: 11px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.blog-card-body h3 { font-size: 17px; font-weight: 700; color: var(--text); line-height: 1.35; margin-bottom: 10px; }
.blog-card-body p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.blog-meta { font-size: 12px; color: var(--muted2); display: flex; gap: 12px; }

/* ── Contact form ────────────────────────────────────────────────────────── */
.contact-wrap { display: grid; grid-template-columns: 1fr 360px; gap: 60px; align-items: start; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--text); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 130px; }
.contact-info-card {
  background: var(--dark);
  border-radius: 16px;
  padding: 32px 28px;
  color: #fff;
}
.contact-info-card h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 20px; }
.contact-info-item { display: flex; gap: 12px; margin-bottom: 18px; align-items: flex-start; }
.contact-info-item .icon { font-size: 20px; margin-top: 2px; flex-shrink: 0; }
.contact-info-item h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.contact-info-item p { font-size: 13px; color: #888; line-height: 1.55; }

/* ── About page ──────────────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  background: var(--dark3);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
}
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
}
.team-avatar { font-size: 48px; margin-bottom: 12px; }
.team-card h4 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.team-card p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── Privacy / Terms ─────────────────────────────────────────────────────── */
.legal-layout { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
.legal-nav {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}
.legal-nav h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 14px; }
.legal-nav a {
  display: block;
  font-size: 13px;
  color: var(--muted);
  padding: 7px 10px;
  border-radius: 6px;
  margin-bottom: 2px;
  transition: all .15s;
}
.legal-nav a:hover { background: var(--light); color: var(--text); }
.legal-nav a.active { background: rgba(201,71,51,.08); color: var(--red); font-weight: 600; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: #fff;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 56px 0 52px;
}
.footer-brand img { height: 60px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: #777; line-height: 1.7; max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: all .2s;
}
.footer-social a:hover { background: var(--red); border-color: var(--red); }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 13.5px; color: #777; transition: color .18s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #181820;
  background: #080810;
  padding: 14px 0;
  text-align: center;
  font-size: 12px;
  color: #555;
}
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { text-decoration: underline; }

/* ── Animations ──────────────────────────────────────────────────────────── */
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }
.fade-up { animation: fadeUp .5s ease both; }

/* ── Utilities ───────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }
.white-bg { background: var(--white); }
.gap-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* Show all wrap */
.show-all { text-align: center; margin-top: 36px; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1060px) {
  .hero h1 { font-size: 46px; }
  .countries-grid { grid-template-columns: repeat(4,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; }
}
@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero h1 { font-size: 38px; }
  .hero { padding: 56px 0 80px; }
  .hero-card { display: none; }
  .page-hero-inner h1 { font-size: 36px; }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid::before { display: none; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .provider-cards { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .banner { flex-direction: column; padding: 44px 32px; text-align: center; }
  .banner p { margin: 0 auto; }
  .banner-ctas { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-h); left: 0; right: 0;
    background: var(--dark2);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px 24px;
    border-top: 1px solid #1a1a24;
    gap: 6px;
    z-index: 999;
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; padding: 10px 14px; }
}
@media (max-width: 640px) {
  .hero h1 { font-size: 30px; }
  .section h2 { font-size: 28px; }
  .countries-grid { grid-template-columns: repeat(3,1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .provider-cards { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .banner { padding: 32px 20px; }
  .banner h2 { font-size: 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .trust-sep { display: none; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
}
@media (max-width: 400px) {
  .countries-grid { grid-template-columns: repeat(2,1fr); }
}