/* =====================================================
   ADW Agency — Design System Premium
   Charte graphique officielle adwagency.fr :
   • Violet profond  : #1800ad
   • Violet accent   : #4a10d1
   • Rose fuchsia    : #ff66c4
   • Blanc           : #ffffff
   • Fond sombre nav : #0d0d1a
   Typo : Plus Jakarta Sans + Playfair Display
   ===================================================== */

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

/* ─── Reset & base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: #ffffff;
  color: #1a1a2e;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }

/* ─── Variables ─── */
:root {
  /* Palette officielle ADW Agency */
  --violet:        #1800ad;
  --violet-deep:   #4a10d1;
  --rose:          #ff66c4;
  --rose-deep:     #e040a8;
  --blanc:         #ffffff;
  --noir-bg:       #0d0d1a;
  --noir-mid:      #13132a;

  /* Fonds clairs */
  --gris-clair:    #f4f3ff;
  --gris-mid:      #edeaff;
  --gris-text:     #6b6b9e;

  /* Bordures */
  --border:        rgba(24,0,173,0.14);
  --border-rose:   rgba(255,102,196,0.22);

  /* Gradients signature */
  --grad-main:   linear-gradient(135deg, #1800ad 0%, #4a10d1 52%, #ff66c4 100%);
  --grad-soft:   linear-gradient(135deg, rgba(24,0,173,.07) 0%, rgba(255,102,196,.07) 100%);
  --grad-hero:   linear-gradient(135deg, #0d0d1a 0%, #130040 45%, #1a0055 100%);
  --grad-section:linear-gradient(160deg, #0d0d1a 0%, #120038 100%);

  /* Ombres */
  --shadow-sm:   0 2px 12px rgba(24,0,173,.07);
  --shadow-md:   0 8px 32px rgba(24,0,173,.13);
  --shadow-lg:   0 20px 60px rgba(24,0,173,.18);
  --shadow-rose: 0 8px 30px rgba(255,102,196,.25);

  /* Rayons */
  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --radius-pill:50px;
}

/* ─── Typographie ─── */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.18;
  color: #1a1a2e;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem);   font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.08rem; font-weight: 600; }
h5 { font-size: .95rem;  font-weight: 600; }

p { color: #4a4a6a; line-height: 1.78; margin-bottom: 1rem; }
a { color: var(--violet); text-decoration: none; transition: color .2s; }
a:hover { color: var(--violet-deep); }

.text-violet { color: var(--violet); }
.text-rose   { color: var(--rose); }
.text-grad {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Layout ─── */
.container   { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section     { padding: 6.5rem 0; }
.section-sm  { padding: 4rem 0; }
.text-center { text-align: center; }

/* ─── Boutons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .9rem 2.1rem;
  border-radius: var(--radius-pill);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .025em;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
}
/* Bouton primaire gradient */
.btn-violet, .btn-or {
  background: var(--grad-main);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 22px rgba(74,16,209,.38);
}
.btn-violet:hover, .btn-or:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 35px rgba(74,16,209,.52);
  color: #fff;
}
/* Bouton outline violet */
.btn-outline {
  background: transparent;
  color: var(--violet);
  border-color: var(--violet);
}
.btn-outline:hover {
  background: var(--violet);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
/* Bouton outline sur fond sombre */
.btn-outline-blanc {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline-blanc:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
  color: #fff;
}
/* Bouton rose */
.btn-rose {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
  box-shadow: var(--shadow-rose);
}
.btn-rose:hover {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  transform: translateY(-2px);
  color: #fff;
}
/* Bouton blanc sur fond sombre */
.btn-blanc {
  background: #fff;
  color: var(--violet);
  border-color: #fff;
  box-shadow: 0 4px 20px rgba(255,255,255,.15);
}
.btn-blanc:hover {
  background: var(--gris-clair);
  transform: translateY(-2px);
}

/* ─── Navigation ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,13,26,.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  height: 74px;
  transition: background .3s;
}
.navbar.scrolled {
  background: rgba(13,13,26,1);
  box-shadow: 0 4px 32px rgba(0,0,0,.4);
}
.navbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
  flex-shrink: 0;
}
.navbar-logo-img {
  height: 46px;
  width: 46px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter .3s;
}
.navbar-logo:hover .navbar-logo-img { filter: brightness(0) saturate(100%) invert(17%) sepia(100%) saturate(5000%) hue-rotate(265deg) brightness(90%); }
.navbar-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: .04em;
}
.navbar-logo-text em {
  font-style: normal;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Liens nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-links a {
  display: block;
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  letter-spacing: .02em;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1rem; right: 1rem;
  height: 2px;
  background: var(--rose);
  transform: scaleX(0);
  transition: transform .25s;
  border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover,
.nav-links a.active { color: #fff; }

.nav-cta { margin-left: 1.5rem; }

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

/* Menu mobile */
.mobile-menu {
  display: none;
  position: fixed;
  top: 74px; left: 0; right: 0;
  background: rgba(13,13,26,.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 1.75rem 1.5rem;
  z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu ul li a {
  display: block;
  padding: .95rem 0;
  font-size: .97rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s;
}
.mobile-menu ul li a:hover { color: var(--rose); }
.mobile-menu .mob-cta { margin-top: 1.75rem; display: block; text-align: center; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 74px;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -25%; left: -15%;
  width: 65vw; height: 65vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,16,209,.22) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -25%; right: -15%;
  width: 55vw; height: 55vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,102,196,.18) 0%, transparent 65%);
  pointer-events: none;
}
/* Particules décoratives */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-particles span {
  position: absolute;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: rgba(255,102,196,.5);
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: rgba(255,102,196,.12);
  border: 1px solid rgba(255,102,196,.35);
  color: var(--rose);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .42rem 1.15rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.75rem;
}
.hero-badge i { font-size: .65rem; }

.hero-title {
  margin-bottom: 1.5rem;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
}
.hero-title .hl {
  display: inline;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,.68);
  margin-bottom: 2.75rem;
  max-width: 520px;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Visuel héro — orbe animée */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-orb-wrap {
  position: relative;
  width: 340px;
  height: 340px;
  flex-shrink: 0;
}
.hero-orb-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #1800ad, #4a10d1, #ff66c4, #ff66c4, #4a10d1, #1800ad);
  animation: orbSpin 10s linear infinite;
  padding: 4px;
}
.hero-orb-ring::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--grad-hero);
}
@keyframes orbSpin { to { transform: rotate(360deg); } }
.hero-orb-inner {
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  background: linear-gradient(145deg, #130040, #0d0d1a);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 40px rgba(74,16,209,.2);
}
.hero-orb-inner img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  animation: logoPulse 3s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.06); opacity: .9; }
}
/* Halos extérieurs */
.hero-orb-halo {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(74,16,209,.18) 0%, transparent 65%);
  animation: haloBreath 4s ease-in-out infinite;
}
@keyframes haloBreath {
  0%, 100% { transform: scale(1); opacity: .8; }
  50%       { transform: scale(1.12); opacity: 1; }
}
/* Points orbitaux */
.orb-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform-origin: 0 0;
}
.orb-dot-1 {
  background: var(--rose);
  box-shadow: 0 0 12px var(--rose);
  animation: orbitDot1 7s linear infinite;
}
.orb-dot-2 {
  background: var(--violet);
  box-shadow: 0 0 12px var(--violet);
  animation: orbitDot2 5s linear infinite;
  width: 7px; height: 7px;
}
@keyframes orbitDot1 {
  from { transform: rotate(0deg) translateX(160px); }
  to   { transform: rotate(360deg) translateX(160px); }
}
@keyframes orbitDot2 {
  from { transform: rotate(180deg) translateX(120px); }
  to   { transform: rotate(540deg) translateX(120px); }
}

