/* =========================================================
   Nessaly's Group — site corporate
   Typo : Inter · Palette : ivoire / marine / brique
   Section Operia : palette violet #6D4AFF (override local)
   ========================================================= */

:root {
  /* Palette officielle Nessaly's Group (codes hex extraits du site existant) */
  --brand-green: #163c3a;   /* vert sapin */
  --brand-navy:  #0b2742;   /* navy profond — couleur dominante du logo */
  --brand-blue:  #113c68;   /* bleu moyen */
  --brand-red:   #c84a3c;   /* rouge brique — accent primaire / CTAs */
  --brand-red-d: #a83828;   /* rouge brique hover */
  --brand-gold:  #b48a5c;   /* or / camel — accent secondaire */

  /* Tokens dérivés */
  --bg:        #f6f6f3;     /* fond ivoire chaud (matche logo) */
  --bg-soft:   #ecebe6;     /* fond plus contrasté pour sections */
  --ink:       #0f1b28;     /* texte principal (presque noir bleuté) */
  --ink-soft:  #07161c;     /* hyper sombre */
  --ink-dim:   #4a5d6e;     /* texte secondaire */
  --line:      rgba(11, 39, 66, 0.12);
  --line-soft: rgba(11, 39, 66, 0.06);
  --gray-2:    #94908A;
  --gray-3:    #6B6660;
  --white:     #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(11,39,66,0.06), 0 1px 2px rgba(11,39,66,0.04);
  --shadow-md: 0 4px 14px rgba(11,39,66,0.10), 0 2px 4px rgba(11,39,66,0.06);
  --radius:    12px;
  --radius-lg: 16px;
  --radius-btn: 8px;
  --maxw:      1280px;

  /* Aliases pour conserver les classes existantes (.btn--primary, etc.)
     CTAs en navy (sobre, pro) plutôt qu'en rouge brique perçu orange. */
  --accent:    var(--brand-navy);
  --accent-d:  var(--brand-blue);

  /* Palette Operia (utilisée uniquement dans .product--operia) */
  --operia-violet:      #6D4AFF;
  --operia-violet-d:    #5938E0;
  --operia-violet-soft: #F2EEFF;
  --operia-violet-bg:   #FBF9FF;
}

/* RESET */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-feature-settings: 'cv11','ss01','ss03';
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
h1,h2,h3,h4 { margin: 0; letter-spacing: -0.02em; line-height: 1.15; font-weight: 700; color: var(--ink); }

/* LAYOUT */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

/* TYPO HELPERS */
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-blue);
  margin-bottom: 14px;
  position: relative;
  padding-left: 28px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 20px; height: 1.5px;
  background: var(--brand-blue);
  transform: translateY(-50%);
}
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 12px; }
.section-sub { color: var(--ink-dim); font-size: 17px; max-width: 560px; margin: 0 auto; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-btn);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 160ms ease, transform 100ms ease, color 160ms ease, border-color 160ms ease;
  white-space: nowrap;
}
.btn--primary { background: var(--accent); color: white; }
.btn--primary:hover { background: var(--accent-d); }
.btn--operia { background: var(--operia-violet); color: white; }
.btn--operia:hover { background: var(--operia-violet-d); }
.btn--text { background: none; color: var(--ink); padding-inline: 6px; }
.btn--text:hover { color: var(--accent); }
.btn--text-dark { background: none; color: var(--ink); padding: 8px 14px; border: 1px solid transparent; }
.btn--text-dark:hover { background: var(--bg-soft); }
.btn--text-light { background: none; color: white; padding-inline: 6px; opacity: 0.85; }
.btn--text-light:hover { opacity: 1; }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--sm { padding: 8px 16px; font-size: 14px; }

