/* =========================================================
   INVENIX IP v2 — Premium design system
   ========================================================= */
:root {
  --navy:        #0B1437;
  --navy-2:      #131D4D;
  --navy-3:      #1B2864;
  --ink:         #0B1437;
  --orange:      #FF5A2C;
  --orange-2:    #FF7B4F;
  --orange-3:    #FFA070;
  --purple:      #5A4BFF;
  --purple-2:    #7B6DFF;
  --teal:        #2DBE9A;
  --red:         #E94560;
  --cream:       #F8F4EE;
  --bg:          #FBFAF6;
  --surface:     #FFFFFF;
  --line:        rgba(11, 20, 55, 0.08);
  --line-strong: rgba(11, 20, 55, 0.14);
  --text:        #0B1437;
  --muted:       #5B6486;
  --muted-2:     #8A92AC;

  --grad-warm:    linear-gradient(135deg, #FF5A2C 0%, #FF8A52 100%);
  --grad-purple:  linear-gradient(135deg, #5A4BFF 0%, #8470FF 100%);
  --grad-navy:    linear-gradient(160deg, #0B1437 0%, #1B2864 60%, #2A3A8C 100%);
  --grad-hero:    linear-gradient(180deg, #FBFAF6 0%, #F1ECE2 100%);

  --radius-xs: 8px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 3px rgba(11,20,55,0.06), 0 1px 2px rgba(11,20,55,0.04);
  --shadow:    0 10px 30px -10px rgba(11,20,55,0.15), 0 4px 12px rgba(11,20,55,0.06);
  --shadow-lg: 0 30px 60px -20px rgba(11,20,55,0.25), 0 10px 24px rgba(11,20,55,0.1);
  --shadow-glow: 0 20px 60px -10px rgba(255, 90, 44, 0.35);

  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* prevent horizontal scroll from overflowing elements */
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; }
button { font-family: inherit; }

/* =========================================================
   Layout
   ========================================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.container-wide {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}
section { padding: 100px 0; position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin: 14px 0 16px;
}
.section-head p {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 246, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.2px;
}
.brand-mark {
  width: 34px;
  height: 38px;
  display: inline-flex;
  flex: none;
}
.brand-mark svg { width: 100%; height: 100%; display: block; }
.brand-mark .shield-bg { fill: var(--ink); transition: fill 0.2s; }
.brand-mark .shield-ix { fill: #FFFFFF; }
.brand-mark .shield-bar { fill: var(--orange); }
.site-footer .brand-mark .shield-bg { fill: #FFFFFF; }
.site-footer .brand-mark .shield-ix { fill: var(--ink); }
.brand-name .accent { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: rgba(11,20,55,0.06); text-decoration: none; }
.nav-links a.active {
  color: var(--orange);
  background: rgba(255, 90, 44, 0.08);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff !important;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  transition: transform 0.15s, box-shadow 0.2s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -10px rgba(11,20,55,0.5);
  text-decoration: none;
}
.nav-cta::after {
  content: "→";
  font-size: 14px;
}

.lang-toggle {
  display: inline-flex;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  padding: 3px;
}
.lang-toggle button {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 1px;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lang-toggle button.active {
  background: var(--ink);
  color: #fff;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-size: 24px;
  cursor: pointer;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(11,20,55,0.45);
}
.btn-primary:hover { box-shadow: 0 18px 40px -10px rgba(11,20,55,0.55); }
.btn-orange {
  background: var(--grad-warm);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-orange:hover { box-shadow: 0 24px 50px -10px rgba(255, 90, 44, 0.45); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
}
.btn-ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-light {
  background: #fff;
  color: var(--ink);
}
.btn-light:hover { background: var(--orange); color: #fff; }

.btn-arrow::after {
  content: "→";
  transition: transform 0.2s;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  background: var(--grad-hero);
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 90, 44, 0.10), transparent 55%),
                    radial-gradient(circle at 85% 65%, rgba(90, 75, 255, 0.12), transparent 55%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-tag .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255, 90, 44, 0.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 90, 44, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(255, 90, 44, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 90, 44, 0); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.2vw, 88px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -2.5px;
  margin: 0 0 22px;
  color: var(--ink);
}
.hero h1 .accent {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.hero h1 .underline {
  position: relative;
  display: inline-block;
}
.hero h1 .underline svg {
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -8px;
  width: 108%;
  height: auto;
}
.hero-lede {
  font-size: 19px;
  color: var(--muted);
  margin: 0 0 32px;
  max-width: 520px;
  line-height: 1.55;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-reassurance {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 32px;
  padding: 12px 16px;
  border-left: 3px solid var(--orange);
  background: rgba(255,90,44,0.05);
  border-radius: 0 8px 8px 0;
}
.hero-meta {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-meta-item .num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -1px;
}
.hero-meta-item .lbl {
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Hero illustration */
.hero-art {
  position: relative;
  display: grid;
  place-items: center;
}
.hero-art svg.main {
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(11,20,55,0.15));
}
.floaty {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  animation: floaty 6s ease-in-out infinite;
}
.floaty.f1 { top: 8%; left: -2%; animation-delay: 0s; }
.floaty.f2 { bottom: 14%; right: -4%; animation-delay: 1.5s; }
.floaty.f3 { top: 50%; right: -8%; animation-delay: 3s; }
.floaty .dot { width: 10px; height: 10px; border-radius: 50%; }
.floaty .dot.teal { background: var(--teal); }
.floaty .dot.orange { background: var(--orange); }
.floaty .dot.purple { background: var(--purple); }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Trust strip below hero */
.trust-strip {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 22px 0;
  overflow: hidden;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
}
.trust-strip-inner .sep {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--orange);
  flex: none;
}
.marquee {
  flex: 1;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: marquee 30s linear infinite;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 14px; }
.marquee-track i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  flex: none;
  font-style: normal;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   Service cards (offer)
   ========================================================= */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.offer-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px 30px;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.offer-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--accent, var(--orange));
  opacity: 0.07;
  transition: transform 0.4s ease, opacity 0.3s;
}
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
}
.offer-card:hover::after { transform: scale(1.4); opacity: 0.12; }
.offer-card .ic {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: #fff;
  background: var(--accent, var(--orange));
}
.offer-card.purple { --accent: var(--purple); }
.offer-card.orange { --accent: var(--orange); }
.offer-card.teal   { --accent: var(--teal); }
.offer-card.red    { --accent: var(--red); }

