/* ==========================================================================
   Click Harborr — Performance Marketing Agency
   Design System: Deep Navy/Ink + Electric Blue + White
   ========================================================================== */

:root {
  --navy-950: #05070f;
  --navy-900: #0a0e1a;
  --navy-850: #0d1220;
  --navy-800: #101728;
  --navy-700: #16203a;
  --navy-600: #1f2c4d;
  --navy-500: #2c3d63;
  --blue-600: #1e40af;
  --blue-500: #2563eb;
  --blue-400: #3b82f6;
  --blue-300: #93c5fd;
  --blue-100: #dbeafe;
  --amber-500: #f2b134;
  --white: #ffffff;
  --off-white: #f4f7fb;
  --gray-200: #e4e9f2;
  --gray-300: #cbd4e3;
  --gray-400: #94a1ba;
  --gray-500: #6c7893;
  --gray-600: #4a5674;

  --font-head: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(5,7,15,0.08);
  --shadow-md: 0 10px 30px rgba(5,7,15,0.12);
  --shadow-lg: 0 25px 60px rgba(5,7,15,0.25);
  --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy-800);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--navy-900);
  line-height: 1.2;
  margin: 0 0 .6em;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; color: var(--gray-600); }
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
ul { padding: 0; margin: 0; list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; position: relative; }
.section-tight { padding: 64px 0; }
.bg-off { background: var(--off-white); }
.bg-navy { background: var(--navy-900); color: var(--gray-300); }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.bg-navy p { color: var(--gray-300); }
.bg-gradient {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 55%, #0f2438 100%);
  color: var(--gray-300);
}
.bg-gradient h2, .bg-gradient h3 { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-500);
  background: rgba(37,99,235,0.1);
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 18px;
}
.eyebrow::before { content: "\26A1"; font-size: .8em; }
.bg-navy .eyebrow, .bg-gradient .eyebrow { background: rgba(59,130,246,0.15); }

.center { text-align: center; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin: 0 0 48px; text-align: left; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  padding: 15px 30px;
  border-radius: 40px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  color: var(--navy-950);
  box-shadow: 0 10px 25px rgba(37,99,235,0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(37,99,235,0.45); }
.btn-white {
  background: var(--white);
  color: var(--navy-950);
  box-shadow: 0 10px 25px rgba(5,7,15,0.2);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(5,7,15,0.3); background: var(--blue-100); }
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-navy { border-color: var(--navy-800); color: var(--navy-800); background: transparent; }
.btn-outline-navy:hover { background: var(--navy-800); color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
  background: rgba(10,14,26,0.92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; color: var(--white); }
.brand-mark {
  width: 40px; height: 40px; border-radius: 11px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 800; font-size: 1.1rem;
  box-shadow: 0 6px 16px rgba(37,99,235,0.4);
}
.brand span { color: var(--blue-300); }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.main-nav a.nav-link {
  color: var(--gray-300);
  font-weight: 500;
  font-size: .95rem;
  padding: 10px 16px;
  border-radius: 8px;
  transition: color .2s, background .2s;
  display: flex; align-items: center; gap: 5px;
}
.main-nav a.nav-link:hover, .main-nav a.nav-link.active { color: var(--white); background: rgba(255,255,255,0.08); }
.has-dropdown { position: relative; }
.dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 620px;
  max-width: 90vw;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.has-dropdown:hover .dropdown-panel,
.has-dropdown.open .dropdown-panel {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown-panel a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px;
  color: var(--navy-800); font-size: .88rem; font-weight: 500;
}
.dropdown-panel a:hover { background: var(--off-white); color: var(--blue-500); }
.dropdown-panel a .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-500); flex-shrink: 0; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-nav-cta { display: none; }
.burger span { width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .25s, opacity .25s; }

@media (max-width: 980px) {
  .main-nav { position: fixed; top: 0; right: -100%; height: 100vh; width: min(340px, 85vw);
    background: var(--navy-900); flex-direction: column; align-items: stretch;
    padding: 100px 26px 40px; transition: right .35s ease; overflow-y: auto; }
  .main-nav.open { right: 0; box-shadow: -20px 0 50px rgba(0,0,0,0.4); }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 2px; width: 100%; }
  .dropdown-panel { position: static; opacity: 1; visibility: visible; transform: none; width: 100%;
    display: none; grid-template-columns: 1fr; box-shadow: none; background: var(--navy-800); margin-top: 6px; }
  .has-dropdown.open .dropdown-panel { display: grid; }
  .dropdown-panel a { color: var(--gray-300); }
  .dropdown-panel a:hover { background: var(--navy-700); color: var(--blue-300); }
  .burger { display: flex; }
  .nav-cta .btn-ghost, .nav-cta .btn-primary { display: none; }
  .mobile-nav-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }
}
@media (max-width: 400px) {
  .brand { font-size: 1.1rem; }
  .brand-mark { width: 34px; height: 34px; font-size: .95rem; }
}

