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

:root {
  --blue: #3B82F6;
  --blue-dark: #2563EB;
  --navy: #1E3A5F;
  --cream: #F5F2EB;
  --sage: #9FB8A5;
  --sage-light: #C8D9CC;
  --coral: #E89B8E;
  --ochre: #C9A060;
  --charcoal: #2D3748;
  --gray-light: #E5E7EB;
  --gray-muted: #6B7280;
  --gray-text: #4B5563;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  background: var(--white);
  overflow-x: hidden;
}

a { color: inherit; }

/* NAV */
nav {
  padding: 18px 0;
  position: fixed;
  inset: 0 0 auto;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.brand-text {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.4px;
  line-height: 1.2;
}

.brand-text span { color: var(--blue); }

.brand-separator {
  width: 1px;
  height: 22px;
  background: linear-gradient(to bottom, transparent, #CBD5E1 20%, #CBD5E1 80%, transparent);
  opacity: 0.7;
  flex: 0 0 auto;
}

.legal-brand {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  padding: 10px 20px;
  border: 2px solid var(--charcoal);
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--charcoal);
  color: var(--white);
}

.nav-subtle {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-muted);
  text-decoration: none;
  padding: 10px 6px;
  white-space: nowrap;
  transition: color 0.18s ease;
  position: relative;
}

.nav-subtle:hover { color: var(--navy); }

.nav-subtle.active {
  color: var(--navy);
}

.nav-subtle.active::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 4px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

/* HERO (home) */
.hero {
  padding: 118px 0 64px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.hero-text { padding-right: 20px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  background: rgba(59,130,246,0.08);
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -1.6px;
  max-width: 520px;
}

.hero-text p {
  font-size: 18px;
  color: var(--gray-muted);
  margin-bottom: 36px;
  max-width: 470px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
}

.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59,130,246,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--gray-light);
}

.btn-outline:hover { border-color: var(--charcoal); }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px;
}

.hero-illustration {
  width: 100%;
  max-width: 430px;
  height: auto;
  position: relative;
  z-index: 2;
}

.hero-bg-shape {
  position: absolute;
  top: -40px;
  right: -80px;
  width: 470px;
  height: 470px;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage) 100%);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.43;
}

.hero-accent-1 {
  position: absolute;
  top: 42px;
  right: 70px;
  width: 80px;
  height: 80px;
  background: var(--coral);
  border-radius: 50%;
  opacity: 0.5;
  z-index: 0;
}

.hero-accent-2 {
  position: absolute;
  bottom: 116px;
  left: 12px;
  width: 50px;
  height: 50px;
  background: var(--ochre);
  border-radius: 50%;
  opacity: 0.42;
  z-index: 0;
}

/* PAGE HERO (subpages) */
.page-hero {
  padding: 138px 0 56px;
  background: var(--cream);
  position: relative;
}

.page-hero-inner {
  max-width: 760px;
}

.page-hero .crumb {
  font-size: 13px;
  color: var(--gray-muted);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-hero .crumb a {
  color: var(--gray-muted);
  text-decoration: none;
  font-weight: 600;
}

.page-hero .crumb a:hover { color: var(--navy); }

.page-hero h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.14;
  color: var(--navy);
  letter-spacing: -1.2px;
  margin-bottom: 16px;
  max-width: 640px;
}

.page-hero .lead {
  font-size: 17px;
  color: var(--gray-muted);
  max-width: 560px;
  line-height: 1.7;
}

.wave-top {
  width: 100%;
  height: 100px;
  display: block;
  margin-top: -2px;
}

/* SERVICE ATTRIBUTION (pharmacist responsibility band) */
.service-attribution {
  background: var(--navy);
  color: var(--white);
  padding: 42px 0;
}

.service-attribution-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 34px;
  align-items: center;
}

.service-attribution h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.4px;
  max-width: 720px;
}

.service-attribution p {
  color: rgba(255,255,255,0.92);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  max-width: 520px;
}