.offer-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin: 0 0 10px;
  color: var(--ink);
}
.offer-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15.5px;
  position: relative;
  z-index: 1;
}
.offer-card .more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.offer-card .more::after { content: "→"; transition: transform 0.2s; }
.offer-card:hover .more::after { transform: translateX(4px); }

/* =========================================================
   Big numbers (animated stats)
   ========================================================= */
.bignums {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}
.bignums::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(255, 90, 44, 0.25), transparent 50%),
                    radial-gradient(circle at 15% 80%, rgba(90, 75, 255, 0.20), transparent 50%);
  pointer-events: none;
}
.bignums-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}
.bignum {
  text-align: center;
}
.bignum .n {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 92px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -3px;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bignum .n.white {
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bignum .l {
  font-size: 14.5px;
  color: rgba(255,255,255,0.7);
  margin-top: 12px;
  letter-spacing: 0.4px;
}

/* =========================================================
   Process timeline (horizontal)
   ========================================================= */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.tl-step {
  position: relative;
  z-index: 1;
  padding: 0 14px;
  text-align: center;
}
.tl-step .node {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line);
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.tl-step .node .num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}
.tl-step:hover .node {
  transform: scale(1.05);
  border-color: var(--orange);
  box-shadow: var(--shadow-glow);
}
.tl-step h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--ink);
}
.tl-step p {
  margin: 0;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* =========================================================
   Feature row (alternating)
   ========================================================= */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 90px;
}
.feature.reverse > div:first-child { order: 2; }
.feature h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  margin: 16px 0 18px;
  color: var(--ink);
}
.feature p {
  font-size: 17px;
  color: var(--muted);
  margin: 0 0 22px;
  line-height: 1.6;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.feature-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
  align-items: flex-start;
  font-size: 15.5px;
  color: var(--ink);
}
.feature-list .check {
  width: 24px;
  height: 24px;
  flex: none;
  border-radius: 50%;
  background: rgba(45, 190, 154, 0.12);
  color: var(--teal);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  margin-top: 1px;
}

