/* ═══════════════════════════════════════════════════════════
   BELLOVA PRO — Feuille de style spécifique
   Extends /css/styles.css (loaded separately in head)
   Palette pro : Navy #0a0e1a | Surface #111827 | Cyan #06b6d4
═══════════════════════════════════════════════════════════ */

/* ─── Variables Pro ─── */
:root {
  --pro-dark:    #0a0e1a;
  --pro-surface: #111827;
  --pro-border:  rgba(255, 255, 255, .08);
  --cyan:        #06b6d4;
  --cyan-dark:   #0891b2;
  --cyan-light:  #22d3ee;
  --amber:       #f59e0b;
  --amber-dark:  #d97706;
  --pro-text:    rgba(255, 255, 255, .87);
  --pro-muted:   rgba(255, 255, 255, .5);
  --pro-card:    #1a2235;
  --pro-shadow:  0 4px 24px rgba(0, 0, 0, .4);
  --pro-glow:    0 0 30px rgba(6, 182, 212, .25);
}

/* ─── Highlight cyan ─── */
.highlight-cyan { color: var(--cyan); }
.highlight-amber { color: var(--amber); }

/* ═══════════════════ PRO NAVBAR ═══════════════════ */
.pro-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 14, 26, .95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pro-border);
  transition: box-shadow var(--transition);
}
.pro-nav.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, .4);
}
.pro-nav .nav-container {
  height: 68px;
}
.pro-nav .nav-logo {
  color: var(--white);
}
.pro-nav .logo-bellova {
  color: var(--cyan);
}
.pro-nav .logo-pro {
  color: var(--white);
  font-weight: 700;
  letter-spacing: -.02em;
}
.pro-nav .nav-link {
  color: rgba(255, 255, 255, .75);
  font-size: .9rem;
  font-weight: 500;
  padding: .5rem .9rem;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}
.pro-nav .nav-link:hover,
.pro-nav .nav-link.active {
  background: rgba(6, 182, 212, .12);
  color: var(--cyan);
}
.pro-nav .nav-dropdown-trigger {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  color: rgba(255, 255, 255, .75);
  font-size: .9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .5rem .9rem;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}
.pro-nav .nav-dropdown-trigger:hover,
.pro-nav .nav-dropdown-trigger[aria-expanded="true"] {
  background: rgba(6, 182, 212, .12);
  color: var(--cyan);
}
.pro-nav .nav-dropdown-menu {
  background: var(--pro-surface);
  border: 1px solid var(--pro-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}
.pro-nav .nav-dropdown-menu::before {
  background: var(--pro-surface);
  border-left-color: var(--pro-border);
  border-top-color: var(--pro-border);
}
.pro-nav .nav-dropdown-item {
  color: rgba(255, 255, 255, .8);
}
.pro-nav .nav-dropdown-item:hover {
  background: rgba(6, 182, 212, .08);
  color: var(--cyan);
}
.pro-nav .nav-dropdown-item strong {
  color: rgba(255, 255, 255, .9);
  font-size: .88rem;
}
.pro-nav .nav-dropdown-item small {
  color: var(--pro-muted);
}
.pro-nav .nav-dropdown-sep {
  background: var(--pro-border);
}
.pro-nav .nav-dropdown-active > .nav-dropdown-trigger {
  background: rgba(6, 182, 212, .12);
  color: var(--cyan);
}
.pro-nav .nav-dropdown-item.active {
  background: rgba(6, 182, 212, .15);
  color: var(--cyan);
}
.pro-nav .nav-corp-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--pro-muted) !important;
  padding: .4rem .9rem;
  border: 1px solid var(--pro-border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  margin-left: .25rem;
}
.pro-nav .nav-corp-link:hover {
  background: rgba(255, 255, 255, .08);
  color: var(--white) !important;
  border-color: rgba(255, 255, 255, .2);
}
/* Hamburger menu on dark bg */
.pro-nav .nav-toggle span {
  background: rgba(255, 255, 255, .75);
}
/* Logo favicon — blanc sur fond sombre */
.pro-nav .logo-img {
  filter: brightness(0) invert(1);
}
/* Featured item du dropdown — dark au lieu du bleu clair */
.pro-nav .nav-dropdown-featured {
  background: rgba(6, 182, 212, .08);
  border-radius: 10px;
}
.pro-nav .nav-dropdown-featured:hover {
  background: rgba(6, 182, 212, .16);
}
.pro-nav .nav-dropdown-featured strong {
  color: var(--cyan);
}
/* Icônes du dropdown — dark */
.pro-nav .nav-dropdown-icon {
  background: rgba(255, 255, 255, .06);
  color: var(--white);
}
.pro-nav .nav-dropdown-icon-teal  { background: rgba(6, 182, 212, .15);  color: var(--cyan); }
.pro-nav .nav-dropdown-icon-orange { background: rgba(245, 158, 11, .15); color: var(--amber); }
.pro-nav .nav-dropdown-icon-red   { background: rgba(239, 68, 68, .15);  color: #f87171; }
.pro-nav .nav-dropdown-icon-green { background: rgba(0, 169, 92, .15);   color: var(--green); }

/* ═══════════════════ PRO HERO ═══════════════════ */
.pro-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--pro-dark) 0%, #0d1b3e 50%, #0a1628 100%);
  overflow: hidden;
  padding-top: 68px;
}
.pro-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 182, 212, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 182, 212, .05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.pro-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% 40%, rgba(6, 182, 212, .12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(0, 85, 164, .15) 0%, transparent 50%);
}
.pro-hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}
.pro-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(6, 182, 212, .1);
  border: 1px solid rgba(6, 182, 212, .25);
  padding: .4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}