/* TOPBAR */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-block: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}
.brand__logo { width: 36px; height: 36px; }
.brand__text { font-size: 17px; font-weight: 700; color: var(--brand-navy); letter-spacing: -0.01em; }
.nav { display: flex; gap: 28px; }
.nav a { font-size: 15px; font-weight: 500; color: var(--ink-dim); transition: color 160ms; }
.nav a:hover { color: var(--ink); }
.topbar__actions { display: flex; align-items: center; gap: 10px; }
@media (max-width: 768px) {
  .nav { display: none; }
  .brand__text { display: none; }
  .topbar__actions .btn--text-dark { display: none; }
}

/* HERO PRINCIPAL (Nessalys) — fond avec gradient de marque subtil */
.hero {
  padding: 80px 0 64px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(11, 39, 66, 0.04), transparent 60%),
    var(--bg);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-navy) 0%, var(--brand-blue) 50%, var(--brand-green) 100%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 64px; }
  .hero { padding: 96px 0 80px; }
}
.hero__copy h1 {
  font-size: clamp(36px, 5.5vw, 60px);
  margin: 8px 0 22px;
  letter-spacing: -0.025em;
  line-height: 1.08;
}
.hero__sub {
  font-size: 18px;
  color: var(--ink-dim);
  max-width: 520px;
  margin-bottom: 28px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 16px; }
.hero__legal { font-size: 13px; color: var(--gray-3); margin: 0; }