/* SECTION HEAD (shared) */
.section-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-kicker {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-head h2 {
  font-size: 34px;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}

.section-head p {
  color: var(--gray-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* SUMMARY (home cards linking to subpages) */
.summary {
  background: var(--white);
  padding: 90px 0 100px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.summary-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 18px;
  padding: 32px 30px 30px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.summary-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59,130,246,0.4);
  box-shadow: 0 16px 36px rgba(0,0,0,0.06);
}

.summary-thumb {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  overflow: hidden;
  position: relative;
}

.summary-thumb.bg-cream,
.summary-thumb.bg-sky,
.summary-thumb.bg-sage {
  background: var(--cream);
}

.summary-thumb img {
  max-width: 75%;
  max-height: 88%;
  height: auto;
}

.summary-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.summary-card p {
  font-size: 15px;
  color: var(--gray-muted);
  line-height: 1.6;
  margin-bottom: 22px;
  flex-grow: 1;
}

.summary-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.summary-card:hover .summary-link { gap: 10px; }

.summary-link svg {
  width: 14px;
  height: 14px;
}

/* FEATURES (services page) */
.features {
  background: var(--white);
  padding: 80px 0 100px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.features-grid.features-grid-2x2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.feature-card {
  background: var(--cream);
  padding: 36px 32px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--blue);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: var(--gray-muted);
  line-height: 1.6;
}

.feature-card ul {
  list-style: none;
  margin-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 12px;
}

.feature-card li {
  font-size: 14px;
  color: var(--charcoal);
  padding: 7px 0;
}

.feature-card li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  margin-right: 9px;
  transform: translateY(-1px);
}

/* TIMING */
.timing {
  background: var(--cream);
  padding: 88px 0;
}

.timing-box {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 20px;
  padding: 34px;
}

.timing-number {
  color: var(--blue);
  font-size: 82px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -4px;
}

.timing-number span {
  display: block;
  color: var(--gray-muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: 8px;
  line-height: 1.45;
}

.timing-copy h2 {
  font-size: 30px;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.6px;
  margin-bottom: 10px;
}

.timing-copy p {
  color: var(--gray-muted);
  font-size: 16px;
  max-width: 640px;
}

/* CTA (sage band) */
.cta {
  background: var(--sage);
  padding: 80px 0;
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-illustration {
  display: flex;
  justify-content: center;
}

.cta-illustration img {
  width: 100%;
  max-width: 320px;
  border-radius: 16px;
}

.cta-text h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.6px;
}

.cta-text p {
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 28px;
  max-width: 430px;
}

.cta .btn-primary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.cta .btn-primary:hover {
  background: var(--cream);
  border-color: var(--cream);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* COOKIE BANNER (Loi 25 consent) */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  box-shadow: 0 -8px 32px rgba(30, 58, 95, 0.10);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 220ms ease, transform 220ms ease;
}

.cookie-banner-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner-hidden {
  opacity: 0;
  transform: translateY(100%);
}

.cookie-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.cookie-banner-text {
  color: var(--charcoal);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  max-width: 760px;
}

.cookie-banner-text a {
  color: var(--blue);
  text-decoration: underline;
}

.cookie-banner-text a:hover {
  color: var(--navy);
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
  letter-spacing: -0.1px;
}

.cookie-btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.cookie-btn-primary:hover {
  background: #15293f;
  border-color: #15293f;
}

.cookie-btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-light);
}

.cookie-btn-secondary:hover {
  border-color: var(--navy);
}

@media (max-width: 720px) {
  .cookie-banner-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .cookie-banner-actions {
    justify-content: stretch;
  }
  .cookie-btn {
    flex: 1;
  }
}

/* HOME FLOW (Comment ça fonctionne? on homepage) */
.home-flow {
  padding: 88px 0 24px;
  background: var(--white);
}

.home-flow .section-head {
  margin-bottom: 48px;
}

.home-flow .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}

@media (max-width: 880px) {
  .home-flow .steps {
    grid-template-columns: 1fr;
  }
}

/* APPOINTMENT STRIP (primary "Prenez rendez-vous" band on homepage) */
.appointment-strip {
  background: var(--cream);
  padding: 40px 0;
}

.appointment-strip .subcta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.appointment-strip h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.4px;
  margin: 0;
}

@media (max-width: 760px) {
  .appointment-strip .subcta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* CORPORATE STRIP (thin B2B teaser on homepage) */
.corporate-strip {
  background: var(--navy);
  padding: 32px 0;
  color: var(--white);
}

.corporate-strip .subcta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.corporate-strip h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
  margin: 0;
}

.corporate-strip .btn-primary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.corporate-strip .btn-primary:hover {
  background: rgba(255,255,255,0.92);
  color: var(--navy);
}

@media (max-width: 760px) {
  .corporate-strip .subcta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* SUB-CTA BAR (small banner on subpages) */
.subcta {
  background: var(--navy);
  padding: 56px 0;
  color: var(--white);
}

.subcta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.subcta h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.4px;
  margin-bottom: 6px;
}

.subcta p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  max-width: 520px;
}

.subcta .btn-primary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.subcta .btn-primary:hover {
  background: var(--cream);
  border-color: var(--cream);
}

/* CROSSLINKS (subpage navigation between sub-pages) */
.crosslinks {
  background: var(--cream);
  padding: 72px 0 88px;
}

.crosslinks h2 {
  text-align: center;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 36px;
  letter-spacing: -0.4px;
}

