/* ── VARIABLES ── */
:root {
  --ink:    #0E1620;
  --deep:   #162031;
  --panel:  #1B2B40;
  --gold:   #C8A04A;
  --gold-l: #DCBA6A;
  --teal:   #29B8AA;
  --cream:  #F4EFE4;
  --smoke:  #8FA0B4;
  --white:  #FAFCFF;
  --rule:   rgba(200,160,74,.18);
  --yellow: #F2C94C;

  /* Page accent — defaults to brand gold; overridden per page below */
  --page-accent:   #C8A04A;
  --page-accent-l: #DCBA6A;
}

/* ── PER-PAGE ACCENT COLOURS ── */
body.page-programs  { --page-accent: #4EAF78; --page-accent-l: #72C896; }
body.page-community { --page-accent: #C4607A; --page-accent-l: #D4849A; }
body.page-trust     { --page-accent: #3DB5AD; --page-accent-l: #60CAC3; }
body.page-ai        { --page-accent: #E8C14A; --page-accent-l: #F0D070; }
body.page-partners  { --page-accent: #5AAFD8; --page-accent-l: #7CC5E3; }
body.page-contact   { --page-accent: #5BB585; --page-accent-l: #7ECBA0; }

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--ink);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 3.5rem;
  background: rgba(14,22,32,.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--rule);
  transition: padding .3s;
}
nav.scrolled {
  padding-top: .7rem;
  padding-bottom: .7rem;
  background: rgba(14,22,32,.97);
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 600;
  color: var(--gold); letter-spacing: .06em;
  text-decoration: none;
  display: inline-flex; align-items: center;
}
.logo-shield {
  color: var(--gold);
  flex-shrink: 0;
  margin-right: .35rem;
  vertical-align: middle;
  margin-bottom: 2px;
}
.logo span { color: var(--white); font-weight: 400; }
.nav-r { display: flex; align-items: center; gap: 2.5rem; }
.nav-r a {
  font-size: .8rem; font-weight: 500; letter-spacing: .07em;
  text-transform: uppercase; color: var(--smoke);
  text-decoration: none; transition: color .2s;
}
.nav-r a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important; color: var(--ink) !important;
  padding: .5rem 1.4rem; border-radius: 6px; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-l) !important; }
.nav-email {
  font-size: .75rem !important; font-weight: 400 !important;
  text-transform: none !important; letter-spacing: .02em !important;
  color: rgba(143,160,180,.65) !important; opacity: 1;
}
.nav-email:hover { color: var(--gold) !important; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: transparent; border: none; cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white);
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  display: flex; flex-direction: column; justify-content: center;
  padding: 7rem 3.5rem 4rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 42%;
  background: linear-gradient(160deg, rgba(22,32,49,.5) 0%, rgba(27,43,64,.3) 100%);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

.hero-kicker {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: 'DM Mono', monospace; font-size: .68rem;
  color: var(--yellow); letter-spacing: .2em; text-transform: uppercase;
  margin-bottom: 1.8rem;
  opacity: 0; animation: up .7s ease forwards .15s;
}
.hero-kicker::before { content: ''; display: none; }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 4.4rem);
  font-weight: 700; line-height: 1.06;
  max-width: 780px;
  opacity: 0; animation: up .8s ease forwards .3s;
}
.hero h1 em { font-style: italic; color: var(--page-accent); }

.hero-sub {
  margin-top: 1.8rem;
  font-size: 1.1rem; line-height: 1.75;
  color: var(--smoke); max-width: 600px;
  opacity: 0; animation: up .8s ease forwards .5s;
}

.hero-cred {
  display: flex; align-items: center; gap: 1.75rem; flex-wrap: wrap;
  margin-top: 2.5rem;
  opacity: 0; animation: up .8s ease forwards .65s;
}
.cred-badge {
  display: flex; align-items: center; gap: .55rem;
  font-size: .8rem; color: var(--smoke);
}
.cred-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.cred-divider { width: 1px; height: 20px; background: var(--rule); }

.hero-actions {
  display: flex; gap: 1rem; align-items: center;
  margin-top: 2.75rem;
  opacity: 0; animation: up .8s ease forwards .8s;
}

/* ── BUTTONS ── */
.btn-p {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold); color: var(--ink);
  padding: .85rem 2rem; border-radius: 8px;
  font-size: .9rem; font-weight: 600; letter-spacing: .03em;
  text-decoration: none; transition: background .2s, transform .2s;
}
.btn-p:hover { background: var(--gold-l); transform: translateY(-1px); }
.btn-s {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--white);
  padding: .85rem 2rem; border-radius: 8px;
  font-size: .9rem; font-weight: 500; letter-spacing: .03em;
  text-decoration: none; border: 1px solid var(--rule); transition: border-color .2s, color .2s;
}
.btn-s:hover { border-color: var(--page-accent); color: var(--page-accent); }