.pro-hero-badge i {
  font-size: .85rem;
}
.pro-hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -.03em;
}
.pro-hero-subtitle {
  font-size: 1.1rem;
  color: var(--pro-muted);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.pro-hero-subtitle strong {
  color: rgba(255, 255, 255, .85);
  font-weight: 600;
}
.pro-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.btn-cyan {
  background: var(--cyan);
  color: var(--pro-dark);
  border-color: var(--cyan);
  font-weight: 700;
}
.btn-cyan:hover {
  background: var(--cyan-dark);
  border-color: var(--cyan-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(6, 182, 212, .4);
  color: var(--white);
}
.pro-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--pro-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  width: fit-content;
  gap: 0;
}
.pro-hero-stats .stat {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding: 0 1.5rem;
}
.pro-hero-stats .stat:first-child {
  padding-left: 0;
}
.pro-hero-stats .stat-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}
.pro-hero-stats .stat-label {
  font-size: .72rem;
  font-weight: 500;
  color: var(--pro-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.pro-hero-stats .stat-divider {
  width: 1px;
  height: 36px;
  background: var(--pro-border);
  flex-shrink: 0;
}

/* ═══════════════════ PRO REASSURANCE ═══════════════════ */
.pro-reassurance {
  background: var(--pro-surface);
  border-top: 1px solid var(--pro-border);
  border-bottom: 1px solid var(--pro-border);
  padding: 1.25rem 0;
}
.pro-reassurance-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.pro-reassurance-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  white-space: nowrap;
}
.pro-reassurance-item i {
  color: var(--cyan);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ═══════════════════ DARK SECTION ═══════════════════ */
.dark-section {
  background: var(--pro-dark);
  padding: 5rem 0;
}
.dark-section h2,
.dark-section h3 {
  color: var(--white);
}
.dark-section p {
  color: var(--pro-muted);
}
.dark-section .section-header p,
.dark-section .section-header-light p {
  color: var(--pro-muted);
}
.dark-section .section-header-light h2 {
  color: var(--white);
}
.dark-section .section-tag {
  color: var(--cyan);
  background: rgba(6, 182, 212, .1);
}

/* ═══════════════════ PRO SERVICES GRID ═══════════════════ */
.pro-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.pro-service-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}
.pro-service-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 8px 32px rgba(6, 182, 212, .12);
  transform: translateY(-3px);
}
.pro-service-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(6, 182, 212, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.pro-service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .25rem;
}
.pro-service-card p {
  color: var(--gray-600);
  font-size: .93rem;
  line-height: 1.6;
  flex: 1;
}
.pro-service-card-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--cyan);
  margin-top: .25rem;
  transition: gap var(--transition);
}
.pro-service-card:hover .pro-service-card-link {
  gap: .65rem;
}

/* Dark variant of service cards */
.dark-section .pro-service-card {
  background: var(--pro-card);
  border-color: var(--pro-border);
}
.dark-section .pro-service-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--pro-glow);
}
.dark-section .pro-service-card h3 {
  color: var(--white);
}
.dark-section .pro-service-card p {
  color: var(--pro-muted);
}