/* BRANDCARD (catalogue dans le hero) */
.brandcard {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.brandcard__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.brandcard__dots { display: flex; gap: 6px; }
.brandcard__dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.brandcard__dots span:first-child { background: #ED6A5E; }
.brandcard__dots span:nth-child(2) { background: #F5BD4F; }
.brandcard__dots span:nth-child(3) { background: #61C554; }
.brandcard__title { font-size: 13px; color: var(--ink-dim); font-weight: 500; }
.brandcard__list { padding: 8px; display: flex; flex-direction: column; gap: 4px; }
.brandrow {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius);
  transition: background 160ms;
}
.brandrow:hover { background: var(--bg-soft); }
.brandrow__logo { width: 44px; height: 44px; object-fit: contain; border-radius: 8px; }
.brandrow__body { flex: 1; min-width: 0; }
.brandrow__name { font-size: 16px; font-weight: 700; color: var(--ink); }
.brandrow__desc { font-size: 13px; color: var(--ink-dim); margin-top: 2px; }
.brandrow__tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.brandrow__tag--ok { background: #DCFCE7; color: #166534; }
.brandrow__tag--beta { background: #FEF3C7; color: #92400E; }
.brandrow__tag--soon { background: var(--bg-soft); color: var(--gray-3); }

/* TRUST BAND — fond navy profond avec accent gold */
.trust {
  background: var(--brand-navy);
  color: white;
  padding: 56px 0;
  position: relative;
}
.trust::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 2px;
  background: rgba(255, 255, 255, 0.3);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}
@media (min-width: 768px) { .trust__grid { grid-template-columns: repeat(4, 1fr); } }
.trust__item { padding: 8px; }
.trust__value {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  color: white;
  line-height: 1;
  letter-spacing: -0.02em;
}
.trust__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 10px;
  line-height: 1.4;
}

/* PRODUIT (générique) + override OPERIA */
.product { padding: 96px 0 64px; }
.product--operia {
  background: var(--operia-violet-bg);
  border-block: 1px solid var(--operia-violet-soft);
}
.product__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.product__logo { height: 36px; width: auto; object-fit: contain; }
.product__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}
.product__status--ok { background: #DCFCE7; color: #166534; }
.product__intro { max-width: 720px; margin-bottom: 48px; }
.product__intro h2 { font-size: clamp(32px, 4.5vw, 48px); margin-bottom: 18px; letter-spacing: -0.025em; line-height: 1.1; }
.product__sub { font-size: 18px; color: var(--ink-dim); margin-bottom: 24px; max-width: 620px; }
.product__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* PRODUCT VISUAL — DASHBOARD MOCKUP */
.product__visual { margin: 56px 0 72px; }
.dash {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(109, 74, 255, 0.08), 0 4px 12px rgba(0,0,0,0.04);
  overflow: hidden;
}
.dash__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.dash__dots { display: flex; gap: 6px; }
.dash__dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.dash__dots span:first-child { background: #ED6A5E; }
.dash__dots span:nth-child(2) { background: #F5BD4F; }
.dash__dots span:nth-child(3) { background: #61C554; }
.dash__title { font-size: 13px; color: var(--ink-dim); font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace; }
.dash__body { display: grid; grid-template-columns: 220px 1fr; }
@media (max-width: 768px) { .dash__body { grid-template-columns: 1fr; } }
.dash__sidebar {
  background: #0F1B28;
  color: white;
  padding: 22px 18px;
  border-right: 1px solid var(--line);
}
@media (max-width: 768px) { .dash__sidebar { display: none; } }
.dash__sb-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.dash__sb-logo {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--operia-violet);
  color: white;
  display: grid; place-items: center;
  font-weight: 800; font-size: 16px;
}
.dash__sb-brand span { font-size: 16px; font-weight: 700; }
.dash__sb-nav { display: flex; flex-direction: column; gap: 2px; }
.dash__sb-nav li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  cursor: default;
}
.dash__sb-nav li i { width: 14px; }
.dash__sb-nav li.is-active { background: rgba(109, 74, 255, 0.2); color: white; font-weight: 600; }
.dash__main { padding: 24px; background: var(--bg-soft); }
.dash__greet { margin-bottom: 22px; }
.dash__greet-date { font-size: 12px; color: var(--ink-dim); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.dash__greet-hello { font-size: 22px; font-weight: 700; color: var(--ink); margin-top: 4px; }
.dash__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 18px; }
@media (max-width: 640px) { .dash__stats { grid-template-columns: 1fr; } }
.stat {
  background: white;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.stat__value { font-size: 22px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.stat__label { font-size: 12px; color: var(--ink-dim); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; margin-top: 6px; }
.dash__cards { display: flex; flex-direction: column; gap: 8px; }
.dcard {
  display: flex; align-items: center; gap: 12px;
  background: white;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.dcard__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: white;
  font-weight: 700;
  font-size: 13px;
}
.dcard__body { flex: 1; min-width: 0; }
.dcard__row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.dcard__name { font-weight: 600; color: var(--ink); font-size: 14px; }
.dcard__tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
}
.dcard__tag--ok { background: #DCFCE7; color: #166534; }
.dcard__tag--warn { background: #FEF3C7; color: #92400E; }
.dcard__meta { font-size: 12.5px; color: var(--ink-dim); margin-top: 3px; }

/* APPROACH (Notre métier — home) */
.approach { padding: 96px 0 48px; background: white; }
.approach .product__pillars { margin-bottom: 0; }

/* PILLARS (4 cards) */
.product__pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 64px;
}
.pcard {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 160ms, box-shadow 160ms, transform 100ms;
}
.pcard:hover {
  border-color: var(--operia-violet-soft);
  box-shadow: 0 4px 20px rgba(109, 74, 255, 0.08);
}
.pcard__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--operia-violet-soft);
  color: var(--operia-violet);
  display: grid; place-items: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.pcard h3 { font-size: 18px; margin-bottom: 8px; }
.pcard p { color: var(--ink-dim); font-size: 14.5px; line-height: 1.55; margin: 0; }

/* SEGMENTS (3 cards) */
.product__segments { margin-bottom: 64px; }
.product__segments-title {
  font-size: 22px;
  margin-bottom: 24px;
  text-align: center;
  color: var(--ink);
}
.segments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.seg {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.seg__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--operia-violet-soft);
  color: var(--operia-violet);
  display: grid; place-items: center;
  font-size: 22px;
  margin: 0 auto 14px;
}
.seg__name { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.seg__desc { font-size: 14px; color: var(--ink-dim); line-height: 1.55; margin: 0; }

/* COMPARATIF AVANT / AVEC */
.product__compare h3 {
  font-size: 22px;
  margin-bottom: 20px;
  text-align: center;
}
.compare__table {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0 auto;
  max-width: 900px;
}
.compare__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.compare__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-soft);
}
.compare__row:first-of-type { border-top: none; }
.compare__cell { padding: 14px 18px; font-size: 14.5px; color: var(--ink); }
.compare__cell--before { background: var(--bg-soft); color: var(--ink-dim); }
.compare__cell--after { color: var(--ink); font-weight: 500; border-left: 1px solid var(--line-soft); }
.compare__head .compare__cell {
  font-weight: 700;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.compare__head .compare__cell--before { color: var(--ink-dim); }
.compare__head .compare__cell--after { color: var(--operia-violet); }

/* CATALOG (autres produits) */
.catalog { padding: 96px 0; background: var(--bg); }
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.solcard {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 160ms, box-shadow 160ms;
}
.solcard:hover { border-color: var(--ink-soft); box-shadow: var(--shadow-md); }
.solcard__logo { width: 56px; height: 56px; object-fit: contain; border-radius: 10px; }
.solcard__body { display: flex; flex-direction: column; gap: 10px; }
.solcard__head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.solcard__head h3 { font-size: 19px; margin: 0; }
.solcard p { color: var(--ink-dim); font-size: 14.5px; line-height: 1.55; margin: 0; }
.solcard__link { font-size: 14px; font-weight: 600; color: var(--accent); margin-top: 4px; }
.solcard__link:hover { color: var(--accent-d); }

/* MANIFESTO — fond navy avec gradient de marque */
.manifesto {
  background:
    linear-gradient(135deg, #0d1f29 0%, var(--brand-navy) 35%, var(--brand-blue) 70%, var(--brand-green) 100%);
  color: white;
  padding: 96px 0;
  position: relative;
}
.manifesto::before {
  content: '"';
  position: absolute;
  top: 24px; left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 96px;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1;
}
.manifesto blockquote {
  margin: 0;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.manifesto blockquote p {
  font-size: 22px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}
.manifesto__punchline {
  font-size: 26px !important;
  font-weight: 700;
  color: white !important;
  margin-top: 24px !important;
}
.manifesto blockquote footer {
  margin-top: 32px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* CTA FINAL */
.cta { padding: 96px 0; background: var(--bg-soft); text-align: center; }
.cta__inner h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 12px; }
.cta__inner > p { font-size: 17px; color: var(--ink-dim); margin-bottom: 32px; }
.cta__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta__buttons .btn--text-light { color: var(--ink-dim); }
.cta__buttons .btn--text-light:hover { color: var(--ink); }

/* FOOTER — navy profond Nessalys avec accent gold sur le bas */
.footer {
  background: var(--brand-navy);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-navy) 0%, var(--brand-blue) 50%, var(--brand-green) 100%);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.footer__brand { display: flex; flex-direction: column; gap: 12px; }
.footer__logo { width: 56px; height: 56px; }
.footer__tagline { font-size: 14px; line-height: 1.55; max-width: 280px; }
.footer h4 { color: white; font-size: 14px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; }
.footer ul { display: flex; flex-direction: column; gap: 8px; }
.footer ul a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 160ms; }
.footer ul a:hover { color: white; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
}
.footer__copy { font-size: 13px; color: rgba(255,255,255,0.5); }

/* =================================================================
   PAGES SECONDAIRES (solutions / tarifs / contact)
   ================================================================= */

/* État actif sur la nav */
.nav a.is-active { color: var(--brand-navy); font-weight: 600; }
.nav a.is-active::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--brand-navy);
  margin-top: 4px;
}

/* PAGE HERO (titre + sous-titre, plus compact que le hero principal) */
.page-hero {
  padding: 80px 0 56px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(11, 39, 66, 0.04), transparent 60%),
    var(--bg);
  position: relative;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-navy) 0%, var(--brand-blue) 50%, var(--brand-green) 100%);
}
.page-hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}
.page-hero .eyebrow { display: inline-flex; align-items: center; }
.page-hero__sub {
  font-size: 18px;
  color: var(--ink-dim);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}