.feature-art {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.feature-art.tint-orange { background: linear-gradient(160deg, #FFF6F2 0%, #FFEEE4 100%); }
.feature-art.tint-purple { background: linear-gradient(160deg, #F4F2FF 0%, #E9E5FF 100%); }
.feature-art.tint-teal   { background: linear-gradient(160deg, #EFFCF7 0%, #DEF7EE 100%); }
.feature-art.tint-navy   { background: var(--grad-navy); color: #fff; }
.feature-art svg { max-width: 320px; height: auto; }

/* =========================================================
   Testimonial
   ========================================================= */
.testimonial {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 64px 60px;
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: -30px;
  left: 30px;
  font-size: 240px;
  font-family: Georgia, serif;
  color: var(--orange);
  opacity: 0.25;
  line-height: 1;
}
.testimonial::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 90% 90%, rgba(255, 90, 44, 0.2), transparent 50%);
  pointer-events: none;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.5px;
  margin: 0 0 30px;
  max-width: 780px;
  position: relative;
}
.testimonial .who {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
.testimonial .avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--grad-warm);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  flex: none;
}
.testimonial .who-name {
  font-weight: 600;
  font-size: 16px;
}
.testimonial .who-role {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}

/* =========================================================
   FAQ accordion
   ========================================================= */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.open {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  cursor: pointer;
  background: transparent;
  border: 0;
  width: 100%;
  text-align: left;
  font-family: var(--font-display);
  font-size: 17.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.2px;
}
.faq-q .ico {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  display: grid;
  place-items: center;
  font-size: 14px;
  flex: none;
  transition: background 0.2s, color 0.2s, transform 0.25s, border-color 0.2s;
}
.faq-item.open .faq-q .ico {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 26px;
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
  padding: 0 26px 22px;
  max-height: 400px;
}

/* =========================================================
   Partners marquee
   ========================================================= */
.partners-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.partners-marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.partners-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 40s linear infinite;
  align-items: center;
}
.partner-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--muted-2);
  white-space: nowrap;
  letter-spacing: -0.2px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: color 0.2s;
}
.partner-logo:hover { color: var(--ink); }
.partner-logo::before {
  content: "";
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cream), #fff);
  border: 1px solid var(--line);
  flex: none;
}

/* =========================================================
   CTA block
   ========================================================= */
.cta-block {
  background: var(--grad-navy);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 70px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(255, 90, 44, 0.25), transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(90, 75, 255, 0.25), transparent 50%);
  pointer-events: none;
}
.cta-block h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 1.05;
  margin: 0 0 14px;
  position: relative;
}
.cta-block h2 .accent {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-block p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin: 0 0 32px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-block .btn { position: relative; }

/* =========================================================
   Subpage hero
   ========================================================= */
.page-hero {
  background: var(--grad-hero);
  padding: 80px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(255, 90, 44, 0.07), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(90, 75, 255, 0.07), transparent 50%);
  pointer-events: none;
}
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 70px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  margin: 16px auto 18px;
  max-width: 880px;
  color: var(--ink);
  position: relative;
}
.page-hero h1 .accent {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-hero p {
  font-size: 18.5px;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

/* =========================================================
   Service detail rows (services page)
   ========================================================= */
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
}
.svc-row:last-child { border-bottom: 0; }
.svc-row.reverse > div:first-child { order: 2; }
.svc-row .num-big {
  font-family: var(--font-display);
  font-size: 84px;
  font-weight: 700;
  line-height: 1;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -4px;
}
.svc-row h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  margin: 14px 0 14px;
  color: var(--ink);
  letter-spacing: -1px;
}
.svc-row p {
  font-size: 16.5px;
  color: var(--muted);
  margin: 0 0 22px;
}
.svc-row .feature-art { min-height: 320px; }

