/* ============================================================
   RM International — Premium Consultancy Stylesheet
   ============================================================ */

:root {
  --bg: #08111f;
  --bg-2: #0c1626;
  --bg-3: #101f35;
  --surface: #0e1a2d;
  --surface-2: #13233b;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #eef3fa;
  --text-dim: #9fb0c7;
  --text-mute: #6f829c;
  --gold: #efc15f;
  --gold-soft: rgba(239, 193, 95, 0.12);
  --blue: #4da3ff;
  --blue-soft: rgba(77, 163, 255, 0.12);
  --green: #4ade80;
  --red: #ff6b6b;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --maxw: 1200px;
  --shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.gold { color: var(--gold); }
.blue { color: var(--blue); }
.lead { color: var(--text-dim); font-size: 1.12rem; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: #1a1204;
  box-shadow: 0 12px 30px -12px rgba(239, 193, 95, 0.6);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(239, 193, 95, 0.75); }
.btn-blue { background: var(--blue); color: #041427; }
.btn-blue:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost { background: rgba(255,255,255,0.04); color: var(--text); border-color: var(--border); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn-lg { padding: 17px 36px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 17, 31, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--gold), #c8992f);
  color: #12100a;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: -0.05em;
  box-shadow: 0 8px 22px -8px rgba(239,193,95,0.7);
}
.logo small { display: block; font-size: 0.62rem; font-weight: 500; color: var(--text-mute); letter-spacing: 0.15em; text-transform: uppercase; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.25s ease;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-actions { display: flex; align-items: center; gap: 14px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--text); border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding: 100px 0; }
.section-sm { padding: 70px 0; }
.bg-alt { background: var(--bg-2); }
.bg-panel { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 130px 0 110px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -30%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(77,163,255,0.16), transparent 60%);
  filter: blur(20px);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -40%; left: -15%;
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(239,193,95,0.10), transparent 60%);
  filter: blur(20px);
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  max-width: 15ch;
  margin-bottom: 24px;
}
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--text-dim); max-width: 60ch; margin-bottom: 38px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-inner-sm h1 { font-size: clamp(2rem, 5vw, 3.4rem); }

.page-hero { padding: 110px 0 80px; }
.page-hero .breadcrumb { font-size: 0.85rem; color: var(--text-mute); margin-bottom: 20px; }
.page-hero .breadcrumb a:hover { color: var(--gold); }

/* ---------- Grid utilities ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.4s var(--ease), border-color 0.4s ease, background 0.4s ease;
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-6px); border-color: var(--border-strong); background: var(--surface-2); }
.card .card-icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: var(--gold-soft);
  color: var(--gold);
  display: grid; place-items: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.card.blue-icon .card-icon { background: var(--blue-soft); color: var(--blue); }
.card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.card p { color: var(--text-dim); font-size: 0.96rem; }
.card-link { color: var(--gold); font-weight: 600; font-size: 0.9rem; margin-top: 16px; display: inline-flex; gap: 6px; }
.card-link:hover { gap: 12px; transition: gap 0.25s ease; }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  text-align: center;
  padding: 34px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.stat-num { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; color: var(--gold); letter-spacing: -0.03em; }
.stat-label { color: var(--text-dim); font-size: 0.9rem; margin-top: 6px; }

/* ---------- Split CTA path ---------- */
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 20px; }
.path-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: all 0.4s var(--ease);
}
.path-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.path-card .tag { font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.path-card h3 { font-size: 1.6rem; margin: 12px 0; }
.path-card p { color: var(--text-dim); margin-bottom: 24px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { position: relative; padding: 32px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.step-num {
  font-size: 2.2rem; font-weight: 800; color: var(--gold);
  opacity: 0.35; letter-spacing: -0.04em; line-height: 1;
}
.step h3 { font-size: 1.25rem; margin: 14px 0 10px; }
.step p { color: var(--text-dim); font-size: 0.95rem; }

/* ---------- Timeline (process) ---------- */
.timeline { position: relative; max-width: 820px; margin: 0 auto; }
.timeline::before {
  content: ""; position: absolute; left: 27px; top: 10px; bottom: 10px;
  width: 2px; background: linear-gradient(180deg, var(--gold), transparent);
}
.tl-item { position: relative; padding: 0 0 42px 82px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: 6px; top: 0;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--border-strong);
  display: grid; place-items: center; font-weight: 800; color: var(--gold);
  z-index: 1;
}
.tl-item h3 { font-size: 1.25rem; margin-bottom: 8px; }
.tl-item p { color: var(--text-dim); }

/* ---------- Country cards ---------- */
.country-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.country-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: all 0.4s var(--ease);
}
.country-card:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.country-flag { font-size: 2.6rem; margin-bottom: 14px; line-height: 1; }
.country-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.country-card .facts { color: var(--text-mute); font-size: 0.85rem; margin-bottom: 14px; }
.country-card ul.progs { margin: 14px 0; }
.country-card ul.progs li { color: var(--text-dim); font-size: 0.9rem; padding: 4px 0 4px 22px; position: relative; }
.country-card ul.progs li::before { content: "→"; position: absolute; left: 0; color: var(--blue); }

/* ---------- Feature list / checks ---------- */
.check-list li {
  padding: 12px 0 12px 34px; position: relative; color: var(--text-dim);
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 12px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold-soft); color: var(--gold);
  display: grid; place-items: center; font-size: 0.75rem; font-weight: 700;
}
.check-list li strong { color: var(--text); }

