@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,500;1,600&display=swap');

/* ─── Design Tokens ──────────────────────────────────── */
:root {
  --bg:           #edf5fa;
  --card:         #ffffff;
  --text:         #231F20;
  --muted:        #5a6882;
  --brand:        #0097D9;
  --brand-dark:   #007ab5;
  --brand-deep:   #00527a;
  --red:          #EA2027;
  --yellow:       #FFDA00;
  --green:        #8DC63E;
  --charcoal:     #231F20;
  --line:         rgba(0, 151, 217, .13);
  --line-dark:    rgba(35, 31, 32, .10);
  --shadow:       0 20px 60px rgba(0, 100, 180, .14);
  --shadow-sm:    0 4px 20px rgba(0, 100, 180, .08);
  --radius:       14px;
  --radius2:      22px;
  --max:          1160px;
  --pad:          24px;
}

/* ─── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Raleway', ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── Brand color bar (4-color plaid stripe) ─────────── */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right,
    var(--red)    0%   25%,
    var(--yellow) 25%  50%,
    var(--green)  50%  75%,
    var(--brand)  75% 100%
  );
  z-index: 9999;
}

/* ─── Layout ─────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* ─── Header ─────────────────────────────────────────── */
.header {
  position: sticky;
  top: 4px;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 16px rgba(0, 100, 180, .06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 132px; height: auto; }

/* ─── Nav ─────────────────────────────────────────────── */
.nav { display: flex; align-items: center; gap: 4px; }
.nav > a, .nav .nav-link {
  font-weight: 800;
  font-size: 14px;
  padding: 9px 12px;
  border-radius: var(--radius);
  color: var(--text);
  transition: background .18s, color .18s;
}
.nav > a:hover, .nav .nav-link:hover {
  background: rgba(0, 151, 217, .08);
  color: var(--brand);
}
.nav-item { position: relative; display: inline-flex; align-items: center; }
.nav-item .nav-link { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.nav-item .caret {
  width: 7px; height: 7px;
  display: inline-block;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
  opacity: .55;
  transition: transform .2s, margin-top .2s;
}
.nav-item:hover .caret,
.nav-item:focus-within .caret {
  transform: rotate(-135deg);
  margin-top: 3px;
  opacity: .8;
}

/* ─── Buttons ─────────────────────────────────────────── */
.ctas { display: flex; align-items: center; gap: 10px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: var(--radius);
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 14px;
  border: 2px solid transparent;
  cursor: pointer;
  letter-spacing: .01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn.primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.btn.primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0, 151, 217, .32);
}
.btn.secondary {
  background: #fff;
  border-color: rgba(0, 151, 217, .28);
  color: var(--text);
}
.btn.secondary:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 151, 217, .12);
}
.btn.small {
  padding: 8px 13px;
  font-size: 13px;
  border-radius: 12px;
}

/* ─── Hero ─────────────────────────────────────────────── */
.hero {
  background: linear-gradient(140deg, #0097D9 0%, #006faa 52%, #00527a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
}
.hero .wrap { padding: 68px 0 54px; position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 36px;
  align-items: center;
}
.kicker {
  display: inline-block;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 2px;
}
.hero h1 {
  margin: 14px 0 0;
  font-size: 50px;
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.025em;
}
.hero p {
  margin: 16px 0 0;
  font-size: 18px;
  line-height: 1.62;
  color: rgba(255,255,255,.88);
  max-width: 56ch;
  font-weight: 500;
}
.pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.pill {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 218, 0, .18);
  border: 1px solid rgba(255, 218, 0, .36);
  color: rgba(255,255,255,.95);
}
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.hero .btn.primary {
  background: #fff;
  color: var(--brand);
  border-color: #fff;
}
.hero .btn.primary:hover {
  background: rgba(255,255,255,.93);
  box-shadow: 0 8px 28px rgba(0,0,0,.20);
}
.hero .btn.secondary {
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.32);
  color: #fff;
}
.hero .btn.secondary:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.52);
}
.hero-visual {
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(4px);
  overflow: hidden;
  min-height: 260px;
  box-shadow: 0 24px 64px rgba(0,0,0,.18);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; opacity: .92; }

