/* ══════════════════════════════════════════════════════════════════════
   Thibault Soler — CGP Predictis  |  style.css
   ══════════════════════════════════════════════════════════════════════ */

/* ── VARIABLES & RESET ─────────────────────────────────────────────── */
:root {
  --navy:   #152038;
  --navy2:  #1D2E4E;
  --cream:  #F4EFE6;
  --cream2: #EDE8DF;
  --gold:   #C4A055;
  --gold2:  #D4B870;
  --red:    #D93025;
  --white:  #FFFFFF;
  --text:   #1A1A2E;
  --muted:  #7A8299;
  --light:  #B8C4D8;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;

  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);
  --transition: .25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; }

/* ── NAVIGATION ────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  height: 68px;
  background: rgba(21,32,56,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(196,160,85,0.2);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.3); }

.nav__logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.nav__logo img { height: 38px; width: auto; }

.nav__links {
  display: flex; align-items: center; gap: 2rem;
}
.nav__links a {
  color: var(--light);
  text-decoration: none;
  font-size: .83rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav__links a:hover, .nav__links a.active { color: var(--gold); }

.nav__cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: .5rem 1.3rem;
  border-radius: 4px;
  font-weight: 700 !important;
  letter-spacing: .04em !important;
  transition: background var(--transition), transform .15s !important;
}
.nav__cta:hover { background: var(--gold2) !important; transform: translateY(-1px); }

/* Hamburger (mobile) */
.nav__burger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: .4rem;
  background: none; border: none;
}
.nav__burger span {
  display: block; width: 24px; height: 2px;
  background: var(--light);
  border-radius: 2px;
  transition: all .3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(196,160,85,.2);
  flex-direction: column;
  padding: 1.5rem 2rem 2rem;
  gap: 1.2rem;
  z-index: 999;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  color: var(--light);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding-bottom: 1rem;
  transition: color var(--transition);
}
.nav__mobile a:hover { color: var(--gold); }
.nav__mobile .nav__cta {
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: .8rem;
  border-radius: 4px;
  font-weight: 700;
  border-bottom: none;
}

/* ── PAGE WRAPPER ──────────────────────────────────────────────────── */
.page-content { padding-top: 68px; }

/* ── PAGE HERO (sub-pages) ─────────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 4rem 2.5rem 3.5rem;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}
.page-hero__label {
  font-size: .75rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .75rem;
}
.page-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; color: var(--white);
  line-height: 1.2;
}
.page-hero__desc {
  max-width: 55ch; margin: 1rem auto 0;
  font-size: 1rem; color: var(--light); line-height: 1.7;
}

/* ── CONTAINERS ────────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2.5rem; }
.container--narrow { max-width: 800px; margin: 0 auto; padding: 0 2.5rem; }

/* ── SECTIONS ──────────────────────────────────────────────────────── */
section { padding: 5.5rem 0; }
.section--cream  { background: var(--cream); }
.section--cream2 { background: var(--cream2); }
.section--white  { background: var(--white); }
.section--navy   { background: var(--navy); }

/* Section headers */
.section-label {
  font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .6rem;
  display: block;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.2; margin-bottom: .8rem;
}
.section--navy .section-title { color: var(--white); }
.section-desc {
  font-size: .97rem; color: var(--muted);
  max-width: 58ch; line-height: 1.75;
}
.gold-bar {
  width: 3rem; height: 3px;
  background: var(--gold); border-radius: 2px;
  margin-bottom: 1.2rem;
}

