/* ================================================
   RAKEZ – Logistics Support Knowledge Base
   Clean Professional Design
   ================================================ */

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

:root {
  /* Brand colours — teal primary, navy dark, white/grey neutral */
  --teal:        #009EA8;
  --teal-dark:   #007a82;
  --teal-light:  #f0fafb;
  --navy:        #1a2e3d;
  --navy-mid:    #243547;
  --green:       #1d9b67;
  --green-light: #edf8f3;
  --amber:       #b87a1e;
  --amber-light: #fdf6ec;
  --red:         #c0392b;
  --red-light:   #fef2f1;
  --white:       #ffffff;
  --surface:     #f8f9fb;
  --border:      #e4e9ef;
  --border-mid:  #cdd5df;
  --text-dark:   #1a2e3d;
  --text-mid:    #4a5a6a;
  --text-light:  #7a8fa0;
  --shadow-xs:   0 1px 2px rgba(0,0,0,.05);
  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow-md:   0 6px 20px rgba(0,0,0,.08);
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --ease: all .2s ease;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-mid);
  background: var(--white);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ─── Layout ─────────────────────────────── */
.container { max-width: 1480px; margin: 0 auto; padding: 0 48px; }

.section { padding: 96px 0; }
.section.bg-alt { background: var(--surface); }

.section-eyebrow {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.65rem, 2.8vw, 2.25rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 12px;
}
.section-desc {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 680px;
  line-height: 1.7;
}
.section-head {
  margin-bottom: 48px;
}
.section-head.centered {
  text-align: center;
}
.section-head.centered .section-desc { margin: 0 auto; }

/* ─── Header ─────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo-link { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.site-logo  { height: 70px; width: auto; display: block; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: var(--r-sm);
  transition: var(--ease);
  white-space: nowrap;
}
.main-nav a:hover { color: var(--teal); background: var(--teal-light); }
.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  margin-left: 6px;
}
.nav-cta:hover { background: var(--teal-dark) !important; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--navy);
  cursor: pointer;
  padding: 6px;
}

/* ─── Hero ───────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 96px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(26,46,61,.97) 55%, rgba(0,158,168,.18) 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: center;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(0,158,168,.35);
  background: rgba(0,158,168,.1);
  padding: 5px 13px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-pill i { font-size: 10px; }
.hero h1 {
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero h1 span { color: var(--teal); }
.hero-desc {
  font-size: 15.5px;
  color: rgba(255,255,255,.65);
  line-height: 1.72;
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--ease);
  border: 1.5px solid transparent;
  cursor: pointer;
  font-family: var(--font);
}
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-dark); }
.btn-ghost  { background: transparent; color: var(--white); border-color: rgba(255,255,255,.3); }
.btn-ghost:hover  { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.07); }

/* Hero stats panel */
.hero-stats {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 5px;
}
.stat-lbl {
  font-size: 11.5px;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  line-height: 1.35;
}

/* Routes section description — full width to match card grid */
.routes-desc { max-width: 100%; }

/* ─── Routes section ─────────────────────── */

/* Route group */
.route-group { margin-bottom: 52px; }
.route-group:last-of-type { margin-bottom: 0; }

.group-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 6px;
}
.group-label.uae  { background: var(--teal-light); color: var(--teal); }
.group-label.intl { background: var(--green-light); color: var(--green); }

.group-desc {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* ── Route card — reference style ─────────── */
.route-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  transition: box-shadow .2s ease, transform .2s ease;
}
.route-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.09);
  transform: translateY(-3px);
}

/* Card header */
.card-head {
  padding: 20px 22px 16px;
}

/* Top row: icon left, pill right */
.card-head-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

