/* ===== Solazur — concept site styles ===== */
:root {
  --blue: #0D47A1;
  --blue-deep: #082F72;
  --orange: #FF6A00;
  --ink: #0B1320;
  --ink-soft: #3A4252;
  --muted: #6B7280;
  --line: #ECEEF2;
  --surface: #ffffff;
  --bg: #ffffff;
  --bg-soft: #FAFBFC;
  --max: 1200px;
  --pad-x: clamp(20px, 4vw, 56px);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== Type scale ===== */
h1, h2, h3, h4 { font-family: "Poppins", sans-serif; color: var(--ink); margin: 0; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-weight: 600; font-size: clamp(38px, 5vw, 64px); letter-spacing: -0.02em; }
h2 { font-weight: 600; font-size: clamp(28px, 3.4vw, 44px); letter-spacing: -0.015em; }
h3 { font-weight: 600; font-size: clamp(20px, 2vw, 24px); }
h4 { font-weight: 600; font-size: 16px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue); }
p  { margin: 0; color: var(--ink-soft); font-size: 16px; }
.lede { font-size: clamp(17px, 1.6vw, 20px); color: var(--ink-soft); max-width: 60ch; line-height: 1.6; }
.eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.18em; color: var(--blue); text-transform: uppercase; }
.eyebrow.with-tick::before { content: ""; display: inline-block; width: 22px; height: 2px; background: var(--orange); vertical-align: middle; margin-right: 12px; transform: translateY(-2px); }

.accent { color: var(--orange); }
.muted { color: var(--muted); }

/* ===== Layout ===== */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad-x); }
section { padding: clamp(56px, 7vw, 88px) 0; }
.section-tight-top { padding-top: clamp(24px, 3vw, 40px); }
.section-tight-bottom { padding-bottom: clamp(24px, 3vw, 40px); }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.row.center { align-items: center; }
@media (max-width: 800px) { .row { grid-template-columns: 1fr; } }

.divider { height: 1px; background: var(--line); width: 100%; }

/* ===== Header / nav ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-bar {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 30px; height: 30px; }
.brand .name { font-weight: 700; font-size: 20px; color: var(--blue); letter-spacing: -0.01em; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--ink-soft); transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-cta {
  background: var(--orange); color: #fff !important;
  padding: 10px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 600;
  transition: background .15s, transform .15s;
}
.nav-cta:hover { background: #E85F00; transform: translateY(-1px); }
.lang { font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: .14em; }
.lang span { padding: 0 4px; }
.lang span.on { color: var(--blue); }
@media (max-width: 800px) { .nav-links a:not(.nav-cta) { display: none; } }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 24px; border-radius: 999px; font-weight: 600; font-size: 15px; transition: transform .15s, background .15s, border-color .15s; cursor: pointer; border: 1px solid transparent; }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: #E85F00; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--blue); border-color: rgba(13,71,161,0.18); }
.btn-ghost:hover { border-color: var(--blue); }
.btn .arrow { width: 16px; height: 16px; }

/* ===== Hero ===== */
.hero { padding: clamp(64px, 8vw, 104px) 0 clamp(48px, 6vw, 72px); }
.hero h1 .accent { color: var(--orange); }
.hero p.lede { margin-top: 24px; }
.hero-actions { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }
.hero-meta { margin-top: 64px; display: flex; gap: 48px; flex-wrap: wrap; align-items: center; }
.hero-meta .item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); font-weight: 500; }
.hero-meta .item svg { width: 16px; height: 16px; color: var(--orange); }

.hero-visual {
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
  background: #f0f2f5;
  position: relative;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Pillar / feature cards ===== */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 900px) { .cards-3 { grid-template-columns: 1fr; } }