/* ═══════════════════ SPEC GRID (plans) ═══════════════════ */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.spec-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all var(--transition);
  position: relative;
}
.spec-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 8px 32px rgba(6, 182, 212, .1);
  transform: translateY(-2px);
}
.spec-card-featured {
  border-color: var(--cyan) !important;
  box-shadow: var(--pro-glow);
  background: var(--white);
}
.spec-card-featured::before {
  content: 'Recommandé';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--pro-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .9rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.spec-card-name {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--cyan);
}
.spec-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: .1rem;
}
.spec-card-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-600);
}
.spec-card-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.spec-card-specs li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: var(--gray-600);
}
.spec-card-specs li i {
  color: var(--cyan);
  font-size: .8rem;
  flex-shrink: 0;
  width: 14px;
}
.spec-card .btn {
  margin-top: auto;
}

/* Dark variant spec cards */
.dark-section .spec-card {
  background: var(--pro-card);
  border-color: var(--pro-border);
}
.dark-section .spec-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--pro-glow);
}
.dark-section .spec-card h3 {
  color: var(--white);
}
.dark-section .spec-card-price {
  color: var(--pro-muted);
}
.dark-section .spec-card-specs li {
  color: var(--pro-muted);
}
.dark-section .spec-card-featured {
  background: #1e2d45;
  border-color: var(--cyan) !important;
}

/* ═══════════════════ PRO STATS SECTION ═══════════════════ */
.pro-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.pro-stats-grid .pro-stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: .4rem;
}
.pro-stats-grid .pro-stat-label {
  font-size: .85rem;
  font-weight: 500;
  color: var(--pro-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ═══════════════════ PRO FEATURES GRID ═══════════════════ */
.pro-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pro-feature {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: 1.5rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.pro-feature:hover {
  border-color: var(--cyan);
  box-shadow: 0 4px 16px rgba(6, 182, 212, .08);
}
.pro-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(6, 182, 212, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.pro-feature h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
}
.pro-feature p {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin: 0;
}
/* Dark variant */
.dark-section .pro-feature {
  background: var(--pro-card);
  border-color: var(--pro-border);
}
.dark-section .pro-feature:hover {
  border-color: var(--cyan);
  box-shadow: 0 4px 16px rgba(6, 182, 212, .15);
}
.dark-section .pro-feature h4 {
  color: rgba(255, 255, 255, .9);
}
.dark-section .pro-feature p {
  color: var(--pro-muted);
}

/* ═══════════════════ COMPACT PAGE HERO ═══════════════════ */
.pro-page-hero {
  background: linear-gradient(135deg, var(--pro-dark) 0%, #0d1b3e 100%);
  padding: 7rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.pro-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 182, 212, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 182, 212, .04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.pro-page-hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: .75rem;
}
.pro-page-hero p {
  color: var(--pro-muted);
  font-size: 1.05rem;
  max-width: 600px;
}
.pro-page-hero .pro-hero-badge {
  margin-bottom: 1rem;
}

/* ─── Hero trust bar ─── */
.pro-hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.25rem;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 14px;
  padding: .8rem 1.4rem;
  flex-wrap: wrap;
  backdrop-filter: blur(8px);
}
.pro-hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  white-space: nowrap;
}
.pro-hero-trust-item i { color: var(--cyan); font-size: .78rem; }
.pro-hero-trust-item.no-us { color: rgba(255, 255, 255, .7); }
.pro-hero-trust-item.no-us i { color: #ef4444; }
.pro-hero-trust-sep {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, .12);
  flex-shrink: 0;
}
.pro-hero-trust-hosted {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.pro-hero-trust-hosted-label {
  font-size: .7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .35);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-right: .15rem;
}
.pro-hero-provider {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  font-size: .62rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: .02em;
  cursor: default;
  transition: transform var(--transition), opacity var(--transition);
  opacity: .9;
}
.pro-hero-provider:hover { opacity: 1; transform: translateY(-1px); }
.pro-hero-provider.ovh      { background: #123F6D; }
.pro-hero-provider.hetzner  { background: #D50C2D; }
.pro-hero-provider.scaleway { background: #4F0599; }

/* ═══════════════════ HA CARDS ═══════════════════ */
.ha-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ha-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: all var(--transition);
}
.ha-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 8px 32px rgba(6, 182, 212, .1);
  transform: translateY(-2px);
}
.ha-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(6, 182, 212, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1.3rem;
  margin-bottom: .25rem;
}
.ha-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}
.ha-card p {
  color: var(--gray-600);
  font-size: .88rem;
  line-height: 1.6;
}
.ha-card-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-top: .25rem;
}
.ha-card-specs li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .83rem;
  color: var(--gray-600);
}
.ha-card-specs li i {
  color: var(--cyan);
  font-size: .75rem;
  width: 12px;
  flex-shrink: 0;
}
.ha-card-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .2rem .7rem;
  border-radius: var(--radius-full);
  background: rgba(6, 182, 212, .1);
  color: var(--cyan);
  width: fit-content;
}