/* Pills sous le titre (page tarifs) */
.page-hero__pills {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.page-hero__pills li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}
.page-hero__pills li i {
  color: #16a34a;
  font-size: 13px;
}

/* SOLUTION — sections grandes en alterné (texte + visuel) */
.solution { padding: 96px 0; border-top: 1px solid var(--line-soft); }
.solution--operia {
  background: var(--operia-violet-bg);
  border-top: 1px solid var(--operia-violet-soft);
}
.solution--alt { background: var(--bg-soft); }
.solution__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 960px) {
  .solution__grid { grid-template-columns: 1.2fr 1fr; gap: 64px; }
  .solution__grid--reverse { grid-template-columns: 1fr 1.2fr; }
  .solution__grid--reverse .solution__copy { order: 2; }
  .solution__grid--reverse .solution__visual { order: 1; }
}
.solution__logo { height: 48px; width: auto; margin-bottom: 16px; border-radius: 10px; }
.solution__copy h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin: 14px 0 18px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.solution__copy > p {
  font-size: 17px;
  color: var(--ink-dim);
  margin-bottom: 24px;
  line-height: 1.6;
}
.solution__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.solution__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
}
.solution__features li i {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: var(--bg-soft);
  border-radius: 8px;
  color: var(--brand-blue);
  font-size: 13px;
  flex-shrink: 0;
}
.solution--operia .solution__features li i {
  background: var(--operia-violet-soft);
  color: var(--operia-violet);
}
.solution__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  min-height: 280px;
}
.solution__viz {
  max-width: 240px;
  height: auto;
  object-fit: contain;
}