/* ─── Labels de section ─── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .28rem .9rem;
  border-radius: var(--radius-pill);
  margin-bottom: .75rem;
  background: var(--gris-clair);
  border: 1px solid var(--border);
  color: var(--violet);
}
/* Sur fond sombre */
.bg-sombre .section-label,
.bg-dark .section-label,
.bg-dark2 .section-label,
.bg-violet .section-label,
.hero .section-label,
.cta-band .section-label {
  background: rgba(255,102,196,.12);
  border-color: rgba(255,102,196,.32);
  color: var(--rose);
}

/* Ligne décorative */
.or-line {
  display: block;
  width: 48px; height: 3px;
  background: var(--grad-main);
  border-radius: 3px;
  margin-bottom: 1.5rem;
}
.or-line-center { margin-left: auto; margin-right: auto; }

.section-title { margin-bottom: 1.25rem; }
.section-intro {
  color: var(--gris-text);
  max-width: 620px;
  margin-bottom: 3rem;
  font-size: 1.02rem;
}
.section-intro-center { margin-left: auto; margin-right: auto; text-align: center; }

/* ─── Fonds de sections ─── */
.bg-blanc  { background: #ffffff; }
.bg-soft   { background: var(--gris-clair); }
.bg-soft2  { background: #f9f8ff; }
.bg-dark   { background: var(--grad-section); }
.bg-dark2  { background: linear-gradient(160deg, #0f0f24 0%, #150042 100%); }
.bg-sombre { background: var(--noir-bg); }
.bg-violet { background: linear-gradient(135deg, #0d0d1a, #1a0050); }

/* Titres sur fond sombre */
.bg-sombre h1, .bg-sombre h2, .bg-sombre h3, .bg-sombre h4,
.bg-violet h1, .bg-violet h2, .bg-violet h3, .bg-violet h4,
.bg-dark   h1, .bg-dark h2,   .bg-dark h3,   .bg-dark h4,
.bg-dark2  h1, .bg-dark2 h2,  .bg-dark2 h3,  .bg-dark2 h4,
.hero h1, .hero h2, .hero h3, .hero h4 { color: #fff; }
.bg-sombre p, .bg-violet p, .bg-dark p, .bg-dark2 p { color: rgba(255,255,255,.62); }
.bg-sombre .section-intro, .bg-violet .section-intro,
.bg-dark .section-intro, .bg-dark2 .section-intro { color: rgba(255,255,255,.58); }

/* ─── Cards services ─── */
/* Forcer la lisibilité du texte dans les cards même sur fond sombre */
.card p, .card h3, .card h4 { color: #4a4a6a; }
.card h3, .card h4 { color: #1a1a2e; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.card:hover::before { transform: scaleX(1); }
.card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-icon {
  width: 58px; height: 58px;
  background: var(--grad-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  font-size: 1.5rem;
  border: 1px solid var(--border);
  color: var(--violet);
  transition: all .3s;
}
.card:hover .card-icon {
  background: var(--grad-main);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(74,16,209,.3);
}
.card h3 { margin-bottom: .75rem; font-size: 1.2rem; }
.card p  { font-size: .92rem; margin-bottom: 1.4rem; line-height: 1.7; }
.card-link {
  font-size: .85rem;
  font-weight: 700;
  color: var(--violet);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: gap .2s, color .2s;
}
.card-link:hover { gap: .7rem; color: var(--violet-deep); }

/* ─── Layout deux colonnes ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}

/* ─── Étapes processus ─── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  counter-reset: steps-counter;
}
.step {
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: border-color .25s, background .25s;
  position: relative;
}
.step:hover {
  border-color: rgba(255,102,196,.4);
  background: rgba(255,102,196,.04);
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--rose);
  -webkit-text-fill-color: var(--rose);
  background: none;
  opacity: 1;
  line-height: 1;
  margin-bottom: .75rem;
  text-shadow: 0 0 20px rgba(255,102,196,.35);
}
.step h4 { margin-bottom: .5rem; color: #ffffff; font-size: 1rem; font-weight: 700; }
.step p  { font-size: .9rem; color: rgba(255,255,255,.78); margin: 0; line-height: 1.65; }

/* ─── CTA band ─── */
.cta-band {
  background: var(--grad-hero);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -30%; left: 15%;
  width: 45vw; height: 45vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,16,209,.28) 0%, transparent 65%);
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -30%; right: 15%;
  width: 38vw; height: 38vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,102,196,.22) 0%, transparent 65%);
}
.cta-band h2 { color: #fff; margin-bottom: 1.1rem; position: relative; z-index: 1; }
.cta-band p  { color: rgba(255,255,255,.68); max-width: 540px; margin: 0 auto 2.25rem; position: relative; z-index: 1; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ─── Grille secteurs ─── */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 1.1rem;
  margin-top: 2.5rem;
}
.sector-item {
  background: rgba(255,255,255,.03);
  border: 1.5px solid rgba(255,255,255,.09);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: all .28s;
}
.sector-item:hover {
  border-color: rgba(255,102,196,.45);
  background: rgba(255,102,196,.06);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(255,102,196,.15);
}
.sector-item .ico { font-size: 1.8rem; margin-bottom: .6rem; }
.sector-item p { font-size: .82rem; color: rgba(255,255,255,.7); margin: 0; font-weight: 600; }

/* ─── Pricing ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
  align-items: start;
}
.pricing-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.75rem 2.25rem;
  position: relative;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-sm);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
  border-color: var(--violet);
  background: linear-gradient(160deg, #fff 0%, var(--gris-clair) 100%);
  box-shadow: 0 10px 50px rgba(74,16,209,.22);
  transform: translateY(-4px);
}
.pricing-card.featured:hover { transform: translateY(-10px); }
.pricing-badge {
  position: absolute;
  top: -15px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad-main);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem 1.1rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(74,16,209,.4);
}
.pricing-name    { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: #1a1a2e; margin-bottom: .4rem; }
.pricing-tagline { font-size: .84rem; color: #8888aa; margin-bottom: 1.75rem; }
.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 700;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.75rem;
  line-height: 1.2;
}
.pricing-price span { font-size: .85rem; color: #9898c0; -webkit-text-fill-color: #9898c0; background: none; }
.pricing-features { margin-bottom: 2.25rem; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: .5rem 0;
  font-size: .9rem;
  color: #4a4a6a;
  border-bottom: 1px solid rgba(24,0,173,.06);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: '✓';
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  font-weight: 800;
  margin-top: .05rem;
}

/* ─── Réassurance ─── */
.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
  margin-top: 2.5rem;
}
.reassurance-item {
  position: relative;
  padding: 1.6rem 1.5rem 1.6rem 1.75rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-left: 3px solid var(--violet);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: background .25s, border-left-color .25s;
}
.reassurance-item:hover {
  background: rgba(255,102,196,.08);
  border-left-color: var(--rose);
}
.reassurance-item h4 {
  margin-bottom: .55rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}
.reassurance-item p {
  font-size: .9rem;
  color: rgba(255,255,255,.78);
  margin: 0;
  line-height: 1.68;
}

/* Cards sur fond clair (bg-soft, bg-blanc) : texte sombre */
.bg-soft .card p, .bg-blanc .card p, .bg-soft2 .card p { color: #4a4a6a; }
.bg-soft .card h3, .bg-blanc .card h3, .bg-soft2 .card h3,
.bg-soft .card h4, .bg-blanc .card h4, .bg-soft2 .card h4 { color: #1a1a2e; }

/* Steps sur fond sombre : texte forcé visible */
.bg-dark .step h4, .bg-dark2 .step h4 { color: #ffffff; }
.bg-dark .step p,  .bg-dark2 .step p  { color: rgba(255,255,255,.72); }

/* ─── Page hero intérieure ─── */
.page-hero {
  padding: 9rem 0 5.5rem;
  background: var(--grad-hero);
  border-bottom: 1px solid rgba(255,255,255,.07);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -35%; right: -12%;
  width: 55vw; height: 55vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,16,209,.28) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -8%;
  width: 35vw; height: 35vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,102,196,.15) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 1.1rem; }
.page-hero p  { font-size: 1.07rem; color: rgba(255,255,255,.68); max-width: 620px; }

/* Fil d'Ariane */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.75rem;
}
.breadcrumb a { color: rgba(255,255,255,.45); transition: color .2s; }
.breadcrumb a:hover { color: var(--rose); }
.breadcrumb span { color: var(--rose); }

/* ─── FAQ accordion ─── */
.faq-list { margin-top: 2.5rem; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: .85rem;
  overflow: hidden;
  transition: box-shadow .25s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.6rem;
  cursor: pointer;
  background: #fff;
  font-weight: 600;
  font-size: .93rem;
  color: #1a1a2e;
  gap: 1rem;
  transition: background .2s;
  user-select: none;
}
.faq-q:hover { background: var(--gris-clair); }
.faq-q .ico {
  color: var(--violet);
  font-size: 1.1rem;
  transition: transform .3s;
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
}
.faq-item.open .faq-q { background: var(--gris-clair); }
.faq-item.open .faq-q .ico { transform: rotate(45deg); color: var(--rose); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s ease;
  background: var(--gris-clair);
}
.faq-a-inner { padding: 1.25rem 1.6rem; font-size: .92rem; color: #5a5a8a; line-height: 1.76; }
.faq-item.open .faq-a { max-height: 400px; }

/* ─── Formulaire ─── */
.form-group { margin-bottom: 1.3rem; }
.form-group label {
  display: block;
  font-size: .84rem;
  font-weight: 600;
  color: #3a3a5a;
  margin-bottom: .45rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .92rem 1.1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .93rem;
  color: #1a1a2e;
  outline: none;
  transition: border-color .22s, box-shadow .22s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(74,16,209,.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }

/* ─── Tableau comparatif ─── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .89rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-table thead tr { background: var(--grad-main); }
.compare-table thead th {
  padding: 1rem 1.1rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.compare-table thead th:first-child { text-align: left; }
.compare-table tbody tr { border-bottom: 1px solid rgba(24,0,173,.07); }
.compare-table tbody tr:nth-child(even) { background: var(--gris-clair); }
.compare-table tbody td { padding: .8rem 1.1rem; color: #4a4a6a; }
.compare-table tbody td:first-child { font-weight: 500; color: #2a2a4a; }
.compare-table tbody td:not(:first-child) { text-align: center; }
.compare-table .check {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}
.compare-table .dash { color: #c8c8e0; }
.compare-table tfoot tr { background: var(--gris-clair); border-top: 2px solid var(--border); }
.compare-table tfoot td {
  padding: .95rem 1.1rem;
  font-weight: 700;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}
.compare-table tfoot td:first-child {
  -webkit-text-fill-color: #1a1a2e;
  background: none;
  text-align: left;
}

/* ─── Liste à puces ─── */
.list-violet,
.list-or {
  list-style: none;
  padding: 0;
}
.list-violet li,
.list-or li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding: .6rem 0;
  font-size: .94rem;
  border-bottom: 1px solid rgba(24,0,173,.07);
}
.list-violet li:last-child,
.list-or li:last-child { border-bottom: none; }
.list-violet li::before,
.list-or li::before {
  content: '→';
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  font-weight: 800;
  margin-top: .05rem;
}
/* Sur fond sombre */
.bg-dark .list-or li,
.bg-dark2 .list-or li,
.bg-sombre .list-or li { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.07); }

/* ─── Tag badges ─── */
.tag-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,102,196,.1);
  border: 1px solid rgba(255,102,196,.28);
  color: var(--rose);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .07em;
  padding: .3rem .9rem;
  border-radius: var(--radius-pill);
}
.tag-badge-violet {
  background: var(--gris-clair);
  border-color: var(--border);
  color: var(--violet);
}

/* ─── Icône gradient ─── */
.ico-grad {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Animations scroll ─── */
[data-anim] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
}
[data-anim].visible { opacity: 1; transform: translateY(0); }
[data-anim]:nth-child(2) { transition-delay: .1s; }
[data-anim]:nth-child(3) { transition-delay: .2s; }
[data-anim]:nth-child(4) { transition-delay: .3s; }

/* ─── Footer ─── */
.footer {
  background: var(--noir-bg);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}
.footer-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.25rem;
  text-decoration: none;
}
.footer-brand .logo-wrap img {
  height: 46px;
  width: 46px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-brand .logo-wrap .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
}
.footer-brand .logo-wrap .logo-text em {
  font-style: normal;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-brand p { font-size: .87rem; color: rgba(255,255,255,.42); line-height: 1.72; }
.footer-brand .footer-geo { font-size: .78rem; color: rgba(255,255,255,.3); margin-top: .75rem; margin-bottom: 0; }

.footer-col h5 {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.1rem;
  padding-bottom: .55rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  letter-spacing: .02em;
}
.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul li a {
  font-size: .85rem;
  color: rgba(255,255,255,.42);
  transition: color .2s, padding-left .2s;
}
.footer-col ul li a:hover { color: var(--rose); padding-left: .25rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .78rem;
  color: rgba(255,255,255,.28);
}
.footer-bottom a { color: rgba(255,255,255,.28); transition: color .2s; }
.footer-bottom a:hover { color: var(--rose); }

/* ─── Scroll top btn ─── */
.scroll-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--grad-main);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(74,16,209,.4);
  transition: all .25s;
  opacity: 0;
  pointer-events: none;
  z-index: 900;
}
.scroll-top.show { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(74,16,209,.55); }

/* ─── Accessible only ─── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 55% 45%; gap: 2rem; }
  .hero-orb-wrap { width: 280px; height: 280px; }
  .footer-grid { grid-template-columns: 1.8fr 1fr 1fr; }
  .footer-grid > *:last-child { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .section { padding: 4.5rem 0; }
  .section-sm { padding: 2.75rem 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .compare-table { font-size: .78rem; }
  .steps { grid-template-columns: 1fr 1fr; }
  .hero-grid { padding: 2rem 0; }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .btn { font-size: .85rem; padding: .8rem 1.6rem; }
}

/* =========================================
   PATCH VERSION CLAIRE — ADW AGENCY
   Fonds sombres éclaircis + textes adaptés
   ========================================= */

:root {
  --noir-bg:       #faf8ff;
  --noir-mid:      #f3efff;
  --grad-hero:     linear-gradient(135deg, #fcfbff 0%, #f4f0ff 48%, #fff8fc 100%);
  --grad-section:  linear-gradient(160deg, #fbfaff 0%, #f1ecff 100%);
}

/* Navigation */
.navbar {
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(24,0,173,.10);
  box-shadow: 0 8px 28px rgba(24,0,173,.08);
}
.navbar.scrolled {
  background: rgba(255,255,255,.98);
  box-shadow: 0 8px 28px rgba(24,0,173,.10);
}
.navbar-logo-img {
  filter: none;
}
.navbar-logo-text {
  color: #241b52;
}
.nav-links a {
  color: rgba(36,27,82,.76);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--violet);
}
.burger span {
  background: #241b52;
}

/* Menu mobile */
.mobile-menu {
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid rgba(24,0,173,.10);
  box-shadow: 0 12px 30px rgba(24,0,173,.08);
}
.mobile-menu ul li a {
  color: #241b52;
  border-bottom: 1px solid rgba(24,0,173,.08);
}
.mobile-menu ul li a:hover {
  color: var(--violet);
}

/* Hero + sections anciennement sombres */
.hero,
.page-hero,
.cta-band {
  background: var(--grad-hero);
}
.bg-dark,
.bg-dark2,
.bg-sombre,
.bg-violet {
  background: var(--grad-section);
}
.footer {
  background: var(--noir-bg);
  border-top: 1px solid rgba(24,0,173,.08);
}
.page-hero {
  border-bottom: 1px solid rgba(24,0,173,.08);
}

/* Effets décoratifs plus doux */
.hero::before,
.page-hero::before,
.cta-band::before {
  background: radial-gradient(circle, rgba(74,16,209,.10) 0%, transparent 65%);
}
.hero::after,
.page-hero::after,
.cta-band::after {
  background: radial-gradient(circle, rgba(255,102,196,.10) 0%, transparent 65%);
}
.hero-particles span {
  background: rgba(74,16,209,.18);
}

/* Textes sur fonds maintenant clairs */
.bg-sombre h1, .bg-sombre h2, .bg-sombre h3, .bg-sombre h4,
.bg-violet h1, .bg-violet h2, .bg-violet h3, .bg-violet h4,
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4,
.bg-dark2 h1, .bg-dark2 h2, .bg-dark2 h3, .bg-dark2 h4,
.hero h1, .hero h2, .hero h3, .hero h4,
.page-hero h1, .page-hero h2, .page-hero h3, .page-hero h4,
.cta-band h1, .cta-band h2, .cta-band h3, .cta-band h4,
.footer h5 {
  color: #1a1a2e;
}
.bg-sombre p, .bg-violet p, .bg-dark p, .bg-dark2 p,
.hero p, .page-hero p, .cta-band p,
.bg-sombre .section-intro, .bg-violet .section-intro,
.bg-dark .section-intro, .bg-dark2 .section-intro,
.footer-brand p, .footer-brand .footer-geo,
.footer-col ul li a, .footer-bottom, .footer-bottom a {
  color: #5b5675;
}
.hero-title,
.page-hero h1,
.cta-band h2 {
  color: #1a1a2e;
}
.hero-sub,
.page-hero p,
.cta-band p {
  color: #5b5675;
}

/* Labels et séparateurs */
.bg-sombre .section-label,
.bg-dark .section-label,
.bg-dark2 .section-label,
.bg-violet .section-label,
.hero .section-label,
.cta-band .section-label {
  background: #ffffff;
  border-color: rgba(255,102,196,.28);
  color: var(--rose-deep);
}
.or-line {
  background: rgba(114,9,183,.18);
}

/* Boutons prévus pour fond sombre */
.btn-outline-blanc {
  background: rgba(255,255,255,.78);
  color: var(--violet);
  border-color: rgba(114,9,183,.25);
}
.btn-outline-blanc:hover {
  background: var(--violet);
  border-color: var(--violet);
  color: #fff;
}

/* Badge hero */
.hero-badge {
  background: rgba(255,102,196,.10);
  border-color: rgba(255,102,196,.28);
  color: #b03084;
}

/* Orbe hero adaptée au thème clair */
.hero-orb-ring::before {
  background: var(--grad-hero);
}
.hero-orb-inner {
  background: linear-gradient(145deg, #ffffff, #f3efff);
  box-shadow: inset 0 0 30px rgba(74,16,209,.08), 0 12px 40px rgba(24,0,173,.10);
}
.hero-orb-inner img {
  filter: none;
}

/* Cartes et blocs sur sections anciennement sombres */
.step,
.sector-item,
.reassurance-item {
  background: rgba(255,255,255,.78);
  border-color: rgba(24,0,173,.10);
  box-shadow: 0 8px 24px rgba(24,0,173,.05);
}
.step:hover,
.sector-item:hover,
.reassurance-item:hover {
  background: rgba(255,255,255,.95);
  border-color: rgba(255,102,196,.28);
}
.step h4,
.bg-dark .step h4,
.bg-dark2 .step h4,
.reassurance-item h4 {
  color: #1a1a2e;
}
.step p,
.bg-dark .step p,
.bg-dark2 .step p,
.reassurance-item p,
.sector-item p {
  color: #5b5675;
}
.sector-item .ico {
  color: var(--violet);
}
.step-num {
  text-shadow: none;
}

/* Fil d'Ariane */
.breadcrumb,
.breadcrumb a {
  color: rgba(36,27,82,.55);
}
.breadcrumb a:hover {
  color: var(--violet);
}
.breadcrumb span {
  color: var(--rose-deep);
}

/* Listes sur fonds ex-sombres */
.bg-dark .list-or li,
.bg-dark2 .list-or li,
.bg-sombre .list-or li,
.bg-violet .list-or li {
  color: #5b5675;
  border-color: rgba(24,0,173,.07);
}

/* Footer */
.footer-brand .logo-wrap img {
  filter: none;
}
.footer-brand .logo-wrap .logo-text,
.footer-col h5 {
  color: #1a1a2e;
}
.footer-col h5 {
  border-bottom: 1px solid rgba(24,0,173,.08);
}
.footer-bottom {
  border-top: 1px solid rgba(24,0,173,.08);
}
.footer-col ul li a:hover,
.footer-bottom a:hover {
  color: var(--violet);
}


/* =========================================
   PATCH CONTRASTE SUPPLÉMENTAIRE
   Sécurise menus, boutons, pages légales
   et derniers éléments peu contrastés
   ========================================= */

.legal-hero h1,
.legal-hero .hero-sub {
  color: #1a1a2e !important;
}
.legal-hero .hero-sub {
  color: #5b5675 !important;
}

.btn-blanc {
  background: rgba(255,255,255,.9);
  color: var(--violet);
  border-color: rgba(24,0,173,.14);
  box-shadow: 0 8px 24px rgba(24,0,173,.08);
}
.btn-blanc:hover {
  background: var(--violet);
  color: #fff;
  border-color: var(--violet);
}

.footer-bottom a,
.footer-bottom button {
  color: #5b5675;
}
.footer-bottom button:hover {
  color: var(--violet);
}

.calendly-item {
  box-shadow: 0 8px 24px rgba(24,0,173,.05);
}
.calendly-item strong {
  color: #1a1a2e !important;
}
.calendly-item span {
  color: #5b5675 !important;
}

[style*="background:rgba(255,255,255,.04)"],
[style*="background:rgba(255,255,255,.05)"] {
  background: rgba(255,255,255,.86) !important;
  border: 1px solid rgba(24,0,173,.10) !important;
  box-shadow: 0 8px 24px rgba(24,0,173,.05) !important;
}
[style*="color:rgba(255,255,255,.55)"],
[style*="color:rgba(255,255,255,.6)"],
[style*="color:rgba(255,255,255,.62)"],
[style*="color:rgba(255,255,255,.65)"] {
  color: #5b5675 !important;
}


/* Correctif ciblé — note secteur 1 */
#paramedical .sector-note {
  margin-top: 2rem;
  padding: 1.35rem 1.75rem;
  background: #ffffff;
  border: 1px solid rgba(24,0,173,.12);
  border-left: 3px solid rgba(255,102,196,.5);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: 0 8px 24px rgba(24,0,173,.06);
}
#paramedical .sector-note p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.7;
  color: #3f3b63 !important;
}


/* =========================================
   UTILITAIRES D'ENCARTS HARMONISÉS
   ========================================= */
.info-note {
  margin-top: 2rem;
  padding: 1.25rem 1.75rem;
  background: #ffffff;
  border: 1px solid rgba(24,0,173,.12);
  border-left: 4px solid var(--violet);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: 0 8px 24px rgba(24,0,173,.06);
}
.info-note p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.7;
  color: #4b4768;
}
.info-note strong {
  color: var(--violet);
}
.info-note--soft {
  background: linear-gradient(135deg, #ffffff 0%, var(--gris-clair) 100%);
}
.info-note--muted {
  background: rgba(255,255,255,.92);
}
.info-note--rose {
  background: linear-gradient(135deg, #fffafd 0%, #ffffff 100%);
  border-left-color: var(--rose);
}
.info-note--rose strong {
  color: var(--rose-deep);
}
.info-note--sm {
  margin-top: 1.5rem;
  padding: 1rem 1.4rem;
}
.info-note--italic p {
  font-size: .88rem;
  font-style: italic;
}

/* Compatibilité ancien correctif ciblé */
#paramedical .sector-note,
#paramedical .info-note {
  margin-top: 2rem;
}
#paramedical .sector-note p,
#paramedical .info-note p {
  color: #3f3b63 !important;
}