/* ═══════════════════ CONTACT FORM ═══════════════════ */
.pro-contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.pro-contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.pro-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pro-contact-info-block {
  background: var(--pro-surface);
  border: 1px solid var(--pro-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.pro-contact-info-block h4 {
  color: var(--white);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.pro-contact-info-block h4 i {
  color: var(--cyan);
}
.pro-contact-info-block p,
.pro-contact-info-block a {
  color: var(--pro-muted);
  font-size: .88rem;
  line-height: 1.6;
}
.pro-contact-info-block a:hover {
  color: var(--cyan);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.25rem;
}
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: .9rem;
  padding: .65rem .9rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--dark);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, .12);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-success {
  padding: 1rem 1.25rem;
  background: rgba(0, 169, 92, .1);
  border: 1px solid rgba(0, 169, 92, .3);
  border-radius: var(--radius-sm);
  color: var(--green);
  font-size: .9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.25rem;
}

/* ═══════════════════ INFOGERANCE 2-COL ═══════════════════ */
.pro-info-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.pro-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1rem;
}
.pro-info-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .93rem;
  color: var(--gray-600);
}
.pro-info-list li i {
  color: var(--cyan);
  margin-top: .15rem;
  flex-shrink: 0;
}

/* ═══════════════════ FOURNISSEURS INFRA ═══════════════════ */
.providers-strip {
  background: var(--pro-surface);
  border-top: 1px solid var(--pro-border);
  border-bottom: 1px solid var(--pro-border);
  padding: 2.5rem 0;
}
.providers-strip-label {
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pro-muted);
  margin-bottom: 2rem;
}
.providers-strip-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.provider-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1.5rem;
  border: 1px solid var(--pro-border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  transition: border-color var(--transition), background var(--transition);
  text-decoration: none;
}
.provider-logo:hover {
  border-color: rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
}
.provider-logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: .75rem;
  flex-shrink: 0;
}
.provider-logo-icon.ovh      { background: #123F6D; color: #fff; }
.provider-logo-icon.hetzner  { background: #D50C2D; color: #fff; }
.provider-logo-icon.scaleway { background: #4F0599; color: #fff; }
.provider-logo-name {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.provider-logo-name strong {
  font-size: .88rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
}
.provider-logo-name small {
  font-size: .72rem;
  color: var(--pro-muted);
}

/* ═══════════════════ PRO FOOTER ═══════════════════ */
.pro-footer {
  background: var(--pro-dark);
  border-top: 1px solid var(--pro-border);
}
.pro-footer .footer-top {
  padding: 4rem 0 2rem;
}
.pro-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.pro-footer .footer-brand p {
  color: var(--pro-muted);
  font-size: .88rem;
  line-height: 1.65;
  margin-top: .75rem;
}
.pro-footer .footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 1rem;
}
.pro-footer .footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.pro-footer .footer-col ul li a {
  font-size: .88rem;
  color: var(--pro-muted);
  transition: color var(--transition);
}
.pro-footer .footer-col ul li a:hover {
  color: var(--cyan);
}
.pro-footer .logo-img {
  filter: brightness(0) invert(1);
}
.pro-footer .footer-col address p {
  font-size: .85rem;
  color: var(--pro-muted);
  line-height: 1.6;
  display: flex;
  gap: .6rem;
  align-items: flex-start;
}
.pro-footer .footer-col address p i {
  color: var(--cyan);
  margin-top: .2rem;
  flex-shrink: 0;
}
.pro-footer .footer-col address a {
  color: var(--pro-muted);
  transition: color var(--transition);
}
.pro-footer .footer-col address a:hover {
  color: var(--cyan);
}
.pro-footer .footer-logo .logo-bellova {
  color: var(--cyan);
}
.pro-footer .footer-logo .logo-pro {
  color: var(--white);
}
.pro-footer .footer-bottom {
  border-top: 1px solid var(--pro-border);
  padding: 1.25rem 0;
}
.pro-footer .footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.pro-footer .footer-bottom p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .3);
}
.pro-footer .footer-bottom a {
  color: rgba(255, 255, 255, .35);
  transition: color var(--transition);
}
.pro-footer .footer-bottom a:hover {
  color: var(--cyan);
}
.pro-footer .footer-socials a {
  color: var(--pro-muted);
  font-size: 1rem;
  transition: color var(--transition);
}
.pro-footer .footer-socials a:hover {
  color: var(--cyan);
}

/* ═══════════════════ PRO CTA SECTION ═══════════════════ */
.pro-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* ═══════════════════ RESPONSIVE ═══════════════════ */

/* ── Tablet @768px ── */
@media (max-width: 768px) {
  .pro-nav .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0; bottom: 0;
    background: var(--pro-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: .25rem;
    overflow-y: auto;
    z-index: 999;
  }
  .pro-nav .nav-links.open {
    display: flex;
  }
  .pro-nav .nav-toggle {
    display: flex;
  }
  .pro-nav .nav-link,
  .pro-nav .nav-dropdown-trigger {
    padding: .75rem 1rem;
    border-radius: var(--radius-sm);
    width: 100%;
    text-align: left;
    justify-content: space-between;
  }
  .pro-nav .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border-radius: var(--radius-sm);
    padding: .5rem;
    width: 100%;
    margin-top: .25rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
  }
  .pro-nav .nav-dropdown-menu.open {
    display: flex;
  }
  .pro-nav .nav-dropdown-menu::before {
    display: none;
  }
  .pro-nav .nav-corp-link {
    margin-left: 0;
    margin-top: .5rem;
  }

  .pro-hero {
    padding: 5rem 0 3rem;
    min-height: auto;
  }
  .pro-hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .pro-hero-stats {
    flex-wrap: wrap;
    gap: .5rem;
    padding: 1rem;
  }
  .pro-hero-stats .stat {
    padding: .5rem 1rem;
  }
  .pro-hero-stats .stat-divider {
    display: none;
  }

  .pro-services-grid {
    grid-template-columns: 1fr;
  }
  .spec-grid {
    grid-template-columns: 1fr;
  }
  .pro-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pro-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ha-cards-grid {
    grid-template-columns: 1fr;
  }
  .pro-contact-grid {
    grid-template-columns: 1fr;
  }
  .pro-info-split {
    grid-template-columns: 1fr;
  }
  .pro-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pro-reassurance-grid {
    justify-content: flex-start;
  }
}