/* PRICING (page tarifs) */
.pricing { padding: 80px 0 96px; position: relative; }
/* Alternance subtile Operia (blanc) vs Facturo (gris très clair) */
.pricing--operia { background: white; }
.pricing--facturo {
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
/* Petit séparateur visuel entre les deux sections */
.pricing--facturo::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--operia-violet), var(--brand-blue));
  border-radius: 999px;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.pcard--plan {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 160ms, border-color 160ms, transform 100ms;
}
.pcard--plan:hover { box-shadow: var(--shadow-md); }
.pcard--featured {
  border: 2px solid var(--operia-violet);
  box-shadow: 0 8px 32px rgba(109, 74, 255, 0.12);
}
.pcard__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--operia-violet);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pcard__plan-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-blue);
  margin-bottom: 10px;
}
.pcard__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.pcard__price-amount {
  font-size: 36px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.pcard__price-period {
  font-size: 13px;
  color: var(--ink-dim);
}
.pcard__plan-pitch {
  color: var(--ink-dim);
  font-size: 14.5px;
  margin: 12px 0 22px;
  line-height: 1.5;
}
.pcard__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}
.pcard__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
}
.pcard__features li i {
  color: var(--brand-blue);
  font-size: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}
.pcard--featured .pcard__features li i { color: var(--operia-violet); }
.pcard--plan .btn { align-self: stretch; justify-content: center; }

.pricing__note {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--ink-dim);
}
.pricing__note i { color: var(--brand-blue); margin-right: 6px; }