.crosslinks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.crosslink {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 14px;
  padding: 22px 26px;
  text-decoration: none;
  color: inherit;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  transition: all 0.2s ease;
}

.crosslink:hover {
  transform: translateY(-2px);
  border-color: rgba(59,130,246,0.4);
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}

.crosslink .crosslink-kicker {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.crosslink strong {
  display: block;
  font-size: 16px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 2px;
}

.crosslink span {
  font-size: 14px;
  color: var(--gray-muted);
}

.crosslink-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(59,130,246,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.crosslink-arrow svg {
  width: 16px;
  height: 16px;
}

/* CONTACT */
.contact {
  background: var(--white);
  padding: 88px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  border: 1px solid var(--gray-light);
  border-radius: 16px;
  padding: 28px;
}

.contact-card h3 {
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--gray-muted);
  font-size: 15px;
  margin-bottom: 12px;
}

.contact-card a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}

.contact-card a:last-of-type {
  margin-bottom: 0;
}

.contact-note {
  display: block;
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--gray-muted);
  line-height: 1.5;
  font-style: italic;
}

.legal-note {
  margin-top: 32px;
  color: var(--gray-muted);
  font-size: 13px;
  text-align: center;
}

.legal-band {
  padding: 40px 0 64px;
}

.legal-band .legal-note {
  margin-top: 0;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* LEGAL PAGES (Politique de confidentialité, Conditions d'utilisation) */
.legal-page {
  padding: 64px 0 96px;
  background: var(--white);
}

.legal-page .container {
  max-width: 820px;
}

.legal-page h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.3px;
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-page h2:first-child {
  margin-top: 0;
}

.legal-page h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal);
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-page p {
  color: var(--gray-text);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.legal-page ul {
  margin: 0 0 18px 22px;
  padding: 0;
  list-style: disc;
}

.legal-page li {
  color: var(--gray-text);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 6px;
}

.legal-page a {
  color: var(--blue);
  text-decoration: underline;
}

.legal-page a:hover {
  color: var(--navy);
}

/* CONSULTATION VIRTUELLE */
.virtual {
  background: var(--white);
  padding: 80px 0 100px;
}

.virtual-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}

.virtual-intro-text .section-kicker { margin-bottom: 14px; }

.virtual-intro-text h2 {
  font-size: 32px;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.7px;
  margin-bottom: 16px;
}

.virtual-intro-text p {
  color: var(--gray-muted);
  font-size: 16px;
  max-width: 480px;
  margin-bottom: 22px;
}

.virtual-illustration {
  display: flex;
  justify-content: center;
  position: relative;
}

.virtual-illustration::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background: linear-gradient(135deg, #DBE9FE 0%, #BFDBFE 100%);
  border-radius: 50%;
  opacity: 0.55;
  z-index: 0;
}

.virtual-illustration img {
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 1;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.step {
  background: var(--cream);
  border-radius: 16px;
  padding: 28px 26px;
  position: relative;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.step p {
  font-size: 14.5px;
  color: var(--gray-muted);
  line-height: 1.6;
}

.options-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 32px;
}

.options-head h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}

.options-head p {
  color: var(--gray-muted);
  font-size: 15px;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.option-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 26px 22px;
  transition: all 0.25s ease;
}

.option-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}

.option-icon {
  width: 40px;
  height: 40px;
  color: var(--blue);
  margin-bottom: 14px;
}

.option-card h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}

.option-card p {
  font-size: 14px;
  color: var(--gray-muted);
  line-height: 1.55;
}

/* VOYAGE CORPORATIF */
.corporate {
  background: var(--white);
  padding: 80px 0 100px;
}

.corporate-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.corporate-illustration {
  display: flex;
  justify-content: center;
  position: relative;
}

.corporate-illustration::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage) 100%);
  border-radius: 50%;
  opacity: 0.6;
  z-index: 0;
}

.corporate-illustration img {
  width: 100%;
  max-width: 380px;
  position: relative;
  z-index: 1;
}

.corporate-text .section-kicker { margin-bottom: 14px; }

.corporate-text h2 {
  font-size: 32px;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.7px;
  margin-bottom: 16px;
}

.corporate-lead {
  color: var(--gray-muted);
  font-size: 16px;
  margin-bottom: 28px;
  max-width: 500px;
}

.corporate-list {
  list-style: none;
  margin-bottom: 32px;
}

.corporate-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.corporate-list li:last-child { border-bottom: none; }

