/*
Theme Name: Ariane Patrimoine
Theme URI: https://ariane-patrimoine.fr
Author: Ariane Patrimoine
Author URI: https://ariane-patrimoine.fr
Description: Thème WordPress sur mesure pour Ariane Patrimoine, cabinet de courtage indépendant à Limoges (assurance, épargne, retraite, prévoyance).
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: ariane-patrimoine
*/

/* =================================================================
   Ariane Patrimoine — Site web · feuille de styles partagée
   ================================================================= */

:root {
  --blue: #17375D;
  --blue-light: #1E4A7A;
  --blue-pale: #EBF0F7;
  --blue-deep: #0E2542;
  --orange: #FF6B43;
  --orange-dark: #FE523A;
  --orange-light: #FFF0EC;
  --white: #FFFFFF;
  --gray-50: #FAFBFC;
  --gray-100: #F4F6F9;
  --gray-200: #E4E8EE;
  --gray-300: #CDD3DC;
  --gray-400: #9BA3B0;
  --gray-600: #5A6272;
  --gray-800: #2D3341;
  --gray-900: #181C25;

  --container: 1200px;
  --radius: 2px;
  --radius-pill: 999px;

  --font-main: 'Garet', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

/* ---------- Typo ---------- */
h1, h2, h3, h4 { font-family: var(--font-main); color: var(--blue); line-height: 1.15; font-weight: 800; letter-spacing: -0.01em; }
h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 900; letter-spacing: -0.02em; }
h2 { font-size: clamp(28px, 3.5vw, 40px); }
h3 { font-size: 22px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}
.eyebrow.no-rule::before { display: none; }
.hero-eyebrow::before, .audience-tag::before, .service-num::before, .trust-label::before { content: none; }