/* ---------- Info panel / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-wide { grid-template-columns: 1.1fr 0.9fr; }
.panel {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
}

/* ---------- Callout / alert ---------- */
.callout {
  border-radius: var(--radius); padding: 28px 32px;
  border: 1px solid var(--border); background: var(--surface);
}
.callout-gold { border-left: 3px solid var(--gold); background: var(--gold-soft); }
.callout-blue { border-left: 3px solid var(--blue); background: var(--blue-soft); }
.callout-red { border-left: 3px solid var(--red); background: rgba(255,107,107,0.08); }
.callout h3 { margin-bottom: 10px; font-size: 1.2rem; }
.callout p { color: var(--text-dim); }

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
}
.testimonial .quote { font-size: 1.05rem; color: var(--text); margin-bottom: 20px; font-style: italic; }
.testimonial .stars { color: var(--gold); margin-bottom: 14px; letter-spacing: 3px; }
.testimonial .who { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(145deg, var(--blue), #2b6bb0);
  display: grid; place-items: center; font-weight: 700; color: #041427;
}
.who .meta strong { display: block; font-size: 0.95rem; }
.who .meta span { color: var(--text-mute); font-size: 0.82rem; }

/* ---------- Trust / big CTA ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(239,193,95,0.12), transparent 55%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.cta-band p { color: var(--text-dim); max-width: 55ch; margin: 0 auto 30px; }
.cta-band .btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Forms ---------- */
.form-wrap {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; color: var(--text-dim); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.field textarea { min-height: 130px; resize: vertical; }
.field select { appearance: none; cursor: pointer; }

/* ---------- FAQ ---------- */
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  margin-bottom: 14px; background: var(--surface); overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; background: none; border: none; color: var(--text);
  padding: 20px 24px; font-size: 1.02rem; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: inherit;
}
.faq-q .plus { color: var(--gold); font-size: 1.4rem; transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 24px 22px; color: var(--text-dim); }
.faq-item.open .faq-a { max-height: 360px; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all 0.4s var(--ease); display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.blog-thumb {
  height: 170px;
  display: grid; place-items: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--bg-3), var(--surface-2));
  border-bottom: 1px solid var(--border);
}
.blog-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.blog-tag { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); font-weight: 600; margin-bottom: 10px; }
.blog-body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.blog-body p { color: var(--text-dim); font-size: 0.92rem; flex: 1; }
.blog-meta { color: var(--text-mute); font-size: 0.82rem; margin-top: 16px; }