/* ─── Sections ──────────────────────────────────────────── */
.section { padding: 56px 0; }
.section h2 {
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
}
.section h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  margin-top: 8px;
  background: linear-gradient(to right, var(--brand), var(--green));
  border-radius: 99px;
}
.muted { color: var(--muted); line-height: 1.62; font-weight: 500; }
.section .kicker,
.prove .kicker {
  color: var(--brand);
  background: rgba(0,151,217,.08);
  border: 1px solid rgba(0,151,217,.18);
}

/* ─── Grids ──────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

/* ─── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius2);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(0,151,217,.20);
}
.card.pad { padding: 22px; }
.card .title { font-weight: 800; font-size: 17px; color: var(--text); }
.card .desc { margin-top: 8px; color: var(--muted); line-height: 1.62; font-weight: 500; font-size: 15px; }
.icon { width: 44px; height: 44px; }

/* ─── Tiles ──────────────────────────────────────────────── */
.tile {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius2);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  color: var(--text);
}
.tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 56px rgba(0, 100, 180, .16);
  border-color: rgba(0,151,217,.22);
}
.thumb {
  height: 140px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  position: relative;
  overflow: hidden;
}
.thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 18px 18px;
}
.thumb.work { background: linear-gradient(135deg, #1a8a58 0%, #0e5438 100%); }
.thumb img { width: 100%; height: 100%; object-fit: cover; opacity: .88; position: relative; z-index: 1; }
.tile .body { padding: 18px 18px 10px; flex: 1; }
.tile h3 { margin: 0; font-size: 17px; font-weight: 800; letter-spacing: -0.01em; }
.tile p { margin: 7px 0 0; color: var(--muted); line-height: 1.55; font-size: 14px; font-weight: 500; }
.tile .foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 10px 18px 18px; }
.tag {
  font-size: 12px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(0, 151, 217, .10);
  border: 1px solid rgba(0, 151, 217, .22);
  color: var(--brand-dark);
}

/* ─── Testimonials ───────────────────────────────────────── */
.quote { display: flex; gap: 14px; align-items: flex-start; }
.quote .bubble {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 151, 217, .28);
}
blockquote { margin: 0; font-size: 15px; line-height: 1.68; font-weight: 600; font-style: italic; }
.who { margin-top: 12px; font-weight: 800; font-size: 14px; }
.who small { display: block; font-weight: 600; color: var(--muted); font-size: 13px; }