.lead { font-size: 18px; color: var(--gray-600); line-height: 1.6; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: all 0.18s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-secondary { background: white; color: var(--blue); border-color: var(--gray-300); }
.btn-secondary:hover { border-color: var(--blue); }
.btn-ghost { color: var(--blue); padding: 14px 0; }
.btn-ghost:hover { color: var(--orange); }
.btn-lg { padding: 18px 32px; font-size: 15px; }

.btn .arrow { transition: transform 0.18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-200);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 0; flex-shrink: 0; }
.brand-logo {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}
/* Legacy fallback */
.brand-mark {
  width: 38px; height: 38px; flex-shrink: 0;
  background-image: url("favicon.svg");
  background-repeat: no-repeat; background-position: center; background-size: contain;
}
.brand-name {
  font-weight: 900; font-size: 17px; color: var(--blue);
  line-height: 1; letter-spacing: -0.02em;
}
.brand-name span {
  display: block; font-size: 9px; font-weight: 600;
  color: var(--gray-400); letter-spacing: 2px;
  text-transform: uppercase; margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-item { position: relative; display: inline-flex; align-items: center; }
.nav a:not(.btn):not(.nav-cta) {
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  position: relative;
  padding: 8px 0;
  transition: color .18s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-chevron {
  width: 9px; height: 6px;
  stroke: currentColor;
  transition: transform .22s ease;
  opacity: 0.6;
}
.nav-item:hover .nav-chevron,
.nav-item:focus-within .nav-chevron { transform: rotate(180deg); opacity: 1; }

/* Dropdown panel */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: -18px;
  min-width: 240px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: 0 22px 48px -16px rgba(23, 55, 93, 0.22),
              0 8px 16px -8px rgba(23, 55, 93, 0.10);
  padding: 8px 0;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .18s ease, transform .22s ease;
  z-index: 200;
}
/* Hover bridge — eliminate flicker between trigger and panel */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -22px; left: 0; right: 0;
  height: 22px;
}
/* Top-left orange filet — brand accent */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 0; left: 18px;
  width: 24px; height: 2px;
  background: var(--orange);
}
.nav-item:hover > .nav-dropdown,
.nav-item:focus-within > .nav-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-dropdown a {
  display: block !important;
  padding: 11px 22px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--blue) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease, padding-left .18s ease;
}
.nav-dropdown a::after { display: none !important; }
.nav-dropdown a:hover {
  background: var(--blue-pale);
  color: var(--orange) !important;
  padding-left: 28px !important;
}
.nav a:not(.btn):not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s ease;
}
.nav a:not(.btn):not(.nav-cta):hover { color: var(--orange); }
.nav a:not(.btn):not(.nav-cta):hover::after,
.nav a.is-active::after { transform: scaleX(1); }
.nav .has-sub::after {
  content: '';
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  background: var(--orange);
  color: white !important;
  border-radius: var(--radius);
  text-transform: none;
  box-shadow: 0 6px 18px -4px rgba(254, 82, 58, 0.45);
  transition: all .2s ease;
  margin-left: 8px;
}
.nav-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -6px rgba(254, 82, 58, 0.55);
}
.nav-cta svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px;
  background: var(--blue); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .header-inner { height: 72px; }
  .brand-logo { height: 44px; }
  .nav-toggle { display: flex; }
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: white;
    border-bottom: 1px solid var(--gray-200);
    padding: 8px 0 16px;
    box-shadow: 0 12px 24px -12px rgba(23,55,93,0.12);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .22s ease, opacity .22s ease;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-item {
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--gray-200);
  }
  .nav > a:not(.btn):not(.nav-cta) {
    padding: 16px 24px;
    border-bottom: 1px solid var(--gray-200);
  }
  .nav-item > .nav-trigger {
    padding: 16px 24px;
    width: 100%;
    justify-content: space-between;
  }
  .nav a:not(.btn):not(.nav-cta)::after { display: none; }
  /* Mobile dropdown — accordion in flow */
  .nav-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
    padding: 0;
    border-radius: 0;
    min-width: 0;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .nav-dropdown::before, .nav-dropdown::after { display: none; }
  .nav-item.is-open > .nav-dropdown { max-height: 400px; }
  .nav-item.is-open .nav-chevron { transform: rotate(180deg); }
  .nav-dropdown a {
    padding: 12px 36px !important;
    font-size: 13px !important;
    border-bottom: 1px solid var(--gray-200);
  }
  .nav-dropdown a:last-child { border-bottom: none; }
  .nav-dropdown a:hover { padding-left: 36px !important; }
  .nav-cta {
    margin: 16px 24px 0;
    justify-content: center;
    padding: 16px 22px;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--blue);
  color: white;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-img, none);
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  filter: grayscale(20%);
  z-index: -1;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, var(--blue) 30%, rgba(23,55,93,0.6) 70%, rgba(23,55,93,0.2) 100%);
  z-index: -1;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 120px 0 100px;
  max-width: 720px;
}
.hero h1 { color: white; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero .lead { color: rgba(255,255,255,0.78); margin-top: 24px; max-width: 560px; }
.hero-cta { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-cta .btn-secondary { background: transparent; color: white; border-color: rgba(255,255,255,0.3); }
.hero-cta .btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: white; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(255,107,67,0.7);
}

/* Decorative orange "fil conducteur" thread, optional in hero */
.hero .thread {
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,107,67,0.5) 30%, rgba(255,107,67,0.5) 70%, transparent);
  z-index: 0;
}
@media (max-width: 900px) { .hero .thread { display: none; } }

/* ---------- Domain pills (hero) ---------- */
.domain-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}
.domain-pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: white;
}
.domain-pills span::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

/* ---------- Domain cards (4 domaines d'intervention) ---------- */
.domains-section {
  background: white;
  position: relative;
  z-index: 2;
}
.domains-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 1000px) { .domains-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .domains-grid { grid-template-columns: 1fr; } }

