/* =============================================================
   AuditGrid — Stylesheet v3
   Light Editorial · Forest Green
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;0,900;1,400;1,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ─── Variables ─────────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg:        #F5F7F2;
  --bg-white:  #FFFFFF;
  --bg-warm:   #ECF0E8;
  --bg-deep:   #111A14;

  /* Text */
  --ink:       #111A14;
  --ink-soft:  #4E6055;
  --ink-muted: #849188;
  --ink-faint: #C0CAC2;

  /* Accent — forest green */
  --a:         #2A6049;
  --a-hover:   #35785C;
  --a-pale:    #D4E9DF;

  /* Borders */
  --b:         #D4DACE;
  --b-soft:    #E3E8DF;

  /* Typography */
  --ff-d: 'Playfair Display', Georgia, serif;
  --ff-b: 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Spacing */
  --section: 6rem;

  /* Radii */
  --r-sm: 3px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* Shadows */
  --sh-xs: 0 1px 4px rgba(17,26,20,0.07);
  --sh-sm: 0 4px 16px rgba(17,26,20,0.08);
  --sh-md: 0 12px 40px rgba(17,26,20,0.10);
  --sh-lg: 0 24px 64px rgba(17,26,20,0.12);

  /* Transition */
  --tr: all 0.28s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* prevent horizontal overflow globally */
  overflow-x: hidden;
}

body {
  font-family: var(--ff-b);
  font-size: 1rem;
  line-height: 1.72;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; transition: var(--tr); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-d);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}

p { font-size: 1.05rem; color: var(--ink-soft); line-height: 1.75; }

/* ─── Layout Helpers ─────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.section       { padding: var(--section) 0; }
.section--w    { background: var(--bg-white); }
.section--warm { background: var(--bg-warm); }
.section--dark { background: var(--bg-deep); }

/* ─── Eyebrow Label ──────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--a);
  margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 26px;
  height: 2px;
  background: var(--a);
  border-radius: 2px;
}

/* ─── Section Intro ──────────────────────────────────────────── */
.section-intro { max-width: 660px; margin-bottom: 4rem; }
.section-intro.centered { text-align: center; margin-inline: auto; }
.section-intro h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.section-intro p  { font-size: 1.1rem; }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--ff-b);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85em 2em;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: var(--tr);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary { background: var(--a); color: #fff; }
.btn-primary:hover {
  background: var(--a-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42,96,73,0.3);
}

.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--b); }
.btn-outline:hover { border-color: var(--a); color: var(--a); }

.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: var(--a); color: #fff; }

/* ─── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  background: transparent;
  transition: background 0.35s, box-shadow 0.35s;
}
.nav.scrolled,
.nav.mobile-solid {
  background: rgba(245,247,242,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--b), var(--sh-xs);
}

.nav__inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 2.5rem;
}

.nav__logo {
  font-family: var(--ff-d);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--ink);
  flex-shrink: 0;
  letter-spacing: -0.01em;
}
.nav__logo span { color: var(--a); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex: 1;
}
.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav__links a:hover { color: var(--a); }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  margin-left: auto;
  flex-shrink: 0;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--tr);
  margin: 0 auto;
}

/* ─── Mobile Nav Drawer ──────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg-white);
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  padding: 5rem 2rem 3rem;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }

.mobile-nav a {
  font-family: var(--ff-d);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  line-height: 1.2;
}
.mobile-nav a:hover,
.mobile-nav a:active { color: var(--a); }

.mobile-nav__close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-warm);
  border: 1px solid var(--b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--ink-soft);
  cursor: pointer;
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  padding-top: 68px;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Safe padding — no calc() that can go negative */
  padding: 5rem 4rem 5rem 2rem;
  padding-left: max(2rem, calc((100vw - 1200px) / 2 + 2rem));
}

.hero__right {
  position: relative;
  overflow: hidden;
  background: var(--bg-warm);
  min-height: 400px;
}
.hero__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(245,247,242,0.12), transparent 55%);
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin-bottom: 1.4rem;
}
.hero h1 em { font-style: italic; color: var(--a); }

.hero__desc {
  font-size: 1.25rem;
  color: var(--ink-soft);
  max-width: 440px;
  margin-bottom: 2.4rem;
  line-height: 1.6;
}

.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; align-items: flex-start; }

