:root {
  --bg: #f7f3ed;
  --ink: #1a1a1a;
  --muted: #6f6a63;
  --gold: #f5a623;
  --gold-deep: #d98d16;
  --copper: #b86d3c;
  --dark: #191919;
  --shadow: 0 18px 60px rgba(23, 18, 12, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(245, 166, 35, 0.12), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(184, 109, 60, 0.12), transparent 24%),
    linear-gradient(180deg, #fbf8f3 0%, #f5efe7 100%);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.topbar {
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
  background: rgba(255, 255, 255, 0.36);
}

.topbar-inner,
.topbar-actions,
.nav-solutions,
.detail-grid,
.mini-links,
.process-list,
.articles-grid {
  display: flex;
}

.topbar-inner {
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

.topbar-copy,
.topbar-actions a {
  color: var(--muted);
}

.topbar-actions {
  gap: 1rem;
}

body[data-page="index"] .topbar {
  display: none;
}

body[data-page="index"] .site-header {
  background: rgba(251, 248, 243, 0.92);
}

.home-ticker {
  position: relative;
  overflow: hidden;
  padding: 0.95rem 0;
  background: linear-gradient(90deg, #1b1b1b 0%, #2a2724 50%, #1b1b1b 100%);
  color: #f7efe3;
  border-bottom: 1px solid rgba(245, 166, 35, 0.18);
}

.home-ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}

.home-ticker__group {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  padding-right: 2.2rem;
  white-space: nowrap;
}

.home-ticker__group span {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-ticker__group span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  box-shadow: 0 0 14px rgba(245, 166, 35, 0.45);
}

.home-ticker__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 96px;
  z-index: 1;
  pointer-events: none;
}

.home-ticker__fade--left {
  left: 0;
  background: linear-gradient(90deg, rgba(27, 27, 27, 1) 0%, rgba(27, 27, 27, 0) 100%);
}

.home-ticker__fade--right {
  right: 0;
  background: linear-gradient(270deg, rgba(27, 27, 27, 1) 0%, rgba(27, 27, 27, 0) 100%);
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(20px);
  background: rgba(247, 243, 237, 0.82);
  border-bottom: 1px solid rgba(26, 26, 26, 0.05);
}

.header-bar,
.desktop-nav,
.header-actions,
.hero-actions,
.hero-metrics,
.trust-grid,
.solutions-grid,
.why-points,
.case-grid,
.testimonial-rail,
.cookie-actions,
.form-grid,
.footer-grid,
.footer-bottom {
  display: flex;
}

.header-bar {
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

.brand img,
.footer-logo {
  height: 44px;
  width: auto;
}

.desktop-nav,
.header-actions {
  align-items: center;
}

.desktop-nav {
  gap: 1.5rem;
  font-size: 0.95rem;
}

.nav-solutions {
  position: relative;
  align-items: center;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 1rem;
  width: min(900px, 90vw);
  padding: 1.2rem;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-solutions:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mega-col h4 {
  margin: 0 0 0.8rem;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
}

.mega-col a {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--muted);
}

.desktop-nav a,
.header-phone {
  color: var(--muted);
  transition: color 0.25s ease;
}

.desktop-nav a:hover,
.header-phone:hover {
  color: var(--ink);
}

.header-actions {
  gap: 0.85rem;
}

.lang-switcher {
  position: relative;
}

.lang-switcher__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  cursor: pointer;
}

.flag-badge {
  display: inline-block;
  width: 18px;
  height: 12px;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
  flex: 0 0 auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.flag-badge--fr {
  background: linear-gradient(90deg, #1b4db3 0 33.33%, #ffffff 33.33% 66.66%, #d7373f 66.66% 100%);
}

.flag-badge--lu {
  background: linear-gradient(180deg, #d7373f 0 33.33%, #ffffff 33.33% 66.66%, #73c5eb 66.66% 100%);
}

.flag-badge--de {
  background: linear-gradient(180deg, #111111 0 33.33%, #d7373f 33.33% 66.66%, #e0b323 66.66% 100%);
}

.flag-badge--gb {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3CclipPath id='t'%3E%3Cpath d='M0,0 v30 h60 v-30 z'/%3E%3C/clipPath%3E%3Cpath d='M0,0 v30 h60 v-30 z' fill='%23012169'/%3E%3Cpath d='M0,0 L60,30 M60,0 L0,30' stroke='%23fff' stroke-width='6'/%3E%3Cpath d='M0,0 L60,30 M60,0 L0,30' clip-path='url(%23t)' stroke='%23C8102E' stroke-width='4'/%3E%3Cpath d='M30,0 v30 M0,15 h60' stroke='%23fff' stroke-width='10'/%3E%3Cpath d='M30,0 v30 M0,15 h60' stroke='%23C8102E' stroke-width='6'/%3E%3C/svg%3E");
}

.flag-badge--pt {
  background: linear-gradient(90deg, #006600 0 40%, #ff0000 40% 100%);
}

.flag-badge--es {
  background: linear-gradient(180deg, #c60b1e 0 25%, #f1bf00 25% 75%, #c60b1e 75% 100%);
}

.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  display: none;
  min-width: 180px;
  padding: 0.45rem;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.lang-switcher__menu.is-open {
  display: grid;
}

.lang-switcher__menu button {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.8rem;
  border: 0;
  background: transparent;
  text-align: left;
  border-radius: 12px;
  cursor: pointer;
}

.lang-switcher__menu button:hover {
  background: rgba(26, 26, 26, 0.05);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  box-shadow: 0 14px 30px rgba(245, 166, 35, 0.28);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(26, 26, 26, 0.12);
}

.button-full {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.mobile-menu {
  display: none;
  padding: 0 1rem 1rem;
  border-top: 1px solid rgba(26, 26, 26, 0.06);
}

.mobile-lang {
  padding-top: 1rem;
}

.lang-switcher__toggle--mobile {
  width: 100%;
  justify-content: center;
}

.lang-switcher__menu--mobile {
  position: static;
  margin-top: 0.5rem;
  min-width: 100%;
  box-shadow: none;
}

.mobile-menu a {
  display: block;
  padding: 0.9rem 0;
}

.mobile-submenu {
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.mobile-submenu__toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.mobile-submenu__toggle::after {
  content: "+";
  font-size: 1.1rem;
  color: var(--muted);
}

.mobile-submenu__toggle[aria-expanded="true"]::after {
  content: "-";
}

.mobile-submenu__panel {
  display: none;
  padding-bottom: 0.65rem;
}

.mobile-submenu__panel.is-open {
  display: block;
}

.mobile-submenu__panel a {
  padding: 0.65rem 0 0.65rem 1rem;
  color: var(--muted);
}

.mobile-cta {
  margin-top: 0.75rem;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 3rem;
}

.hero-grid,
.why-layout,
.resource-layout,
.contact-layout,
.path-grid,
.contact-stack,
.page-hero-grid {
  display: grid;
}

.hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-grid--home {
  grid-template-columns: minmax(0, 1fr);
  justify-items: stretch;
}

.page-hero {
  padding: 4.5rem 0 2rem;
}

.page-hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.hero-copy h1,
.page-copy h1,
.section-head h2,
.why-copy h2,
.resource-feature h2,
.contact-copy h2,
.path-card h3,
.solution-card h3,
.why-card h3,
.case-card h3,
.resource-card h3,
.testimonial-meta strong,
.site-footer h3,
.signal-card h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.page-copy h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4.8vw, 3.6rem);
  letter-spacing: -0.06em;
  line-height: 1.03;
}

.hero-lead,
.page-copy p,
.section-head p,
.solution-card p,
.why-copy p,
.why-card p,
.case-card p,
.testimonial-card p,
.resource-feature p,
.resource-card p,
.contact-copy p,
.site-footer p,
.trust-item p,
.signal-card p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-lead {
  max-width: 48rem;
  margin: 1.3rem 0 0;
  font-size: 1.1rem;
}

.hero-copy--home {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 0;
  width: 100%;
  max-width: none;
}

.hero-copy--home h1 {
  max-width: none;
  width: 100%;
}

.eyebrow,
.signal-tag,
.case-tag,
.resource-label {
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.06);
  color: var(--dark);
}

.eyebrow-dark {
  background: rgba(245, 166, 35, 0.14);
  color: #f7d188;
}

.hero-actions {
  gap: 0.9rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}

.hero-metrics {
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-metrics--inline {
  margin-top: 2.2rem;
  width: 100%;
  justify-content: space-between;
}

.hero-metrics div,
.trust-item,
.solution-card,
.why-card,
.case-card,
.testimonial-card,
.resource-card,
.contact-form,
.contact-copy,
.resource-feature,
.hero-panel,
.signal-card {
  backdrop-filter: blur(14px);
}

.hero-metrics div {
  flex: 1 1 220px;
  min-width: 170px;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(26, 26, 26, 0.06);
  box-shadow: var(--shadow);
}

.hero-metrics strong,
.trust-value {
  display: block;
  font-family: "Sora", sans-serif;
}

.hero-metrics strong {
  font-size: 1.55rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-panel {
  padding: 2rem;
  border-radius: 40px;
  background: linear-gradient(160deg, rgba(26, 26, 26, 0.98) 0%, rgba(44, 39, 34, 0.94) 100%);
  box-shadow: 0 30px 80px rgba(20, 15, 10, 0.25);
  color: #fff;
}

.hero-panel--home {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  justify-content: space-between;
}

.hero-panel__intro {
  padding: 1.45rem 1.5rem;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.16), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-panel__intro h2 {
  margin: 0.65rem 0 0.5rem;
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
}

.hero-panel__intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.signal-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.18), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.signal-card h2 {
  margin-top: 0.75rem;
  font-size: 1.25rem;
}

.signal-card p,
.path-card p,
.path-card a,
.site-footer a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.72);
}

.path-grid {
  gap: 1rem;
  margin-top: 1rem;
}

.path-stack {
  display: grid;
  gap: 0.9rem;
}

.path-card {
  padding: 1.3rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.path-card--row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1.2rem;
}

.path-card__index {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.path-card__body p {
  margin: 0.35rem 0 0;
}

.path-step {
  display: inline-flex;
  font-family: "Sora", sans-serif;
  color: rgba(255, 255, 255, 0.48);
}

.path-card a {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.accent-gold {
  box-shadow: inset 3px 0 0 var(--gold);
}

.accent-slate {
  box-shadow: inset 3px 0 0 #c7c7c7;
}

.accent-copper {
  box-shadow: inset 3px 0 0 var(--copper);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero-orb-a {
  top: 2rem;
  left: -8rem;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.35), transparent 70%);
}

.hero-orb-b {
  right: -8rem;
  bottom: -6rem;
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, rgba(184, 109, 60, 0.24), transparent 72%);
}

.trust-strip {
  padding: 1rem 0 3rem;
}

.trust-grid,
.solutions-grid,
.case-grid,
.testimonial-rail,
.footer-grid,
.footer-bottom {
  gap: 1rem;
}

.trust-grid,
.solutions-grid,
.case-grid,
.why-points,
.footer-grid,
.footer-bottom {
  flex-wrap: wrap;
}

.trust-item {
  flex: 1 1 220px;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(26, 26, 26, 0.06);
}

.trust-value {
  margin-bottom: 0.6rem;
  font-size: 1.7rem;
}

.section {
  padding: 5.5rem 0;
}

.section-cta-footer {
  padding-bottom: 0;
}

.section-light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.72));
}

.section-dark {
  background: radial-gradient(circle at top right, rgba(245, 166, 35, 0.16), transparent 25%), linear-gradient(135deg, #151515 0%, #23201e 100%);
  color: #fff;
}

.section-dark-soft {
  background: radial-gradient(circle at top right, rgba(245, 166, 35, 0.14), transparent 24%), linear-gradient(135deg, #24211f 0%, #35302b 100%);
  color: #fff;
}

.section-soft {
  background:
    radial-gradient(circle at top right, rgba(245, 166, 35, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(255, 248, 239, 0.9) 0%, rgba(250, 244, 236, 0.96) 100%);
}

.section-head {
  max-width: 54rem;
  margin-bottom: 2rem;
}

.section-head h2,
.why-copy h2,
.resource-feature h2,
.contact-copy h2 {
  font-size: clamp(1.7rem, 3.1vw, 2.6rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.solution-card,
.case-card {
  flex: 1 1 280px;
}

.page-sidecard,
.detail-card,
.article-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(26, 26, 26, 0.07);
  box-shadow: var(--shadow);
}

.page-sidecard h3,
.detail-card h2,
.article-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
}

.path-card h3,
.solution-card h3,
.why-card h3,
.case-card h3,
.resource-card h3,
.testimonial-meta strong,
.site-footer h3,
.page-sidecard h3,
.article-card h3 {
  font-size: 1.05rem;
}

.detail-card h2 {
  font-size: 1.4rem;
}

.page-sidecard p,
.detail-card p,
.article-card p {
  color: var(--muted);
  line-height: 1.65;
}

.solution-card,
.why-card,
.case-card,
.testimonial-card,
.resource-card,
.contact-form,
.contact-copy,
.resource-feature {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(26, 26, 26, 0.07);
  box-shadow: var(--shadow);
}

.solution-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.18), rgba(184, 109, 60, 0.22));
  font-family: "Sora", sans-serif;
  font-weight: 800;
}

.solution-card ul {
  margin: 1rem 0 1.3rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.button-card {
  margin-top: 0.35rem;
  align-self: flex-start;
}

.solution-card li + li {
  margin-top: 0.45rem;
}

.why-layout,
.resource-layout,
.contact-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.detail-grid {
  gap: 1rem;
  flex-wrap: wrap;
}

.detail-grid > * {
  flex: 1 1 320px;
}

.detail-list,
.linked-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.linked-list a {
  color: var(--ink);
}

.mini-links,
.process-list,
.articles-grid {
  gap: 0.85rem;
  flex-wrap: wrap;
}

.mini-link {
  display: inline-flex;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
}

.mini-link--accent {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  border-color: transparent;
  color: #fff;
}

.mini-links--stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.process-list > div,
.article-card {
  flex: 1 1 180px;
}

.process-list > div {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(26, 26, 26, 0.06);
}

.article-card a {
  color: var(--ink);
  font-weight: 700;
}

.why-points {
  gap: 1rem;
}

.why-card {
  flex: 1 1 240px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.09);
}

.why-card p,
.resource-feature p {
  color: rgba(255, 255, 255, 0.72);
}

.why-card--soft {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(26, 26, 26, 0.06);
}

.why-card--soft h3 {
  color: var(--ink);
}

.why-card--soft p {
  color: var(--muted);
}

.why-card--soft .mini-link {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(26, 26, 26, 0.08);
  color: var(--ink);
}

.why-card--contrast {
  background: rgba(18, 17, 16, 0.34);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.why-card--contrast h3 {
  color: #fff;
}

.why-card--contrast p {
  color: rgba(255, 255, 255, 0.86);
}

.why-card--contrast .mini-link {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.why-card--accent {
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.24) 0%, rgba(184, 109, 60, 0.32) 100%);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 45px rgba(94, 50, 24, 0.12);
}

.why-card--accent h3 {
  color: #fff;
}

.why-card--accent p {
  color: rgba(255, 245, 238, 0.9);
}

.why-card--accent .mini-link {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.testimonial-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  overflow: visible;
  padding-bottom: 0;
  scroll-snap-type: none;
}

.testimonial-card {
  min-width: 0;
  width: 100%;
  scroll-snap-align: none;
}

.testimonial-meta {
  display: grid;
  gap: 0.2rem;
  margin-top: 1.2rem;
}

.testimonial-meta span,
.contact-label,
.contact-form .consent span {
  color: var(--muted);
}

.resource-feature {
  background: linear-gradient(155deg, rgba(26, 26, 26, 0.95), rgba(58, 50, 42, 0.94));
  color: #fff;
}

.resource-list {
  display: grid;
  gap: 1rem;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 2.4rem max(1.5rem, calc((100vw - var(--container)) / 2 + 1rem));
  border-radius: 0;
  background: linear-gradient(135deg, #1d1b19 0%, #35302a 100%);
  color: #fff;
  box-shadow: none;
}

.cta-banner__copy {
  max-width: 720px;
}

.cta-banner__copy h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.cta-banner__copy p {
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.cta-banner .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.cta-banner__actions {
  display: flex;
  gap: 0.9rem;
  width: 100%;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cta-banner__actions .button {
  flex: 1 1 240px;
}

.contact-stack {
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-label {
  display: block;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.contact-value {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.86);
}

.form-grid {
  gap: 1rem;
}

.contact-form label {
  display: block;
  margin-bottom: 1rem;
}

.contact-form label > span {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1.5px solid rgba(26, 26, 26, 0.1);
  border-radius: 14px;
  background: #fafaf8;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}

.form-label-text {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 700;
  font-size: inherit;
}

.custom-select-wrap {
  margin-bottom: 1rem;
}

.custom-select {
  position: relative;
}

.custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1.5px solid rgba(26,26,26,.1);
  border-radius: 14px;
  background: #fafaf8;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition: border-color .2s, box-shadow .2s;
}

.custom-select__trigger svg {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform .2s;
}

.custom-select.is-open .custom-select__trigger {
  border-color: rgba(245,166,35,.42);
  box-shadow: 0 0 0 3px rgba(245,166,35,.12);
}

.custom-select.is-open .custom-select__trigger svg {
  transform: rotate(180deg);
}

.custom-select__value {
  color: var(--muted);
}

.custom-select__value.has-value {
  color: var(--ink);
}

.custom-select__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid rgba(26,26,26,.1);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(23,18,12,.12);
  list-style: none;
  margin: 0;
  padding: .4rem;
  z-index: 20;
  display: none;
  overflow: hidden;
}

.custom-select.is-open .custom-select__dropdown {
  display: block;
}

.custom-select__dropdown li {
  padding: .75rem 1rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: .95rem;
  transition: background .15s, color .15s;
}

.custom-select__dropdown li:hover {
  background: rgba(245,166,35,.1);
  color: var(--gold-deep);
}

.custom-select__dropdown li.is-selected {
  background: rgba(245,166,35,.12);
  color: var(--gold-deep);
  font-weight: 600;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(245, 166, 35, 0.28);
  border-color: rgba(245, 166, 35, 0.42);
}

.consent {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin: 0 !important;
  margin-top: 0 !important;
  align-self: center;
}

.consent span {
  line-height: 1.4;
}

.form-feedback {
  min-height: 1.5rem;
  margin: 0.9rem 0 0;
  color: var(--ink);
  font-weight: 700;
}

.form-feedback--success { color: #1a7f4b; }
.form-feedback--error   { color: #c0392b; }

.site-footer {
  padding: 2.5rem 0 2rem;
  background: linear-gradient(135deg, #1d1b19 0%, #35302a 100%);
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  justify-content: space-between;
}

.footer-grid > div {
  flex: 1 1 220px;
}

.site-footer h3 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.84);
}

.site-footer p {
  color: #fff;
}

.footer-bottom {
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 560px;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(24, 24, 24, 0.95);
  color: #fff;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.cookie-banner.is-hidden,
.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.cookie-actions {
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner .button {
  cursor: pointer;
  pointer-events: auto;
}

.scroll-top {
  position: fixed;
  right: 1rem;
  bottom: 6.5rem;
  z-index: 40;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #171717;
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-delay {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .topbar {
    display: none;
  }

  .desktop-nav,
  .header-phone,
  .header-actions .button {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .mobile-menu.is-open {
    display: block;
  }

  .hero-grid,
  .page-hero-grid,
  .why-layout,
  .resource-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid--home {
    grid-template-columns: 1fr;
  }

  .path-card--row {
    grid-template-columns: 48px 1fr;
  }

  .path-card--row a {
    grid-column: 2;
  }

  .hero-section {
    padding-top: 3.5rem;
  }

  .testimonial-rail {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-banner__actions {
    justify-content: flex-start;
  }

  .form-grid {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 15vw, 4rem);
  }

  .hero-panel,
  .solution-card,
  .why-card,
  .case-card,
  .testimonial-card,
  .resource-card,
  .resource-feature,
  .contact-copy,
  .contact-form {
    padding: 1.3rem;
  }

  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .mobile-menu,
  .mobile-menu a,
  .mobile-submenu__toggle,
  .mobile-submenu__panel a {
    text-align: center;
  }

  .mobile-submenu__toggle {
    justify-content: center;
    gap: 0.5rem;
  }

  .mobile-submenu__panel a {
    padding-left: 0;
  }

  .cta-banner__copy,
  .cta-banner__actions {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .cta-banner__actions .button {
    max-width: 320px;
  }

  .path-card--row {
    grid-template-columns: 1fr;
  }

  .path-card__index {
    width: 46px;
    height: 46px;
  }

  .path-card--row a {
    grid-column: auto;
  }

  .home-ticker__group {
    gap: 1.4rem;
    padding-right: 1.4rem;
  }

  .home-ticker__group span {
    font-size: 0.76rem;
    letter-spacing: 0.06em;
  }
}

/* ═══════════════════════════════════════════
   HERO — améliorations
═══════════════════════════════════════════ */
.hero-em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold) 0%, var(--copper) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════
   MEGAMENU — colonne CTA
═══════════════════════════════════════════ */
.mega-col--cta {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.mega-new {
  display: inline-flex;
  margin-left: .4rem;
  padding: .15rem .45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--copper));
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  vertical-align: middle;
}

.mega-link-highlight {
  display: inline-flex;
  padding: .6rem .9rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245,166,35,.1), rgba(184,109,60,.1));
  border: 1px solid rgba(245,166,35,.18);
  color: var(--ink) !important;
  font-weight: 700;
  transition: background .2s ease;
}

.mega-link-highlight:hover {
  background: linear-gradient(135deg, rgba(245,166,35,.2), rgba(184,109,60,.18));
}

.mega-contact-box {
  margin-top: auto;
  padding: 1rem;
  border-radius: 16px;
  background: rgba(26,26,26,.04);
  border: 1px solid rgba(26,26,26,.07);
}

.mega-contact-box p {
  margin: 0 0 .65rem;
  font-size: .88rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════════
   SOLUTION CARDS — icônes colorées
═══════════════════════════════════════════ */
.solution-card {
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(23,18,12,.15);
}

.solution-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1.1rem;
  border-radius: 14px;
}

.solution-icon--a {
  background: linear-gradient(135deg, rgba(245,166,35,.2), rgba(245,166,35,.08));
  color: var(--gold-deep);
}

.solution-icon--b {
  background: linear-gradient(135deg, rgba(26,26,26,.1), rgba(26,26,26,.04));
  color: var(--ink);
}

.solution-icon--c {
  background: linear-gradient(135deg, rgba(184,109,60,.2), rgba(184,109,60,.08));
  color: var(--copper);
}

/* ═══════════════════════════════════════════
   WHY CARDS — icône
═══════════════════════════════════════════ */
.why-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(245,166,35,.12);
  color: var(--gold-deep);
  margin-bottom: .85rem;
}

/* ═══════════════════════════════════════════
   CASE CARDS — tags colorés + résultat
═══════════════════════════════════════════ */
.case-tag {
  display: inline-flex;
  padding: .3rem .75rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.case-tag--startup {
  background: rgba(245,166,35,.14);
  color: var(--gold-deep);
}

.case-tag--pme {
  background: rgba(26,26,26,.08);
  color: var(--ink);
}

.case-tag--groupe {
  background: rgba(184,109,60,.14);
  color: var(--copper);
}

.case-result {
  display: block;
  margin-top: .85rem;
  padding-top: .85rem;
  border-top: 1px solid rgba(26,26,26,.07);
  font-size: .9rem;
  color: var(--ink);
}

.case-card {
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}

.case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(23,18,12,.13);
}

/* ═══════════════════════════════════════════
   TÉMOIGNAGES — stars + avatar + source
═══════════════════════════════════════════ */
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .05em;
  margin-bottom: .9rem;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-top: 1.2rem;
}

.testimonial-role {
  color: var(--muted);
  font-size: .88rem;
  text-align: right;
}

.testimonial-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: .78rem;
  font-weight: 800;
  flex-shrink: 0;
}

.testimonial-avatar--gold  { background: rgba(245,166,35,.18); color: var(--gold-deep); }
.testimonial-avatar--dark  { background: rgba(26,26,26,.1);    color: var(--ink); }
.testimonial-avatar--copper{ background: rgba(184,109,60,.18); color: var(--copper); }

.testimonial-source {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(26,26,26,.1);
  font-size: .7rem;
  font-weight: 800;
  color: #4285F4;
}

.testimonial-card {
  transition: transform .25s ease, box-shadow .25s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(23,18,12,.12);
}

/* ═══════════════════════════════════════════
   FOOTER — brand + socials + contact
═══════════════════════════════════════════ */
.footer-brand {
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: .5rem;
  margin-top: 1rem;
}

.social-pill {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 32px !important;
  height: 32px !important;
  min-height: unset !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  color: rgba(255,255,255,.65) !important;
  box-shadow: none !important;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.social-pill:hover {
  background: var(--gold) !important;
  color: #fff !important;
  border-color: var(--gold) !important;
  transform: none !important;
}

.footer-contact-item {
  font-size: .92rem;
  line-height: 1.6;
  margin-bottom: .6rem;
}

.footer-bottom a {
  color: rgba(255,255,255,.6);
  transition: color .2s ease;
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* ═══════════════════════════════════════════
   SCROLL-TO-TOP — amélioration
═══════════════════════════════════════════ */
.scroll-top {
  background: linear-gradient(135deg, var(--gold), var(--copper));
  font-weight: 700;
  font-size: 1.1rem;
}

.scroll-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245,166,35,.35);
}

/* ═══════════════════════════════════════════
   PAGE CONTACT
═══════════════════════════════════════════ */
.contact-page-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-block {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  color: #fff;
}

.contact-info-block h2 {
  font-family: "Sora", sans-serif;
  font-size: 1.4rem;
  margin: .75rem 0 .6rem;
  color: #fff;
}

.contact-info-block > p {
  color: rgba(255,255,255,.65);
  font-size: .95rem;
  margin: 0;
  line-height: 1.6;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(245,166,35,.1);
  color: var(--gold-deep);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item .contact-label {
  display: block;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.45);
  margin-bottom: .3rem;
}

.contact-info-item .contact-value {
  display: block;
  font-size: .97rem;
  color: #fff;
  line-height: 1.55;
}

.contact-info-item a.contact-value {
  color: #fff;
  transition: color .2s;
}

.contact-info-item a.contact-value:hover {
  color: var(--gold);
}

.contact-info-block .contact-info-icon {
  background: rgba(245,166,35,.15);
  color: var(--gold);
}

.contact-info-socials {
  display: flex;
  gap: .5rem;
  margin-top: 2rem;
}

.contact-info-socials .social-pill {
  background: rgba(26,26,26,.07) !important;
  border-color: rgba(26,26,26,.1) !important;
  color: var(--muted) !important;
}

.contact-info-socials .social-pill:hover {
  background: var(--gold) !important;
  color: #fff !important;
  border-color: var(--gold) !important;
}

.contact-form--page {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 8px 40px rgba(23,18,12,.08);
}

.contact-map-section {
  margin-top: 3rem;
}

.contact-map-section iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .contact-page-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ═══════════════════════════════════════════
   STEPS FLOW
═══════════════════════════════════════════ */
.steps-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 2rem;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 1rem;
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-connector {
  position: absolute;
  top: 24px;
  left: calc(50% + 24px);
  right: calc(-50% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(245,166,35,.2));
}

.step-body {
  text-align: center;
  margin-top: 1.25rem;
  padding: 0 .5rem;
}

.step-body h4 {
  margin: 0 0 .5rem;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.step-body p {
  margin: 0;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 768px) {
  .steps-flow {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .step-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    padding: 0;
  }
  .step-connector {
    display: none;
  }
  .step-body {
    text-align: left;
    margin-top: 0;
  }
}

/* ═══════════════════════════════════════════
   PAGE LÉGALE
═══════════════════════════════════════════ */
.legal-body {
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-body h2 {
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  margin: 2.5rem 0 .75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(26,26,26,.08);
}

.legal-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 1.5rem 0 .5rem;
  color: var(--ink);
}

.legal-body ul {
  padding-left: 1.4rem;
  margin: .5rem 0 1rem;
}

.legal-body ul li {
  margin-bottom: .4rem;
}

.legal-body p {
  margin: .75rem 0;
}

.legal-body a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  background: rgba(245,166,35,.07);
  border: 1px solid rgba(245,166,35,.18);
}

.legal-contact-box p {
  margin: 0;
  flex: 1;
}

.legal-contact-box .button-primary {
  color: #fff !important;
  text-decoration: none !important;
}

/* ═══════════════════════════════════════════
   INDEX — nouveaux éléments de style
═══════════════════════════════════════════ */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1rem;
  border-radius: 999px;
  background: rgba(245,166,35,.12);
  border: 1px solid rgba(245,166,35,.25);
  color: var(--gold-deep);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-reassurance {
  margin-top: 1rem;
  font-size: .85rem;
  color: var(--muted);
}

.case-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  font-size: .9rem;
  font-weight: 700;
  color: var(--gold-deep);
  transition: gap .2s ease;
}

.case-cta:hover {
  color: var(--copper);
}

.section-cta-inline {
  text-align: center;
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(245,166,35,.07);
  border: 1px solid rgba(245,166,35,.15);
  font-size: .95rem;
}

.section-cta-inline a {
  color: var(--gold-deep);
}

.section-cta-inline a:hover {
  color: var(--copper);
}

.testimonial-cta {
  text-align: center;
  margin-top: 2.5rem;
}