/* Icon box */
.card-icon-box {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.icon-teal  { background: var(--teal-light); color: var(--teal); }
.icon-green { background: var(--teal-light); color: var(--teal); }
.icon-amber { background: var(--teal-light); color: var(--teal); }
.icon-gray  { background: var(--surface);    color: var(--text-light); }

/* Status pill */
.card-pill {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.pill-active    { background: var(--teal-light); color: var(--teal-dark); }
.pill-corridor  { background: var(--teal-light); color: var(--teal-dark); }
.pill-advisory  { background: var(--surface); color: var(--text-mid); border: 1px solid var(--border); }
.pill-reference { background: var(--surface); color: var(--text-light); border: 1px solid var(--border); }

/* Card title & location */
.card-name {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 6px;
}
.card-location {
  font-size: 13.5px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}
.card-location i { font-size: 11px; }

/* Cargo tags section — sits between header and bullets */
.card-cargo {
  padding: 16px 22px 18px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.cargo-label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
}
.cargo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 20px;
  line-height: 1.5;
  white-space: nowrap;
}
.tag-teal  { background: var(--surface); color: var(--text-mid); border: 1px solid var(--border); }
.tag-green { background: var(--surface); color: var(--text-mid); border: 1px solid var(--border); }
.tag-amber { background: var(--surface); color: var(--text-mid); border: 1px solid var(--border); }
.tag-gray  { background: var(--surface); color: var(--text-mid); border: 1px solid var(--border); }
.tag-bold  { font-weight: 600; }

/* Bullet list with dividers */
.card-bullets {
  list-style: none;
  flex: 1;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
}
.card-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 22px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
}
.card-bullets li:last-child { border-bottom: none; }
.card-bullets li i {
  color: var(--teal);
  font-size: 13px;
  margin-top: 3px;
  flex-shrink: 0;
}
.card-bullets.green-bullets li i { color: var(--teal); }

/* Footer callout */
.card-callout {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 15px 22px;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
  border-top: 1px solid var(--border);
}
.callout-teal  {
  background: var(--teal-light);
  color: var(--teal-dark);
  border-left: 3px solid var(--teal);
  border-top: none;
}
.callout-green {
  background: var(--teal-light);
  color: var(--teal-dark);
  border-left: 3px solid var(--teal);
  border-top: none;
}
.callout-amber {
  background: var(--surface);
  color: var(--text-mid);
  border-left: 3px solid var(--border-mid);
  border-top: none;
}
.callout-gray {
  background: var(--surface);
  color: var(--text-mid);
  border-left: 3px solid var(--border-mid);
  border-top: none;
}
.card-callout i { font-size: 13px; margin-top: 1px; flex-shrink: 0; }

/* Routes disclaimer */
.routes-note {
  margin-top: 32px;
  padding: 18px 22px;
  border-left: 4px solid var(--teal);
  background: var(--teal-light);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 14px;
  color: var(--teal-dark);
  display: flex;
  align-items: flex-start;
  gap: 11px;
}
.routes-note i { margin-top: 2px; font-size: 15px; flex-shrink: 0; }

/* ─── RAKEZ Support ──────────────────────── */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.support-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 24px;
  transition: var(--ease);
}
.support-card:hover { box-shadow: var(--shadow-sm); border-color: var(--border-mid); }
.s-icon {
  width: 44px; height: 44px;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}
.support-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.support-card p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* HP RAK panel */
.hprak-panel {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--navy);
}
.hprak-panel-head {
  padding: 15px 26px;
  background: rgba(0,158,168,.15);
  border-bottom: 1px solid rgba(0,158,168,.18);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
}
.hprak-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.hprak-col {
  padding: 24px 26px;
}
.hprak-col + .hprak-col {
  border-left: 1px solid rgba(255,255,255,.07);
}
.hprak-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.hprak-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}
.hprak-list li i { color: var(--teal); font-size: 11px; margin-top: 3px; flex-shrink: 0; }

.dist-table-wrap { padding: 0 26px 22px; }
.dist-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.dist-table th {
  text-align: left;
  padding: 9px 10px;
  background: rgba(0,158,168,.1);
  color: var(--teal);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0,158,168,.18);
}
.dist-table td {
  padding: 9px 10px;
  color: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.dist-table tr:last-child td { border-bottom: none; }
.dist-table .good { color: var(--teal); font-weight: 600; }
.dist-table .bad  { color: rgba(255,255,255,.35); }

/* ─── Process Flow ───────────────────────── */
.tab-row {
  display: flex;
  gap: 6px;
  background: var(--surface);
  padding: 4px;
  border-radius: var(--r-md);
  width: fit-content;
  margin-bottom: 36px;
}
.tab-btn {
  padding: 8px 20px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--ease);
  font-family: var(--font);
}
.tab-btn.active {
  background: var(--white);
  color: var(--teal);
  box-shadow: var(--shadow-xs);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.flow-row {
  display: flex;
  align-items: flex-start;
  overflow-x: auto;
  padding-bottom: 4px;
}
.flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 155px;
}
.flow-dot-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 14px;
}
.flow-dot {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  border: 2px solid;
}
.dot-uae  { background: var(--teal-light);  border-color: var(--teal);  color: var(--teal); }
.dot-oman { background: var(--green-light); border-color: var(--green); color: var(--green); }
.flow-line {
  flex: 1;
  height: 1px;
  border-top: 1.5px dashed var(--border-mid);
  margin-top: 0;
}
.flow-line.hidden { opacity: 0; }