.hero__meta {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--b);
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero__meta-item strong {
  display: block;
  font-family: var(--ff-d);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero__meta-item span {
  font-size: 0.78rem;
  color: var(--ink-muted);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* ─── Ticker ─────────────────────────────────────────────────── */
.ticker { background: var(--bg-deep); }
.ticker__inner { display: grid; grid-template-columns: repeat(4, 1fr); }

.ticker__item {
  padding: 2.6rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.ticker__item:last-child { border-right: none; }

.ticker__num {
  display: block;
  font-family: var(--ff-d);
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.ticker__num em { color: var(--a-hover); font-style: normal; }

.ticker__label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

/* ─── Marquee ────────────────────────────────────────────────── */
.marquee-strip {
  padding: 1.2rem 0;
  background: var(--a);
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 2.5rem;
  animation: mq 26s linear infinite;
}
.marquee-track span {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  flex-shrink: 0;
}
.marquee-track .sep { color: rgba(255,255,255,0.32); }
@keyframes mq {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Services ───────────────────────────────────────────────── */
.services__layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: flex-start;
}
.services__sticky {
  position: sticky;
  top: 88px;
}
.services__sticky h2 { font-size: 2.1rem; margin-bottom: 1rem; }
.services__sticky > p { margin-bottom: 2rem; }

.services__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--b);
  border: 1px solid var(--b);
  border-radius: var(--r-md);
  overflow: hidden;
}
.svc-card {
  background: var(--bg-white);
  padding: 2.2rem 1.8rem;
  transition: background 0.22s;
}
.svc-card:hover { background: var(--a-pale); }
.svc-card:hover .svc-num { color: var(--a); }

.svc-num {
  font-family: var(--ff-d);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--ink-faint);
  line-height: 1;
  margin-bottom: 1.1rem;
  transition: color 0.22s;
}
.svc-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.svc-card p  { font-size: 0.875rem; }

/* ─── About ──────────────────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 5rem;
  align-items: center;
}

/* Prevent float badge from causing horizontal overflow */
.about__img {
  position: relative;
  /* clip overflow so the left-protruding badge doesn't widen page */
  overflow: visible;
}

.about__img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--r-xl);
  display: block;
}

.about__float {
  position: absolute;
  bottom: 1.8rem;
  /* Stay inside the image, not negative */
  left: 1.2rem;
  background: var(--bg-white);
  border: 1px solid var(--b);
  border-radius: var(--r-lg);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--sh-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: calc(100% - 2.4rem);
}
.about__float-icon {
  width: 44px;
  height: 44px;
  background: var(--a-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--a);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.about__float strong { display: block; font-size: 1.1rem; color: var(--ink); line-height: 1.2; }
.about__float span   { font-size: 0.78rem; color: var(--ink-muted); }

.about__text h2 { font-size: 2.1rem; margin-bottom: 1.2rem; }
.about__text > p { margin-bottom: 1.1rem; }

.about__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-top: 2rem;
}
.pillar {
  background: var(--bg);
  border: 1px solid var(--b-soft);
  border-radius: var(--r-md);
  padding: 1.2rem;
}
.pillar i      { color: var(--a); font-size: 1rem; margin-bottom: 0.5rem; display: block; }
.pillar strong { display: block; font-size: 0.95rem; margin-bottom: 0.18rem; color: var(--ink); }
.pillar span   { font-size: 0.82rem; color: var(--ink-muted); }

/* ─── Highlight Numbers ──────────────────────────────────────── */
.highlight-row {
  background: var(--bg-white);
  border-top: 1px solid var(--b);
  border-bottom: 1px solid var(--b);
  padding: 4rem 0;
}
.highlight-row__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.hl-item {
  padding: 0 3rem;
  border-right: 1px solid var(--b);
  text-align: center;
}
.hl-item:first-child { padding-left: 0; text-align: left; }
.hl-item:last-child  { padding-right: 0; border-right: none; text-align: right; }
.hl-item__big {
  font-family: var(--ff-d);
  font-size: 4rem;
  font-weight: 900;
  color: var(--a);
  line-height: 1;
  display: block;
  margin-bottom: 0.3rem;
}
.hl-item__text { font-size: 0.92rem; color: var(--ink-soft); font-weight: 500; }