/* =========================================================
   Audience cards (training)
   ========================================================= */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.aud-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--line);
  display: flex;
  gap: 20px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.aud-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.aud-card .ic {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--accent-soft, rgba(255, 90, 44, 0.12));
  color: var(--accent, var(--orange));
}
.aud-card.purple { --accent: var(--purple); --accent-soft: rgba(90, 75, 255, 0.12); }
.aud-card.orange { --accent: var(--orange); --accent-soft: rgba(255, 90, 44, 0.12); }
.aud-card.teal   { --accent: var(--teal); --accent-soft: rgba(45, 190, 154, 0.14); }
.aud-card.red    { --accent: var(--red); --accent-soft: rgba(233, 69, 96, 0.12); }
.aud-card h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.3px;
  color: var(--ink);
}
.aud-card p { margin: 0; color: var(--muted); font-size: 15px; }

/* =========================================================
   About — values
   ========================================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value {
  text-align: left;
  padding: 28px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform 0.25s, box-shadow 0.25s;
}
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value .ic {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: var(--grad-warm);
  color: #fff;
}
.value h4 {
  font-family: var(--font-display);
  font-size: 17px;
  margin: 0 0 8px;
  color: var(--ink);
}
.value p { margin: 0; font-size: 14.5px; color: var(--muted); }

/* =========================================================
   Contact
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.contact-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 4px;
  letter-spacing: -0.5px;
  color: var(--ink);
}
.contact-card .muted {
  color: var(--muted);
  margin: 0 0 26px;
  font-size: 15px;
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1.5px solid var(--line-strong);
  background: var(--bg);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 90, 44, 0.12);
}
.field textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row .field { margin-bottom: 16px; }

.contact-info {
  background: var(--grad-navy);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
  color-scheme: light; /* prevents mobile browser dark-mode from injecting white boxes */
}
.contact-info::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 10%, rgba(255, 90, 44, 0.2), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(90, 75, 255, 0.2), transparent 50%);
  pointer-events: none;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 26px;
  position: relative;
  letter-spacing: -0.3px;
  color: #fff;
}
.contact-info p,
.contact-info .label {
  color: rgba(255, 255, 255, 0.7);
}
.info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
  position: relative;
}
.info-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 90, 44, 0.14);
  color: var(--orange-3);
  display: grid;
  place-items: center;
  flex: none;
}
.info-item .label {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin: 0 0 4px;
  font-weight: 700;
}
.info-item .info-val {
  font-size: 15.5px;
  margin: 0;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important; /* blocks Safari autofill color override */
  font-weight: 500;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  -webkit-appearance: none;
  box-shadow: none !important;
}
.info-item .info-val a {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: transparent !important;
}
.info-item .info-val a:hover { color: var(--orange-3); -webkit-text-fill-color: var(--orange-3); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 28px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 0%, rgba(255, 90, 44, 0.15), transparent 50%);
  pointer-events: none;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  position: relative;
  margin-bottom: 50px;
}
.footer-about .brand .brand-name { color: #fff; }
.footer-about p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.65);
  margin: 18px 0 16px;
  max-width: 320px;
  line-height: 1.55;
}
.footer-tag {
  color: var(--orange-3);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.2px;
}
.footer-col h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 16px;
  font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.65);
  font-size: 14.5px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange-3); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  position: relative;
  flex-wrap: wrap;
}

/* =========================================================
   Floating contact button
   ========================================================= */
