/* ============================================================
   IMPLICA — SHARED STYLES  (Aibolit-inspired design system)
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --blue:        #270949;
  --blue-dark:   #1a0633;
  --blue-light:  #F3F1FA;
  --cyan:        #7C3AED;
  --orange:      #F95B3D;
  --green:       #0D9F6E;
  --text:        #270949;
  --text-2:      #5B4A72;
  --text-3:      #8B7FA0;
  --bg:          #FFFFFF;
  --bg-2:        #F8F7FC;
  --bg-3:        #E6E9F5;
  --border:      #E6E9F5;
  --radius:      12px;
  --shadow:      0 1px 3px rgba(39,9,73,.06), 0 4px 12px rgba(39,9,73,.06);
  --shadow-hover:0 8px 40px rgba(39,9,73,.12);
  --nav-h:       72px;
  --max-w:       1280px;
  --section-py:  96px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Montserrat', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.1); }

.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -.5px;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo svg { width: 36px; height: 36px; }

/* Nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a { color: var(--orange); background: rgba(249,91,61,.08); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,.14);
  padding: 12px;
  min-width: 340px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, transform .2s, visibility .2s;
  pointer-events: none;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  transition: background .2s;
  cursor: pointer;
}
.dropdown-item:hover { background: var(--bg-2); }
.dropdown-item .di-icon {
  width: 36px; height: 36px;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.dropdown-item .di-icon svg { width: 18px; height: 18px; }
.dropdown-item .di-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.dropdown-item .di-desc {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 2px;
  line-height: 1.4;
}

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.btn-nav {
  padding: 9px 24px;
  background: var(--orange);
  color: #fff;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  transition: background .2s, transform .15s, opacity .2s;
  white-space: nowrap;
}
.btn-nav:hover { opacity: .9; transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  line-height: 1;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  border-radius: 100px;
}
.btn-primary:hover {
  opacity: .9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249,91,61,.3);
}
.btn-secondary {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--border);
  border-radius: 100px;
}
.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.btn-orange {
  background: var(--orange);
  color: #fff;
  border-radius: 100px;
}
.btn-orange:hover {
  opacity: .9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249,91,61,.3);
}
.btn-white {
  background: #fff;
  color: var(--blue);
}
.btn-white:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}
.btn-ghost-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
}
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 8px 18px; font-size: 13px; }

/* ============================================================
   BADGES / CHIPS
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.badge-blue { background: var(--blue-light); color: var(--blue); }
.badge-green { background: #E6F7F2; color: var(--green); }
.badge-orange { background: #FFF0E8; color: var(--orange); }
.badge-cyan { background: #E6F7FD; color: var(--cyan); }
.badge-purple { background: #F0EEFF; color: #6B52D1; }

.section-tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ============================================================
   HERO (HOME PAGE)
   ============================================================ */
.hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 100px;
  background: linear-gradient(135deg, #F8F7FC 0%, #F3F1FA 40%, #E6E9F5 100%);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(39,9,73,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.hero-text .eyebrow {
  display: inline-block;
  padding: 6px 16px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-text h1 {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-text h1 span { color: var(--orange); }
.hero-text p {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-visual svg { max-width: 540px; width: 100%; filter: drop-shadow(0 20px 60px rgba(39,9,73,.15)); }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  background: linear-gradient(135deg, #1a0633 0%, #270949 50%, #3B1A6E 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::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.04'%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-header .container { position: relative; z-index: 1; }
.page-header .section-tag { background: rgba(255,255,255,.2); color: #fff; }
.page-header h1 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.page-header p {
  font-size: 18px;
  opacity: .85;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   SECTION LAYOUT
   ============================================================ */
section { padding: var(--section-py) 0; }
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 17px;
  color: var(--text-2);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Two-column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* Three-column */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Four-column */
.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.card-icon {
  width: 52px; height: 52px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}
.card p { font-size: 14px; color: var(--text-2); line-height: 1.65; }
.card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  transition: gap .2s;
}
.card .card-link:hover { gap: 10px; }

/* Product card */
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.product-card-visual {
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
  padding: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}
.product-card-visual svg { max-width: 200px; }
.product-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.product-card-body h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; letter-spacing: -.02em; }
.product-card-body p { font-size: 14px; color: var(--text-2); line-height: 1.6; flex: 1; margin-bottom: 20px; }
.product-card-body .badge { margin-bottom: 12px; }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  background: linear-gradient(135deg, #1a0633 0%, #270949 100%);
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item { color: #fff; }
.stat-number {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 8px;
  color: #fff;
}
.stat-label {
  font-size: 14px;
  opacity: .75;
  line-height: 1.4;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, #1a0633 0%, #270949 60%, #3B1A6E 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 70%);
  top: -200px; left: -200px;
}
.cta-band::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 70%);
  bottom: -150px; right: 10%;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 16px;
}
.cta-band p {
  font-size: 18px;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   TICKER / TECH LOGOS BAND
   ============================================================ */
.ticker-wrap {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  overflow: hidden;
}
.ticker {
  display: flex;
  gap: 60px;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-3);
  white-space: nowrap;
}
.ticker-item .dot {
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   CLIENTS
   ============================================================ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.client-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-2);
  transition: box-shadow .2s, color .2s, transform .2s;
  box-shadow: var(--shadow);
}
.client-card:hover { color: var(--blue); box-shadow: var(--shadow-hover); transform: translateY(-2px); }

/* ============================================================
   FEATURES LIST
   ============================================================ */
.features-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
}
.features-list li .fi-icon {
  width: 24px; height: 24px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--blue);
}
.features-list li .fi-icon svg { width: 13px; height: 13px; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.step-number {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--orange), #FF8A65);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 20px;
}
.step-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* ============================================================
   FORM STYLES
   ============================================================ */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,91,61,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 12px; color: var(--text-3); margin-top: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #1a0633;
  color: rgba(255,255,255,.75);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.65; opacity: .7; max-width: 240px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-social-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: background .2s, color .2s, border-color .2s;
}
.footer-social-icon:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.footer-social-icon svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.footer-col ul li a:hover { color: #fff; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin-bottom: 12px;
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }
.fade-in-delay-4 { transition-delay: .4s; }
.fade-in-delay-5 { transition-delay: .5s; }