.card { padding: 36px 32px; border: 1px solid var(--line); border-radius: 8px; transition: border-color .2s, transform .2s; background: #fff; }
.card:hover { border-color: rgba(13,71,161,0.25); }
.card .icon { width: 44px; height: 44px; color: var(--blue); margin-bottom: 24px; }
.card h3 { margin-bottom: 12px; }
.card p { font-size: 15px; }

/* ===== Quotation / pull quote ===== */
.quote {
  position: relative;
  padding: 48px 0 48px 32px;
  border-left: 3px solid var(--orange);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.4;
  color: var(--blue);
  max-width: 70ch;
  letter-spacing: -0.01em;
}
.quote-attr { margin-top: 24px; font-size: 14px; font-weight: 500; color: var(--muted); letter-spacing: 0.04em; padding-left: 32px; border-left: 3px solid transparent; }

/* ===== Steps / numbered list ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }
.step { padding-top: 32px; border-top: 1px solid var(--line); position: relative; }
.step .num { font-size: 12px; font-weight: 600; color: var(--orange); letter-spacing: 0.18em; }
.step h3 { margin: 12px 0 10px; font-size: 18px; }
.step p { font-size: 14px; }

/* ===== Industries grid ===== */
.industries { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
@media (max-width: 900px) { .industries { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .industries { grid-template-columns: 1fr; } }
.industry {
  background: #fff;
  padding: 36px 32px;
  display: flex; flex-direction: column;
  min-height: 220px;
  transition: background .2s;
  position: relative;
}
.industry:hover { background: #FAFBFC; }
.industry .icon { width: 32px; height: 32px; color: var(--blue); }
.industry h3 { margin: 24px 0 8px; font-size: 19px; }
.industry p { font-size: 14px; flex: 1; }
.industry .go { margin-top: 18px; font-size: 13px; font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; }
.industry .go svg { width: 14px; height: 14px; transition: transform .15s; }
.industry:hover .go svg { transform: translateX(3px); }

/* ===== CTA banner ===== */
.cta-band {
  background: var(--blue);
  color: #fff;
  border-radius: 12px;
  padding: clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 800px) { .cta-band { grid-template-columns: 1fr; } }
.cta-band h2 { color: #fff; }
.cta-band h2 .accent { color: var(--orange); }
.cta-band p { color: rgba(255,255,255,0.78); margin-top: 16px; }
.cta-band .actions { display: flex; gap: 14px; justify-content: flex-end; flex-wrap: wrap; }
@media (max-width: 800px) { .cta-band .actions { justify-content: flex-start; } }

/* ===== Footer ===== */
.site-footer { padding: 80px 0 32px; border-top: 1px solid var(--line); margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h5 { font-size: 12px; font-weight: 600; color: var(--ink); letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 18px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-grid a { font-size: 14px; color: var(--ink-soft); }
.footer-grid a:hover { color: var(--blue); }
.footer-blurb { font-size: 14px; color: var(--ink-soft); max-width: 32ch; margin: 16px 0 0; }
.partners { font-size: 12px; color: var(--muted); margin-top: 24px; letter-spacing: 0.06em; }

/* Partner row — Valenta credit */
.partner-row {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 280px;
}
.partner-row .label { font-size: 11px; font-weight: 600; color: var(--muted); letter-spacing: 0.14em; text-transform: uppercase; }
.partner-row .partner-mark {
  display: inline-flex; align-items: center;
  text-decoration: none;
  transition: opacity .15s;
}
.partner-row .partner-mark img {
  height: 22px; width: auto;
  display: block;
}
.partner-row .partner-mark:hover { opacity: 0.7; }
.partner-row .partner-note { font-size: 12px; color: var(--muted); }

/* Social row */
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a {
  width: 36px; height: 36px; border-radius: 999px;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  transition: border-color .15s, color .15s, background .15s;
}
.socials a:hover { border-color: var(--blue); color: var(--blue); }
.socials a svg { width: 16px; height: 16px; }

/* Footer language switcher (dropdown) */
.footer-lang { position: relative; }
.footer-lang summary {
  list-style: none;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit; font-size: 12px; font-weight: 600;
  color: var(--ink-soft); letter-spacing: 0.06em;
  padding: 8px 12px; border-radius: 999px;
  border: 1px solid var(--line);
  cursor: pointer;
  background: #fff;
  transition: border-color .15s, color .15s;
}
.footer-lang summary::-webkit-details-marker { display: none; }
.footer-lang summary:hover { border-color: var(--blue); color: var(--blue); }
.footer-lang summary .globe { width: 14px; height: 14px; opacity: 0.8; }
.footer-lang summary .chev { width: 12px; height: 12px; transition: transform .15s; }
.footer-lang[open] summary { border-color: var(--blue); color: var(--blue); }
.footer-lang[open] summary .chev { transform: rotate(180deg); }
.footer-lang .menu {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(11,19,32,0.08);
  min-width: 180px;
  padding: 6px;
  display: grid;
  z-index: 60;
}
.footer-lang .menu a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px; border-radius: 6px;
  font-size: 13px; font-weight: 500; color: var(--ink);
  text-decoration: none;
  transition: background .12s, color .12s;
}
.footer-lang .menu a .code { font-size: 11px; color: var(--muted); letter-spacing: 0.1em; font-weight: 600; }
.footer-lang .menu a:hover { background: var(--bg-soft); color: var(--blue); }
.footer-lang .menu a.on { color: var(--blue); }
.footer-lang .menu a.on .code { color: var(--orange); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid var(--line);
  font-size: 12px; color: var(--muted); flex-wrap: wrap; gap: 16px;
}
.footer-bottom .legal a { color: var(--muted); margin-left: 18px; }
.footer-bottom .legal a:first-child { margin-left: 0; }
.footer-bottom .legal a:hover { color: var(--blue); }

/* ===== Localized homepage notice band ===== */
.lang-notice-band { padding: 0 0 80px; }
.lang-notice {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 24px; border-radius: 14px;
  background: #f5f8fd; border: 1px solid var(--line);
  color: var(--ink-soft);
}
.lang-notice svg { width: 22px; height: 22px; color: var(--orange); flex-shrink: 0; }
.lang-notice p { margin: 0; flex: 1; font-size: 14px; line-height: 1.5; }
.lang-notice .btn { flex-shrink: 0; }
@media (max-width: 700px) { .lang-notice { flex-direction: column; align-items: flex-start; } }

/* ===== Page header (non-home) ===== */
.page-head { padding: clamp(80px, 10vw, 120px) 0 clamp(48px, 6vw, 80px); }
.page-head .eyebrow { margin-bottom: 20px; display: inline-flex; }

/* ===== Two-column long-form ===== */
.prose p { margin: 0 0 18px; line-height: 1.7; font-size: 17px; color: var(--ink-soft); }
.prose h3 { margin: 36px 0 14px; font-size: 22px; color: var(--blue); }
.prose p:first-child { font-size: 19px; color: var(--ink); }

/* ===== Post grid (insights hub) ===== */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 980px) { .post-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .post-grid { grid-template-columns: 1fr; } }
.post-card {
  display: flex; flex-direction: column; gap: 16px;
  padding: 20px; border: 1px solid var(--line); border-radius: 14px;
  background: #fff; color: var(--ink); transition: all .25s ease;
}
.post-card:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 14px 32px -22px rgba(13,71,161,.4); }
.post-card .cover, .post-card .post-img { aspect-ratio: 16/10; border-radius: 10px; overflow: hidden; background: #f0f2f5; }
.post-card .cover img, .post-card .post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.post-card:hover .post-img img { transform: scale(1.04); }
.post-card .meta, .post-card .post-meta { display:flex; flex-wrap:wrap; gap:6px; font-size: 12px; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }
.post-card h3 { font-size: 19px; line-height: 1.3; margin: 0; }
.post-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; margin: 0; flex: 1; }
.post-card .go, .post-card .post-go { display: inline-flex; align-items: center; gap: 8px; color: var(--orange); font-size: 13px; font-weight: 600; }
.post-card .go svg, .post-card .post-go svg { width: 16px; height: 16px; }
.back-link { display:inline-flex; align-items:center; gap:8px; font-size:13px; color:var(--muted); text-transform:uppercase; letter-spacing:.08em; }
.back-link:hover { color: var(--blue); }
.back-link svg { width:16px; height:16px; }
.post-hero-img { aspect-ratio: 16/8; border-radius: 18px; overflow: hidden; background: #f0f2f5; }
.post-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.post-prose { max-width: 72ch; margin: 0 auto; }
.post-prose h3 { margin-top: 32px; }

/* ===== Stat block ===== */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; padding-top: 48px; border-top: 1px solid var(--line); }
@media (max-width: 800px) { .stats { grid-template-columns: 1fr; gap: 24px; } }
.stat .num { font-size: clamp(36px, 5vw, 56px); font-weight: 600; color: var(--blue); letter-spacing: -0.02em; line-height: 1; }
.stat .num .accent { color: var(--orange); }
.stat .label { margin-top: 12px; font-size: 14px; color: var(--ink-soft); }

/* ===== People / partners row ===== */
.people { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 800px) { .people { grid-template-columns: 1fr; } }
.person .photo { aspect-ratio: 4/5; border-radius: 12px; overflow: hidden; background: #f0f2f5; }
.person .photo img { width: 100%; height: 100%; object-fit: cover; }
.person h3 { margin: 24px 0 4px; }
.person .role { color: var(--orange); font-size: 14px; font-weight: 500; }
.person p { font-size: 15px; margin-top: 14px; }

/* ===== Contact form ===== */
.form { display: grid; gap: 18px; }
.form .field { display: grid; gap: 8px; }
.form label { font-size: 12px; font-weight: 600; color: var(--ink); letter-spacing: 0.06em; text-transform: uppercase; }
.form input, .form textarea, .form select {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s;
}
.form input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: var(--blue); }
.form textarea { min-height: 140px; resize: vertical; }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form .row2 { grid-template-columns: 1fr; } }
.form-aside { padding-left: 0; }
.form-aside .info { margin-top: 32px; display: grid; gap: 22px; }
.form-aside .info-item { display: flex; gap: 14px; align-items: flex-start; }
.form-aside .info-item svg { width: 20px; height: 20px; color: var(--orange); flex: none; margin-top: 2px; }
.form-aside .info-item .lbl { font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
.form-aside .info-item .val { font-size: 15px; color: var(--ink); margin-top: 4px; }

/* ===== Index of concept pages (cover) ===== */
.cover { padding: 80px 0; }
.cover-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
@media (max-width: 800px) { .cover-grid { grid-template-columns: 1fr; } }
.cover-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 32px;
  display: grid;
  gap: 12px;
  transition: border-color .2s, transform .2s;
  background: #fff;
}
.cover-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.cover-card .num { font-size: 12px; font-weight: 600; color: var(--orange); letter-spacing: 0.18em; }
.cover-card h3 { font-size: 22px; }
.cover-card p { font-size: 14px; }
.cover-card .url { font-size: 12px; color: var(--muted); font-family: ui-monospace, "SF Mono", monospace; margin-top: 8px; }


/* ===== Nav dropdown ===== */
.nav-dd { position: relative; }
.nav-dd-trigger { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 500; color: var(--ink-soft); transition: color .15s; cursor: pointer; }
.nav-dd-trigger:hover, .nav-dd-trigger.active { color: var(--blue); }
.nav-dd-trigger .caret { width: 12px; height: 12px; opacity: .7; transition: transform .2s; }
.nav-dd:hover .nav-dd-trigger .caret { transform: rotate(180deg); }
.nav-dd-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(-4px);
  min-width: 320px; padding: 12px; border-radius: 14px;
  background: #fff; border: 1px solid var(--line);
  box-shadow: 0 24px 60px -28px rgba(13,71,161,.28);
  opacity: 0; pointer-events: none; transition: all .18s ease;
  display: grid; gap: 2px; z-index: 60;
}
.nav-dd:hover .nav-dd-menu, .nav-dd:focus-within .nav-dd-menu { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-dd-menu::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 14px; }
.nav-dd-menu a { display: flex; flex-direction: column; gap: 2px; padding: 12px 14px; border-radius: 10px; transition: background .15s; }
.nav-dd-menu a:hover { background: var(--bg-soft); }
.nav-dd-menu a strong { color: var(--blue); font-size: 14px; font-weight: 600; }
.nav-dd-menu a span { color: var(--muted); font-size: 12px; }
@media (max-width: 900px) { .nav-dd-menu { display: none; } }

/* ===== Cookie banner + modal ===== */
.btn-sm { padding: 10px 16px; font-size: 13px; }
.cookie-banner {
  position: fixed; bottom: 24px; left: 24px; right: 24px; z-index: 200;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 24px 64px -20px rgba(11,19,32,.25);
  padding: 20px 24px;
}
.cookie-banner-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cookie-banner p { font-size: 14px; line-height: 1.5; flex: 1 1 360px; margin: 0; color: var(--ink-soft); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
@media (max-width: 700px) { .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 16px; } }

.cookie-modal { position: fixed; inset: 0; z-index: 250; background: rgba(11,19,32,.55); display: flex; align-items: center; justify-content: center; padding: 20px; }
.cookie-modal[hidden] { display: none; }
.cookie-modal-card { background: #fff; border-radius: 18px; max-width: 560px; width: 100%; max-height: calc(100vh - 40px); overflow: auto; }
.cookie-modal-card header { display: flex; align-items: center; justify-content: space-between; padding: 24px 28px; border-bottom: 1px solid var(--line); }
.cookie-modal-card h3 { margin: 0; font-size: 20px; color: var(--blue); }
.cookie-close { background: transparent; border: 0; font-size: 28px; line-height: 1; color: var(--muted); cursor: pointer; }
.cookie-body { padding: 16px 28px; display: grid; gap: 6px; }
.cookie-row { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cookie-row:last-child { border-bottom: 0; }
.cookie-row span { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.cookie-row strong { color: var(--ink); font-size: 14px; font-weight: 600; }
.cookie-row em { color: var(--muted); font-size: 12px; font-style: normal; line-height: 1.5; }
.cookie-row input { width: 18px; height: 18px; accent-color: var(--orange); }
.cookie-modal-card footer { display: flex; gap: 10px; justify-content: flex-end; padding: 20px 28px; border-top: 1px solid var(--line); }

/* ===== Services restructure ===== */
.svc-card { display:flex; flex-direction:column; gap:14px; cursor:pointer; transition: all .25s; }
.svc-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px -22px rgba(13,71,161,.4); border-color: var(--blue); }
.svc-card .post-go { color: var(--orange); font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.svc-card .post-go svg { width: 16px; height: 16px; }

/* Book-Checkup form ===== */
.form-step { display:flex; align-items:center; gap:14px; margin: 32px 0 16px; }
.form-step:first-child { margin-top: 0; }
.form-step .step-num { width: 28px; height: 28px; display:inline-flex; align-items:center; justify-content:center; border-radius:50%; background: var(--blue); color:#fff; font-weight:600; font-size:13px; }
.form-step h3 { margin:0; font-size: 18px; color: var(--blue); }
.radio-group { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
@media (max-width:560px) { .radio-group { grid-template-columns: 1fr; } }
.radio-group label { display:flex; gap:10px; align-items:center; padding:10px 12px; border:1px solid var(--line); border-radius:8px; cursor:pointer; font-size:14px; transition: all .15s; }
.radio-group label:hover { border-color: var(--blue); background: var(--bg-soft); }
.radio-group input { accent-color: var(--blue); }
.consent { display:flex; gap:10px; align-items:flex-start; font-size:13px; color: var(--ink-soft); margin-top:16px; }
.consent input { margin-top:3px; accent-color: var(--blue); }
.consent a { color: var(--blue); text-decoration: underline; }

/* ===== Insight article rich content components (added v1.1) ===== */

/* Pull-quote: visually amplified, vertical accent bar, used 1-2x per article */
.post-prose .pull-quote {
  margin: 36px 0;
  padding: 8px 0 8px 28px;
  border-left: 4px solid var(--orange);
  max-width: 70ch;
}
.post-prose .pull-quote blockquote {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.post-prose .pull-quote figcaption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  font-style: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Statistic callouts: single or grouped row */
.post-prose .stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin: 32px 0;
  padding: 28px;
  background: var(--bg-soft);
  border-radius: 12px;
  border: 1px solid var(--line);
}
.post-prose .stat {
  text-align: left;
}
.post-prose .stat-n {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1;
  color: var(--orange);
  letter-spacing: -0.02em;
}
.post-prose .stat-l {
  margin-top: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.4;
  max-width: 28ch;
}

/* Inline images: mid-article break */
.post-prose .inline-img {
  margin: 36px 0;
}
.post-prose .inline-img img {
  width: 100%;
  border-radius: 10px;
  height: auto;
}
.post-prose .inline-img figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* Inline SVG charts */
.post-prose .inline-chart {
  margin: 36px 0;
  padding: 24px;
  background: var(--bg-soft);
  border-radius: 12px;
  border: 1px solid var(--line);
}
.post-prose .inline-chart svg { width: 100%; height: auto; display: block; }
.post-prose .inline-chart figcaption {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  font-style: italic;
}

/* "Our take" inline block: subtle background, marks Solazur perspective */
.post-prose .our-take {
  margin: 32px 0;
  padding: 24px 28px;
  background: linear-gradient(180deg, rgba(13,71,161,0.04) 0%, rgba(13,71,161,0.02) 100%);
  border-left: 3px solid var(--blue);
  border-radius: 4px;
}
.post-prose .our-take h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 12px;
}
.post-prose .our-take p {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.65;
  margin: 0;
}

/* Closing "How we work" approach block */
.closing-approach {
  max-width: 100ch;
  margin: 56px auto 24px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
}
.approach-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .approach-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .approach-steps { grid-template-columns: repeat(4, 1fr); }
}
.approach-steps li {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.approach-step-n {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--orange);
  letter-spacing: 0.08em;
}
.approach-step-body h4 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  margin: 0 0 8px;
}
.approach-step-body p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
.approach-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: 0.02em;
}
.approach-link:hover { color: var(--orange); }

/* Sources block: visually demoted, ~8pt font, muted color */
.sources-block {
  max-width: 80ch;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.sources-block h3 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
}
.sources-block ol {
  font-size: 11px;
  line-height: 1.55;
  color: var(--muted);
  padding-left: 20px;
  margin: 0;
}
.sources-block ol li {
  margin-bottom: 5px;
}
.sources-block ol li em {
  font-style: italic;
}
.sources-block ol li a {
  color: inherit;
  text-decoration: underline;
  word-break: break-all;
}
.sources-block ol li a:hover { color: var(--blue); }

/* Insight hub card lede: extends .post-card */
.post-card .card-lede {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-top: 8px;
  margin-bottom: 0;
  /* Limit to 3 lines for visual consistency */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.insight-card { padding-bottom: 24px; }
.insight-card .post-meta { margin-top: 4px; }
.insight-card h3 { margin-top: 8px; }

/* Explicit 3-column hub grid (existing .post-grid already gives 3 but be explicit) */
.post-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 980px) { .post-grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .post-grid-3 { grid-template-columns: 1fr; } }

/* Language badge for cross-language insight cards (used on NL/FR/PT/ES hubs pointing to EN content) */
.lang-badge {
  display: inline-block;
  padding: 2px 8px;
  margin-left: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--blue);
  background: rgba(13, 71, 161, 0.08);
  border-radius: 4px;
  text-transform: uppercase;
}

/* ===== Insights hub v1.2 (marketing-grade) ===== */

/* Hero block: matches homepage hero rhythm */
.insights-hero {
  padding: clamp(72px, 10vw, 120px) 0 clamp(40px, 6vw, 64px);
  background: var(--bg);
}
.insights-hero h1 {
  font-size: clamp(36px, 5.2vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 18px;
  max-width: 22ch;
}
.insights-hero h1 .accent { color: var(--orange); }
.insights-hero .lede {
  margin-top: 24px;
  max-width: 56ch;
}
.insights-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* Filter strip */
.insights-filter {
  padding: 24px 0 32px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.insights-filter .container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.insights-filter-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.insights-filter-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-chip {
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
  letter-spacing: 0.01em;
}
.filter-chip:hover { border-color: var(--blue); color: var(--blue); }
.filter-chip-active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.filter-chip-active:hover { background: var(--blue-deep); border-color: var(--blue-deep); color: #fff; }

/* Card grid */
.insights-grid-section {
  padding: 8px 0 clamp(64px, 8vw, 96px);
  background: var(--bg);
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 980px) { .insights-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .insights-grid { grid-template-columns: 1fr; } }

.insight-card-v2 {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg);
  transition: border-color .2s, transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.insight-card-v2:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -24px rgba(13, 71, 161, 0.35);
}
.insight-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}
.insight-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f0f2f5;
}
.insight-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.insight-card-v2:hover .insight-card-img img { transform: scale(1.04); }
.insight-card-industry {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  backdrop-filter: blur(8px);
}
.insight-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.insight-card-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.insight-card-meta .lang-badge {
  margin-left: 4px;
  padding: 2px 7px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--blue);
  background: rgba(13, 71, 161, 0.08);
  border-radius: 4px;
  text-transform: uppercase;
}
.insight-card-body h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 12px;
}
.insight-card-body h3 .accent { color: var(--orange); }
.insight-card-body p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.insight-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.02em;
  margin-top: auto;
}
.insight-card-cta svg {
  width: 16px;
  height: 16px;
  transition: transform .2s;
}
.insight-card-v2:hover .insight-card-cta { color: var(--orange); }
.insight-card-v2:hover .insight-card-cta svg { transform: translateX(3px); }