.flow-text { text-align: center; padding: 0 8px; }
.flow-step-num {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 5px;
}
#panel-oman .flow-step-num { color: var(--green); }
.flow-text h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}
.flow-text p {
  font-size: 11.5px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 8px;
}
.flow-action {
  font-size: 11px;
  font-weight: 500;
  color: var(--teal);
  background: var(--teal-light);
  border-radius: var(--r-sm);
  padding: 4px 8px;
  text-align: left;
  line-height: 1.4;
}
#panel-oman .flow-action { color: var(--green); background: var(--green-light); }

.flow-note {
  margin-top: 24px;
  padding: 13px 16px;
  border-left: 3px solid var(--teal);
  background: var(--teal-light);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 13px;
  color: var(--teal-dark);
  display: flex;
  align-items: flex-start;
  gap: 9px;
}
.flow-note.note-oman {
  border-left-color: var(--green);
  background: var(--green-light);
  color: var(--green);
}
.flow-note i { margin-top: 2px; flex-shrink: 0; }

/* ─── What to Prepare ────────────────────── */
.prep-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}
.prep-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 22px;
  transition: var(--ease);
}
.prep-item:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.prep-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--teal);
  opacity: .3;
  line-height: 1;
  min-width: 30px;
  flex-shrink: 0;
  padding-top: 2px;
}
.prep-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.prep-item p { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

/* ─── Route Map ──────────────────────────── */
.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 14px;
}
.leg-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--text-mid);
}
.leg-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.d-gold  { background: #b8882a; }
.d-teal  { background: var(--teal); }
.d-green { background: var(--green); }
.d-amber { background: var(--amber); }
.d-red   { background: var(--red); }

#routeMap {
  height: 520px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}

/* ─── FAQs ───────────────────────────────── */
.faq-search {
  position: relative;
  max-width: 560px;
  margin: 0 auto 18px;
}
.faq-search i {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 13px;
}
.faq-search input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 14px;
  color: var(--text-dark);
  font-family: var(--font);
  background: var(--white);
  outline: none;
  transition: var(--ease);
}
.faq-search input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,158,168,.08); }

.faq-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
  margin-bottom: 28px;
}
.faq-filter {
  padding: 6px 16px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--ease);
  font-family: var(--font);
}
.faq-filter:hover,
.faq-filter.active { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--teal); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 18px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  font-family: var(--font);
  transition: color .2s;
}
.faq-q:hover { color: var(--teal); }
.faq-item.open .faq-q { color: var(--teal); }
.faq-q i { font-size: 11px; color: var(--text-light); flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-q i { transform: rotate(180deg); color: var(--teal); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p {
  padding: 0 18px 16px;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.faq-empty {
  text-align: center;
  padding: 36px;
  font-size: 14px;
  color: var(--text-light);
}

/* ─── Contact ────────────────────────────── */
.contact-section { background: var(--navy); }

.contact-section .section-eyebrow { color: rgba(255,255,255,.45); }
.contact-section .section-title  { color: var(--white); }
.contact-section .section-desc   { color: rgba(255,255,255,.55); }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

/* 24/7 Support channels inside contact card */
.support-channels {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 10px;
}
.support-channel {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-sm);
  transition: var(--ease);
}
.support-channel:hover { background: rgba(255,255,255,.1); }
.support-channel > i {
  font-size: 14px;
  color: var(--teal);
  flex-shrink: 0;
}
.ch-name {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1px;
}
.ch-desc {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,.45);
  line-height: 1.3;
}
.contact-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  transition: var(--ease);
}
.contact-card:hover { background: rgba(255,255,255,.08); border-color: rgba(0,158,168,.3); }
.cc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cc-icon {
  width: 42px; height: 42px;
  background: rgba(0,158,168,.18);
  color: var(--teal);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-card h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 0; }