/* ── Mobile @480px ── */
@media (max-width: 480px) {
  .pro-hero-actions {
    flex-direction: column;
  }
  .pro-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .pro-features-grid {
    grid-template-columns: 1fr;
  }
  .pro-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .pro-footer .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .pro-cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ═══════════════════ SOVEREIGNTY BANNER ═══════════════════ */
.sovereignty-banner {
  background: linear-gradient(135deg, #0d1526 0%, #0a0e1a 100%);
  border-top: 3px solid var(--cyan);
  border-bottom: 1px solid var(--pro-border);
  padding: 2.5rem 0;
}
.sovereignty-banner-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.sovereignty-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(6, 182, 212, .15);
  border: 2px solid var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--cyan);
}
.sovereignty-content {
  flex: 1;
}
.sovereignty-content strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .4rem;
  letter-spacing: -.01em;
}
.sovereignty-content p {
  font-size: .9rem;
  color: var(--pro-muted);
  margin: 0;
  line-height: 1.6;
}
.sovereignty-badges {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex-shrink: 0;
}
.sovereignty-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(6, 182, 212, .1);
  border: 1px solid rgba(6, 182, 212, .3);
  border-radius: var(--radius-full);
  padding: .35rem .85rem;
  white-space: nowrap;
}
.sovereignty-badge i {
  color: var(--cyan);
}
.sovereignty-badge.no-us {
  background: rgba(239, 68, 68, .08);
  border-color: rgba(239, 68, 68, .25);
  color: rgba(255, 255, 255, .75);
}
.sovereignty-badge.no-us i {
  color: #ef4444;
}