/* CONTACT (page contact) */
.contact { padding: 80px 0 96px; }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 960px) {
  .contact__grid { grid-template-columns: 1fr 1.4fr; gap: 64px; }
}
.contact__info { padding: 8px 0; }
.contact__info h3 {
  font-size: 20px;
  margin-bottom: 24px;
}
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.contact__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact__list li i {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--bg-soft);
  border-radius: 10px;
  color: var(--brand-blue);
  font-size: 16px;
  flex-shrink: 0;
}
.contact__label {
  font-size: 12px;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 2px;
}
.contact__list a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--line); transition: text-decoration-color 160ms; }
.contact__list a:hover { text-decoration-color: var(--brand-navy); }
.contact__manifesto {
  padding: 18px 20px;
  background: var(--bg-soft);
  border-left: 3px solid var(--brand-navy);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 24px;
}
.contact__manifesto p { margin: 0; font-size: 14px; color: var(--ink-dim); line-height: 1.6; }

.contact__form {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.contact__form h3 { font-size: 22px; margin-bottom: 20px; }
.form__field { display: flex; flex-direction: column; margin-bottom: 16px; }
.form__field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.form__field input,
.form__field select,
.form__field textarea {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-btn);
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: white;
  transition: border-color 160ms, box-shadow 160ms;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(17, 60, 104, 0.1);
}
.form__field textarea { resize: vertical; min-height: 120px; }
.contact__form .btn--lg { width: 100%; justify-content: center; margin-top: 8px; }
.form__legal {
  font-size: 12px;
  color: var(--ink-dim);
  margin-top: 16px;
  line-height: 1.5;
}
.form__legal a { color: var(--brand-blue); text-decoration: underline; }

/* =================================================================
   PAGE CONNEXION (sélection outil + profil)
   ================================================================= */
.login {
  padding: 80px 0 96px;
  display: block;
}
.login .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 28px;
}
@media (max-width: 640px) {
  .login .container { grid-template-columns: 1fr; }
}

.login-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 200ms, border-color 200ms;
}
.login-card:hover { box-shadow: var(--shadow-md); }

/* Variantes par produit (accent latéral coloré) */
.login-card--operia { border-top: 3px solid var(--operia-violet); }
.login-card--facturo { border-top: 3px solid var(--brand-blue); }
.login-card--valoris { border-top: 3px solid #1a6b7d; }
.login-card--soon { opacity: 0.78; border-top: 3px solid var(--line); }

.login-card__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}
.login-card__logo {
  width: 52px; height: 52px;
  object-fit: contain;
  border-radius: 10px;
  flex-shrink: 0;
}
.login-card__title { flex: 1; min-width: 200px; }
.login-card__title h2 {
  font-size: 22px;
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
}
.login-card__title p {
  font-size: 13.5px;
  color: var(--ink-dim);
  margin: 0;
  line-height: 1.5;
}

.login-card__profiles {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.login-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  cursor: pointer;
  transition: background 160ms, border-color 160ms, transform 100ms;
}
.login-link:hover {
  background: var(--bg-soft);
  border-color: var(--brand-blue);
  transform: translateX(2px);
}
.login-card--operia .login-link:hover {
  border-color: var(--operia-violet);
  background: var(--operia-violet-bg);
}
.login-link--disabled {
  cursor: not-allowed;
  opacity: 0.55;
  pointer-events: none;
}

.login-link__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: white;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--brand-blue);
  font-size: 16px;
  flex-shrink: 0;
}
.login-card--operia .login-link__icon { color: var(--operia-violet); }