.nav-overlay {
  position: fixed; inset: 0; background: rgba(5,7,15,0.6); z-index: 900;
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s;
}
.nav-overlay.show { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  overflow: hidden;
  color: var(--white);
}
.hero-media {
  position: absolute; inset: 0; z-index: 0;
}
.hero-media video, .hero-media img {
  width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(5,7,15,0.75) 0%, rgba(5,7,15,0.55) 40%, rgba(5,7,15,0.92) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero-content .lede { font-size: 1.15rem; color: var(--gray-200); max-width: 620px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.hero-stats { display: flex; gap: 40px; margin-top: 56px; flex-wrap: wrap; }
.hero-stats .stat-num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--blue-300); }
.hero-stats .stat-label { font-size: .85rem; color: var(--gray-400); }

.hero-sm { min-height: 62vh; }

/* ---------- Cards & Grids ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); } .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(37,99,235,.16), rgba(37,99,235,.04));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}

.img-card { border-radius: var(--radius-md); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); }
.img-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.img-card:hover img { transform: scale(1.06); }
.img-card .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px; background: linear-gradient(0deg, rgba(5,7,15,.85), transparent);
  color: var(--white); font-family: var(--font-head); font-weight: 600; font-size: .95rem;
}

.gallery-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery-4 .img-card { aspect-ratio: 3/4; }
@media (max-width: 900px) { .gallery-4 { grid-template-columns: repeat(2,1fr); } }

/* ---------- Industry / Service tile (index grids) ---------- */
.industry-tile {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-sm); display: block;
}
.industry-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.industry-tile:hover img { transform: scale(1.08); }
.industry-tile .tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(5,7,15,.92) 0%, rgba(5,7,15,.25) 55%, rgba(5,7,15,0.05) 100%);
}
.industry-tile .tile-text {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px;
  color: var(--white);
}
.industry-tile .tile-text .tag { font-size: .72rem; color: var(--blue-300); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.industry-tile .tile-text h3 { color: var(--white); margin: 4px 0 0; font-size: 1.15rem; }
.industry-tile .arrow {
  position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; color: var(--white);
  transition: background .25s;
}
.industry-tile:hover .arrow { background: var(--blue-500); }

/* ---------- Stats strip ---------- */
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
@media (max-width: 800px) { .stats-strip { grid-template-columns: repeat(2,1fr); } }
.stat-box .num { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800;
  background: linear-gradient(135deg, var(--blue-300), var(--white)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-box .lbl { color: var(--gray-400); font-size: .9rem; margin-top: 6px; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 30px 22px; background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--gray-200); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-head); font-weight: 800; font-size: 2rem;
  color: transparent; -webkit-text-stroke: 1.5px var(--blue-500); display: block; margin-bottom: 14px;
}

/* ---------- Testimonials ---------- */
.testi-track-wrap { position: relative; max-width: 880px; margin: 0 auto; }
.testi-track { overflow: hidden; }
.testi-slides { display: flex; transition: transform .5s ease; }
.testi-slide { flex: 0 0 100%; padding: 10px; }
.testi-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 44px;
  box-shadow: var(--shadow-md); text-align: center; border: 1px solid var(--gray-200);
}
.testi-card .stars { color: var(--amber-500); font-size: 1.1rem; margin-bottom: 18px; letter-spacing: 2px; }
.testi-card p.quote { font-size: 1.15rem; color: var(--navy-800); font-style: italic; margin-bottom: 24px; }
.testi-person { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testi-person img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
.testi-person .name { font-family: var(--font-head); font-weight: 700; color: var(--navy-900); }
.testi-person .role { font-size: .82rem; color: var(--gray-500); }
.testi-nav { display: flex; justify-content: center; gap: 14px; margin-top: 28px; align-items: center; }
.testi-arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--gray-300); background: var(--white);
  display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s, color .2s; }
.testi-arrow:hover { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-300); cursor: pointer; transition: background .2s, width .2s; }
.testi-dot.active { background: var(--blue-500); width: 24px; border-radius: 5px; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 4px; cursor: pointer; font-family: var(--font-head); font-weight: 600; color: var(--navy-900);
}
.faq-q .icon { transition: transform .3s ease; color: var(--blue-500); font-size: 1.3rem; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 4px 22px; margin: 0; }