.domain-card {
  background: white;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease;
  overflow: hidden;
}
.domain-card:hover { transform: translateY(-3px); }
.domain-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  position: relative;
}
.domain-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,55,93,0.05) 0%, rgba(23,55,93,0.35) 100%);
}
.domain-body {
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  position: relative;
}
.domain-body::before {
  content: '';
  position: absolute;
  top: 0; left: 24px;
  width: 32px; height: 3px;
  background: var(--orange);
}
.domain-icon {
  position: absolute;
  bottom: -28px;
  left: 24px;
  width: 56px;
  height: 56px;
  background: white;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  box-shadow: 0 4px 16px -6px rgba(23,55,93,0.25);
  z-index: 2;
}
.domain-icon svg { width: 32px; height: 32px; }
.domain-photo .domain-icon { bottom: -28px; }
.domain-icon svg { stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.domain-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.01em;
}
.domain-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.55;
  flex: 1;
}
.domain-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.domain-link:hover { color: var(--blue); }

/* ---------- Image bands (full-bleed editorial) ---------- */
.image-band {
  position: relative;
  height: 360px;
  background-size: cover;
  background-position: center;
  margin: 0;
}
.image-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,55,93,0.15) 0%, rgba(23,55,93,0.45) 100%);
}
.image-band-quote {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 32px;
  color: white;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.image-band-quote em { color: var(--orange); font-style: normal; }

/* ---------- Section header ---------- */
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Audience cards (segmentation) ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .audience-grid { grid-template-columns: 1fr; } }

.audience-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.audience-card:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 12px 32px -16px rgba(23,55,93,0.22); }
.audience-card { box-shadow: 0 1px 0 rgba(23,55,93,0.02); }
.audience-photo {
  width: 100%;
  aspect-ratio: 16 / 11;
  background-size: cover;
  background-position: center;
  filter: grayscale(15%);
}
.audience-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.audience-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.audience-tag::before {
  content: '';
  width: 22px;
  height: 1.5px;
  background: var(--orange);
}
.audience-name { font-size: 24px; }
.audience-text { color: var(--gray-600); font-size: 15px; margin-top: 12px; flex: 1; }
.audience-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: var(--blue);
  border-bottom: 1px solid var(--gray-300);
  padding-bottom: 8px;
  align-self: flex-start;
  transition: color 0.18s, border-color 0.18s;
}
.audience-link:hover { color: var(--orange); border-color: var(--orange); }

/* ---------- Trust band (réassurance) ---------- */
.trust-band {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  padding-top: 18px;
}
.trust-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--orange);
}
.trust-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.02em;
}
.trust-num em { color: var(--orange); font-style: normal; }
.trust-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-600);
}
.trust-detail { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: white;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s ease;
}
.service-card:hover { background: var(--gray-50); }
.service-num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 2px;
}
.service-num::before {
  content: '';
  width: 22px;
  height: 1.5px;
  background: var(--orange);
}
.service-title { font-size: 20px; color: var(--blue); font-weight: 800; }
.service-text { font-size: 14px; color: var(--gray-600); line-height: 1.55; flex: 1; }
.service-link { font-size: 13px; font-weight: 700; color: var(--blue); margin-top: 12px; }
.service-link:hover { color: var(--orange); }

/* ---------- Approach (méthode) ---------- */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .approach-grid { grid-template-columns: 1fr; gap: 40px; } }

.approach-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  filter: grayscale(20%);
}
.steps { display: flex; flex-direction: column; gap: 28px; margin-top: 32px; }
.step { display: flex; gap: 20px; }
.step-num {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: white;
  font-weight: 800;
  font-size: 14px;
  border-radius: var(--radius);
}
.step h4 { font-size: 17px; margin-bottom: 4px; color: var(--blue); }
.step p { font-size: 14px; color: var(--gray-600); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--blue);
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255,107,67,0.12);
  right: -200px;
  top: -200px;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(255,107,67,0.18);
  right: -60px;
  top: -60px;
  pointer-events: none;
}
.cta-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) { .cta-inner { grid-template-columns: 1fr; } }
.cta-band h2 { color: white; }
.cta-band p { color: rgba(255,255,255,0.7); margin-top: 12px; max-width: 540px; }
.cta-actions { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }
@media (max-width: 900px) { .cta-actions { justify-content: flex-start; } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }

.footer-brand .brand-name { color: white; }
.footer-brand p { margin-top: 16px; line-height: 1.7; max-width: 320px; }

.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  color: white;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a:hover { color: var(--orange); }

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
}
.trust-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(255,107,67,0.6);
}
.trust-badge-text {
  font-size: 11px;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.85);
}
.trust-badge-text strong { color: white; font-weight: 700; }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { text-decoration: underline; text-decoration-color: rgba(255,255,255,0.2); }

/* ---------- Page header (subpages) ---------- */
.page-hero {
  background: var(--blue-pale);
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange) 0, var(--orange) 80px, transparent 80px);
}
.page-hero .eyebrow { color: var(--orange); }
.breadcrumb {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.breadcrumb a:hover { color: var(--orange); }

/* ---------- Pain / Solution columns ---------- */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}
@media (max-width: 900px) { .pain-grid { grid-template-columns: 1fr; } }
.pain-col { background: white; padding: 40px; }
.pain-col.solution { background: var(--blue); color: white; }
.pain-col.solution h3 { color: white; }
.pain-col.solution li::before { background: var(--orange); }
.pain-col h3 { margin-bottom: 24px; }
.pain-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.pain-col li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--gray-600);
}
.pain-col.solution li { color: rgba(255,255,255,0.85); }
.pain-col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 2px;
  background: var(--orange);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-form {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-600);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  background: white;
  color: var(--gray-800);
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-help { font-size: 12px; color: var(--gray-400); margin-top: 4px; }

.contact-side { display: flex; flex-direction: column; gap: 28px; }
.contact-block {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
}
.contact-block h4 { font-size: 16px; margin-bottom: 14px; color: var(--blue); }
.contact-block p, .contact-block a { font-size: 14px; color: var(--gray-600); line-height: 1.7; }
.contact-block strong { color: var(--gray-800); display: block; }
.contact-block .icon-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}
.contact-block .icon-row:last-child { margin-bottom: 0; }
.contact-block .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--orange);
}

.calendly-placeholder {
  background: var(--blue);
  color: white;
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.calendly-placeholder h4 { color: white; font-size: 16px; }
.calendly-placeholder p { color: rgba(255,255,255,0.75); font-size: 14px; }
.calendly-placeholder .btn { align-self: flex-start; }

/* ---------- Quote / testimonial ---------- */
.quote {
  background: var(--blue-pale);
  border-left: 3px solid var(--orange);
  padding: 32px 36px;
  border-radius: var(--radius);
  margin: 40px 0;
}
.quote p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--blue);
  font-weight: 500;
  font-style: italic;
}
.quote cite {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  font-style: normal;
  color: var(--gray-600);
  font-weight: 600;
}

/* =================================================================
   AXA-INSPIRED EXTENSIONS — Topbar, Mega-menu, Quote module, Products
   ================================================================= */

/* ---------- TOP UTILITY BAR ---------- */
.topbar {
  background: var(--blue-deep);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
}
.segment-switch {
  display: inline-flex;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-pill);
  padding: 3px;
}
.seg-btn {
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  border-radius: var(--radius-pill);
  letter-spacing: 0.3px;
  transition: all 0.2s;
}
.seg-btn.is-active {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 2px 8px rgba(255,107,67,0.35);
}
.seg-btn:not(.is-active):hover { color: #fff; }
.topbar-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  transition: color 0.2s;
}
.topbar-link:hover { color: #fff; }
.topbar-link svg { opacity: 0.7; }
.topbar-link-cta {
  color: var(--orange) !important;
  font-weight: 700;
}
@media (max-width: 720px) {
  .topbar-inner { height: auto; padding: 8px 0; flex-direction: column; gap: 8px; }
  .topbar-links { gap: 14px; font-size: 12px; }
  .topbar-link[href*="Limoges"], .topbar-link:has(svg + :not(:empty)):nth-child(2) { display: none; }
}

/* ---------- NAV AXA-STYLE ---------- */
.nav-axa { gap: 6px; }
.nav-axa > a, .nav-axa .nav-trigger, .nav-axa .nav-item > a, .nav-axa .nav-item > button {
  font-size: 13px;
  font-weight: 500 !important;
  padding: 10px 14px;
  border-radius: var(--radius);
  letter-spacing: 0.6px;
}
.nav-axa > a.nav-cta-axa { font-weight: 700 !important; }
.nav-axa .nav-cta-axa {
  background: var(--orange);
  color: #fff;
  padding: 11px 20px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(255,107,67,0.3);
  transition: all 0.2s;
}
.nav-axa .nav-cta-axa:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255,107,67,0.4);
}
.nav-axa .nav-cta-axa svg { width: 16px; height: 16px; }