.login-link__body { flex: 1; min-width: 0; }
.login-link__role {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.login-link__desc {
  font-size: 12.5px;
  color: var(--ink-dim);
  line-height: 1.4;
}
.login-link__arrow {
  color: var(--ink-dim);
  font-size: 14px;
  transition: transform 160ms, color 160ms;
}
.login-link:hover .login-link__arrow {
  transform: translateX(4px);
  color: var(--brand-blue);
}
.login-card--operia .login-link:hover .login-link__arrow { color: var(--operia-violet); }

.login-card__hint {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.5;
}
.login-card__hint i { color: var(--brand-blue); margin-top: 2px; flex-shrink: 0; }
.login-card__hint a { color: var(--brand-blue); text-decoration: underline; font-weight: 500; }
.login-card__hint a:hover { color: var(--brand-navy); }

/* =================================================================
   LEGAL PAGES (CGU / Confidentialité / Mentions légales)
   ================================================================= */
.legal { padding: 64px 0 96px; }
.legal .container { max-width: 760px; }
.legal__section-title {
  font-size: 22px;
  margin: 48px 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--brand-navy);
  color: var(--brand-navy);
}
.legal__section-title:first-child { margin-top: 0; }
.legal__article { margin-bottom: 32px; }
.legal__article h2 {
  font-size: 19px;
  margin: 0 0 12px;
  color: var(--brand-navy);
  font-weight: 700;
}
.legal__article h3 {
  font-size: 17px;
  margin: 0 0 10px;
  color: var(--ink);
  font-weight: 700;
}
.legal__article p,
.legal__article li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 12px;
}
.legal__article ul {
  list-style: disc;
  margin: 0 0 16px 24px;
  padding: 0;
}
.legal__article ul li { margin-bottom: 6px; }
.legal__article a {
  color: var(--brand-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal__article a:hover { color: var(--brand-navy); }
.legal__updated {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-dim);
  font-style: italic;
}

/* =================================================================
   MyCoproConnect — sous-produits MyCoproPro & MyCoproCom
   ================================================================= */
.mc-suite {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 18px 0 28px;
}
@media (min-width: 700px) { .mc-suite { grid-template-columns: 1fr 1fr; } }
.mc-product {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.mc-product__head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.mc-product__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-navy);
}
.mc-product__tag {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  color: var(--ink-dim);
}
.mc-product p {
  font-size: 13.5px;
  color: var(--ink-dim);
  line-height: 1.55;
  margin: 0;
}

/* =================================================================
   PRICING — Operia Base + Modules
   ================================================================= */
.pricing__base {
  display: flex;
  justify-content: center;
  margin-bottom: 64px;
}
.pricing__base-card {
  position: relative;
  background:
    radial-gradient(circle at 50% -20%, rgba(109,74,255,0.08), transparent 60%),
    white;
  border: 2px solid var(--operia-violet);
  border-radius: var(--radius-lg);
  padding: 56px 36px 40px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 12px 40px rgba(109, 74, 255, 0.14);
}
.pricing__base-ribbon {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--operia-violet);
  color: white;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(109, 74, 255, 0.30);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.pricing__base-ribbon i { font-size: 11px; }
.pricing__base-head { margin-bottom: 16px; }
.pricing__base-tagline {
  font-size: 14px;
  color: var(--ink-dim);
  margin-top: 4px;
}
.pricing__base-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 28px;
}
.pricing__base-engagement {
  flex-basis: 100%;
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--ink-dim);
  font-weight: 500;
}
.pricing__base-amount {
  font-size: 56px;
  font-weight: 800;
  color: var(--operia-violet);
  letter-spacing: -0.02em;
  line-height: 1;
}
.pricing__base-period {
  font-size: 14px;
  color: var(--ink-dim);
}
.pricing__base-card .pcard__features {
  text-align: left;
  margin-bottom: 28px;
}

.modules {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  border: 1px solid var(--line);
}
.modules__head {
  text-align: center;
  margin-bottom: 36px;
}
.modules__head h3 {
  font-size: 28px;
  margin: 8px 0 12px;
  letter-spacing: -0.02em;
}
.modules__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.modcard {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 200ms, box-shadow 200ms, transform 160ms;
}
.modcard:hover {
  border-color: var(--operia-violet);
  box-shadow: 0 12px 28px rgba(109, 74, 255, 0.14);
  transform: translateY(-3px);
}
.modcard__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--operia-violet-soft);
  color: var(--operia-violet);
  display: grid; place-items: center;
  font-size: 18px;
}
.modcard__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.modcard__desc {
  font-size: 13.5px;
  color: var(--ink-dim);
  line-height: 1.55;
  flex: 1;
}
.modcard__price {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-family: 'Inter', sans-serif;
  font-variant-numeric: tabular-nums;
}
.modcard__price-fix {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}
.modcard__price-sep {
  font-size: 11px;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-left: 6px;
}
.modcard__price-mo {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--operia-violet);
}
/* Quand le prix est standalone (pas de frais d'activation), on l'agrandit */
.modcard__price > .modcard__price-mo:only-child {
  font-size: 18px;
  margin-top: 0;
}