/* ─── Section souveraineté dédiée ─── */
.sovereignty-section {
  background: var(--pro-dark);
  padding: 4rem 0;
  border-top: 1px solid var(--pro-border);
  border-bottom: 1px solid var(--pro-border);
}
.sovereignty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.sovereignty-headline {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.sovereignty-headline .no-us-text {
  color: #ef4444;
}
.sovereignty-lead {
  color: var(--pro-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.sovereignty-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.sovereignty-checklist li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .92rem;
  color: var(--pro-text);
}
.sovereignty-checklist li i {
  color: var(--cyan);
  margin-top: .15rem;
  flex-shrink: 0;
}
.sovereignty-checklist li i.ban {
  color: #ef4444;
}
.sovereignty-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.sovereignty-card {
  background: var(--pro-surface);
  border: 1px solid var(--pro-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
}
.sovereignty-card-value {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--cyan);
  margin-bottom: .25rem;
}
.sovereignty-card-label {
  font-size: .8rem;
  color: var(--pro-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 600;
}

@media (max-width: 768px) {
  .sovereignty-banner-inner {
    flex-direction: column;
    text-align: center;
  }
  .sovereignty-badges {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .sovereignty-grid {
    grid-template-columns: 1fr;
  }
  .sovereignty-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── Mode selector — surcharges thème Pro (fond sombre) ─── */
.bm-modal {
  background: var(--pro-surface);
  border: 1px solid var(--pro-border);
  color: var(--pro-text);
}
.bm-title  { color: #fff; }
.bm-subtitle { color: var(--pro-muted); }
.bm-choice {
  background: var(--pro-dark);
  border-color: var(--pro-border);
}
.bm-choice--expert:hover { background: rgba(6,182,212,.08); border-color: var(--cyan); }
.bm-choice--simple:hover { background: rgba(0,169,92,.08);  border-color: var(--green); }
.bm-choice--expert .bm-choice-icon { background: linear-gradient(135deg, var(--cyan-dark), var(--cyan)); }
.bm-choice-body h3 { color: #fff; }
.bm-choice-body p  { color: var(--pro-muted); }
.bm-choice-badge--expert { background: var(--cyan); color: #000; }
.bm-footer-note { color: var(--pro-muted); border-top-color: var(--pro-border); }

body[data-mode="expert"] .bm-toggle-btn                         { background: var(--cyan-dark); }
body[data-mode="expert"] .bm-toggle-wrap:hover .bm-toggle-btn   { background: var(--cyan); color: #000; }
body[data-mode="simple"]  .bm-toggle-btn                        { background: var(--green-dark); }
body[data-mode="simple"]  .bm-toggle-wrap:hover .bm-toggle-btn  { background: var(--green); }


/* ─── Visitor guide — surcharges thème Pro (fond sombre) ─── */
.vg-card {
  background: var(--pro-surface);
  border-color: var(--pro-border);
  box-shadow: 0 12px 40px rgba(0,0,0,.4), 0 2px 8px rgba(6,182,212,.08);
}
.vg-header {
  background: linear-gradient(90deg, var(--cyan-dark) 0%, var(--cyan) 100%);
}
.vg-header-title { color: #000; }
.vg-close { color: rgba(0,0,0,.65); }
.vg-close:hover { color: #000; background: rgba(0,0,0,.12); }
.vg-badge--client   { background: rgba(6,182,212,.15); color: var(--cyan); border-color: rgba(6,182,212,.3); }
.vg-badge--reseller { background: rgba(245,158,11,.12); color: var(--amber); border-color: rgba(245,158,11,.3); }
.vg-badge--info     { background: rgba(6,182,212,.1);  color: var(--cyan-light); border-color: rgba(6,182,212,.2); }
.vg-text { color: var(--pro-text); }
.vg-cta  { background: var(--cyan-dark); }
.vg-cta:hover { background: var(--cyan); color: #000; }
.vg-dismiss { color: var(--pro-muted); }
.vg-dismiss:hover { color: var(--pro-text); }
.vg-replay-btn {
  background: var(--pro-surface);
  border-color: var(--pro-border);
  color: var(--cyan);
  box-shadow: 0 4px 14px rgba(0,0,0,.35);
}