/* Mega-menu */
.has-mega { position: relative; }
.nav-mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(820px, 92vw);
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(23,55,93,0.18), 0 4px 12px rgba(23,55,93,0.08);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  z-index: 100;
  border-top: 3px solid var(--orange);
}
.nav-mega-3 { grid-template-columns: 1fr 1fr 1fr; }
.has-mega:hover .nav-mega,
.has-mega:focus-within .nav-mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-col h6 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-200);
}
.mega-col a {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  color: var(--gray-800);
  align-items: flex-start;
  transition: color 0.15s;
}
.mega-col a:hover { color: var(--orange); }
.mega-col a strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.3;
  margin-bottom: 2px;
}
.mega-col a:hover strong { color: var(--orange); }
.mega-col a em {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 400;
}
.mega-ico {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 4px;
  background: var(--blue-pale);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}
.mega-col-cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  border-radius: 4px;
  padding: 22px;
  margin: -28px -32px -28px 0;
  border-radius: 0 4px 4px 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mega-col-cta h6 { color: var(--orange); border: none; padding: 0; margin-bottom: 10px; }
.mega-cta-text {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .nav-mega { display: none; }
  .nav-item.is-open .nav-mega { display: block; position: static; transform: none; width: 100%; opacity: 1; visibility: visible; box-shadow: none; padding: 12px 0; grid-template-columns: 1fr; gap: 10px; border-top: none; }
  .mega-col-cta { margin: 0; border-radius: 4px; }
}

/* ---------- HERO + QUOTE MODULE ---------- */
.hero-axa {
  min-height: 580px;
  padding: 80px 0 100px;
}
.hero-axa-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-axa-text h1 { color: #fff; }
.hero-axa-text h1 em { color: var(--orange); font-style: normal; }
.hero-axa-text .lead {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  max-width: 540px;
  margin: 18px 0 28px;
}
.hero-axa-text .hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.hero-trust-item {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.hero-trust-item strong {
  color: var(--orange);
  font-weight: 800;
}
.hero-trust-sep {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.25);
}

/* Quote module */
.quote-module {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25), 0 8px 20px rgba(0,0,0,0.08);
  overflow: hidden;
}
.quote-tabs {
  display: flex;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  overflow-x: auto;
  scrollbar-width: none;
}
.quote-tabs::-webkit-scrollbar { display: none; }
.qt-btn {
  flex: 1;
  padding: 14px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: all 0.2s;
  min-width: max-content;
}
.qt-btn:hover { color: var(--blue); }
.qt-btn.is-active {
  background: #fff;
  color: var(--blue);
  border-bottom-color: var(--orange);
  font-weight: 700;
}
.quote-body { padding: 28px 28px 24px; }
.quote-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 4px;
}
.quote-sub {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 22px;
}
.quote-form { display: flex; flex-direction: column; gap: 14px; }
.qf-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.qf-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-600);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.qf-row input {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 4px;
  background: #fff;
  color: var(--gray-800);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.qf-row input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,67,0.12);
}
.btn-block { width: 100%; justify-content: center; margin-top: 6px; }
.qf-meta {
  font-size: 12px;
  color: var(--gray-400);
  text-align: center;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .hero-axa-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-axa { padding: 60px 0 70px; }
}