/* ── RECOGNITION STRIP ── */
.recog {
  background: var(--deep);
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  padding: 1.4rem 3.5rem;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.recog-label {
  font-family: 'DM Mono', monospace; font-size: .65rem;
  letter-spacing: .15em; text-transform: uppercase; color: var(--smoke);
  white-space: nowrap; flex-shrink: 0;
}
.recog-items { display: flex; gap: 2.25rem; flex-wrap: wrap; }
.recog-item {
  font-size: .8rem; color: var(--smoke); font-weight: 500;
  display: flex; align-items: center; gap: .5rem;
}
.recog-item::before { content: '✓'; color: var(--page-accent); font-size: .7rem; font-weight: 700; }

/* ── SECTION SHARED ── */
section { padding: 4rem 3.5rem; }
.lbl {
  font-family: 'DM Mono', monospace; font-size: .68rem;
  color: var(--page-accent); letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: .9rem;
}
.sh {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.65rem, 2.5vw, 2.4rem);
  font-weight: 700; line-height: 1.2; max-width: 700px;
}
.sh em { font-style: italic; color: var(--page-accent); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── PROBLEM SECTION ── */
.problem { background: var(--deep); }
.prob-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start; margin-top: 2.5rem;
}
.prob-intro { font-size: .97rem; color: var(--smoke); line-height: 1.8; margin-top: 1rem; }
.prob-intro strong { color: var(--white); }

.pain-list { display: flex; flex-direction: column; gap: 1px; margin-top: 1rem; }
.pain-item {
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: 1.6rem 1.8rem; background: var(--ink);
  transition: background .2s;
}
.pain-item:hover { background: var(--panel); }
.pain-icon {
  width: 26px; height: 26px; flex-shrink: 0; margin-top: .15rem;
  color: var(--page-accent);
}
.pain-icon svg { width: 100%; height: 100%; }
.pain-item h4 { font-size: .95rem; font-weight: 600; margin-bottom: .35rem; }
.pain-item p { font-size: .83rem; color: var(--smoke); line-height: 1.65; }

/* ── WHO THIS IS FOR ── */
.for-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; margin-top: 3.5rem;
}
.for-card {
  padding: 2.25rem 2rem; border: 1px solid var(--rule);
  background: var(--deep); border-radius: 2px;
  transition: border-color .2s;
  position: relative;
}
.for-card:hover { border-color: var(--page-accent); }
.for-card.primary { border-color: rgba(201,165,90,.4); }
.for-card.primary::before {
  content: 'PRIMARY FOCUS';
  position: absolute; top: -1px; left: 1.5rem;
  background: var(--gold); color: var(--ink);
  font-family: 'DM Mono', monospace; font-size: .58rem;
  letter-spacing: .14em; padding: .2rem .6rem; font-weight: 600;
}
.for-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700; margin-bottom: .6rem;
}
.for-card p { font-size: .85rem; color: var(--smoke); line-height: 1.7; }
.for-card .if-line {
  font-family: 'DM Mono', monospace; font-size: .72rem;
  color: var(--page-accent); margin-top: 1.25rem; letter-spacing: .05em;
}

/* ── HOW IT WORKS ── */
.how-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 4rem; background: var(--rule);
  border: 1px solid var(--rule);
}
.step {
  background: var(--ink); padding: 3rem 2.25rem;
  transition: background .2s;
}
.step:hover { background: var(--panel); }
.step-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem; font-weight: 700;
  color: var(--page-accent); opacity: .15; line-height: 1;
  margin-bottom: 1rem;
}
.step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700; margin-bottom: .6rem;
}
.step p { font-size: .85rem; color: var(--smoke); line-height: 1.7; }

/* ── SERVICES ── */
.svc { background: var(--deep); }
.svc-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; margin-top: 3.5rem;
}
.svc-card {
  border: 1px solid var(--rule); padding: 2.5rem;
  background: var(--ink); transition: border-color .2s;
}
.svc-card:hover { border-color: rgba(201,165,90,.4); }
.svc-type {
  font-family: 'DM Mono', monospace; font-size: .65rem;
  color: var(--page-accent); letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 1rem; display: block;
}
.svc-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 700; margin-bottom: .6rem;
}
.svc-card p { font-size: .86rem; color: var(--smoke); line-height: 1.7; }
.svc-card ul {
  list-style: none; margin-top: 1.2rem;
  display: flex; flex-direction: column; gap: .45rem;
}
.svc-card ul li {
  font-size: .82rem; color: var(--smoke);
  display: flex; align-items: flex-start; gap: .6rem;
}
.svc-card ul li::before {
  content: '→'; color: var(--page-accent);
  flex-shrink: 0; font-size: .75rem; margin-top: .1rem;
}