/* ---------- Pricing ---------- */
.price-card { text-align: center; position: relative; }
.price-card.featured { border-color: var(--blue-500); transform: scale(1.03); box-shadow: var(--shadow-md); }
.price-card .badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400)); color: var(--white);
  padding: 5px 16px; border-radius: 30px; font-size: .75rem; font-weight: 700; letter-spacing: .04em;
}
.price-card .amount { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; color: var(--navy-900); margin: 14px 0 4px; }
.price-card .amount span { font-size: 1rem; color: var(--gray-500); font-weight: 500; }
.price-card ul { text-align: left; margin: 26px 0; display: flex; flex-direction: column; gap: 12px; }
.price-card ul li { display: flex; gap: 10px; font-size: .92rem; color: var(--gray-600); }
.price-card ul li .check { color: var(--blue-500); flex-shrink: 0; }

/* ---------- Forms ---------- */
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 8px; color: var(--navy-800); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--gray-300); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .95rem; background: var(--white); color: var(--navy-800);
  transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(37,99,235,0.14);
}
.form-field.error input, .form-field.error select, .form-field.error textarea { border-color: #e0554a; }
.field-error { color: #e0554a; font-size: .8rem; margin-top: 6px; display: none; }
.form-field.error .field-error { display: block; }
.form-success {
  display: none; text-align: center; padding: 50px 20px;
}
.form-success.show { display: block; }
.form-success .check-circle {
  width: 70px; height: 70px; border-radius: 50%; background: rgba(37,99,235,.12); color: var(--blue-500);
  display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 20px;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: var(--gray-400); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: var(--white); font-size: .92rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; }
.footer-grid ul li { margin-bottom: 11px; }
.footer-grid ul li a { color: var(--gray-400); font-size: .9rem; transition: color .2s; }
.footer-grid ul li a:hover { color: var(--blue-300); }
.footer-brand p { color: var(--gray-400); max-width: 300px; font-size: .92rem; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s; }
.footer-social a:hover { background: var(--blue-500); border-color: var(--blue-500); color: var(--navy-950); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; padding: 26px 0; flex-wrap: wrap; gap: 12px;
  font-size: .82rem; color: var(--gray-500);
}
.footer-bottom a { color: var(--gray-500); }
.footer-bottom a:hover { color: var(--blue-300); }
.footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; width: 50px; height: 50px; border-radius: 50%;
  background: var(--navy-900); color: var(--white); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s, transform .3s, visibility .3s, background .2s; z-index: 500;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--blue-500); color: var(--navy-950); }

/* ---------- Sticky CTA bar ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--blue-500), #0d9488 60%, var(--navy-900));
  color: var(--white); border-radius: var(--radius-lg); padding: 60px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.88); }
.cta-band .btn-primary { background: var(--white); color: var(--navy-950); box-shadow: 0 10px 25px rgba(0,0,0,0.2); }
.cta-band .btn-primary:hover { background: var(--blue-100); }

/* ---------- Breadcrumb / Page header ---------- */
.page-hero { padding-top: 160px; padding-bottom: 70px; }
.breadcrumb { font-size: .85rem; color: var(--gray-400); display: flex; gap: 8px; align-items: center; margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--blue-300); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view { transition-delay: .08s; }
.reveal-delay-2.in-view { transition-delay: .16s; }
.reveal-delay-3.in-view { transition-delay: .24s; }
.reveal-delay-4.in-view { transition-delay: .32s; }

/* ---------- Badges / logos strip ---------- */
.logo-strip { display: flex; flex-wrap: wrap; gap: 46px; align-items: center; justify-content: center; opacity: .75; }
.logo-strip span { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--gray-500); letter-spacing: .03em; }

.badge-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--off-white); border: 1px solid var(--gray-200);
  padding: 8px 16px; border-radius: 40px; font-size: .82rem; font-weight: 600; color: var(--navy-800); }

/* ---------- Tables ---------- */
.plain-table { width: 100%; border-collapse: collapse; }
.plain-table th, .plain-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--gray-200); font-size: .92rem; }
.plain-table th { color: var(--navy-900); font-family: var(--font-head); }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.text-blue { color: var(--blue-500); }
.text-amber { color: var(--amber-500); }
.flex-between { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.tag-chip { background: var(--off-white); border: 1px solid var(--gray-200); padding: 8px 16px; border-radius: 30px; font-size: .82rem; font-weight: 600; }

.disclaimer-box {
  background: var(--off-white); border-left: 4px solid var(--blue-500);
  border-radius: var(--radius-sm); padding: 26px 28px; margin: 30px 0;
}
.disclaimer-box p { color: var(--gray-600); font-size: .92rem; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--white); padding: 12px 18px; z-index: 3000; }
.skip-link:focus { left: 10px; top: 10px; }