.contact-card p  { font-size: 12.5px; color: rgba(255,255,255,.5); margin-bottom: 14px; line-height: 1.6; }
.cc-support-extra {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.cc-support-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 2px;
}
.cc-support-extra a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--teal);
  text-decoration: none;
  transition: color .2s;
}
.cc-support-extra a:hover { color: #4dd2da; }
.cc-support-extra a i { font-size: 11px; }

.cc-subtitle { font-size: 12px; font-weight: 600; color: var(--teal); margin: -6px 0 8px; }
.cc-contacts { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.cc-contact-person { display: flex; flex-direction: column; gap: 3px; }
.cc-person-name { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.35); }
.cc-person-title { font-size: 12px; font-weight: 500; color: var(--text-mid); font-style: italic; }
.cc-contact-person a { font-size: 12.5px; font-weight: 500; color: var(--text-mid); text-decoration: none; display: flex; align-items: center; gap: 5px; }
.cc-contact-person a:hover { color: var(--teal); }
.cc-contact-person a i { font-size: 10px; color: var(--teal); flex-shrink: 0; }
.cc-links { display: flex; flex-direction: column; gap: 7px; }
.cc-links a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--teal);
  text-decoration: none;
  transition: color .2s;
}
.cc-links a:hover { color: #4dd2da; }
.cc-links a i { font-size: 11px; }

.next-steps-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 26px 28px;
  margin-bottom: 28px;
}
.next-steps-box h3 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.ns-list {
  counter-reset: ns;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.ns-list li {
  counter-increment: ns;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
}
.ns-list li::before {
  content: counter(ns);
  width: 20px; height: 20px;
  background: rgba(0,158,168,.2);
  color: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10.5px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.disclaimer {
  font-size: 11.5px;
  color: rgba(255,255,255,.28);
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

/* ─── Footer ─────────────────────────────── */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px 0 16px;
  gap: 6px;
}
.footer-logo {
  height: 80px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.footer-copy { display: flex; flex-direction: column; gap: 5px; }
.site-footer p   { font-size: 13px; color: rgba(255,255,255,.5); margin: 0; }
.site-footer a   { font-size: 13px; color: var(--teal); text-decoration: none; }
.site-footer a:hover { color: #4dd2da; }

/* ─── Responsive ─────────────────────────── */
@media (max-width: 1200px) {
  .container       { padding: 0 32px; }
}
@media (max-width: 1024px) {
  .cards-grid      { grid-template-columns: 1fr 1fr; }
  .hero-inner      { grid-template-columns: 1fr; gap: 36px; }
  .hero-stats      { grid-template-columns: repeat(4,1fr); }
  .support-grid    { grid-template-columns: 1fr 1fr; }
  .contact-cards   { grid-template-columns: 1fr 1fr 1fr; }

}
@media (max-width: 768px) {
  .section         { padding: 56px 0; }
  .cards-grid      { grid-template-columns: 1fr; }
  .guide-grid      { grid-template-columns: 1fr 1fr; }
  .hero-stats      { grid-template-columns: repeat(2,1fr); }
  .support-grid    { grid-template-columns: 1fr; }
  .hprak-body      { grid-template-columns: 1fr; }
  .hprak-col + .hprak-col { border-left: none; border-top: 1px solid rgba(255,255,255,.07); }
  .contact-cards   { grid-template-columns: 1fr; }
  .main-nav        { display: none; position: absolute; top: 68px; left: 0; right: 0;
                     background: var(--white); flex-direction: column; padding: 14px;
                     border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); }
  .main-nav.open   { display: flex; }
  .nav-toggle      { display: flex; }
  .flow-row        { flex-direction: column; }
  .flow-item       { flex-direction: row; width: 100%; min-width: unset; }
  .flow-dot-wrap   { flex-direction: column; width: auto; margin-bottom: 0; margin-right: 16px; }
  .flow-line       { width: 1px; height: 24px; border-top: none; border-left: 1.5px dashed var(--border-mid); margin: 0 auto; }
  .flow-text       { text-align: left; padding: 0 0 16px 0; }
  .footer-inner    { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .guide-grid      { grid-template-columns: 1fr; }
  .hero-stats      { grid-template-columns: 1fr 1fr; }
  .tab-row         { flex-direction: column; width: 100%; }
  .faq-filters     { justify-content: flex-start; }
  .hero-btns       { flex-direction: column; }
  .btn             { justify-content: center; }
}