/* ---------- PRODUCTS GRID ---------- */
.section-head-center { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head-center .eyebrow { justify-content: center; }
.section-sub {
  font-size: 16px;
  color: var(--gray-600);
  margin-top: 12px;
  line-height: 1.6;
}
.products-section { background: var(--gray-50); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(23,55,93,0.12);
  border-color: var(--orange);
}
.product-icon {
  width: 56px; height: 56px;
  border-radius: 6px;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.25s;
}
.product-icon svg { width: 30px; height: 30px; }
.product-card:hover .product-icon {
  background: var(--orange);
  color: #fff;
}
.product-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 10px;
}
.product-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}
.product-bullets {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}
.product-bullets li {
  font-size: 13px;
  color: var(--gray-600);
  padding: 6px 0 6px 22px;
  position: relative;
}
.product-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
}
.product-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-200);
}
.btn-link {
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.btn-link:hover { color: var(--orange); }

@media (max-width: 980px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .products-grid { grid-template-columns: 1fr; } }

/* ---------- REASONS / WHY ---------- */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.reason-item {
  padding: 28px 24px;
  border-left: 3px solid var(--orange);
  background: var(--gray-50);
  border-radius: 0 4px 4px 0;
}
.reason-num {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.reason-item h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 8px;
}
.reason-item p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.55;
}
@media (max-width: 900px) { .reasons-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .reasons-grid { grid-template-columns: 1fr; } }

/* ---------- PROCESS ---------- */
.process-section { background: var(--blue); color: #fff; }
.process-section h2 { color: #fff; }
.process-section .eyebrow { color: var(--orange); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 0 16px;
}
.process-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(255,107,67,0.4);
}
.process-step h4 {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
}
@media (max-width: 800px) { .process-grid { grid-template-columns: 1fr; gap: 24px; } }

/* ---------- BUTTON ghost & sm ---------- */
.btn-ghost {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: #fff; }
.btn-sm {
  padding: 9px 16px;
  font-size: 13px;
}

/* ===== PERSONAS GRID ===== */
.personas-section { background: #fafbfc; }
.personas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.persona-card {
  position: relative;
  display: block;
  height: 320px;
  border-radius: 14px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  color: #fff;
  transition: transform .35s ease, box-shadow .35s ease;
  box-shadow: 0 6px 20px rgba(23,55,93,0.10);
}
.persona-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(23,55,93,0.22); }
.persona-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,55,93,0.05) 0%, rgba(23,55,93,0.55) 55%, rgba(23,55,93,0.88) 100%);
}
.persona-content {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 22px 24px;
}
.persona-content h4 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.persona-content p {
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  line-height: 1.45;
}
@media (max-width: 980px) {
  .personas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .personas-grid { grid-template-columns: 1fr; }
  .persona-card { height: 260px; }
}

/* image-band variant */
.image-band-light .image-band-quote { background: rgba(255,107,67,0.92); }

/* ===== PROFESSIONNELS PAGE ===== */

/* seg-btn as anchors */
a.seg-btn { text-decoration: none; }