/* ---------- Team ---------- */
.team-card { text-align: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 24px; transition: all 0.4s var(--ease); }
.team-card:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.team-avatar {
  width: 92px; height: 92px; border-radius: 50%; margin: 0 auto 18px;
  background: linear-gradient(145deg, var(--gold), #b8862a);
  display: grid; place-items: center; font-size: 1.8rem; font-weight: 800; color: #17130a;
}
.team-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.team-card .role { color: var(--gold); font-size: 0.88rem; font-weight: 600; margin-bottom: 12px; }
.team-card p { color: var(--text-dim); font-size: 0.9rem; }

/* ---------- Office cards ---------- */
.office-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.office-card .badge { display: inline-block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; padding: 5px 12px; border-radius: 999px; margin-bottom: 16px; }
.badge-main { background: var(--gold-soft); color: var(--gold); }
.badge-partner { background: var(--blue-soft); color: var(--blue); }
.office-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.office-card p { color: var(--text-dim); font-size: 0.95rem; margin-bottom: 6px; }

/* ---------- Values ---------- */
.value-item { padding: 26px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.value-item .v-icon { font-size: 1.8rem; margin-bottom: 12px; }
.value-item h3 { font-size: 1.15rem; margin-bottom: 8px; }
.value-item p { color: var(--text-dim); font-size: 0.92rem; }

/* ---------- Contact info blocks ---------- */
.contact-info-item { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-info-item .ci-icon {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px;
  background: var(--gold-soft); color: var(--gold); display: grid; place-items: center; font-size: 1.2rem;
}
.contact-info-item h4 { font-size: 1rem; margin-bottom: 3px; }
.contact-info-item p, .contact-info-item a { color: var(--text-dim); font-size: 0.92rem; }
.contact-info-item a:hover { color: var(--gold); }

.map-placeholder {
  height: 280px; border-radius: var(--radius); border: 1px dashed var(--border-strong);
  background: var(--surface); display: grid; place-items: center; text-align: center; color: var(--text-mute);
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  font-size: 1.7rem; box-shadow: 0 12px 30px -8px rgba(37,211,102,0.6);
  transition: transform 0.3s ease;
}
.wa-float:hover { transform: scale(1.1); }

/* ---------- Dashboard ---------- */
.dash-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.dash-tile {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; transition: all 0.35s var(--ease);
}
.dash-tile:hover { transform: translateY(-4px); border-color: var(--gold); }
.dash-tile .dt-icon { font-size: 1.6rem; margin-bottom: 12px; }
.dash-tile h3 { font-size: 1.05rem; margin-bottom: 4px; }
.dash-tile span { color: var(--text-mute); font-size: 0.82rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
  margin-top: 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand p { color: var(--text-dim); font-size: 0.92rem; margin: 18px 0; max-width: 34ch; }
.footer-col h4 { font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { color: var(--text-dim); font-size: 0.92rem; transition: color 0.25s ease; }
.footer-col ul li a:hover { color: var(--text); }
.social { display: flex; gap: 12px; margin-top: 6px; }
.social a {
  width: 38px; height: 38px; border-radius: 10px; background: var(--surface);
  border: 1px solid var(--border); display: grid; place-items: center; color: var(--text-dim);
  transition: all 0.3s ease; font-size: 0.95rem;
}
.social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 26px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: var(--text-mute); font-size: 0.85rem;
}
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Misc ---------- */
.pill { display: inline-block; padding: 6px 14px; border-radius: 999px; font-size: 0.8rem; background: var(--surface-2); border: 1px solid var(--border); color: var(--text-dim); margin: 4px 4px 4px 0; }
.divider { height: 1px; background: var(--border); margin: 60px 0; }
.mt-40 { margin-top: 40px; } .mt-24 { margin-top: 24px; } .mb-0 { margin-bottom: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .country-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .split, .split-wide { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .dash-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 74px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 24px;
    transform: translateY(-140%);
    transition: transform 0.4s var(--ease);
    height: calc(100vh - 74px);
    max-height: 0;
    overflow: hidden;
  }
  .nav-links.open { transform: translateY(0); max-height: 100vh; }
  .nav-links a { width: 100%; padding: 15px 0; border-bottom: 1px solid var(--border); font-size: 1.05rem; }
  .nav-links a.active::after { display: none; }
  .nav-actions .btn { display: none; }
  .nav-links .btn { display: inline-flex; width: 100%; margin-top: 16px; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .paths { grid-template-columns: 1fr; }
  .country-grid, .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .dash-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 40px 24px; }
  .section { padding: 70px 0; }
  .hero { padding: 90px 0 70px; }
  .tl-item { padding-left: 68px; }
}