/* Carte module mise en avant (Nouveau) */
.modcard--featured {
  position: relative;
  border-color: var(--operia-violet);
  box-shadow: 0 4px 16px rgba(109, 74, 255, 0.10);
}
.modcard__badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--operia-violet);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

/* Add-on Connect (bloc à part sous la grille des modules) */
.addon-connect {
  margin-top: 32px;
  background: white;
  border: 1px solid var(--line);
  border-left: 4px solid var(--operia-violet);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}
.addon-connect__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--operia-violet-soft);
  color: var(--operia-violet);
  display: grid; place-items: center;
  font-size: 20px;
}
.addon-connect__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.addon-connect__sub {
  font-weight: 500;
  color: var(--ink-dim);
  font-size: 14px;
}
.addon-connect__desc {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.55;
}
.addon-connect__price {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.addon-connect__price-fix {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.addon-connect__price-mo {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--operia-violet);
  margin-top: 2px;
}
@media (max-width: 720px) {
  .addon-connect {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .addon-connect__price { text-align: left; }
}

/* Simulation 60 sites (tableau) */
.pricing-sim {
  margin-top: 56px;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.pricing-sim__head {
  text-align: center;
  margin-bottom: 24px;
}
.pricing-sim__head h3 {
  font-size: 22px;
  margin: 8px 0 6px;
}
.pricing-sim__table {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.pricing-sim__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  font-variant-numeric: tabular-nums;
}
.pricing-sim__row:last-child { border-bottom: 0; }
.pricing-sim__row > div { font-size: 14.5px; color: var(--ink); }
.pricing-sim__row > div:nth-child(2),
.pricing-sim__row > div:nth-child(3) {
  text-align: right;
  font-weight: 600;
}
.pricing-sim__row--head {
  background: var(--bg-soft);
}
.pricing-sim__row--head > div {
  font-size: 12px !important;
  font-weight: 700;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pricing-sim__row--featured {
  background: var(--operia-violet-soft);
  border-color: var(--operia-violet);
  position: relative;
}
.pricing-sim__row--featured > div {
  color: var(--operia-violet);
  font-weight: 700;
}
.pricing-sim__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  background: var(--operia-violet);
  color: white;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-right: 10px;
  vertical-align: middle;
}
.pricing-sim__tag i { font-size: 9px; }
@media (max-width: 720px) {
  .pricing-sim__row {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .pricing-sim__row > div:nth-child(2),
  .pricing-sim__row > div:nth-child(3) { text-align: left; }
}

/* =================================================================
   SERVICES EXTRA (SaaS sur mesure dans index.html)
   ================================================================= */
.services-extra {
  margin-top: 56px;
  background: var(--brand-navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: white;
}
.services-extra__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}
@media (max-width: 768px) {
  .services-extra__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.services-extra__icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  display: grid; place-items: center;
  font-size: 26px;
  color: white;
}
@media (max-width: 768px) {
  .services-extra__icon { margin: 0 auto; }
}
.services-extra__body h3 {
  font-size: 20px;
  margin: 0 0 6px;
  color: white;
}
.services-extra__body p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.55;
}
.services-extra .btn--text-dark {
  background: rgba(255,255,255,0.1);
  color: white;
}
.services-extra .btn--text-dark:hover {
  background: rgba(255,255,255,0.2);
}