/* Hero Pro */
.hero-pro {
  position: relative;
  background: linear-gradient(120deg, rgba(23,55,93,0.92) 0%, rgba(23,55,93,0.78) 55%, rgba(23,55,93,0.55) 100%), var(--hero-img, url('photos/tns.jpg')) center / cover no-repeat;
  color: #fff;
  padding: 80px 0 110px;
}
.hero-pro-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.hero-pro-text h1 { color: #fff; font-size: clamp(34px, 4.2vw, 52px); line-height: 1.08; margin: 14px 0 18px; }
.hero-pro-text h1 em { color: var(--orange); font-style: normal; }
.hero-pro-text .lead { color: rgba(255,255,255,0.92); font-size: 17px; line-height: 1.6; max-width: 560px; }
.hero-pro-text .hero-eyebrow { color: var(--orange); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 12px; }
.path-cards { display: grid; gap: 16px; }
.path-card {
  display: block;
  background: #fff;
  color: var(--blue);
  padding: 26px 28px;
  border-radius: 14px;
  text-decoration: none;
  border: 2px solid transparent;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.path-card:hover { transform: translateY(-3px); border-color: var(--orange); box-shadow: 0 14px 36px rgba(0,0,0,0.25); }
.path-card-ico { color: var(--orange); margin-bottom: 12px; width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; background: var(--orange-light); border-radius: 12px; }
.path-card-ico svg { width: 24px; height: 24px; }
.path-card h3 { margin: 0 0 6px; font-size: 22px; color: var(--blue); }
.path-card p { margin: 0 0 12px; color: #4a5870; font-size: 14px; }
.path-card-link { color: var(--orange); font-weight: 700; font-size: 14px; }

/* Advisor section */
.advisor-section { background: #fafbfc; }
.advisor-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.advisor-img img { width: 100%; height: auto; border-radius: 16px; box-shadow: 0 16px 40px rgba(23,55,93,0.18); object-fit: cover; aspect-ratio: 4 / 3; }
.advisor-points { list-style: none; padding: 0; margin: 24px 0 28px; display: grid; gap: 18px; }
.advisor-points li { padding-left: 28px; position: relative; }
.advisor-points li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--orange); font-weight: 800; font-size: 18px; }
.advisor-points strong { display: block; color: var(--blue); font-size: 16px; margin-bottom: 4px; }
.advisor-points p { margin: 0; color: #4a5870; font-size: 14px; line-height: 1.55; }
.advisor-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-ghost-blue { background: transparent; color: var(--blue); border: 2px solid var(--blue); padding: 10px 22px; border-radius: var(--radius); font-weight: 700; text-decoration: none; transition: all .2s; }
.btn-ghost-blue:hover { background: var(--blue); color: #fff; }

/* Orientation */
.orient-section { background: #fff; }
.orient-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.orient-card {
  background: #fafbfc;
  border: 1px solid #e6eaf0;
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.orient-card-alt { background: linear-gradient(135deg, #17375D 0%, #1f4775 100%); color: #fff; border-color: transparent; }
.orient-card-alt h3, .orient-card-alt .btn-link { color: #fff; }
.orient-card-alt p { color: rgba(255,255,255,0.85); }
.orient-card-alt .btn-link { color: var(--orange); }
.orient-num {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.orient-card h3 { margin: 0 0 8px; font-size: 22px; }
.orient-card p { margin: 0 0 16px; line-height: 1.55; }

/* Guide */
.guide-section { background: #fafbfc; }
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.guide-card {
  display: block;
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  text-decoration: none;
  color: var(--blue);
  border: 1px solid #e6eaf0;
  transition: transform .25s ease, box-shadow .25s ease;
}
.guide-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(23,55,93,0.12); }
.guide-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  background: rgba(255,107,67,0.10);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.guide-card h4 { margin: 0 0 10px; font-size: 18px; line-height: 1.35; color: var(--blue); }
.guide-card p { margin: 0 0 14px; color: #4a5870; font-size: 14px; line-height: 1.55; }
.guide-card-link { color: var(--orange); font-weight: 700; font-size: 14px; }

/* FAQ */
.faq-section { background: #fff; }
.faq-container { max-width: 880px; }
.faq-list { margin-top: 32px; display: grid; gap: 12px; }
.faq-item {
  background: #fafbfc;
  border: 1px solid #e6eaf0;
  border-radius: 12px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  color: var(--blue);
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--orange);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  transition: transform .25s ease;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] { background: #fff; box-shadow: 0 4px 14px rgba(23,55,93,0.08); }
.faq-answer {
  padding: 0 22px 20px;
  color: #4a5870;
  line-height: 1.6;
  font-size: 15px;
}

/* Responsive pro */
@media (max-width: 980px) {
  .hero-pro-inner { grid-template-columns: 1fr; gap: 32px; }
  .advisor-grid { grid-template-columns: 1fr; gap: 32px; }
  .orient-grid { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: 1fr; }
}