/* ─── Process ────────────────────────────────────────────────── */
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--b);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--b);
}
.proc-step {
  padding: 2.4rem 1.8rem;
  background: var(--bg-white);
  transition: background 0.28s;
}
.proc-step:hover { background: var(--a-pale); }
.proc-step:hover .proc-num { color: var(--a); }

.proc-num {
  font-family: var(--ff-d);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--b);
  line-height: 1;
  margin-bottom: 1.4rem;
  transition: color 0.28s;
}
.proc-icon {
  width: 42px;
  height: 42px;
  background: var(--a-pale);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--a);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.proc-step h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.proc-step p  { font-size: 0.86rem; }

/* ─── Industries ─────────────────────────────────────────────── */
.industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.ind-card {
  background: var(--bg-white);
  border: 1px solid var(--b);
  border-radius: var(--r-md);
  padding: 2rem 1.6rem;
  transition: var(--tr);
}
.ind-card:hover {
  border-color: var(--a);
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}
.ind-card:hover .ind-arr { opacity: 1; transform: translateX(0); }

.ind-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
.ind-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-warm);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--a);
}
.ind-arr {
  font-size: 0.85rem;
  color: var(--a);
  opacity: 0;
  transform: translateX(-5px);
  transition: var(--tr);
}
.ind-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.ind-card p  { font-size: 0.875rem; }

/* ─── Expertise Bars ─────────────────────────────────────────── */
.expertise__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.expertise__intro h2 { font-size: 2.1rem; margin-bottom: 1rem; }
.expertise__intro > p { margin-bottom: 1.2rem; }

.bar-item { margin-bottom: 1.5rem; }
.bar-meta { display: flex; justify-content: space-between; margin-bottom: 0.45rem; }
.bar-name  { font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.bar-val   { font-size: 0.85rem; color: var(--a); font-weight: 700; }
.bar-track { height: 4px; background: var(--b); border-radius: 4px; overflow: hidden; }
.bar-fill  {
  height: 100%;
  background: var(--a);
  border-radius: 4px;
  width: 0;
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Testimonials ───────────────────────────────────────────── */
.testi-section { background: var(--bg-deep); padding: var(--section) 0; }
.testi-section .eyebrow         { color: var(--a-hover); }
.testi-section .eyebrow::before { background: var(--a-hover); }
.testi-section .section-intro h2 { color: #fff; }
.testi-section .section-intro p  { color: rgba(255,255,255,0.48); }

.testi__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.tc {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  padding: 2.2rem;
  transition: var(--tr);
}
.tc:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(53,120,92,0.4);
}
.tc__q {
  font-family: var(--ff-d);
  font-size: 3.8rem;
  line-height: 0.7;
  color: var(--a-hover);
  margin-bottom: 1rem;
  display: block;
}
.tc__text {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.72);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 1.8rem;
}
.tc__person { display: flex; align-items: center; gap: 0.9rem; }
.tc__av {
  width: 42px;
  height: 42px;
  background: var(--a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-d);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}
.tc__name { font-weight: 600; color: #fff; font-size: 0.9rem; }
.tc__role { font-size: 0.78rem; color: rgba(255,255,255,0.38); }
.stars { color: var(--a-hover); font-size: 0.76rem; display: flex; gap: 2px; margin-bottom: 0.6rem; }

/* ─── Presence / Geo ─────────────────────────────────────────── */
.presence__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.pres-card {
  background: var(--bg-white);
  border: 1px solid var(--b);
  border-radius: var(--r-md);
  padding: 1.8rem 1.2rem;
  text-align: center;
  transition: var(--tr);
}
.pres-card:hover { border-color: var(--a); box-shadow: var(--sh-sm); }
.pres-card i      { font-size: 1.5rem; color: var(--a); margin-bottom: 0.8rem; display: block; }
.pres-card strong { display: block; font-size: 0.97rem; color: var(--ink); margin-bottom: 0.2rem; font-family: var(--ff-d); }
.pres-card span   { font-size: 0.78rem; color: var(--ink-muted); line-height: 1.45; display: block; }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq__cols { display: grid; grid-template-columns: 5fr 7fr; gap: 5rem; align-items: flex-start; }
.faq__intro { position: sticky; top: 88px; }
.faq__intro h2 { font-size: 2.1rem; margin-bottom: 1rem; }
.faq__intro > p { margin-bottom: 2rem; }

.faq-item { border-top: 1px solid var(--b); }
.faq-item:last-child { border-bottom: 1px solid var(--b); }

.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 0;
  cursor: pointer;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  user-select: none;
}
.faq-item__q i { color: var(--a); font-size: 0.82rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-item__q i { transform: rotate(180deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-item__a { max-height: 320px; }
.faq-item__a p { padding-bottom: 1.3rem; font-size: 0.95rem; }

/* ─── CTA Newsletter ─────────────────────────────────────────── */
.cta-section { padding: var(--section) 0; background: var(--a); }
.cta-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.cta-section__text h2 { font-size: 2.1rem; color: #fff; margin-bottom: 0.6rem; }
.cta-section__text p  { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin: 0; max-width: 460px; }

.nl-form { display: flex; gap: 0.8rem; }
.nl-form input[type="email"] {
  padding: 0.85em 1.3em;
  border-radius: var(--r-sm);
  border: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-family: var(--ff-b);
  font-size: 1rem;
  outline: none;
  width: 250px;
  transition: background 0.28s;
}
.nl-form input::placeholder { color: rgba(255,255,255,0.5); }
.nl-form input:focus { background: rgba(255,255,255,0.22); }

/* ─── Footer ─────────────────────────────────────────────────── */
.footer { background: var(--bg-deep); padding: 5rem 0 2rem; }
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__logo {
  font-family: var(--ff-d);
  font-size: 1.55rem;
  font-weight: 900;
  color: #fff;
  display: block;
  margin-bottom: 1rem;
}
.footer__logo span { color: var(--a-hover); }
.footer__brand > p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.38);
  max-width: 260px;
  margin-bottom: 1.4rem;
}
.f-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.65rem;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.42);
}
.f-contact i { color: var(--a-hover); margin-top: 3px; flex-shrink: 0; font-size: 0.78rem; }
.f-contact a { color: rgba(255,255,255,0.42); }
.f-contact a:hover { color: #fff; }

.footer__col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.26);
  margin-bottom: 1.1rem;
  font-family: var(--ff-b);
}
.footer__col ul li { margin-bottom: 0.6rem; }
.footer__col ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.48); }
.footer__col ul li a:hover { color: #fff; padding-left: 3px; }

.footer__bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.28); margin: 0; }
.f-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.f-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.28); }
.f-legal a:hover { color: rgba(255,255,255,0.65); }