/* ── CTA ── */
.cta {
  position: relative; overflow: hidden;
  padding: 7rem 3.5rem; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 90% at 50% 50%, rgba(201,165,90,.07) 0%, transparent 70%);
}
.cta > * { position: relative; }
.cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 700; line-height: 1.15;
  max-width: 720px; margin-bottom: 1.25rem;
}
.cta h2 em { font-style: italic; color: var(--page-accent); }
.cta p { color: var(--smoke); font-size: 1rem; max-width: 550px; margin-bottom: 2.5rem; line-height: 1.75; }
.cta-btns { display: flex; gap: 1.1rem; flex-wrap: wrap; justify-content: center; }
.cta-note {
  margin-top: 1.75rem;
  font-family: 'DM Mono', monospace; font-size: .68rem;
  color: var(--smoke); letter-spacing: .08em;
}

/* ── FOOTER ── */
footer {
  padding: 2.5rem 3.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  border-top: 1px solid var(--rule);
  background: var(--deep);
}
.f-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: .95rem; color: var(--gold);
}
.footer-logo {
  display: block;
  width: 60px;
  height: auto;
  margin-bottom: .5rem;
  opacity: .85;
  filter: brightness(0) invert(1);
}
.f-copy { font-size: .75rem; color: var(--smoke); }
.f-links { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.f-links a { font-size: .75rem; color: var(--smoke); text-decoration: none; transition: color .2s; }
.f-links a:hover { color: var(--gold); }

/* Social links */
.f-social {
  display: flex; gap: 1rem; align-items: center;
  flex-wrap: wrap;
}
.f-social__link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .72rem; color: var(--smoke);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  transition: color .2s;
  white-space: nowrap;
}
.f-social__link:hover { color: var(--gold); }
.f-social__link svg { flex-shrink: 0; }

/* ── CONTACT PAGE ── */
.contact-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 9rem 2rem 6rem;
}
.contact-wrap .back-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'DM Mono', monospace; font-size: .7rem;
  color: var(--smoke); text-decoration: none; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 2.5rem;
  transition: color .2s;
}
.contact-wrap .back-link:hover { color: var(--page-accent); }
.contact-form { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: .45rem; }
.form-group label {
  font-family: 'DM Mono', monospace; font-size: .68rem;
  color: var(--teal); letter-spacing: .12em; text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--deep); border: 1px solid var(--rule);
  color: var(--white); font-family: 'Outfit', sans-serif; font-size: .9rem;
  padding: .85rem 1rem; border-radius: 2px;
  transition: border-color .2s, background .2s;
  outline: none; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,165,90,.5);
  background: var(--panel);
}
.form-group select option { background: var(--deep); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--smoke); opacity: .6; }
.form-submit { margin-top: .5rem; }
.form-submit .btn-p { width: 100%; justify-content: center; font-size: .95rem; padding: 1rem; }
.form-note {
  font-family: 'DM Mono', monospace; font-size: .65rem;
  color: var(--smoke); letter-spacing: .07em;
  text-align: center; margin-top: 1rem; line-height: 1.6;
}
.form-success {
  display: none;
  text-align: center; padding: 3rem 2rem;
  border: 1px solid rgba(41,184,170,.3);
  background: rgba(41,184,170,.05);
}
.form-success .check { font-size: 2.5rem; margin-bottom: 1rem; }
.form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 700; margin-bottom: .75rem;
}
.form-success p { color: var(--smoke); font-size: .9rem; line-height: 1.7; }