/* Closing band wrapper (uses existing .cta-band) */
.insights-band {
  padding: 0 0 clamp(64px, 8vw, 96px);
  background: var(--bg);
}

/* ===== Homepage pillar tiles v1.1 (question, evidence, answer) ===== */
.card .pillar-question {
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  margin: 14px 0 12px;
  line-height: 1.4;
}
.card .pillar-evidence {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 14px;
}
.card .pillar-answer {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.55;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* ===== Wave 2.0.0 dark overlay hero (Variant C) ===== */
.hero-dark {
  position: relative;
  min-height: 580px;
  padding: clamp(72px, 9vw, 112px) 0 clamp(48px, 6vw, 72px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 18, 40, 0.92) 0%, rgba(8, 18, 40, 0.72) 55%, rgba(8, 18, 40, 0.55) 100%),
    url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=85') center/cover no-repeat;
  overflow: hidden;
}
.hero-dark::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 75% 50%, rgba(13, 71, 161, 0.35) 0%, transparent 55%);
  pointer-events: none;
}
.hero-dark .container { position: relative; z-index: 2; }
.hero-dark .eyebrow { color: var(--orange); }
.hero-dark .eyebrow.with-tick::before { background: var(--orange); }
.hero-dark h1 {
  font-size: clamp(36px, 5.2vw, 66px);
  margin-top: 24px;
  color: #fff;
  font-weight: 700;
  max-width: 22ch;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.hero-dark h1 .accent { color: var(--orange); }
.hero-dark .lede {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 52ch;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
}
.hero-dark .outcomes-dark {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 920px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-dark .outcome-row-dark { display: flex; gap: 14px; align-items: flex-start; }
.hero-dark .outcome-icon-dark { width: 26px; height: 26px; color: var(--orange); margin-top: 3px; flex-shrink: 0; }
.hero-dark .outcome-label-dark {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.005em;
}
.hero-dark .outcome-label-dark .accent { color: var(--orange); }
.hero-dark .outcome-sub-dark {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  line-height: 1.5;
}
.hero-dark .hero-actions { margin-top: 44px; }
.hero-dark .btn-primary { background: var(--orange); color: #fff; }
.hero-dark .btn-primary:hover { background: #e85f00; }
.hero-dark .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.hero-dark .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}
.hero-dark .hero-meta {
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.6);
}
.hero-dark .hero-meta .item { color: inherit; }
.hero-dark .hero-meta i { color: inherit; }
@media (max-width: 900px) {
  .hero-dark .outcomes-dark { grid-template-columns: 1fr; gap: 20px; }
  .hero-dark h1 { font-size: clamp(32px, 9vw, 48px); }
}

/* ===== Wave 2.0.0 menu CTA scroll-trigger ===== */
.header-cta-hidden { opacity: 0; pointer-events: none; transition: opacity .25s ease-out; }
.header-cta-visible { opacity: 1; pointer-events: auto; transition: opacity .25s ease-in; }

/* ===== Wave 2.2.0 geolocation language popup ===== */
.lang-popup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 48px -20px rgba(8, 18, 40, 0.3), 0 2px 6px rgba(0, 0, 0, 0.06);
  padding: 20px 22px 18px;
  max-width: 340px;
  font-family: "Poppins", sans-serif;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  pointer-events: none;
}
.lang-popup.lang-popup-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.lang-popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 6px;
}
.lang-popup-close:hover { background: var(--bg-soft); color: var(--ink); }
.lang-popup-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.lang-popup-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 14px;
  line-height: 1.4;
  padding-right: 24px;
}
.lang-popup-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lang-popup-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-soft);
  color: var(--ink);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.lang-popup-btn:hover {
  border-color: var(--blue);
  background: #fff;
}
.lang-popup-btn-primary {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  font-weight: 600;
}
.lang-popup-btn-primary:hover {
  background: #e85f00;
  border-color: #e85f00;
  color: #fff;
}
.lang-popup-btn .arrow {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}
.lang-popup-btn-primary .arrow { opacity: 1; }
@media (max-width: 480px) {
  .lang-popup {
    bottom: 16px;
    right: 16px;
    left: 16px;
    max-width: none;
  }
}