/* ── BUTTONS ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 4px;
  font-family: var(--ff-body);
  font-size: .95rem; font-weight: 600;
  text-decoration: none;
  cursor: pointer; border: none;
  transition: background var(--transition), transform .15s, box-shadow .15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
.btn--primary { background: var(--navy); color: var(--white); }
.btn--primary:hover { background: var(--navy2); }
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: var(--gold2); }
.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ── HERO (home) ───────────────────────────────────────────────────── */
.hero {
  display: grid; grid-template-columns: 52% 48%;
  min-height: calc(100vh - 68px);
}
.hero__left {
  background: var(--navy);
  padding: 5rem 3.5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.hero__left::before {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(196,160,85,.07); pointer-events: none;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(196,160,85,.12);
  border: 1px solid rgba(196,160,85,.3);
  color: var(--gold);
  font-size: .75rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .4rem 1rem; border-radius: 100px;
  width: fit-content; margin-bottom: 1.8rem;
  animation: fadeUp .7s ease both;
}
.hero__name {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 700; color: var(--white);
  line-height: 1.05; margin-bottom: .4rem;
  animation: fadeUp .7s .1s ease both;
}
.hero__name span { color: var(--gold); }
.hero__job {
  font-size: 1rem; color: var(--light);
  font-weight: 300; margin-bottom: 2rem;
  animation: fadeUp .7s .2s ease both;
}
.hero__bar {
  width: 3rem; height: 3px; background: var(--gold);
  margin-bottom: 1.8rem;
  animation: fadeUp .7s .25s ease both;
}
.hero__desc {
  font-size: .97rem; color: var(--light);
  max-width: 38ch; line-height: 1.75;
  margin-bottom: 2.5rem;
  animation: fadeUp .7s .3s ease both;
}
.hero__contacts {
  display: flex; flex-direction: column; gap: .7rem;
  margin-bottom: 2.5rem;
  animation: fadeUp .7s .35s ease both;
}
.hero__contact-link {
  display: flex; align-items: center; gap: .75rem;
  color: var(--light); font-size: .92rem;
  text-decoration: none; transition: color var(--transition);
}
.hero__contact-link:hover { color: var(--gold); }
.contact-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.hero__ctas {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp .7s .4s ease both;
}

.hero__right {
  background: var(--cream);
  padding: 5rem 4rem 4rem 3.5rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.hero__quote-mark {
  font-family: var(--ff-display);
  font-size: 6rem; line-height: .8;
  color: var(--gold); opacity: .3;
  margin-bottom: .5rem;
  animation: fadeUp .7s .4s ease both;
}
.hero__quote {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.3; margin-bottom: 1.2rem;
  animation: fadeUp .7s .5s ease both;
}
.hero__sub {
  font-size: .95rem; color: var(--muted);
  font-style: italic; margin-bottom: 2.5rem;
  animation: fadeUp .7s .55s ease both;
}
.hero__logo {
  position: absolute; bottom: 2.5rem; right: 3rem;
  animation: fadeUp .7s .6s ease both;
}
.hero__logo img { height: 50px; width: auto; opacity: .8; }

/* ── KPI STRIP ─────────────────────────────────────────────────────── */
.kpi-strip {
  background: var(--navy);
  border-top: 3px solid var(--gold);
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.kpi-item {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
  transition: background var(--transition);
}
.kpi-item:last-child { border-right: none; }
.kpi-item:hover { background: rgba(255,255,255,.04); }
.kpi-num {
  font-family: var(--ff-display);
  font-size: 2.6rem; font-weight: 700;
  color: var(--gold); line-height: 1;
  margin-bottom: .35rem;
}
.kpi-label { font-size: .8rem; color: var(--light); line-height: 1.4; }

/* ── STAT CARDS (cabinet) ──────────────────────────────────────────── */
.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stat-card:nth-child(2) { border-top-color: var(--navy); }
.stat-card:nth-child(3) { border-top-color: var(--navy); }
.stat-big {
  font-family: var(--ff-display);
  font-size: 2.2rem; font-weight: 700;
  color: var(--navy); line-height: 1;
}
.stat-card:nth-child(1) .stat-big,
.stat-card:nth-child(4) .stat-big { color: var(--gold); }
.stat-sub { font-size: .82rem; color: var(--muted); margin-top: .4rem; }

/* ── FEATURE CARDS ─────────────────────────────────────────────────── */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.cards-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }

.feature-card {
  background: var(--cream2);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  position: relative; overflow: hidden;
  border-bottom: 3px solid transparent;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.section--white .feature-card { background: var(--cream); }
.feature-card__num {
  font-family: var(--ff-display);
  font-size: 3.5rem; font-weight: 700;
  color: rgba(21,32,56,.05);
  position: absolute; top: .8rem; right: 1.2rem;
  line-height: 1;
}
.feature-card__icon { font-size: 2rem; margin-bottom: 1rem; }
.feature-card__title {
  font-family: var(--ff-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--navy); margin-bottom: .6rem;
}
.feature-card__desc { font-size: .9rem; color: var(--muted); line-height: 1.7; }

/* ── DOMAIN CARDS ──────────────────────────────────────────────────── */
.domains-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.domain-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem 1.5rem;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.domain-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.domain-card__icon { font-size: 1.6rem; margin-bottom: .7rem; }
.domain-card__title {
  font-family: var(--ff-display);
  font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: .5rem;
}
.domain-card__desc { font-size: .87rem; color: var(--muted); line-height: 1.65; }

/* ── PARTNERS ──────────────────────────────────────────────────────── */
.partners-row {
  display: flex; gap: 1.5rem;
  justify-content: center; flex-wrap: wrap;
}
.partner-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  display: flex; flex-direction: column;
  align-items: center; gap: 1rem;
  width: 230px;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  transition: transform var(--transition);
}
.partner-card:hover { transform: translateY(-5px); }
.partner-card img {
  height: 58px; width: auto;
  max-width: 160px; object-fit: contain;
}
.partner-card__name {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--cream2);
  padding-top: .75rem;
  width: 100%; text-align: center;
}

/* ── GUARANTEE ITEMS ───────────────────────────────────────────────── */
.guarantees { display: flex; flex-direction: column; gap: 1.8rem; }
.guarantee {
  display: flex; gap: 1.2rem; align-items: flex-start;
}
.guarantee__icon {
  font-size: 1.3rem;
  width: 3rem; height: 3rem;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.guarantee__title {
  font-weight: 600; color: var(--navy);
  margin-bottom: .25rem; font-size: .97rem;
}
.guarantee__desc { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ── STEPS BOX ─────────────────────────────────────────────────────── */
.steps-box {
  background: var(--navy);
  border-radius: 10px;
  padding: 2.5rem;
}
.steps-box__title {
  font-family: var(--ff-display);
  font-size: 1.2rem; font-weight: 700;
  color: var(--white); margin-bottom: 1.5rem;
}
.step {
  display: flex; gap: 1rem; align-items: flex-start;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 1.3rem;
}
.step:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.step__num {
  width: 2rem; height: 2rem;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 700; color: var(--navy);
  flex-shrink: 0;
}
.step__text { font-size: .91rem; color: var(--light); line-height: 1.5; padding-top: .25rem; }

/* ── TWO-COL LAYOUT ────────────────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col--start { align-items: start; }
.two-col--wide { grid-template-columns: 1.2fr 1fr; }

/* ── CONTACT FORM ──────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-items { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-item {
  display: flex; align-items: center; gap: 1rem;
  color: var(--light); font-size: .93rem;
  text-decoration: none;
  padding: .9rem 1.2rem;
  background: rgba(255,255,255,.05);
  border-radius: 6px;
  border-left: 3px solid var(--gold);
  transition: background var(--transition), color var(--transition);
}
.contact-item:hover { background: rgba(255,255,255,.1); color: var(--gold); }
.contact-item__icon { font-size: 1rem; flex-shrink: 0; }

.form-box {
  background: var(--white);
  border-radius: 10px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.form-box__title {
  font-family: var(--ff-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--navy); margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; margin-bottom: .9rem; }
.form-group label {
  font-size: .8rem; font-weight: 600;
  color: var(--navy); letter-spacing: .03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: .8rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  font-family: var(--ff-body);
  font-size: .91rem; color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition), background var(--transition);
  outline: none; resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-note { font-size: .78rem; color: var(--muted); margin-bottom: 1rem; }
.form-note a { color: var(--gold); text-decoration: underline; }

/* ── LEGAL PAGES ───────────────────────────────────────────────────── */
.legal-content {
  max-width: 800px; margin: 0 auto;
  padding: 4rem 2.5rem;
}
.legal-content h2 {
  font-family: var(--ff-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--navy); margin: 2.5rem 0 .8rem;
  padding-bottom: .4rem;
  border-bottom: 2px solid var(--cream2);
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--navy2); margin: 1.5rem 0 .5rem;
}
.legal-content p, .legal-content li {
  font-size: .93rem; color: var(--text);
  line-height: 1.8; margin-bottom: .75rem;
}
.legal-content ul { padding-left: 1.5rem; }
.legal-content ul li { list-style: disc; }
.legal-content a { color: var(--gold); text-decoration: underline; }
.legal-content strong { color: var(--navy); }
.legal-box {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
}
.legal-box p { color: var(--light) !important; margin-bottom: .4rem !important; }
.legal-box strong { color: var(--gold) !important; }
.disclaimer {
  background: var(--cream2);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-size: .88rem !important;
  color: var(--muted) !important;
  line-height: 1.65 !important;
}

/* ── FOOTER ─────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(196,160,85,.2);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 2.5rem 3rem;
  max-width: 1100px; margin: 0 auto;
}
.footer__brand img { height: 42px; width: auto; margin-bottom: 1rem; opacity: .8; }
.footer__brand p { font-size: .85rem; color: var(--muted); line-height: 1.6; }
.footer__col h4 {
  font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.footer__col a, .footer__col p {
  display: block;
  font-size: .85rem; color: var(--light);
  text-decoration: none; margin-bottom: .5rem;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.5rem 2.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  max-width: 1100px; margin: 0 auto;
}
.footer__copy { font-size: .8rem; color: var(--muted); }
.footer__legal-links { display: flex; gap: 1.5rem; }
.footer__legal-links a {
  font-size: .8rem; color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
}
.footer__legal-links a:hover { color: var(--gold); }

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

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

/* ── ABOUT PAGE ─────────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.about-card {
  background: var(--navy);
  border-radius: 10px;
  padding: 2.5rem;
  text-align: center;
}
.about-card__avatar {
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-size: 2.5rem; font-weight: 700;
  color: var(--navy);
  margin: 0 auto 1.5rem;
}
.about-card__name {
  font-family: var(--ff-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--white); margin-bottom: .3rem;
}
.about-card__job { font-size: .9rem; color: var(--gold); margin-bottom: 1.5rem; }
.about-card__contacts { display: flex; flex-direction: column; gap: .6rem; }
.about-card__contacts a {
  color: var(--light); font-size: .88rem;
  text-decoration: none;
  padding: .6rem 1rem;
  background: rgba(255,255,255,.05);
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
  text-align: center;
}
.about-card__contacts a:hover { background: rgba(196,160,85,.15); color: var(--gold); }

.bullets { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.bullet-item { display: flex; align-items: flex-start; gap: .75rem; font-size: .95rem; }
.bullet-line { width: 1.2rem; height: 2px; background: var(--gold); margin-top: .6rem; flex-shrink: 0; }

.cert-row { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; padding-top: 1.5rem; border-top: 1px solid var(--cream2); }
.cert-row img { height: 42px; width: auto; object-fit: contain; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav { padding: 0 1.5rem; }
  .nav__links { gap: 1.2rem; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__left, .hero__right { padding: 3rem 1.8rem; }
  .hero__right { border-top: 3px solid var(--gold); }
  .hero__logo { position: static; margin-top: 2rem; }

  .kpi-strip { grid-template-columns: repeat(2,1fr); }
  .kpi-item { border-bottom: 1px solid rgba(255,255,255,.06); }

  .two-col, .two-col--wide, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .cards-3, .domains-grid { grid-template-columns: 1fr; }
  .cards-2 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 3rem 1.5rem 2rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; padding: 1.2rem 1.5rem; }
  .container, .container--narrow { padding: 0 1.5rem; }
  section { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .kpi-strip { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; }
  .partners-row { flex-direction: column; align-items: center; }
}