/* ── PRIVACY PAGE ── */
.prose-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 9rem 2rem 6rem;
}
.prose-wrap .back-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'DM Mono', monospace; font-size: .7rem;
  color: var(--smoke); text-decoration: none; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 2.5rem;
  transition: color .2s;
}
.prose-wrap .back-link:hover { color: var(--page-accent); }
.prose-wrap h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  margin-bottom: .5rem;
}
.prose-wrap .effective {
  font-family: 'DM Mono', monospace; font-size: .7rem;
  color: var(--smoke); letter-spacing: .1em; margin-bottom: 3rem;
}
.prose-wrap h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700;
  margin: 2.5rem 0 .75rem; color: var(--white);
}
.prose-wrap p, .prose-wrap li {
  font-size: .92rem; color: var(--smoke); line-height: 1.85;
}
.prose-wrap ul { padding-left: 1.5rem; margin-top: .5rem; display: flex; flex-direction: column; gap: .4rem; }
.prose-wrap a { color: var(--page-accent); text-decoration: none; }
.prose-wrap a:hover { text-decoration: underline; }

/* ── BREVO FORM OVERRIDES ── */
/*
  These rules retheme every Brevo element to match the
  Data Risk Group dark-gold palette. They load after
  sib-styles.css so they take full precedence.
*/

/* Wrapper */
.brevo-form-wrap { width: 100%; }
.brevo-form-wrap .sib-form-container { width: 100%; }

/* Kill Brevo's default white card + centering wrapper */
.brevo-form-wrap .sib-form {
  background: transparent !important;
  padding: 0 !important;
  text-align: left !important;
}
#sib-container {
  background: var(--deep) !important;
  border: 1px solid var(--rule) !important;
  border-radius: 2px !important;
  max-width: 100% !important;
  text-align: left !important;
  padding: 2.5rem !important;
}

/* Section labels (our custom divs) */
.brevo-section-label {
  font-family: 'DM Mono', monospace;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--teal);
  margin: 1.75rem 0 .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--rule);
}
.brevo-section-label:first-of-type { margin-top: 0; }

/* Side-by-side first/last name row */
.brevo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Labels */
#sib-container .entry__label {
  font-family: 'DM Mono', monospace !important;
  font-size: .68rem !important;
  font-weight: 500 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  color: var(--smoke) !important;
  margin-bottom: .4rem !important;
  display: block;
}
#sib-container .entry__label .req { color: var(--gold); font-style: normal; }
#sib-container .entry__label .optional {
  color: var(--smoke); font-weight: 400; font-style: italic;
  text-transform: none; letter-spacing: 0;
}

/* Inputs + textarea */
#sib-container .input {
  background: var(--ink) !important;
  border: 1px solid var(--rule) !important;
  border-radius: 2px !important;
  color: var(--white) !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: .9rem !important;
  padding: .8rem 1rem !important;
  width: 100% !important;
  transition: border-color .2s, background .2s !important;
  outline: none !important;
}
#sib-container .input:focus {
  border-color: rgba(201,165,90,.5) !important;
  background: var(--panel) !important;
}
#sib-container .input::placeholder {
  color: var(--smoke) !important;
  opacity: .55 !important;
  font-family: 'Outfit', sans-serif !important;
}

/* Spec / hint text */
#sib-container .entry__specification {
  font-family: 'Outfit', sans-serif !important;
  font-size: .75rem !important;
  color: var(--smoke) !important;
  margin-top: .4rem !important;
  display: block;
}

/* Error messages under fields */
#sib-container .entry__error {
  font-family: 'Outfit', sans-serif !important;
  font-size: .75rem !important;
  color: #ff8080 !important;
  background: transparent !important;
  border: none !important;
  padding: .25rem 0 0 !important;
}

/* Submit button */
.brevo-submit-block { margin-top: 1.5rem; }
#sib-container .sib-form-block__button {
  width: 100% !important;
  background: var(--gold) !important;
  color: var(--ink) !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: .95rem !important;
  font-weight: 600 !important;
  letter-spacing: .04em !important;
  padding: 1rem 2rem !important;
  border: none !important;
  border-radius: 2px !important;
  cursor: pointer !important;
  transition: background .2s, transform .2s !important;
  text-align: center !important;
  justify-content: center !important;
}
#sib-container .sib-form-block__button:hover {
  background: var(--gold-l) !important;
  transform: translateY(-1px) !important;
}

/* Success / error banner panels */
.brevo-msg {
  border-radius: 2px !important;
  max-width: 100% !important;
  margin-bottom: 1rem !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: .88rem !important;
}
.brevo-msg--error {
  background: rgba(255,73,73,.08) !important;
  border-color: rgba(255,73,73,.3) !important;
  color: #ff9999 !important;
}
.brevo-msg--success {
  background: rgba(41,184,170,.08) !important;
  border-color: rgba(41,184,170,.3) !important;
  color: var(--teal) !important;
}
.brevo-msg .sib-icon { fill: currentColor !important; }
.brevo-msg a { color: var(--gold) !important; }