/* ============================================================
   ALTERNATING SECTION BG
   ============================================================ */
section.bg-2 { background: var(--bg-2); }
section.bg-3 { background: var(--bg-3); }

/* ============================================================
   DIVIDER
   ============================================================ */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ============================================================
   TAG CLOUD
   ============================================================ */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  padding: 6px 14px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  transition: background .2s, color .2s, border-color .2s;
}
.tag:hover { background: var(--blue-light); border-color: var(--blue); color: var(--blue); }

/* ============================================================
   ACCREDITATION BLOCK
   ============================================================ */
.accred-block {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(135deg, var(--blue-light) 0%, #f0f6ff 100%);
  border: 1px solid rgba(0,112,242,.2);
  border-radius: 12px;
}
.accred-icon {
  width: 48px; height: 48px;
  background: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.accred-block p { font-size: 14px; color: var(--text-2); }
.accred-block strong { color: var(--text); font-weight: 700; }

/* ============================================================
   MAP PLACEHOLDER
   ============================================================ */
.map-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #e8f0fe 0%, #f0f6ff 100%);
  border-radius: 16px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-3);
  font-size: 15px;
  overflow: hidden;
  position: relative;
}
.map-placeholder svg { width: 48px; height: 48px; color: var(--blue); opacity: .5; }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 12px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--cyan));
  border-radius: 2px;
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-dot {
  position: absolute;
  left: -26px;
  top: 4px;
  width: 14px; height: 14px;
  background: var(--blue);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--blue);
}
.timeline-year {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.timeline-item h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.timeline-item p { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.text-blue { color: var(--blue); }
.text-orange { color: var(--orange); }
.text-green { color: var(--green); }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.gap-12 { gap: 12px; }
.flex { display: flex; }
.items-center { align-items: center; }

/* ============================================================
   CAREERS
   ============================================================ */
.job-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.job-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.job-card h3 { font-size: 17px; font-weight: 700; }
.job-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.job-card p { font-size: 14px; color: var(--text-2); line-height: 1.6; flex: 1; }
.jobs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 60px; }
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.contact-card .cc-icon {
  width: 56px; height: 56px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--blue);
}
.contact-card .cc-icon svg { width: 24px; height: 24px; }
.contact-card h4 { font-size: 14px; font-weight: 600; color: var(--text-3); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .06em; }
.contact-card a, .contact-card p { font-size: 15px; font-weight: 600; color: var(--text); line-height: 1.5; }
.contact-card a:hover { color: var(--blue); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .hero-inner { gap: 40px; }
  .two-col { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .four-col { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-py: 60px; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-menu, .nav-actions .btn-nav { display: none; }
  .nav-hamburger { display: flex; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 20px;
    gap: 4px;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
  }
  .nav-menu.open .has-dropdown .dropdown { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { padding-top: calc(var(--nav-h) + 48px); padding-bottom: 60px; }
  .hero-inner { padding: 0 20px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse { direction: ltr; }
  .three-col { grid-template-columns: 1fr; }
  .four-col { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .jobs-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .dropdown-grid { grid-template-columns: 1fr; }
  .page-header { padding-top: calc(var(--nav-h) + 40px); padding-bottom: 48px; }
}