/* ---------- Industry cards (Industries page) ---------- */
.industry-card { padding: 0; overflow: hidden; scroll-margin-top: 110px; }
.industry-card-img { aspect-ratio: 16/10; overflow: hidden; }
.industry-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.industry-card:hover .industry-card-img img { transform: scale(1.06); }
.industry-card-body { padding: 26px 26px 28px; }
.industry-stat { margin-top: 16px; font-size: .88rem; color: var(--navy-800); }
.industry-stat strong { color: var(--blue-600); font-family: var(--font-head); font-size: 1.05rem; margin-right: 6px; }

/* ---------- Metric compare bars (Case Studies) ---------- */
.metric-compare { margin: 26px 0; display: flex; flex-direction: column; gap: 20px; }
.metric-row-label { font-family: var(--font-head); font-weight: 600; font-size: .88rem; color: var(--navy-900); margin-bottom: 8px; }
.bar-line { display: grid; grid-template-columns: 52px 1fr 76px; align-items: center; gap: 12px; margin-bottom: 6px; }
.bar-tag { font-size: .74rem; color: var(--gray-500); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.bar-track { height: 10px; border-radius: 6px; background: var(--gray-200); overflow: hidden; }
.bar-fill { height: 100%; border-radius: 6px; }
.bar-fill.before { background: var(--gray-400); }
.bar-fill.after { background: linear-gradient(90deg, var(--blue-600), var(--blue-400)); }
.bar-value { font-size: .85rem; font-weight: 600; color: var(--navy-800); text-align: right; }
.bar-value.strong { color: var(--blue-600); font-weight: 700; }

/* ---------- Case study cards ---------- */
.case-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); margin-bottom: 32px; display: grid; grid-template-columns: 0.85fr 1.15fr; }
@media (max-width: 900px) { .case-card { grid-template-columns: 1fr; } }
.case-card-media { position: relative; min-height: 260px; }
.case-card-media img { width: 100%; height: 100%; object-fit: cover; }
.case-card-tag { position: absolute; top: 18px; left: 18px; background: var(--navy-950); color: var(--white); font-size: .76rem; font-weight: 700; padding: 6px 14px; border-radius: 30px; }
.case-card-body { padding: 32px; }
.case-card-body p { font-size: .92rem; }
.case-headline { background: var(--off-white); border-radius: var(--radius-sm); padding: 16px 18px; margin-top: 20px; font-size: .95rem; }

/* ---------- Process timeline ---------- */
.timeline { position: relative; max-width: 980px; margin: 0 auto; padding: 20px 0; }
.timeline::before {
  content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--blue-500), var(--gray-200)); transform: translateX(-50%);
}
.timeline-item { position: relative; width: 50%; padding: 0 50px 60px; }
.timeline-item.left { left: 0; text-align: right; }
.timeline-item.right { left: 50%; text-align: left; }
.timeline-marker {
  position: absolute; top: 0; width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy-950); color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; box-shadow: 0 0 0 6px var(--white), 0 6px 18px rgba(37,99,235,.35); z-index: 2;
  border: 2px solid var(--blue-500);
}
.timeline-item.left .timeline-marker { right: -22px; }
.timeline-item.right .timeline-marker { left: -22px; }
.timeline-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 26px 28px; box-shadow: var(--shadow-sm); display: inline-block; text-align: left; width: 100%; }
.timeline-step-no { font-family: var(--font-head); font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--blue-500); margin-bottom: 8px; }
.timeline-points { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.timeline-points li { font-size: .86rem; color: var(--gray-600); padding-left: 18px; position: relative; }
.timeline-points li::before { content: "\2192"; position: absolute; left: 0; color: var(--blue-500); }
@media (max-width: 760px) {
  .timeline::before { left: 22px; }
  .timeline-item, .timeline-item.left, .timeline-item.right { width: 100%; left: 0; text-align: left; padding: 0 0 44px 60px; }
  .timeline-item.left .timeline-marker, .timeline-item.right .timeline-marker { left: 0; right: auto; }
}

.order-2 { order: 2; }
@media (max-width: 900px) { .order-2 { order: 0; } }