/* ===== Wave 2.3.0 compact logo with subline (footer) ===== */
.brand-compact { display: block !important; gap: 0 !important; }
.brand-compact img {
  width: 240px !important;
  height: auto !important;
  max-width: 100%;
  display: block;
}
@media (max-width: 800px) {
  .brand-compact img { width: 200px !important; }
}

/* ===== Wave 2.3.0 form status + contact aside + captcha ===== */
.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  display: none;
}
.form-status:not(:empty) { display: block; }
.form-status-pending { background: #F5F6F8; color: var(--ink-soft); }
.form-status-success { background: #ECFDF5; color: #047857; border: 1px solid #6EE7B7; }
.form-status-error { background: #FEF2F2; color: #B91C1C; border: 1px solid #FCA5A5; }

.form-actions { margin-top: 8px; display: flex; justify-content: flex-start; }
.captcha-wrap { margin: 8px 0; }
.g-recaptcha { transform-origin: 0 0; }

.contact-aside {
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 32px;
  border: 1px solid var(--line);
}
.contact-aside h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 24px;
  color: var(--ink);
}
.contact-method {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.contact-method:first-of-type { border-top: 0; padding-top: 0; }
.contact-method .icon { width: 22px; height: 22px; color: var(--orange); margin-top: 2px; }
.contact-method .method-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-method a {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
}
.contact-method a:hover { color: var(--blue); }
.contact-method .method-value {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}

@media (max-width: 800px) {
  .contact-aside { padding: 24px; }
}

/* ===== Wave 2.3.0 FAQ component ===== */
.faq-section { padding: clamp(56px, 7vw, 88px) 0; }
.faq-list { max-width: 820px; margin: 32px auto 0; }
.faq-item {
  border-top: 1px solid var(--line);
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 0;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230D47A1' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(180deg); }
.faq-item summary:hover { color: var(--blue); }
.faq-answer {
  padding: 0 56px 22px 0;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.faq-answer p { margin: 0 0 12px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-eyebrow-row { text-align: center; }
.faq-eyebrow-row h2 { margin-top: 14px; font-size: clamp(28px, 3.6vw, 38px); }

/* JSON-LD FAQ schema markup is also added at build-time */

/* ===== Wave 2.3.0 ROI Calculator ===== */
.roi-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.roi-inputs h2, .roi-outputs h2 {
  font-size: clamp(22px, 2.8vw, 28px);
  margin: 0 0 12px;
  font-weight: 600;
}
.roi-field {
  margin-bottom: 24px;
}
.roi-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.roi-field-help {
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 8px;
  line-height: 1.5;
}
.roi-field input[type="number"] {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  font-family: inherit;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s;
}
.roi-field input[type="number"]:focus {
  outline: none;
  border-color: var(--blue);
}
.roi-slider-row {
  display: grid;
  grid-template-columns: 1fr 56px;
  gap: 14px;
  align-items: center;
}
.roi-field input[type="range"] {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--bg-soft);
  border-radius: 999px;
  outline: none;
}
.roi-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(255, 106, 0, 0.4);
}
.roi-field input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(255, 106, 0, 0.4);
}
.roi-slider-value {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--orange);
  text-align: right;
}

.roi-outputs {
  position: sticky;
  top: 100px;
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 32px;
  border: 1px solid var(--line);
}
.roi-result-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}
.roi-result-primary {
  background: linear-gradient(135deg, #0D47A1 0%, #1565C0 100%);
  border-color: transparent;
  color: #fff;
}
.roi-result-primary .roi-result-label,
.roi-result-primary .roi-result-sub {
  color: rgba(255, 255, 255, 0.85);
}
.roi-result-primary .roi-result-value {
  color: #fff;
}
.roi-result-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.roi-result-value {
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.roi-result-primary .roi-result-value {
  color: #fff;
  font-size: clamp(28px, 3.8vw, 40px);
}
.roi-result-sub {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 6px;
  line-height: 1.4;
}
.roi-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.roi-result-grid .roi-result-card { margin-bottom: 0; }
.roi-result-grid .roi-result-value { font-size: clamp(20px, 2.6vw, 26px); }
.roi-disclaimer {
  font-size: 12px;
  color: var(--ink-soft);
  background: #FFF8E6;
  border-left: 3px solid var(--orange);
  padding: 14px 16px;
  border-radius: 8px;
  margin: 16px 0;
  line-height: 1.55;
}
.roi-disclaimer strong { color: var(--ink); }
.roi-cta-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.roi-cta-row .btn { justify-content: center; }

@media (max-width: 900px) {
  .roi-grid { grid-template-columns: 1fr; }
  .roi-outputs { position: static; }
  .roi-result-grid { grid-template-columns: 1fr; }
}

/* ===== Wave 2.3.2 contact aside fixes ===== */
/* Protect contact-method icon from .brand img override (which forces 30x30) */
.contact-method .icon {
  width: 22px !important;
  height: 22px !important;
  flex-shrink: 0;
}
.contact-method {
  grid-template-columns: 28px 1fr;
  gap: 12px;
}
.contact-method .method-label {
  font-size: 10px;
  letter-spacing: 0.12em;
}
.contact-method a {
  word-break: break-word;
}

/* New compact CTA block at end of contact aside */
.contact-cta-block {
  border-top: 1px solid var(--line);
  margin-top: 16px;
  padding-top: 20px;
}
.cta-block-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 10px;
  line-height: 1.4;
}
.cta-block-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--orange);
  color: #fff !important;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}
.cta-block-link:hover { background: #e85f00; }
.cta-block-link i, .cta-block-link svg { width: 14px !important; height: 14px !important; color: #fff; }