/* ─── CTA Band ────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff;
  border-radius: var(--radius2);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}
.cta-band h3 { margin: 0; font-size: 22px; font-weight: 900; position: relative; }
.cta-band p  { margin: 6px 0 0; color: rgba(255,255,255,.85); position: relative; font-weight: 500; }
.cta-band .btn.primary { background: #fff; color: var(--brand); border-color: #fff; position: relative; }
.cta-band .btn.primary:hover { background: rgba(255,255,255,.93); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.cta-band .btn.secondary { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.30); color: #fff; position: relative; }
.cta-band .btn.secondary:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.48); }

/* ─── Prove / Trust Band ──────────────────────────────────── */
.prove {
  background: #fff;
  border-bottom: 1px solid var(--line-dark);
  padding: 34px 0;
}
.prove h2 { margin: 8px 0 0; font-size: 22px; font-weight: 800; }
.prove h2::after { display: none; }
.prove-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.client-logos { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.client-logos img { height: 34px; width: auto; opacity: .85; filter: grayscale(1); }
.logo-grid-2rows {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  grid-auto-rows: 64px;
  gap: 12px;
  align-items: center;
}
.logo-tile {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #fff;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  transition: border-color .2s, box-shadow .2s;
}
.logo-tile:hover { border-color: rgba(0,151,217,.35); box-shadow: 0 4px 16px rgba(0,151,217,.10); }
.logo-tile img {
  max-height: 34px; width: auto; max-width: 100%;
  opacity: .80; filter: grayscale(1);
  transition: opacity .2s, filter .2s;
}
.logo-tile:hover img { opacity: 1; filter: grayscale(.2); }
.logo-note { margin-top: 10px; color: var(--muted); font-weight: 600; font-size: 12px; }
.logo-wall {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}
.prove-stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.prove-stat {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 18px 16px;
  background: rgba(0, 151, 217, .03);
  transition: border-color .2s, box-shadow .2s;
}
.prove-stat:hover { border-color: rgba(0,151,217,.30); box-shadow: 0 4px 18px rgba(0,151,217,.09); }
.prove-stat .value { font-weight: 900; font-size: 26px; color: var(--brand); }
.prove-stat .label { margin-top: 4px; color: var(--muted); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: .10em; }

/* ─── HR / Divider ────────────────────────────────────────── */
.hr { height: 1px; background: var(--line-dark); margin: 26px 0; }

/* ─── Utility ─────────────────────────────────────────────── */
.notice {
  background: rgba(255, 218, 0, .13);
  border: 1px solid rgba(255, 218, 0, .38);
  padding: 14px 16px;
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 700;
  font-size: 13.5px;
  line-height: 1.55;
}
.breadcrumb { padding: 16px 0; color: var(--muted); font-weight: 700; font-size: 13px; }
.breadcrumb a { color: var(--brand); }
.breadcrumb a:hover { text-decoration: underline; }
.list { margin: 10px 0 0; padding-left: 18px; color: var(--text); line-height: 1.72; font-weight: 500; }

/* ─── Accordions ──────────────────────────────────────────── */
details { border: 1px solid var(--line-dark); border-radius: var(--radius); background: #fff; padding: 14px 18px; transition: border-color .18s; }
details:hover { border-color: rgba(0,151,217,.30); }
details + details { margin-top: 10px; }
summary { cursor: pointer; font-weight: 800; list-style: none; font-size: 15px; }
summary::-webkit-details-marker { display: none; }
details .desc { margin-top: 10px; color: var(--muted); line-height: 1.62; font-weight: 500; }

/* ─── Mega Menu ───────────────────────────────────────────── */
.nav-item::after { content: ''; position: absolute; left: 0; right: 0; top: 100%; height: 14px; display: none; }
.nav-item:hover::after, .nav-item:focus-within::after { display: block; }
.mega {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: min(1060px, calc(100vw - 40px));
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius2);
  box-shadow: 0 24px 80px rgba(0, 80, 150, .16);
  padding: 16px;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  z-index: 1000;
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
}
.nav-item:hover .mega, .nav-item:focus-within .mega {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear 0s;
}
.mega-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.mega-col { padding: 12px; border-radius: var(--radius); }
.mega-col.cta { background: rgba(0, 151, 217, .05); border: 1px solid rgba(0, 151, 217, .14); }
.mega-title { font-weight: 800; font-size: 11px; text-transform: uppercase; letter-spacing: .10em; color: var(--brand); margin-bottom: 8px; }
.mega a { display: block; padding: 8px 10px; border-radius: 12px; font-weight: 700; font-size: 14px; color: var(--text); transition: background .14s, color .14s; }
.mega a:hover { background: rgba(0, 151, 217, .08); color: var(--brand); }
.mega .tiny { margin-top: 8px; color: var(--muted); font-weight: 600; line-height: 1.55; font-size: 13px; }
.mega .btn { width: fit-content; }
.mega .btn.primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.mega .btn.primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.mega .btn.secondary { background: #fff; border-color: rgba(0,151,217,.28); color: var(--text); }
.mega .btn.secondary:hover { border-color: var(--brand); color: var(--brand); }
.mega .hr { margin: 10px 0; }

/* ─── Footer ──────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--line-dark);
  background: var(--charcoal);
  color: rgba(255,255,255,.80);
  padding: 48px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 28px; }
.footer h4 { margin: 0 0 14px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; color: var(--brand); }
.footer a { display: block; padding: 6px 0; color: rgba(255,255,255,.65); font-weight: 600; font-size: 14px; transition: color .15s; }
.footer a:hover { color: #fff; }
.footer .smallprint { color: rgba(255,255,255,.72); font-weight: 600; line-height: 1.65; font-size: 14px; margin-top: 0; }
.smallprint { margin-top: 22px; color: rgba(255,255,255,.40); font-size: 12px; line-height: 1.55; }

/* ─── Mobile nav ──────────────────────────────────────────── */
.mobile-toggle { display: none; }
.mobile-panel { display: none; background: #fff; border-bottom: 1px solid var(--line-dark); box-shadow: 0 8px 24px rgba(0,100,180,.08); }
.mobile-panel.open { display: block; }
.mobile-panel .container { padding: 12px var(--pad) 16px; }
.mobile-panel a { display: block; padding: 11px 12px; font-weight: 800; font-size: 15px; border-radius: var(--radius); transition: background .15s, color .15s; }
.mobile-panel a:hover { background: rgba(0, 151, 217, .08); color: var(--brand); }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero-grid       { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .logo-grid-2rows { grid-template-columns: repeat(3, minmax(110px, 1fr)); }
}
@media (max-width: 720px) {
  .nav             { display: none; }
  .mobile-toggle   { display: inline-flex; }
  .hero h1         { font-size: 36px; }
  .hero .wrap      { padding: 44px 0 36px; }
  .grid-3          { grid-template-columns: 1fr; }
  .grid-2          { grid-template-columns: 1fr; }
  .grid-4          { grid-template-columns: 1fr 1fr; }
  .footer-grid     { grid-template-columns: 1fr; }
  .prove-stats     { grid-template-columns: 1fr; }
  .logo-grid-2rows { grid-template-columns: repeat(2, minmax(110px, 1fr)); }
  .cta-band        { padding: 22px 20px; }
}

/* ─── Forms (Salesforce Web-to-Lead) ─────────────────── */
.form-section { padding: 56px 0; }
.form-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: start;
}
.form-card {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius2);
  box-shadow: var(--shadow-sm);
  padding: 36px;
}
.form-card h2 {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.form-card h2::after { display: none; }
.form-card .form-sub {
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.form-group label {
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: .01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 11px 14px;
  transition: border-color .18s, box-shadow .18s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0, 151, 217, .12);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-recaptcha { margin: 18px 0; }
.form-submit {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  border-radius: var(--radius);
  margin-top: 4px;
}

/* Contact sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 18px; padding-top: 8px; }
.contact-info-card {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius2);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.contact-info-card .ci-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .10em;
  color: var(--brand);
  margin-bottom: 6px;
}
.contact-info-card .ci-title {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 6px;
}
.contact-info-card .ci-desc {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.6;
}
.contact-promise {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  border-radius: var(--radius2);
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.contact-promise::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.contact-promise .ci-label { color: rgba(255,255,255,.80); position: relative; }
.contact-promise .ci-title { color: #fff; position: relative; }
.contact-promise .ci-desc { color: rgba(255,255,255,.82); position: relative; }

@media (max-width: 720px) {
  .form-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }
}

/* ─── Team profiles ───────────────────────────────────── */
.team-group { margin-bottom: 44px; }
.team-group-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--brand);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(0,151,217,.15);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius2);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(0,151,217,.22);
}
.team-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-info {
  padding: 14px 16px 16px;
}
.team-name {
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
  margin: 0 0 3px;
}
.team-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.4;
}

/* ─── Active nav state ────────────────────────────────── */
.nav > a.nav-active,
.nav .nav-link.nav-active {
  color: var(--brand);
  background: rgba(0, 151, 217, .10);
}