.float-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  background: var(--grad-warm);
  color: #fff;
  border-radius: 999px;
  padding: 14px 22px 14px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14.5px;
  box-shadow: 0 18px 40px -10px rgba(255, 90, 44, 0.55);
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px -10px rgba(255, 90, 44, 0.7);
  color: #fff;
  text-decoration: none;
}
.float-cta .ic {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

/* =========================================================
   Toast
   ========================================================= */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--ink);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--teal);
  font-weight: 600;
  font-size: 14.5px;
  z-index: 200;
  transition: transform 0.3s ease;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* =========================================================
   Reveal on scroll
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in,
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { order: -1; max-width: 460px; margin: 0 auto; }
  .floaty.f3 { right: 4%; }
}
@media (max-width: 880px) {
  section { padding: 70px 0; }
  .offer-grid { grid-template-columns: 1fr; }
  .bignums-grid { grid-template-columns: 1fr; gap: 30px; }
  .bignums { padding: 50px 24px; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .timeline::before { display: none; }
  .tl-step { text-align: center; }
  .feature, .svc-row { grid-template-columns: 1fr; gap: 32px; padding: 30px 0; }
  .feature.reverse > div:first-child,
  .svc-row.reverse > div:first-child { order: initial; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonial { padding: 50px 36px; }
  .cta-block { padding: 50px 30px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    padding: 14px 24px 22px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 14px; }
  .nav-toggle { display: inline-flex; }
  .nav-cta { display: none; }
  .timeline { grid-template-columns: 1fr !important; gap: 24px !important; }
  .tl-step { text-align: center; padding-bottom: 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .testimonial::before { font-size: 160px; top: -10px; left: 16px; }
  .testimonial blockquote { font-size: 20px; }
  .float-cta span:not(.ic) { display: none; }
  .float-cta { padding: 14px; }
  .floaty, .floaty.f1, .floaty.f2, .floaty.f3 { display: none !important; }
  .why-grid { grid-template-columns: 1fr !important; }
  .forwho-block { grid-template-columns: 1fr !important; padding: 24px 18px !important; }
  .conf-block { padding: 24px 18px !important; }
  .bignums-grid { grid-template-columns: 1fr !important; }
  .values-grid { grid-template-columns: 1fr !important; }
  .audience-grid { grid-template-columns: 1fr !important; }
  .hero-meta { flex-direction: column; gap: 10px; }
  section { padding: 50px 0; }
}

/* =========================================================
   Nuclear overflow safety net — nothing ever bleeds off-screen
   ========================================================= */
@media (max-width: 640px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw;
  }
  .container, .container-wide {
    overflow-x: hidden;
    padding: 0 18px;
  }
  img, svg, video, iframe {
    max-width: 100% !important;
    height: auto !important;
  }
}

/* =========================================================
   Pourquoi protéger — two-column layout
   ========================================================= */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.why-text p {
  font-size: 17px;
  color: var(--muted);
  margin: 0 0 20px;
  line-height: 1.65;
}
.why-bottom {
  display: inline-block;
  margin-top: 8px;
  padding: 16px 22px;
  background: linear-gradient(135deg, rgba(255,90,44,0.07) 0%, rgba(90,75,255,0.07) 100%);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.2px;
}
.why-visual {
  display: grid;
  place-items: center;
}
.why-visual svg {
  width: 100%;
  max-width: 340px;
  height: auto;
  filter: drop-shadow(0 16px 40px rgba(11,20,55,0.1));
  border-radius: var(--radius-lg);
}

/* =========================================================
   Pour qui — forwho block
   ========================================================= */
.forwho-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  padding: 52px 56px;
  box-shadow: var(--shadow-sm);
}
.forwho-head h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.8px;
  margin: 14px 0 16px;
  color: var(--ink);
}
.forwho-head p {
  font-size: 16.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}
.forwho-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: center;
}
.forwho-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
  padding: 12px 16px;
  background: var(--bg);
  border-radius: var(--radius-xs);
  border: 1px solid var(--line);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.forwho-list li:hover {
  border-color: rgba(255, 90, 44, 0.3);
  box-shadow: var(--shadow-sm);
}
.dot-orange {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  flex: none;
  box-shadow: 0 0 0 3px rgba(255, 90, 44, 0.15);
}

/* =========================================================
   Confidentialité block
   ========================================================= */
.conf-block {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: linear-gradient(135deg, #F0F2FA 0%, #EAF7F2 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  padding: 48px 52px;
}
.conf-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  flex: none;
  box-shadow: 0 12px 30px -10px rgba(11,20,55,0.4);
}
.conf-block h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 12px 0 14px;
  color: var(--ink);
}
.conf-block p {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 12px;
  line-height: 1.65;
}
.conf-block p:last-child { margin-bottom: 0; }

/* =========================================================
   Responsive – new sections
   ========================================================= */
@media (max-width: 880px) {
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-visual { order: -1; }
  .forwho-block { grid-template-columns: 1fr; gap: 32px; padding: 36px 30px; }
  .conf-block { flex-direction: column; gap: 22px; padding: 36px 30px; }
}
@media (max-width: 640px) {
  .forwho-block { padding: 28px 22px; }
  .conf-block { padding: 28px 22px; }
  .conf-icon { width: 52px; height: 52px; }
}