/* ── CHECKBOXES ── */
.brevo-checkbox-hint {
  font-size: .65rem !important;
  color: var(--smoke) !important;
  margin-bottom: .75rem !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}
.brevo-checkbox-list {
  display: flex; flex-direction: column; gap: .1rem;
}
#sib-container .entry__choice { padding: 0 !important; }
#sib-container .checkbox__label {
  display: flex !important;
  align-items: center !important;
  gap: .75rem !important;
  padding: .75rem 1rem !important;
  cursor: pointer !important;
  border-radius: 2px !important;
  transition: background .15s !important;
}
#sib-container .checkbox__label:hover {
  background: var(--panel) !important;
}
/* Hide Brevo's native checkbox, we use the span */
#sib-container .input_replaced {
  position: absolute !important;
  opacity: 0 !important;
  width: 0 !important; height: 0 !important;
}
/* Custom checkbox box */
#sib-container .checkbox.checkbox_tick_positive {
  width: 16px !important; height: 16px !important;
  min-width: 16px !important;
  border: 1px solid var(--rule) !important;
  border-radius: 2px !important;
  background: var(--ink) !important;
  display: inline-flex !important;
  align-items: center !important; justify-content: center !important;
  transition: border-color .15s, background .15s !important;
  flex-shrink: 0 !important;
}
#sib-container .input_replaced:checked + .checkbox.checkbox_tick_positive {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}
#sib-container .input_replaced:checked + .checkbox.checkbox_tick_positive::after {
  content: '' !important;
  display: block !important;
  width: 4px !important; height: 8px !important;
  border: 2px solid var(--ink) !important;
  border-top: none !important; border-left: none !important;
  transform: rotate(45deg) translate(-1px, -1px) !important;
}
.brevo-checkbox-text {
  font-family: 'Outfit', sans-serif !important;
  font-size: .88rem !important;
  color: var(--smoke) !important;
  line-height: 1.5 !important;
}
#sib-container .input_replaced:checked ~ .brevo-checkbox-text {
  color: var(--white) !important;
}

/* Section description */
.brevo-section-desc {
  font-size: .83rem; color: var(--smoke);
  margin-top: -.25rem; margin-bottom: .75rem; line-height: 1.6;
}

/* ── GDPR DECLARATION ── */
.brevo-declaration {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem;
  background: rgba(41,184,170,.04);
  border: 1px solid rgba(41,184,170,.15);
  border-radius: 2px;
  margin: 1.25rem 0;
}
.brevo-declaration__icon {
  width: 28px; height: 28px; flex-shrink: 0; margin-top: .1rem;
}
.brevo-declaration p {
  font-size: .78rem !important;
  color: var(--smoke) !important;
  line-height: 1.7 !important;
  font-family: 'Outfit', sans-serif !important;
}
.brevo-declaration a {
  color: var(--gold) !important;
  text-decoration: underline !important;
  text-underline-offset: 2px !important;
}

/* ── TURNSTILE CAPTCHA ── */
.sib-captcha { margin: .5rem 0 !important; }
/* Turnstile renders its own iframe — just ensure it isn't clipped */
.g-recaptcha { max-width: 100%; overflow: hidden; }

/* Padding between form blocks */
#sib-container .sib-form-block { padding: 6px 0 !important; }

/* Mobile: stack first/last name */
@media (max-width: 600px) {
  .brevo-row { grid-template-columns: 1fr; }
  #sib-container { padding: 1.5rem !important; }
}

/* ── ANIMATIONS ── */
@keyframes up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  nav { padding: 1rem 1.5rem; }
  .hamburger { display: flex; }

  .nav-r {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 280px;
    flex-direction: column; align-items: flex-start;
    gap: 0;
    background: var(--deep);
    border-left: 1px solid var(--rule);
    padding: 5rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 190;
  }
  .nav-r.open { transform: translateX(0); }
  .nav-r a {
    width: 100%; padding: 1rem 0;
    border-bottom: 1px solid var(--rule);
    font-size: .85rem;
  }
  .nav-r a.nav-cta {
    margin-top: 1.5rem;
    text-align: center;
    justify-content: center;
    padding: .75rem 1rem !important;
  }
  .nav-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 180;
  }
  .nav-overlay.open { display: block; }

  section, .hero, .recog, footer, .cta { padding-left: 1.5rem; padding-right: 1.5rem; }
  .hero::before { display: none; }
  .prob-grid, .how-steps, .svc-grid, .for-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-wrap, .prose-wrap { padding-left: 1.5rem; padding-right: 1.5rem; }
}