/* ─── Cookie Banner ──────────────────────────────────────────── */
/*
   Desktop: compact floating pill at bottom-center
   Mobile:  thin bottom strip (full width)
*/
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 2rem));
  z-index: 940;
  width: min(90vw, 740px);
  background: var(--bg-deep);
  border-radius: var(--r-xl);
  padding: 1.2rem 1.6rem;
  box-shadow: 0 16px 50px rgba(0,0,0,0.32);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
}

.cookie-banner__icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; }

.cookie-banner__text { flex: 1; min-width: 0; }
.cookie-banner__text h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.18rem;
  font-family: var(--ff-b);
}
.cookie-banner__text p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.44);
  margin: 0;
  line-height: 1.45;
}
.cookie-banner__text a { color: var(--a-hover); }

.cookie-banner__btns { display: flex; gap: 0.5rem; flex-shrink: 0; }

.btn-ck-ok {
  background: var(--a);
  color: #fff;
  padding: 0.55em 1.3em;
  border-radius: var(--r-sm);
  font-family: var(--ff-b);
  font-size: 0.84rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--tr);
}
.btn-ck-ok:hover { background: var(--a-hover); }

.btn-ck-no {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
  padding: 0.55em 1.1em;
  border-radius: var(--r-sm);
  font-family: var(--ff-b);
  font-size: 0.84rem;
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--tr);
}
.btn-ck-no:hover { color: #fff; background: rgba(255,255,255,0.14); }

/* ─── Popup ──────────────────────────────────────────────────── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17,26,20,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.popup-overlay.active { opacity: 1; pointer-events: all; }

.popup-card {
  background: var(--bg-white);
  border-radius: var(--r-xl);
  padding: 3.5rem 3rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  transform: scale(0.92) translateY(16px);
  transition: transform 0.38s cubic-bezier(0.34, 1.5, 0.64, 1);
  box-shadow: var(--sh-lg);
}
.popup-overlay.active .popup-card { transform: scale(1) translateY(0); }

.popup-card__ring {
  width: 72px;
  height: 72px;
  border: 2px solid var(--a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.6rem;
  font-size: 1.7rem;
  color: var(--a);
}
.popup-card h3 { font-size: 1.55rem; margin-bottom: 0.7rem; }
.popup-card > p { margin-bottom: 2rem; }

/* ─── Back to Top ────────────────────────────────────────────── */
.back-top {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 800;
  width: 42px;
  height: 42px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.88rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: var(--tr);
  box-shadow: var(--sh-md);
}
.back-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-top:hover   { background: var(--a); transform: translateY(-3px); }

/* ─── Inner Page Hero ────────────────────────────────────────── */
.page-hero {
  padding: 8rem 0 3.5rem;
  background: var(--bg-white);
  border-bottom: 1px solid var(--b);
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 0.8rem; }
.page-hero > .container > p { font-size: 1.1rem; max-width: 500px; }

/* ─── Contact Page ───────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: flex-start;
  padding: 5rem 0;
}
.contact-info h2 { font-size: 2.1rem; margin-bottom: 1rem; }
.contact-info > p { margin-bottom: 2rem; }

.info-items { margin-bottom: 2rem; }
.info-item { display: flex; align-items: flex-start; gap: 0.9rem; margin-bottom: 1.1rem; }
.info-item__icon {
  width: 38px;
  height: 38px;
  background: var(--a-pale);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--a);
  font-size: 0.88rem;
  flex-shrink: 0;
}
.info-item__body strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-muted);
  margin-bottom: 0.1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.info-item__body span,
.info-item__body a { font-size: 1rem; color: var(--ink); }
.info-item__body a:hover { color: var(--a); }

.form-wrap {
  background: var(--bg-white);
  border: 1px solid var(--b);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--sh-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 0.45rem;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8em 1em;
  background: var(--bg);
  border: 1.5px solid var(--b);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-family: var(--ff-b);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.22s, background 0.22s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--a); background: #fff; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input[type="checkbox"] { width: auto; accent-color: var(--a); }

/* ─── Policy Pages ───────────────────────────────────────────── */
.policy-hero {
  padding: 8rem 0 3.5rem;
  background: var(--bg-white);
  border-bottom: 1px solid var(--b);
}
.policy-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }

.policy-body { max-width: 800px; padding: 4rem 0; }
.policy-body h2 { font-size: 1.4rem; margin: 2.5rem 0 0.7rem; color: var(--a); }
.policy-body h3 { font-size: 1.05rem; margin: 1.4rem 0 0.4rem; }
.policy-body p  { margin-bottom: 1rem; }
.policy-body ul { padding-left: 1.4rem; margin-bottom: 1rem; }
.policy-body ul li { margin-bottom: 0.4rem; color: var(--ink-soft); list-style: disc; }
.policy-body a  { color: var(--a); text-decoration: underline; text-underline-offset: 2px; }

/* ─── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--ink-muted); }
.breadcrumb a:hover { color: var(--a); }
.breadcrumb i { font-size: 0.6rem; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

/* ── Tablet 1100px ───────────────────────────── */
@media (max-width: 1100px) {
  /* Hero: stack image above text */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__right {
    order: 1;
    height: 52vw;
    max-height: 420px;
    min-height: 240px;
  }
  .hero__right::after { display: none; }
  .hero__left {
    order: 2;
    padding: 3rem 2rem 3.5rem;
    max-width: 100%;
    margin-left: 0;
  }

  /* Services */
  .services__layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .services__sticky { position: static; }

  /* Footer */
  .footer__top { grid-template-columns: 1fr 1fr; }

  /* Presence */
  .presence__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobile 900px ────────────────────────────── */
@media (max-width: 900px) {
  :root { --section: 3.5rem; }

  /* Always show nav background */
  .nav {
    background: rgba(245,247,242,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--b);
  }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  /* Hero */
  .hero__right { height: 56vw; max-height: 380px; }
  .hero__left  { padding: 2.5rem 1.5rem 3rem; }
  .hero h1 { letter-spacing: -0.015em; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; }
  .hero__meta { gap: 1.5rem; flex-wrap: wrap; margin-top: 2.5rem; padding-top: 1.5rem; }

  /* Ticker */
  .ticker__inner { grid-template-columns: repeat(2, 1fr); }
  .ticker__item  { padding: 1.8rem 1rem; }
  .ticker__num   { font-size: 2.2rem; }

  /* Two-col → one-col resets */
  .about__grid,
  .expertise__layout,
  .faq__cols,
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }

  /* About image */
  .about__img img { height: 300px; }
  .about__float { position: static; margin-top: 1rem; max-width: 100%; box-shadow: var(--sh-sm); }

  /* Grids */
  .testi__grid,
  .industries__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }

  /* Highlight */
  .highlight-row__inner { grid-template-columns: 1fr; }
  .hl-item {
    padding: 1.2rem 0;
    border-right: none;
    border-bottom: 1px solid var(--b);
    text-align: left;
  }
  .hl-item:first-child { padding-left: 0; }
  .hl-item:last-child  { border-bottom: none; text-align: left; }
  .hl-item__big { font-size: 3rem; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 1.8rem; border-radius: var(--r-lg); }

  /* CTA newsletter */
  .cta-section__inner { flex-direction: column; gap: 2rem; }
  .nl-form { flex-direction: column; width: 100%; }
  .nl-form input { width: 100%; }

  /* FAQ */
  .faq__intro { position: static; }

  /* Cookie banner → compact bottom strip on mobile */
  .cookie-banner {
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    padding: 1rem 1.2rem 1.4rem;
    gap: 0.8rem;
    transform: translateX(0) translateY(110%);
  }
  .cookie-banner.visible {
    transform: translateX(0) translateY(0);
  }
  .cookie-banner__icon { font-size: 1.3rem; }
  .cookie-banner__btns { flex-direction: row; gap: 0.5rem; }
  .btn-ck-ok, .btn-ck-no { padding: 0.5em 1em; font-size: 0.8rem; }

  /* Back to top clear of cookie strip */
  .back-top { bottom: 5.5rem; right: 1rem; }

  /* About pillars */
  .about__pillars { grid-template-columns: 1fr 1fr; }
}