.corporate-list-icon {
  width: 28px;
  height: 28px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.corporate-list strong {
  display: block;
  color: var(--navy);
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 2px;
}

.corporate-list span {
  font-size: 14.5px;
  color: var(--gray-muted);
  line-height: 1.55;
}

.corporate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.corporate-phone {
  font-size: 14.5px;
  color: var(--gray-muted);
}

.corporate-phone a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

/* FOOTER */
footer {
  background: var(--charcoal);
  padding: 48px 0 36px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-top: 14px;
  max-width: 360px;
  line-height: 1.6;
}

footer .brand-text { color: var(--white); }

.footer-links {
  display: flex;
  gap: 48px;
}

.footer-links-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links-col a,
.footer-links-col span {
  display: block;
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-links-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .nav-subtle { padding: 10px 4px; font-size: 13.5px; }
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .hero-text { text-align: center; padding-right: 0; }
  .hero-text h1 { margin-left: auto; margin-right: auto; }
  .hero-text p { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; min-height: 300px; }
  .hero-bg-shape { right: 50%; transform: translateX(50%); width: 330px; height: 330px; top: 10px; }
  .hero-accent-1 { right: 24%; }
  .hero-accent-2 { left: 18%; }
  .cta-content { grid-template-columns: 1fr; text-align: center; }
  .cta-text p { margin-left: auto; margin-right: auto; }
  .footer-content { flex-direction: column; }
  .timing-box { grid-template-columns: 1fr; text-align: center; }
  .timing-copy p { margin-left: auto; margin-right: auto; }
  .service-attribution-inner { grid-template-columns: 1fr; text-align: center; }
  .service-attribution h2,
  .service-attribution p { margin-left: auto; margin-right: auto; }
  .virtual-intro { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .virtual-intro-text p { margin-left: auto; margin-right: auto; }
  .virtual-illustration { order: -1; }
  .options-grid { grid-template-columns: repeat(2, 1fr); }
  .corporate-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .corporate-lead { margin-left: auto; margin-right: auto; }
  .corporate-illustration { order: -1; }
  .corporate-list li { grid-template-columns: 1fr; gap: 4px; }
  .corporate-list-icon { margin: 0 auto 4px; }
  .corporate-actions { justify-content: center; }
  .summary-grid { grid-template-columns: 1fr; gap: 20px; }
  .subcta-inner { grid-template-columns: 1fr; text-align: center; }
  .subcta p { margin-left: auto; margin-right: auto; }
  .crosslinks-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 36px; }
}

@media (max-width: 900px) {
  .nav-subtle:not(.always-visible) { display: none; }
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .brand {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    max-width: calc(100vw - 178px);
  }
  .brand-separator { display: none; }
  .brand-text { font-size: 16px; }
  .legal-brand {
    display: block;
    font-size: 16px;
    line-height: 1.2;
  }
  .hero { padding: 104px 0 44px; }
  .hero-text h1 { font-size: 36px; letter-spacing: -1px; }
  .hero-text p { font-size: 16px; }
  .hero-illustration { max-width: 260px; }
  .hero-bg-shape { width: 295px; height: 295px; top: 0; }
  .hero-accent-1 { width: 44px; height: 44px; top: 28px; right: 23%; }
  .hero-accent-2 { width: 32px; height: 32px; bottom: 48px; left: 16%; }
  .page-hero { padding: 120px 0 48px; }
  .page-hero h1 { font-size: 32px; letter-spacing: -0.8px; }
  .features-grid, .contact-grid { grid-template-columns: 1fr; }
  .features { padding: 56px 0 72px; }
  .section-head h2, .cta-text h2, .timing-copy h2,
  .virtual-intro-text h2, .corporate-text h2 { font-size: 28px; }
  .service-attribution { padding: 34px 0; }
  .service-attribution h2 { font-size: 32px; letter-spacing: -0.8px; }
  .service-attribution p { font-size: 16px; }
  .service-attribution-inner { grid-template-columns: 1fr; gap: 18px; }
  .options-grid { grid-template-columns: 1fr; }
  .virtual { padding: 56px 0 72px; }
  .corporate { padding: 56px 0 72px; }
  .summary { padding: 56px 0 72px; }
  .virtual-illustration::before,
  .corporate-illustration::before { width: 280px; height: 280px; }
  .subcta { padding: 44px 0; }
  .subcta h3 { font-size: 22px; }
  .crosslinks { padding: 56px 0 72px; }
  .footer-links { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 440px) {
  .container { padding: 0 18px; }
  .brand-text { font-size: 15px; }
  .legal-brand { max-width: 220px; font-size: 15px; }
  .nav-link { padding: 9px 12px; font-size: 13px; }
  .hero-text h1 { font-size: 30px; }
  .page-hero h1 { font-size: 28px; }
  .service-attribution h2 { font-size: 28px; letter-spacing: -0.6px; }
  .hero-actions { align-items: stretch; }
  .btn-primary, .btn-outline { width: 100%; }
  .timing-number { font-size: 64px; }
  .corporate-actions { justify-content: stretch; }
  .corporate-actions .btn-primary { width: 100%; }
}