/* ── Small Mobile 600px ──────────────────────── */
@media (max-width: 600px) {
  .container { padding: 0 1rem; }

  /* Hero */
  .hero__right { height: 60vw; min-height: 200px; }
  .hero__left  { padding: 2rem 1rem 2.5rem; }
  .hero h1     { font-size: 2.3rem; line-height: 1.05; }
  .hero__meta-item strong { font-size: 1.3rem; }

  /* Typography scale down */
  .section-intro h2 { font-size: 2rem; }
  .about__text h2,
  .expertise__intro h2,
  .faq__intro h2,
  .cta-section__text h2 { font-size: 1.8rem; }

  /* One-col everything */
  .services__list  { grid-template-columns: 1fr; }
  .about__pillars  { grid-template-columns: 1fr; }
  .process__steps  { grid-template-columns: 1fr; }
  .presence__grid  { grid-template-columns: 1fr 1fr; }
  .footer__top     { grid-template-columns: 1fr; }
  .testi__grid     { grid-template-columns: 1fr; }

  /* Ticker stays 2-col */
  .ticker__inner { grid-template-columns: 1fr 1fr; }
  .ticker__num   { font-size: 1.8rem; }

  /* Sections */
  .highlight-row { padding: 2.5rem 0; }
  .hl-item__big  { font-size: 2.6rem; }

  /* Pages */
  .page-hero   { padding: 6rem 0 2.5rem; }
  .policy-hero { padding: 6rem 0 2.5rem; }
  .policy-body { padding: 2.5rem 0; }
  .contact-layout { padding: 3rem 0; }

  /* Footer */
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .f-legal { gap: 0.7rem; }

  /* Back-top safe area */
  .back-top { bottom: 5rem; right: 0.8rem; width: 38px; height: 38px; font-size: 0.82rem; }
}

/* ── Very small 380px ────────────────────────── */
@media (max-width: 380px) {
  .hero h1     { font-size: 2rem; }
  .cookie-banner { gap: 0.6rem; padding: 0.9rem 1rem 1.2rem; }
  .presence__grid { grid-template-columns: 1fr; }
}
