﻿:root {
  --blue: #0b5cff;
  --blue-deep: #123c8c;
  --green: #22c55e;
  --cyan: #06b6d4;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --surface: rgba(255, 255, 255, 0.86);
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 78% 12%, rgba(34, 197, 94, 0.18), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #eef8ff 52%, #e9fff5 100%);
}

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
  padding: 28px 0 20px;
}

.site-header,
.brand,
.site-nav,
.badge,
.hero-actions,
.button,
.dash-head,
.assistant-title,
.chat-options span {
  display: flex;
  align-items: center;
}

.site-header {
  position: relative;
  z-index: 20;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding: 6px 0;
  backdrop-filter: blur(16px);
}

.brand {
  gap: 12px;
  color: var(--blue-deep);
  font-size: 24px;
  font-weight: 900;
}

.wave-logo {
  display: block;
  width: clamp(170px, 18vw, 220px);
  height: auto;
  aspect-ratio: 5 / 3;
  object-fit: contain;
}

.hero-slogan {
  width: fit-content;
  margin: 16px 0 0;
  padding: 10px 14px;
  border: 1px solid rgba(11, 92, 255, 0.13);
  border-radius: 999px;
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 850;
}

.site-nav {
  gap: clamp(12px, 1.35vw, 18px);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  color: #334155;
  font-size: 13.5px;
  font-weight: 750;
  white-space: nowrap;
  transition: transform 0.18s ease, color 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.site-nav a:hover {
  color: var(--blue);
}

.site-nav .nav-cta {
  padding: 10px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 14px 32px rgba(11, 92, 255, 0.2);
}

.site-nav .nav-cta:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.site-nav .nav-partner-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid rgba(11, 92, 255, 0.38);
  border-radius: 999px;
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(11, 92, 255, 0.12);
}

.site-nav .nav-partner-cta:hover {
  color: var(--blue);
  border-color: rgba(11, 92, 255, 0.62);
  background: #f4f9ff;
  box-shadow: 0 18px 36px rgba(11, 92, 255, 0.18);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(11, 92, 255, 0.18);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
}

.menu-button span {
  display: block;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: #0b3f91;
  transition: transform 0.22s ease, opacity 0.18s ease;
}

.menu-button:not(:has(span)) {
  background:
    linear-gradient(#0b3f91, #0b3f91) center calc(50% - 7px) / 22px 3px no-repeat,
    linear-gradient(#0b3f91, #0b3f91) center / 22px 3px no-repeat,
    linear-gradient(#0b3f91, #0b3f91) center calc(50% + 7px) / 22px 3px no-repeat,
    rgba(255, 255, 255, 0.96);
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 15;
  background: rgba(15, 23, 42, 0.24);
  backdrop-filter: blur(8px);
}

.mobile-menu-backdrop[hidden] {
  display: none;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 34px;
  align-items: center;
}

.badge {
  width: fit-content;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #087a39;
  background: #e8fff2;
  font-size: 13px;
  font-weight: 850;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 5.4vw, 3.65rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h1 span {
  color: transparent;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
}

.lead {
  margin: 24px 0;
  color: #475569;
  font-size: clamp(1.12rem, 2.2vw, 1.31rem);
  line-height: 1.55;
}

.seo-subtitle {
  max-width: 720px;
  margin: 22px 0;
  color: #334155;
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  line-height: 1.62;
}

.connection-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px minmax(0, 1fr);
  align-items: stretch;
  width: 100%;
  gap: 16px;
  margin: 0 0 46px;
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 28px;
  padding: 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(238, 248, 255, 0.76)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.09);
}

.visual-group {
  display: grid;
  align-content: start;
  gap: 11px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 22px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.visual-label {
  color: #0f6b91;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.visual-node {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(11, 92, 255, 0.12);
  border-radius: 14px;
  padding: 12px 13px;
  color: #123c8c;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.15;
  text-align: left;
}

.visual-node span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #eef8ff;
  font-size: 15px;
}

.visual-node-center {
  position: relative;
  min-width: 0;
  align-self: center;
  flex-direction: column;
  min-height: 150px;
  justify-content: center;
  border-radius: 24px;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.22), transparent 38%),
    linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 18px 34px rgba(11, 92, 255, 0.24);
  text-align: center;
}

.visual-node-center::before,
.visual-node-center::after {
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;
  background: rgba(18, 60, 140, 0.32);
  content: "";
}

.visual-node-center::before {
  left: -19px;
}

.visual-node-center::after {
  right: -19px;
}

.visual-node-center span {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 18px;
}

.visual-node-center strong {
  max-width: 100px;
}

.visual-bridge {
  display: none;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 18px 20px;
  margin-top: 0;
  align-items: flex-start;
}

.hero-actions .button:nth-child(3) {
  flex-basis: 100%;
  width: fit-content;
  margin-top: 6px;
}

.button {
  justify-content: center;
  min-height: 50px;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 14px 30px rgba(11, 92, 255, 0.25);
  font-weight: 850;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.button.secondary {
  color: var(--blue-deep);
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: none;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 34px;
  color: #ffffff;
  background: #07152f;
  box-shadow: var(--shadow);
}

.hero-card::before {
  position: absolute;
  right: -60px;
  bottom: -90px;
  left: -60px;
  height: 210px;
  content: "";
  background: radial-gradient(ellipse at center, var(--cyan), transparent 70%);
  opacity: 0.35;
}

.dash-head {
  position: relative;
  justify-content: space-between;
  gap: 20px;
}

.dash-head strong,
.dash-head small {
  display: block;
}

.dash-head strong {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.dash-head small {
  color: #cbd5e1;
}

.live-pill {
  border-radius: 999px;
  padding: 8px 12px;
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.18);
  font-size: 13px;
  font-weight: 850;
}

.metrics {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.metric {
  min-height: 102px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  color: #dbeafe;
}

.metric strong {
  display: block;
  margin-top: 6px;
  color: #ffffff;
  font-size: 28px;
}

.match-card {
  position: relative;
  padding: 24px;
  border-radius: 28px;
  color: var(--ink);
  background: #ffffff;
}

.match-card h2 {
  margin: 0 0 14px;
  text-align: center;
  font-size: 1.35rem;
}

.match-card p {
  margin: 0;
  color: var(--muted);
  text-align: center;
  line-height: 1.55;
}

.score-ring {
  position: relative;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  margin: 0 auto;
  border-radius: 50%;
  background: conic-gradient(var(--green) 0 var(--score-degrees), #e2e8f0 var(--score-degrees));
}

.score-ring::after {
  position: absolute;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: #ffffff;
  content: "";
}

.score-ring span {
  position: relative;
  z-index: 1;
  color: #059669;
  font-size: 38px;
  font-weight: 950;
}

.wave {
  width: 130px;
  height: 44px;
  margin: -40px auto 0;
  border-radius: 50%;
  background: linear-gradient(90deg, #7dd3fc, #0ea5e9, #22c55e);
  filter: blur(10px);
  opacity: 0.55;
  animation: float 2.4s ease-in-out infinite;
}

@keyframes float {
  50% {
    transform: translateY(-8px);
  }
}

.section,
.contact-section {
  margin-top: 70px;
  scroll-margin-top: 120px;
}

.scroll-anchor {
  display: block;
  height: 1px;
  margin-top: 70px;
}

.scroll-anchor + .section,
.scroll-anchor + .contact-section {
  margin-top: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading h2,
.need-card h2,
.assistant-card h2 {
  margin-bottom: 12px;
  font-size: clamp(2.1rem, 4vw, 2.65rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.glass-card,
.need-card {
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(12px);
}

.glass-card {
  min-height: 235px;
  padding: 26px;
}

.card-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  color: var(--blue);
  background: #eff6ff;
}

.glass-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.glass-card p,
.flow-box span,
.profile-card p,
.assistant-card p {
  color: #475569;
  line-height: 1.55;
}

.seo-content-section {
  padding: 34px;
  border: 1px solid rgba(226, 232, 240, 0.84);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
}

.seo-content-section .section-heading {
  max-width: 980px;
  margin-bottom: 0;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.expertise-card,
.why-card {
  border: 1px solid rgba(226, 232, 240, 0.84);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

.expertise-card {
  padding: 24px;
}

.expertise-card h3 {
  margin-bottom: 14px;
  color: var(--blue-deep);
  font-size: 1.25rem;
}

.expertise-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.expertise-card li {
  border-radius: 999px;
  padding: 8px 10px;
  color: #075985;
  background: #e0f2fe;
  font-size: 0.86rem;
  font-weight: 800;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.why-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 82px;
  padding: 18px;
}

.why-card span {
  display: grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  font-weight: 950;
}

.why-card strong {
  color: var(--ink);
  line-height: 1.25;
}

.faq-section {
  padding: 34px;
  border: 1px solid rgba(226, 232, 240, 0.84);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.faq-card {
  padding: 24px;
  border: 1px solid rgba(226, 232, 240, 0.84);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
}

.faq-card h3 {
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 1.08rem;
  line-height: 1.25;
}

.faq-card p {
  color: #475569;
  line-height: 1.58;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 28px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--blue-deep);
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(226, 232, 240, 0.84);
  border-radius: 36px;
  background:
    radial-gradient(circle at 88% 20%, rgba(34, 197, 94, 0.16), transparent 28%),
    rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.landing-proof {
  display: grid;
  gap: 10px;
  padding: 28px;
  border-radius: 28px;
  color: #ffffff;
  background: #07152f;
  box-shadow: var(--shadow);
}

.landing-proof strong {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.18);
  font-size: 0.9rem;
}

.landing-proof span {
  color: #cbd5e1;
  font-weight: 850;
}

.landing-proof p {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 950;
  line-height: 1.15;
}

.landing-proof.compact-proof {
  align-self: start;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 22px;
}

.landing-proof.compact-proof strong {
  padding: 6px 10px;
  font-size: 0.78rem;
}

.landing-proof.compact-proof span {
  font-size: 0.78rem;
}

.landing-proof.compact-proof p {
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.55;
}

.simulator-section {
  padding: 34px;
  border: 1px solid rgba(226, 232, 240, 0.84);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.simulator-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: 22px;
  align-items: stretch;
}

.simulator-form,
.simulator-results {
  display: grid;
  gap: 16px;
}

.simulator-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.simulator-form label {
  display: grid;
  gap: 8px;
  color: #334155;
  font-size: 0.92rem;
  font-weight: 850;
}

.simulator-form input,
.simulator-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(148, 163, 184, 0.36);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  outline: none;
}

.simulator-form input:focus,
.simulator-form select:focus {
  border-color: rgba(11, 92, 255, 0.62);
  box-shadow: 0 0 0 4px rgba(11, 92, 255, 0.1);
}

.simulator-results {
  padding: 24px;
  border-radius: 26px;
  color: #ffffff;
  background: #07152f;
}

.simulator-results div {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.simulator-results span {
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 800;
}

.simulator-results strong {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.simulator-results p {
  margin: 0;
  color: #dbeafe;
  font-size: 0.9rem;
  line-height: 1.45;
}

.examples-section {
  padding: 34px;
  border: 1px solid rgba(226, 232, 240, 0.84);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.example-card {
  padding: 24px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
}

.example-card h3 {
  margin: 0 0 8px;
  color: var(--blue-deep);
  font-size: 1.15rem;
}

.example-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.example-card dl {
  display: grid;
  gap: 0;
  margin: 18px 0 0;
}

.example-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.example-card dt {
  color: var(--muted);
  font-weight: 850;
}

.example-card dd {
  margin: 0;
  color: var(--blue-deep);
  font-weight: 950;
  text-align: right;
}

.geo-section .faq-card {
  background: rgba(255, 255, 255, 0.9);
}

.premium-link-section {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(198, 219, 239, 0.76);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(240, 253, 250, 0.72)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.08);
}

.premium-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
  align-items: stretch;
}

.premium-link-card {
  display: flex;
  min-height: 184px;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(204, 225, 243, 0.95);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.premium-link-card strong {
  color: var(--blue-deep);
  font-size: 1.05rem;
  line-height: 1.24;
}

.premium-link-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.premium-link-card .card-cta {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--blue-deep);
  font-size: 0.88rem;
  font-weight: 900;
}

.premium-link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 165, 233, 0.38);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.1);
}

.flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: center;
}

.flow-box {
  display: grid;
  min-height: 132px;
  place-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  text-align: center;
}

.flow-box strong,
.flow-box span {
  display: block;
}

.flow-box strong {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.flow-arrow {
  display: grid;
  place-items: center;
  color: var(--blue);
}

.needs-section {
  padding: 34px;
  border: 1px solid rgba(226, 232, 240, 0.84);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
}

.needs-list {
  display: grid;
  gap: 14px;
}

.need-preview-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.need-preview-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.need-preview-head h3 {
  margin: 7px 0 0;
  font-size: 1.35rem;
}

.need-status,
.read-only-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.need-status {
  padding: 6px 10px;
  color: #047857;
  background: #dcfce7;
}

.read-only-pill {
  flex: 0 0 auto;
  padding: 8px 11px;
  color: #1d4ed8;
  background: #eff6ff;
}

.need-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 16px;
}

.need-meta div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f8fafc;
}

.need-meta dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.need-meta dd {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
}

.need-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.need-skills span {
  border-radius: 999px;
  padding: 8px 10px;
  color: #075985;
  background: #e0f2fe;
  font-size: 0.82rem;
  font-weight: 850;
}

.mission-download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 16px;
  border: 1px solid rgba(11, 92, 255, 0.18);
  border-radius: 999px;
  padding: 10px 15px;
  color: var(--blue-deep);
  background: #eff6ff;
  font-weight: 900;
  cursor: pointer;
}

.mission-download-button:hover {
  color: #ffffff;
  background: var(--blue);
}

.profile-card {
  display: grid;
  grid-template-columns: 330px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.profile-side {
  padding: 28px;
  border-right: 1px solid var(--line);
  background: #f8fafc;
}

.avatar {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 28px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-size: 34px;
  font-weight: 900;
}

.profile-side h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.chip {
  border-radius: 999px;
  padding: 8px 11px;
  color: #1d4ed8;
  background: #eff6ff;
  font-size: 13px;
  font-weight: 850;
}

.profile-main {
  padding: 30px;
}

.score-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  align-items: center;
}

.score-highlight {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.score-highlight strong {
  max-width: 180px;
  color: #123c8c;
  font-size: 17px;
  line-height: 1.25;
}

.score-row h3 {
  margin-bottom: 10px;
  font-size: 30px;
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.score-card {
  min-height: 90px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #f8fafc;
  text-align: center;
}

.score-card strong,
.score-card span {
  display: block;
}

.score-card strong {
  color: var(--blue);
  font-size: 24px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 680px);
  justify-content: center;
  gap: 22px;
}

.need-card,
.assistant-card {
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: #334155;
  font-size: 0.88rem;
  font-weight: 800;
}

.wide {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  background: #ffffff;
  color: var(--ink);
  outline: none;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(11, 92, 255, 0.1);
}

.assistant-card {
  border-radius: 32px;
  color: #ffffff;
  background: #07152f;
  box-shadow: var(--shadow);
}

.assistant-title {
  gap: 10px;
  margin-bottom: 10px;
}

.assistant-title h2 {
  margin: 0;
}

.assistant-card p {
  color: #cbd5e1;
}

.chat-line,
.chat-options,
.assistant-need-form {
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
}

.chat-line {
  padding: 16px;
}

.chat-options {
  display: grid;
  gap: 6px;
  padding: 12px;
}

.chat-options span {
  gap: 9px;
  min-height: 36px;
  color: #e2e8f0;
}

.chat-options svg {
  color: #7dd3fc;
}

.assistant-need-form {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.assistant-need-form label {
  color: #e2e8f0;
}

.assistant-need-form input {
  border-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.assistant-need-form input::placeholder {
  color: rgba(226, 232, 240, 0.68);
}

.assistant-need-form input:focus {
  border-color: #7dd3fc;
  box-shadow: 0 0 0 4px rgba(125, 211, 252, 0.14);
}

.anti-spam-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.assistant-need-form .moderation-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(226, 232, 240, 0.86);
  font-size: 0.86rem;
  line-height: 1.35;
}

.assistant-need-form .moderation-check input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex: 0 0 auto;
}

.assistant-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.assistant-submit {
  width: 100%;
  margin-top: 2px;
}

.assistant-confirmation {
  margin: 0;
  padding: 10px 12px;
  border-radius: 16px;
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.16);
  font-size: 0.9rem;
  font-weight: 850;
}

.assistant-warning {
  margin: 0;
  padding: 10px 12px;
  border-radius: 16px;
  color: #fde68a;
  background: rgba(245, 158, 11, 0.14);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.45;
}

.site-footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 70px 0 20px;
  color: var(--muted);
  text-align: center;
}

.site-footer strong {
  color: var(--blue-deep);
}

.site-footer strong a {
  color: inherit;
  text-decoration: none;
}

.cookie-settings-link {
  border: 0;
  padding: 0;
  color: var(--blue-deep);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.cookie-settings-link:hover {
  color: var(--blue);
}

.cookie-consent {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 10000;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.cookie-consent.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-consent strong {
  display: block;
  margin-bottom: 5px;
  color: var(--blue-deep);
  font-size: 1rem;
}

.cookie-consent p {
  margin: 0;
  color: #475569;
  line-height: 1.45;
}

.cookie-consent__details {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.cookie-consent__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-consent__actions button {
  min-height: 42px;
  border: 1px solid rgba(11, 92, 255, 0.16);
  border-radius: 999px;
  padding: 10px 15px;
  color: var(--blue-deep);
  background: #ffffff;
  font-weight: 850;
  cursor: pointer;
}

.cookie-consent__actions .cookie-accept {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 14px 34px rgba(11, 92, 255, 0.22);
}

.cookie-consent__actions .cookie-refuse {
  color: #991b1b;
  background: #fff1f2;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 18px 42px rgba(11, 92, 255, 0.34);
  font-size: 28px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(11, 92, 255, 0.42);
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    top: 0;
    align-items: center;
    margin-inline: -12px;
    padding: 10px 12px;
    border-radius: 0 0 22px 22px;
    background: rgba(238, 248, 255, 0.86);
  }

  .menu-button {
    display: flex;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    right: 14px;
    left: 14px;
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    max-height: min(76vh, 620px);
    overflow-y: auto;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-nav a {
    min-height: 42px;
    border-radius: 16px;
    padding: 12px 14px;
    background: #f8fafc;
    font-size: 1rem;
  }

  .site-nav .nav-cta {
    justify-content: center;
    margin-top: 4px;
    min-height: 48px;
    text-align: center;
  }

  .site-nav .nav-partner-cta {
    justify-content: center;
    min-height: 48px;
    padding: 12px 14px;
    text-align: center;
    white-space: normal;
  }

  .hero-section,
  .landing-hero,
  .service-grid,
  .expertise-grid,
  .why-grid,
  .faq-grid,
  .simulator-grid,
  .simulator-form,
  .examples-grid,
  .premium-link-grid,
  .profile-card,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .needs-section {
    padding: 22px;
    border-radius: 24px;
  }

  .need-preview-head,
  .need-meta {
    grid-template-columns: 1fr;
  }

  .need-preview-head {
    display: grid;
  }

  .hero-card {
    width: min(100%, 560px);
  }

  .flow {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .profile-side {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .score-row,
  .score-grid,
  .form-grid,
  .assistant-form-grid {
    grid-template-columns: 1fr;
  }

  .wide {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 24px, 1180px);
    padding-top: 16px;
  }

  .wave-logo {
    width: clamp(185px, 60vw, 240px);
  }

  .cookie-consent {
    right: 10px;
    bottom: 10px;
    left: 10px;
    grid-template-columns: 1fr;
    padding: 16px;
    border-radius: 22px;
  }

  .cookie-consent__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-card,
  .glass-card,
  .need-card,
  .assistant-card {
    border-radius: 22px;
  }

  .metrics {
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .connection-visual {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
  }

  .visual-bridge {
    display: block;
    width: 1px;
    height: 12px;
    justify-self: center;
    background: rgba(11, 92, 255, 0.22);
  }

  .visual-node,
  .visual-node-center {
    width: 100%;
    min-width: 0;
  }

  .visual-node-center {
    min-height: 86px;
  }

  .visual-node-center::before,
  .visual-node-center::after {
    display: none;
  }
}


/* Home refresh - lighter premium homepage */
.home-page .section {
  margin-top: clamp(54px, 7vw, 92px);
}

.home-hero {
  min-height: min(760px, calc(100vh - 110px));
  align-items: center;
}

.home-lead {
  max-width: 700px;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.home-hero .hero-slogan,
.home-hero .connection-visual {
  display: none;
}

.home-hero-actions {
  align-items: center;
  gap: 14px 16px;
  margin-top: 28px;
}

.home-hero-actions .button:nth-child(3) {
  flex-basis: auto;
  width: auto;
  margin-top: 0;
}

.text-link {
  color: var(--blue-deep);
  font-weight: 850;
  border-bottom: 1px solid rgba(18, 60, 140, 0.28);
  transition: color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.text-link:hover {
  color: var(--blue);
  border-color: rgba(11, 92, 255, 0.7);
  transform: translateY(-1px);
}

.partner-button {
  color: var(--blue-deep);
  border: 1px solid rgba(11, 92, 255, 0.34);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(11, 92, 255, 0.13);
}

.partner-button:hover {
  color: var(--blue);
  border-color: rgba(11, 92, 255, 0.62);
  background: #f4f9ff;
}

.animated-dashboard {
  animation: dashboardFloat 7s ease-in-out infinite;
}

.stagger-metrics .metric {
  opacity: 0;
  transform: translateY(12px);
  animation: metricIn 0.55s ease forwards;
}

.stagger-metrics .metric:nth-child(2) {
  animation-delay: 0.12s;
}

.stagger-metrics .metric:nth-child(3) {
  animation-delay: 0.24s;
}

.score-animated {
  animation: scorePulse 4.5s ease-in-out infinite;
}

.match-card .wave {
  width: 140px;
  height: 18px;
  margin: -4px auto 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.35), transparent);
  animation: waveSlide 4s ease-in-out infinite;
}

.compact-section,
.explore-section,
.expertise-overview,
.process-section,
.compact-needs {
  scroll-margin-top: 120px;
}

.section-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #087a39;
  background: #e8fff2;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.compact-heading {
  max-width: 820px;
  margin-bottom: 24px;
}

.compact-heading h2 {
  margin-bottom: 10px;
}

.compact-card-grid .compact-card {
  min-height: 220px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.compact-card-grid .compact-card:hover,
.explore-grid .premium-link-card:hover,
.visual-expertise-card:hover,
.compact-need-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.11);
}

.explore-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.explore-grid .premium-link-card {
  min-height: 210px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mini-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 16px;
  background: #eff6ff;
  font-size: 1.2rem;
}

.home-expertise-grid .visual-expertise-card {
  min-height: 250px;
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.visual-expertise-card p {
  color: #475569;
  line-height: 1.58;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.process-section {
  padding: 34px;
  border: 1px solid rgba(226, 232, 240, 0.84);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
}

.compact-why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
}

.compact-needs .section-heading p {
  max-width: 660px;
}

.compact-needs-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compact-need-card {
  padding: 22px;
}

.compact-need-card .need-preview-head {
  align-items: flex-start;
}

.compact-need-card .need-preview-head h3 {
  font-size: 1.15rem;
  line-height: 1.25;
}

.compact-need-card .need-meta {
  grid-template-columns: 1fr;
  gap: 8px;
}

.compact-need-card .need-meta div {
  padding: 12px;
}

.compact-need-card .need-skills span:nth-child(n+5) {
  display: none;
}

.mission-view-button {
  margin-top: 14px;
}

.final-cta-section {
  align-items: stretch;
  grid-template-columns: minmax(0, 0.9fr);
  justify-content: center;
}

.compact-assistant-card {
  width: min(760px, 100%);
  margin: 0 auto;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@keyframes dashboardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes metricIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scorePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.025); }
}

@keyframes waveSlide {
  0%, 100% { transform: translateX(-8px); opacity: 0.55; }
  50% { transform: translateX(8px); opacity: 0.9; }
}

@media (max-width: 900px) {
  .home-hero {
    min-height: auto;
  }

  .home-hero-actions .button,
  .home-hero-actions .partner-button {
    width: 100%;
  }

  .home-hero-actions .text-link {
    width: 100%;
    text-align: center;
  }

  .explore-grid,
  .compact-needs-list,
  .compact-why-grid {
    grid-template-columns: 1fr;
  }

  .process-section {
    padding: 24px;
  }

  .flow-strip {
    gap: 10px;
  }

  .flow-line {
    min-height: 22px;
  }
}

@media (max-width: 520px) {
  .home-page .section {
    margin-top: 44px;
  }

  .home-hero h1 {
    font-size: clamp(2.2rem, 13vw, 3.25rem);
  }

  .home-lead {
    font-size: 1.04rem;
  }

  .explore-grid .premium-link-card,
  .home-expertise-grid .visual-expertise-card,
  .compact-need-card {
    padding: 20px;
  }
}

/* Retour au Hero premium avec Shortlist IA */
.surf-home .surf-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.72fr);
  gap: clamp(58px, 7vw, 108px);
  min-height: clamp(690px, 78vh, 860px);
  align-items: center;
  padding: clamp(80px, 8vw, 126px) clamp(20px, 4vw, 56px);
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(8, 184, 201, 0.085), transparent 29%),
    linear-gradient(135deg, #fff 0%, #fbfeff 58%, #eefafd 100%);
}

.surf-home .surf-hero-copy {
  width: 100%;
  max-width: 760px;
  margin: 0;
}

.surf-home .surf-hero h1 {
  gap: 5px;
  max-width: 760px;
  margin-bottom: 27px;
}

.surf-home .surf-hero h1 .hero-title-brand {
  font-size: clamp(3.25rem, 5vw, 5.4rem);
}

.surf-home .surf-hero h1 .hero-title-service {
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.07;
}

.surf-home .surf-hero h1 .hero-title-scope {
  font-size: clamp(2.25rem, 3.5vw, 3.8rem);
}

.surf-home .hero-brand-signature {
  gap: 5px;
  margin: 0 0 25px;
}

.surf-home .hero-brand-signature > span {
  color: #075b92;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  font-weight: 820;
}

.surf-home .hero-brand-signature > span strong {
  display: inline;
  color: #08a9bc;
  font-size: inherit;
}

.surf-home .hero-brand-signature em {
  margin-top: 1px;
  color: #075b92;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.surf-home .surf-lead {
  max-width: 680px;
  font-size: clamp(1.05rem, 1.28vw, 1.2rem);
  line-height: 1.72;
}

.surf-home .surf-hero-actions {
  margin-top: 34px;
}

.hero-shortlist-card {
  width: min(470px, 100%);
  justify-self: end;
  padding: clamp(28px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 86% 8%, rgba(8, 184, 201, 0.24), transparent 28%),
    linear-gradient(145deg, #07182f, #062657 64%, #074e72);
  box-shadow: 0 38px 90px rgba(6, 38, 87, 0.22);
  transform: translateZ(0);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.hero-shortlist-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 46px 100px rgba(6, 38, 87, 0.27);
}

.hero-shortlist-card .shortlist-eyebrow,
.hero-shortlist-card .match-label {
  display: block;
  margin-bottom: 6px;
  color: #8feef1;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-shortlist-card .dash-head > div > strong {
  font-size: 1.35rem;
}

.hero-shortlist-card .metrics {
  gap: 10px;
}

.hero-shortlist-card .metric {
  min-width: 0;
  padding: 15px 11px;
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.065);
  font-size: 0.72rem;
}

.hero-shortlist-card .metric strong {
  margin-top: 8px;
  font-size: 1.55rem;
}

.hero-shortlist-card .match-card {
  min-height: 290px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.96);
}

.hero-shortlist-card .match-card h2 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

.hero-shortlist-card .match-card .match-label {
  color: #087ca8;
}

.hero-shortlist-card .score-ring {
  margin: 22px auto;
}

@media (max-width: 1100px) {
  .surf-home .surf-hero {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
    gap: 42px;
    padding-right: 30px;
    padding-left: 30px;
  }

  .surf-home .surf-hero h1 .hero-title-brand {
    font-size: clamp(3rem, 5vw, 4.6rem);
  }

  .surf-home .surf-hero h1 .hero-title-service {
    font-size: clamp(1.85rem, 3vw, 2.75rem);
  }

  .surf-home .surf-hero h1 .hero-title-scope {
    font-size: clamp(2.05rem, 3.4vw, 3.2rem);
  }
}

@media (max-width: 860px) {
  .surf-home .surf-hero {
    grid-template-columns: 1fr;
    gap: 58px;
    padding: 72px 30px 86px;
  }

  .surf-home .surf-hero-copy {
    max-width: 720px;
  }

  .hero-shortlist-card {
    width: min(560px, 100%);
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .surf-home .surf-hero {
    gap: 46px;
    padding: 54px 18px 68px;
  }

  .surf-home .surf-hero h1 .hero-title-brand {
    font-size: clamp(2.9rem, 14vw, 3.8rem);
  }

  .surf-home .surf-hero h1 .hero-title-service {
    font-size: clamp(1.7rem, 8.3vw, 2.25rem);
  }

  .surf-home .surf-hero h1 .hero-title-scope {
    font-size: clamp(1.95rem, 9.4vw, 2.55rem);
  }

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

  .hero-shortlist-card {
    padding: 22px 16px;
    border-radius: 26px;
  }

  .hero-shortlist-card .metrics {
    grid-template-columns: 1fr;
  }

  .hero-shortlist-card .metric {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .hero-shortlist-card .metric strong {
    margin: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-shortlist-card {
    transition: none;
  }
}

/* Hero large sans illustration séparée */
.site-header .wave-logo {
  width: clamp(180px, 15vw, 238px);
  aspect-ratio: 305 / 190;
}

.surf-hero {
  display: block;
  min-height: auto;
  padding: clamp(70px, 8vw, 118px) clamp(18px, 4vw, 58px) clamp(74px, 8vw, 116px);
  overflow: hidden;
  border: 1px solid rgba(8, 124, 168, 0.08);
  border-radius: 44px;
  background:
    radial-gradient(circle at 92% 12%, rgba(8, 184, 201, 0.15), transparent 30%),
    radial-gradient(circle at 4% 94%, rgba(8, 124, 168, 0.09), transparent 31%),
    linear-gradient(135deg, #ffffff 0%, #f8fdff 58%, #eefbfd 100%);
}

.surf-hero::before {
  top: auto;
  right: -8%;
  bottom: -48%;
  width: 58%;
  height: 78%;
  border: 2px solid rgba(8, 184, 201, 0.09);
  background: transparent;
}

.surf-hero::after {
  bottom: -52px;
  height: 96px;
  opacity: 0.65;
}

.surf-hero-copy {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
}

.surf-hero h1 {
  max-width: 1160px;
  margin: 24px 0 26px;
  font-size: clamp(3rem, 5.3vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.surf-hero h1 span {
  display: inline;
}

.surf-lead {
  max-width: 930px;
  font-size: clamp(1.15rem, 1.65vw, 1.42rem);
  line-height: 1.65;
}

.surf-signature {
  margin-top: 24px;
}

.surf-hero-actions {
  margin-top: 34px;
}

.surf-trust-list {
  margin-top: 32px;
}

@media (max-width: 860px) {
  .site-header .wave-logo {
    width: clamp(165px, 45vw, 205px);
  }

  .surf-hero {
    padding: 56px 28px 66px;
    border-radius: 32px;
  }

  .surf-hero h1 {
    font-size: clamp(2.65rem, 9.5vw, 4.4rem);
  }
}

@media (max-width: 520px) {
  .surf-hero {
    padding: 42px 20px 52px;
    border-radius: 26px;
  }

  .surf-hero h1 {
    font-size: clamp(2.3rem, 10.6vw, 3.1rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
  }

  .surf-lead {
    font-size: 1.03rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .animated-dashboard,
  .stagger-metrics .metric,
  .score-animated,
  .match-card .wave,
  .reveal-on-scroll {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* LougoAI surf redesign */
.surf-home, .partner-page { --surf-navy:#062657; --surf-blue:#087ca8; --surf-cyan:#08b8c9; --surf-mist:#e8fbfd; }
.surf-home::before, .partner-page::before { content:""; position:fixed; inset:0; z-index:-2; background:radial-gradient(circle at 82% 8%,rgba(8,184,201,.13),transparent 30%),linear-gradient(180deg,#fff 0%,#f8fdff 55%,#fff 100%); pointer-events:none; }
.surf-hero { position:relative; display:grid; grid-template-columns:minmax(0,1.02fr) minmax(420px,.98fr); gap:clamp(38px,6vw,86px); min-height:680px; align-items:center; padding:clamp(48px,7vw,94px) 0 72px; overflow:hidden; }
.surf-hero::after { content:""; position:absolute; left:-12vw; right:-12vw; bottom:-28px; height:82px; border-radius:50% 50% 0 0 / 100% 100% 0 0; background:linear-gradient(90deg,rgba(8,184,201,.05),rgba(8,184,201,.17),rgba(7,91,146,.08)); transform:rotate(-1deg); }
.surf-hero-copy { position:relative; z-index:2; }
.surf-kicker { color:var(--surf-blue); background:rgba(232,251,253,.9); }
.surf-hero h1, .partner-hero h1 { max-width:760px; margin:16px 0 14px; color:var(--surf-navy); font-size:clamp(3.35rem,7vw,6.9rem); line-height:.91; letter-spacing:-.065em; }
.surf-hero h1 span, .partner-hero h1 span { color:transparent; background:linear-gradient(105deg,#075b92,#08b8c9); background-clip:text; -webkit-background-clip:text; }
.surf-signature { margin:0 0 22px; color:var(--surf-blue); font-size:clamp(1.15rem,2vw,1.5rem); font-weight:850; }
.surf-lead { max-width:680px; color:#42556d; font-size:clamp(1.05rem,1.45vw,1.24rem); line-height:1.7; }
.surf-hero-actions { margin-top:30px; }
.surf-trust-list { display:flex; flex-wrap:wrap; gap:10px 20px; margin:28px 0 0; padding:0; list-style:none; color:#52657c; font-size:.9rem; font-weight:750; }
.surf-trust-list li::before { content:""; display:inline-block; width:7px; height:7px; margin-right:8px; border-radius:50%; background:var(--surf-cyan); box-shadow:0 0 0 5px rgba(8,184,201,.1); }
.surf-visual { position:relative; min-height:560px; }
.surf-visual > img { position:absolute; width:min(780px,130%); max-width:none; right:-26%; top:1%; opacity:.22; filter:saturate(1.05); animation:surfBreath 9s ease-in-out infinite; }
.surf-waterline { position:absolute; right:-15%; bottom:16%; width:110%; height:50%; border:2px solid rgba(8,184,201,.18); border-left:0; border-radius:0 0 52% 45%; transform:rotate(-8deg); }
.surf-orbit-card { position:absolute; z-index:2; width:min(260px,58%); padding:20px 22px; border:1px solid rgba(255,255,255,.8); border-radius:24px; background:rgba(255,255,255,.8); backdrop-filter:blur(15px); box-shadow:0 24px 60px rgba(6,38,87,.12); }
.surf-orbit-card span { display:grid; width:34px; height:34px; place-items:center; margin-bottom:12px; border-radius:12px; color:#fff; background:linear-gradient(135deg,var(--surf-blue),var(--surf-cyan)); font-size:.76rem; font-weight:900; }
.surf-orbit-card strong, .surf-orbit-card small { display:block; }
.surf-orbit-card strong { color:var(--surf-navy); font-size:1.05rem; }
.surf-orbit-card small { margin-top:6px; color:#66798e; }
.orbit-card-one { top:8%; left:0; }.orbit-card-two { top:37%; right:2%; }.orbit-card-three { left:12%; bottom:7%; }
.surf-section { position:relative; margin-top:clamp(58px,8vw,112px); scroll-margin-top:120px; }
.surf-heading { max-width:790px; margin-bottom:30px; }.surf-heading h2 { color:var(--surf-navy); font-size:clamp(2.25rem,4.2vw,4rem); line-height:1.05; letter-spacing:-.04em; }.surf-heading p { max-width:690px; color:#63758a; font-size:1.05rem; line-height:1.7; }
.surf-audience-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.surf-card,.surf-expertise-card { position:relative; min-height:270px; padding:30px; overflow:hidden; border:1px solid rgba(8,124,168,.12); border-radius:28px; background:linear-gradient(145deg,rgba(255,255,255,.96),rgba(238,251,253,.8)); box-shadow:0 20px 55px rgba(6,38,87,.07); transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease; }
.surf-card:hover,.surf-expertise-card:hover { transform:translateY(-6px); border-color:rgba(8,184,201,.35); box-shadow:0 28px 66px rgba(6,38,87,.12); }
.surf-card::after,.surf-expertise-card::after { content:""; position:absolute; right:-45px; bottom:-55px; width:155px; height:100px; border:18px solid rgba(8,184,201,.07); border-radius:50%; transform:rotate(-18deg); }
.surf-card-index { color:var(--surf-cyan); font-weight:950; letter-spacing:.08em; }.surf-card h3,.surf-expertise-card h3 { margin:42px 0 12px; color:var(--surf-navy); font-size:1.45rem; }.surf-card p,.surf-expertise-card p { color:#63758a; line-height:1.65; }.surf-card a,.surf-expertise-card a { position:absolute; z-index:2; left:30px; bottom:27px; color:var(--surf-blue); font-weight:900; }
.surf-expertise-section { padding:clamp(32px,5vw,58px); border-radius:44px; background:linear-gradient(140deg,#062657,#074776 65%,#087ca8); box-shadow:0 32px 80px rgba(6,38,87,.16); }
.surf-expertise-section .section-kicker { color:#b8f5f7; background:rgba(255,255,255,.1); }.surf-expertise-section .surf-heading h2 { color:#fff; }.surf-expertise-section .surf-heading p { color:#c9dce9; }
.surf-expertise-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.surf-expertise-card { min-height:320px; background:rgba(255,255,255,.96); }.expertise-symbol { display:grid; width:54px; height:54px; place-items:center; border-radius:18px; color:#fff; background:linear-gradient(135deg,var(--surf-blue),var(--surf-cyan)); font-weight:950; letter-spacing:.04em; }.surf-expertise-card h3 { margin-top:26px; }
.surf-process { padding:0 clamp(6px,3vw,38px); }.surf-process-list { display:grid; grid-template-columns:repeat(3,1fr); gap:0; margin:0; padding:0; list-style:none; }.surf-process-list li { position:relative; display:grid; grid-template-columns:auto 1fr; gap:18px; padding:30px; }.surf-process-list li:not(:last-child)::after { content:""; position:absolute; top:50%; right:-14px; width:28px; height:1px; background:linear-gradient(90deg,var(--surf-cyan),rgba(8,184,201,.15)); }.surf-process-list > li > span { display:grid; width:50px; height:50px; place-items:center; border-radius:50%; color:#fff; background:var(--surf-navy); font-size:.82rem; font-weight:950; }.surf-process-list h3 { margin:0 0 8px; color:var(--surf-navy); }.surf-process-list p { margin:0; color:#63758a; line-height:1.6; }
.surf-benefits { display:grid; grid-template-columns:.85fr 1.15fr; gap:54px; align-items:center; padding:clamp(34px,5vw,66px); border:1px solid rgba(8,124,168,.1); border-radius:42px; background:linear-gradient(135deg,#f0fcfd,#fff); }.surf-benefits-copy h2 { color:var(--surf-navy); font-size:clamp(2.3rem,4vw,3.9rem); line-height:1.05; letter-spacing:-.04em; }.surf-benefits-copy p { color:#63758a; line-height:1.7; }.surf-benefit-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }.surf-benefit-grid article { padding:24px; border-radius:24px; background:#fff; box-shadow:0 16px 42px rgba(6,38,87,.07); }.surf-benefit-grid span { color:var(--surf-cyan); font-weight:950; }.surf-benefit-grid strong { display:block; margin:14px 0 8px; color:var(--surf-navy); }.surf-benefit-grid p { margin:0; color:#66798e; font-size:.92rem; line-height:1.55; }
.surf-needs { padding:clamp(30px,5vw,56px); border-radius:42px; background:#f2fbfd; }.surf-needs .compact-need-card { border-color:rgba(8,124,168,.1); background:#fff; }
.surf-partner-teaser { display:grid; grid-template-columns:auto 1fr auto; gap:32px; align-items:center; padding:36px 42px; border-radius:34px; color:#fff; background:linear-gradient(110deg,#062657,#075b92 65%,#08aabc); box-shadow:0 26px 68px rgba(6,38,87,.18); }.surf-partner-mark { font-size:4rem; font-weight:950; line-height:.8; }.surf-partner-mark span { font-size:1.5rem; }.surf-partner-teaser .section-kicker { color:#bdf7f7; background:rgba(255,255,255,.1); }.surf-partner-teaser h2 { margin:7px 0 8px; color:#fff; font-size:clamp(1.8rem,3vw,2.8rem); }.surf-partner-teaser p { margin:0; color:#d8ebf4; line-height:1.6; }.surf-partner-teaser .partner-button { white-space:nowrap; }
.surf-contact { display:grid; grid-template-columns:.75fr 1.25fr; gap:50px; align-items:center; padding:clamp(34px,5vw,66px); border-radius:42px; background:linear-gradient(145deg,#fff,#f0fbfd); box-shadow:0 24px 70px rgba(6,38,87,.09); }.surf-contact-copy h2 { color:var(--surf-navy); font-size:clamp(2.3rem,4vw,4rem); line-height:1.05; }.surf-contact-copy p { color:#63758a; line-height:1.7; }
.partner-hero { display:grid; grid-template-columns:1.08fr .92fr; gap:60px; align-items:center; min-height:650px; padding:54px 0 82px; }.partner-hero-lead { max-width:720px; color:#50657c; font-size:1.16rem; line-height:1.75; }.partner-value-card { justify-self:end; width:min(430px,100%); padding:42px; border-radius:38px; color:#fff; background:linear-gradient(145deg,#062657,#087ca8 72%,#08b8c9); box-shadow:0 32px 85px rgba(6,38,87,.22); }.partner-value-card > span { text-transform:uppercase; letter-spacing:.12em; font-size:.78rem; font-weight:900; }.partner-value-card > strong { display:block; margin:18px 0; font-size:7.8rem; line-height:.8; letter-spacing:-.08em; }.partner-value-card > strong small { font-size:2.5rem; }.partner-value-card p { color:#d7edf3; line-height:1.7; }.partner-period { display:flex; align-items:center; gap:14px; margin-top:28px; }.partner-period i { flex:1; height:2px; background:linear-gradient(90deg,#fff,rgba(255,255,255,.22)); }
.partner-model,.partner-simulator,.partner-scope,.partner-form-section,.partner-faq { margin-top:clamp(62px,8vw,112px); }.partner-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:15px; margin:0; padding:0; list-style:none; }.partner-steps li { padding:27px; border:1px solid rgba(8,124,168,.11); border-radius:26px; background:#fff; box-shadow:0 18px 50px rgba(6,38,87,.07); }.partner-steps > li > span { color:var(--surf-cyan); font-weight:950; }.partner-steps h3 { margin:30px 0 10px; color:var(--surf-navy); }.partner-steps p { color:#63758a; line-height:1.6; }.partner-notice,.partner-legal-note { padding:20px 24px; border:1px solid rgba(8,184,201,.22); border-radius:20px; background:#ecfcfd; }.partner-notice { display:grid; grid-template-columns:auto 1fr; gap:22px; margin-top:22px; }.partner-notice strong { color:var(--surf-blue); }.partner-notice p,.partner-legal-note { margin:0; color:#52677c; line-height:1.65; }
.partner-example { padding:clamp(32px,5vw,60px); border-radius:38px; color:#fff; background:var(--surf-navy); }.partner-example-label { color:#92edf0; font-weight:900; text-transform:uppercase; letter-spacing:.1em; }.partner-example blockquote { max-width:1000px; margin:24px 0; font-size:clamp(1.4rem,2.6vw,2.25rem); line-height:1.4; font-weight:750; }.partner-example > p { color:#c7dbe6; }
.partner-simulator { padding:clamp(34px,5vw,60px); border-radius:42px; background:linear-gradient(145deg,#eefcfd,#fff); }.partner-simulator-grid { align-items:stretch; }.partner-results { background:linear-gradient(145deg,#062657,#087ca8); }.partner-results span,.partner-results p { color:#d4eaf2; }.partner-results strong { color:#fff; }.partner-results .result-highlight { border-color:rgba(255,255,255,.25); background:rgba(255,255,255,.11); }.partner-results .result-highlight strong { color:#8cf1ed; font-size:2rem; }
.partner-form-section { display:grid; grid-template-columns:.85fr 1.15fr; gap:48px; align-items:start; padding:clamp(34px,5vw,60px); border-radius:42px; background:linear-gradient(140deg,#062657,#075b92); }.partner-form-copy h2 { color:#fff; font-size:clamp(2.2rem,4vw,3.8rem); line-height:1.05; }.partner-form-copy > p { color:#d1e6ef; line-height:1.7; }.partner-form-copy .partner-legal-note { color:#cde7eb; background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.15); }.partner-lead-form { display:grid; gap:14px; padding:28px; border-radius:28px; background:#fff; }.partner-lead-form label { display:grid; gap:7px; color:var(--surf-navy); font-weight:800; }.partner-lead-form input,.partner-lead-form textarea { width:100%; border:1px solid #d7e4ec; border-radius:14px; padding:13px 14px; font:inherit; }.partner-lead-form textarea { resize:vertical; }.partner-lead-form .moderation-check { display:flex; font-size:.87rem; font-weight:650; color:#586b80; }.partner-lead-form .moderation-check input { width:auto; }
.partner-faq-list { display:grid; gap:12px; max-width:920px; }.partner-faq-list details { padding:20px 22px; border:1px solid rgba(8,124,168,.13); border-radius:19px; background:#fff; }.partner-faq-list summary { cursor:pointer; color:var(--surf-navy); font-weight:900; }.partner-faq-list p { color:#63758a; line-height:1.65; }
@keyframes surfBreath { 0%,100%{transform:translate3d(0,0,0) rotate(-1deg)} 50%{transform:translate3d(-10px,-8px,0) rotate(1deg)} }
@media(max-width:1050px){.surf-hero{grid-template-columns:1fr;}.surf-visual{min-height:440px;max-width:700px;width:100%;margin:0 auto}.surf-expertise-grid,.partner-steps{grid-template-columns:repeat(2,1fr)}.surf-benefits,.surf-contact,.partner-form-section{grid-template-columns:1fr}.partner-hero{grid-template-columns:1fr}.partner-value-card{justify-self:start}.surf-partner-teaser{grid-template-columns:auto 1fr}.surf-partner-teaser .button{grid-column:1/-1;width:fit-content}}
@media(max-width:760px){.surf-hero{min-height:auto;padding-top:34px}.surf-hero h1,.partner-hero h1{font-size:clamp(3rem,15vw,4.7rem)}.surf-visual{min-height:410px}.surf-visual>img{width:125%;right:-20%}.orbit-card-one{top:3%}.orbit-card-two{top:36%}.orbit-card-three{bottom:2%}.surf-audience-grid,.surf-expertise-grid,.surf-process-list,.surf-benefit-grid,.partner-steps{grid-template-columns:1fr}.surf-process-list li{padding:20px 10px}.surf-process-list li:not(:last-child)::after{top:auto;right:auto;left:34px;bottom:-9px;width:1px;height:18px}.surf-expertise-section,.surf-benefits,.surf-needs,.surf-contact,.partner-simulator,.partner-form-section{border-radius:28px;padding:25px 20px}.surf-partner-teaser{grid-template-columns:1fr;padding:28px 24px}.surf-partner-teaser .button{grid-column:auto;width:100%}.partner-hero{min-height:auto;padding-top:34px}.partner-value-card{padding:30px}.partner-value-card>strong{font-size:6.5rem}.partner-notice{grid-template-columns:1fr}.partner-example{border-radius:28px;padding:30px 22px}.surf-heading h2{font-size:clamp(2.15rem,10vw,3rem)}}
@media(max-width:430px){.surf-hero-actions .button,.surf-hero-actions .text-link,.partner-hero .button{width:100%;text-align:center}.surf-trust-list{display:grid}.surf-visual{min-height:380px}.surf-orbit-card{width:64%;padding:16px}.surf-orbit-card small{font-size:.72rem}.surf-orbit-card strong{font-size:.9rem}.orbit-card-one{left:0}.orbit-card-two{right:0}.orbit-card-three{left:4%}.surf-card,.surf-expertise-card{min-height:280px;padding:24px}.surf-card a,.surf-expertise-card a{left:24px}.partner-value-card>strong{font-size:5.7rem}.partner-lead-form{padding:20px}}
@media(prefers-reduced-motion:reduce){.surf-visual>img{animation:none}.surf-card,.surf-expertise-card{transition:none}}

/* Header + hero LougoAI, validation visuelle du 23/07/2026 */
.page-shell {
  width: min(1360px, calc(100% - 48px));
}

.site-header {
  min-height: 112px;
  margin-bottom: 0;
  padding: 10px 0;
}

.site-header .wave-logo {
  width: clamp(174px, 15vw, 220px);
}

.site-header .site-nav {
  gap: clamp(8px, 1vw, 16px);
}

.site-header .site-nav > a {
  padding: 10px 4px;
  border-radius: 999px;
  font-size: 13px;
}

.site-header .site-nav .nav-partner-cta,
.site-header .site-nav .nav-primary-cta {
  min-height: 44px;
  padding: 11px 17px;
}

.site-header .site-nav .nav-partner-cta {
  gap: 7px;
  color: #063c72;
  border: 1px solid rgba(8, 124, 168, 0.27);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 25px rgba(6, 38, 87, 0.08);
}

.site-header .site-nav .nav-primary-cta {
  color: #fff;
  background: linear-gradient(105deg, #086fa7, #08b8c9);
  box-shadow: 0 12px 28px rgba(8, 124, 168, 0.22);
}

.surf-hero {
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(28px, 4vw, 64px);
  min-height: 650px;
  padding: clamp(36px, 5vw, 70px) 0 78px;
  overflow: visible;
}

.surf-hero::before {
  position: absolute;
  z-index: -1;
  top: 4%;
  right: -8%;
  width: 62%;
  height: 76%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(118, 224, 235, 0.18), rgba(255, 255, 255, 0) 69%);
  content: "";
}

.surf-hero-copy {
  padding-left: clamp(0px, 1vw, 14px);
}

.surf-hero h1 {
  max-width: 700px;
  font-size: clamp(3.8rem, 6.4vw, 6.65rem);
}

.surf-signature {
  position: relative;
  width: fit-content;
  margin: 8px 0 24px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-style: italic;
  letter-spacing: -0.02em;
}

.surf-signature::after {
  display: block;
  width: 64%;
  height: 3px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #08b8c9, rgba(8, 184, 201, 0));
  content: "";
}

.surf-lead {
  max-width: 650px;
  margin-bottom: 0;
}

.surf-hero-actions {
  align-items: center;
}

.surf-hero-actions .partner-button {
  color: #063c72;
  border: 1px solid rgba(8, 124, 168, 0.3);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(6, 38, 87, 0.08);
}

.surf-hero-actions .text-link {
  flex-basis: 100%;
  width: fit-content;
  margin-top: 2px;
  color: #087ca8;
  font-weight: 850;
}

.surf-visual {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 52% 28% 45% 24% / 24% 38% 35% 45%;
  background: #f7fdff;
  box-shadow: 0 34px 80px rgba(6, 38, 87, 0.13);
  isolation: isolate;
}

.surf-visual::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.55), transparent 22%),
    linear-gradient(0deg, rgba(5, 45, 83, 0.08), transparent 35%);
  content: "";
  pointer-events: none;
}

.surf-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 62% center;
  opacity: 1;
  filter: saturate(0.94) contrast(0.98);
  animation: heroOceanDrift 14s ease-in-out infinite alternate;
}

.surf-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 24px;
  max-width: 310px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  color: #fff;
  background: rgba(4, 48, 82, 0.52);
  backdrop-filter: blur(12px);
  font-size: 0.82rem;
  font-weight: 750;
  text-align: center;
}

@keyframes heroOceanDrift {
  from { transform: scale(1.01) translate3d(0, 0, 0); }
  to { transform: scale(1.045) translate3d(-0.8%, -0.4%, 0); }
}

@media (max-width: 1180px) {
  .page-shell {
    width: min(1180px, calc(100% - 34px));
  }

  .site-header .site-nav {
    display: none;
  }

  .site-header .menu-button {
    display: grid;
  }

  .surf-hero {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.9fr);
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 88px;
  }

  .site-header .wave-logo {
    width: clamp(150px, 42vw, 190px);
  }

  .surf-hero {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    padding-top: 22px;
  }

  .surf-hero h1 {
    font-size: clamp(3.2rem, 12vw, 5.3rem);
  }

  .surf-visual {
    width: 100%;
    min-height: clamp(330px, 67vw, 510px);
    border-radius: 34px;
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: min(100% - 28px, 480px);
  }

  .surf-hero {
    gap: 28px;
    padding-bottom: 48px;
  }

  .surf-kicker {
    font-size: 0.72rem;
  }

  .surf-hero h1 {
    margin-top: 12px;
    font-size: clamp(2.9rem, 14.6vw, 4rem);
    line-height: 0.94;
  }

  .surf-signature {
    font-size: 1.18rem;
  }

  .surf-lead {
    font-size: 1rem;
    line-height: 1.62;
  }

  .surf-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .surf-hero-actions .button,
  .surf-hero-actions .text-link {
    width: 100%;
    margin: 0;
    text-align: center;
  }

  .surf-trust-list {
    display: grid;
    gap: 10px;
  }

  .surf-visual {
    min-height: 315px;
    border-radius: 26px;
  }

  .surf-visual > img {
    object-position: 66% center;
  }

  .surf-visual figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
    border-radius: 18px;
    font-size: 0.76rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .surf-visual > img {
    animation: none;
  }
}

/* Hero de positionnement LougoAI — version lisible et équilibrée */
.surf-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(460px, 0.92fr);
  gap: clamp(42px, 5vw, 78px);
  min-height: 660px;
}

.surf-hero-copy {
  max-width: 760px;
}

.surf-kicker {
  padding: 9px 15px;
  color: #087ca8;
  border: 1px solid rgba(8, 184, 201, 0.17);
  background: #ecfbfd;
  letter-spacing: 0.03em;
}

.surf-hero h1 {
  max-width: 800px;
  margin: 22px 0 24px;
  font-size: clamp(2.75rem, 4.45vw, 5rem);
  line-height: 1.01;
  letter-spacing: -0.052em;
}

.surf-hero h1 span {
  display: inline;
}

.surf-lead {
  max-width: 720px;
  color: #42556d;
  font-size: clamp(1.08rem, 1.4vw, 1.25rem);
  line-height: 1.68;
}

.surf-signature {
  margin: 22px 0 0;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
}

.surf-visual {
  min-height: 540px;
  border: 1px solid rgba(8, 124, 168, 0.1);
  border-radius: 38px;
  background: #eefbfe;
  box-shadow: 0 30px 70px rgba(6, 38, 87, 0.14);
}

.surf-visual::after {
  background: linear-gradient(0deg, rgba(4, 48, 82, 0.14), transparent 42%);
}

.surf-visual > img {
  width: 132%;
  height: 132%;
  inset: -16% -15% -16% -17%;
  object-position: 78% center;
  filter: saturate(1.08) contrast(1.03);
}

.surf-visual figcaption {
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 3px;
  max-width: 355px;
  padding: 14px 18px;
  border-radius: 18px;
  text-align: left;
}

.surf-visual figcaption strong,
.surf-visual figcaption span {
  display: block;
}

.surf-visual figcaption strong {
  font-size: 0.88rem;
}

.surf-visual figcaption span {
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.75rem;
  line-height: 1.35;
}

@media (max-width: 1180px) {
  .surf-hero {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.8fr);
  }

  .surf-hero h1 {
    font-size: clamp(2.65rem, 4.8vw, 4.2rem);
  }
}

@media (max-width: 860px) {
  .surf-hero {
    grid-template-columns: 1fr;
  }

  .surf-hero-copy {
    max-width: none;
  }

  .surf-hero h1 {
    font-size: clamp(2.65rem, 10.8vw, 4.3rem);
  }

  .surf-visual {
    min-height: clamp(350px, 72vw, 500px);
  }
}

@media (max-width: 520px) {
  .surf-hero h1 {
    margin: 17px 0 20px;
    font-size: clamp(2.35rem, 10.8vw, 3.25rem);
    line-height: 1.02;
  }

  .surf-lead {
    font-size: 1rem;
  }

  .surf-signature {
    margin-top: 18px;
  }

  .surf-visual {
    min-height: 330px;
  }

  .surf-visual > img {
    width: 145%;
    height: 145%;
    inset: -22% -25% -23% -20%;
    object-position: 82% center;
  }
}

/* Priorité finale : accueil large, sans visuel hero séparé */
.surf-home .surf-hero {
  display: block;
  grid-template-columns: none;
  min-height: auto;
  padding: clamp(70px, 8vw, 118px) clamp(18px, 4vw, 58px) clamp(74px, 8vw, 116px);
}
.surf-home .surf-hero-copy { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0; }
.surf-home .surf-hero h1 { max-width: 1160px; font-size: clamp(3rem, 5.3vw, 5.6rem); line-height: 1.02; }
@media (max-width:860px) {
  .surf-home .surf-hero { padding: 56px 28px 66px; }
  .surf-home .surf-hero h1 { font-size: clamp(2.65rem, 9.5vw, 4.4rem); }
}
@media (max-width:520px) {
  .surf-home .surf-hero { padding: 42px 20px 52px; }
  .surf-home .surf-hero h1 { font-size: clamp(2.3rem, 10.6vw, 3.1rem); line-height:1.04; }
}

/* Hero épuré final */
.surf-home .surf-hero {
  display: flex;
  min-height: clamp(680px, 76vh, 820px);
  align-items: center;
  padding: clamp(82px, 9vw, 138px) clamp(22px, 5vw, 72px);
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 88% 16%, rgba(8, 184, 201, 0.075), transparent 31%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,253,255,0.72));
  box-shadow: none;
}

.surf-home .surf-hero::before {
  right: -5%;
  bottom: -65%;
  width: 48%;
  height: 82%;
  border-color: rgba(8, 184, 201, 0.055);
}

.surf-home .surf-hero::after {
  bottom: -62px;
  opacity: 0.28;
}

.surf-home .surf-hero-copy {
  width: min(1120px, 100%);
  max-width: none;
  margin: 0 auto;
}

.hero-brand-signature {
  display: grid;
  width: fit-content;
  gap: 2px;
  margin-bottom: clamp(34px, 5vw, 62px);
  color: #075b92;
}

.hero-brand-signature span,
.hero-brand-signature strong,
.hero-brand-signature em {
  display: block;
}

.hero-brand-signature span,
.hero-brand-signature strong {
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-brand-signature strong {
  color: #08a9bc;
  font-size: clamp(1.65rem, 2.5vw, 2.3rem);
}

.hero-brand-signature em {
  margin-top: 10px;
  color: #47677c;
  font-size: clamp(0.98rem, 1.35vw, 1.18rem);
  font-weight: 720;
}

.surf-home .surf-hero h1 {
  display: grid;
  max-width: 1080px;
  gap: 5px;
  margin: 0 0 32px;
  line-height: 1;
  text-wrap: initial;
}

.surf-home .surf-hero h1 .hero-title-brand,
.surf-home .surf-hero h1 .hero-title-service,
.surf-home .surf-hero h1 .hero-title-scope {
  display: block;
}

.surf-home .surf-hero h1 .hero-title-brand {
  color: #062657;
  background: none;
  font-size: clamp(3.25rem, 5.6vw, 6rem);
}

.surf-home .surf-hero h1 .hero-title-service {
  max-width: 1000px;
  color: #062657;
  background: none;
  font-size: clamp(2.2rem, 3.65vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.surf-home .surf-hero h1 .hero-title-scope {
  margin-top: 8px;
  color: transparent;
  background: linear-gradient(100deg, #075b92, #08b8c9);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(2.4rem, 4.1vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.surf-home .surf-lead {
  max-width: 760px;
  margin: 0;
  color: #4b6176;
  font-size: clamp(1.08rem, 1.4vw, 1.25rem);
  line-height: 1.75;
}

.surf-home .surf-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
}

.surf-home .surf-hero-actions .button {
  min-width: 210px;
}

@media (max-width: 860px) {
  .surf-home .surf-hero {
    min-height: auto;
    padding: 72px 30px 86px;
  }

  .hero-brand-signature {
    margin-bottom: 42px;
  }
}

@media (max-width: 520px) {
  .surf-home .surf-hero {
    padding: 56px 18px 68px;
  }

  .hero-brand-signature {
    margin-bottom: 36px;
  }

  .hero-brand-signature span,
  .hero-brand-signature strong {
    font-size: 1.35rem;
  }

  .hero-brand-signature strong {
    font-size: 1.75rem;
  }

  .surf-home .surf-hero h1 {
    gap: 7px;
    margin-bottom: 26px;
  }

  .surf-home .surf-hero h1 .hero-title-brand {
    font-size: clamp(3rem, 15vw, 4rem);
  }

  .surf-home .surf-hero h1 .hero-title-service {
    font-size: clamp(1.75rem, 8.6vw, 2.45rem);
    line-height: 1.08;
  }

  .surf-home .surf-hero h1 .hero-title-scope {
    font-size: clamp(2rem, 10vw, 2.75rem);
    line-height: 1.04;
  }

  .surf-home .surf-lead {
    font-size: 1rem;
    line-height: 1.68;
  }

  .surf-home .surf-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 32px;
  }

  .surf-home .surf-hero-actions .button {
    width: 100%;
    min-width: 0;
  }
}

/* Priorité finale : Hero Shortlist */
.surf-home .surf-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.72fr);
  gap: clamp(58px, 7vw, 108px);
  min-height: clamp(690px, 78vh, 860px);
  align-items: center;
  padding: clamp(80px, 8vw, 126px) clamp(20px, 4vw, 56px);
}
.surf-home .surf-hero-copy { width:100%; max-width:760px; margin:0; }
.surf-home .surf-hero h1 .hero-title-brand { font-size:clamp(3.25rem,5vw,5.4rem); }
.surf-home .surf-hero h1 .hero-title-service { font-size:clamp(2rem,3vw,3.25rem); }
.surf-home .surf-hero h1 .hero-title-scope { font-size:clamp(2.25rem,3.5vw,3.8rem); }
.surf-home .hero-brand-signature { margin:0 0 25px; }
@media(max-width:1100px) {
  .surf-home .surf-hero { grid-template-columns:minmax(0,1fr) minmax(340px,.72fr); gap:42px; }
}
@media(max-width:860px) {
  .surf-home .surf-hero { grid-template-columns:1fr; gap:58px; padding:72px 30px 86px; }
  .hero-shortlist-card { width:min(560px,100%); justify-self:start; }
}
@media(max-width:520px) {
  .surf-home .surf-hero { gap:46px; padding:54px 18px 68px; }
  .surf-home .surf-hero h1 .hero-title-brand { font-size:clamp(2.9rem,14vw,3.8rem); }
  .surf-home .surf-hero h1 .hero-title-service { font-size:clamp(1.7rem,8.3vw,2.25rem); }
  .surf-home .surf-hero h1 .hero-title-scope { font-size:clamp(1.95rem,9.4vw,2.55rem); }
}

/* Correction de proportions — ne modifie ni le wording ni la structure */
.page-shell {
  width: min(1400px, calc(100% - 56px));
}

.site-header {
  min-height: 132px;
  gap: 36px;
  padding: 14px 0;
}

.site-header .wave-logo {
  width: 250px;
  height: auto;
  aspect-ratio: 305 / 190;
  object-fit: contain;
}

.site-header .site-nav {
  gap: clamp(12px, 1.2vw, 21px);
}

.site-header .site-nav > a {
  padding: 12px 5px;
  font-size: 15px;
}

.site-header .site-nav .nav-partner-cta,
.site-header .site-nav .nav-primary-cta,
.site-header .site-nav .nav-cta {
  min-height: 50px;
  padding: 13px 21px;
  font-size: 14px;
}

.site-header .site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #1178ff, #08aecd);
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(17, 120, 255, 0.2);
}

.site-header .site-nav .nav-cta:hover,
.site-header .site-nav .nav-cta:focus-visible {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(17, 120, 255, 0.26);
}

.surf-home .surf-hero {
  grid-template-columns: minmax(0, 1.22fr) minmax(500px, 1fr);
  gap: clamp(58px, 5vw, 88px);
  width: 100%;
  min-height: 820px;
  padding: clamp(86px, 7vw, 118px) clamp(36px, 4.2vw, 64px);
}

.surf-home .surf-hero-copy {
  max-width: 760px;
}

.surf-home .surf-hero h1 {
  max-width: 750px;
  margin-bottom: 32px;
}

.surf-home .surf-hero h1 .hero-title-brand {
  font-size: clamp(4rem, 4.5vw, 5.25rem);
}

.surf-home .surf-hero h1 .hero-title-service {
  max-width: 740px;
  font-size: clamp(2.35rem, 2.7vw, 3.15rem);
  line-height: 1.08;
}

.surf-home .surf-hero h1 .hero-title-scope {
  font-size: clamp(2.6rem, 3.15vw, 3.65rem);
  line-height: 1.04;
}

.surf-home .hero-brand-signature {
  margin-bottom: 30px;
}

.surf-home .surf-lead {
  max-width: 690px;
  font-size: clamp(1.08rem, 1.2vw, 1.22rem);
}

.surf-home .surf-hero-actions {
  gap: 18px;
  margin-top: 40px;
}

.surf-home .surf-hero-actions .button {
  min-width: 230px;
  min-height: 56px;
  padding: 16px 26px;
  font-size: 1rem;
}

.hero-shortlist-card {
  width: min(550px, 100%);
  min-height: 590px;
  padding: 40px;
}

.hero-shortlist-card .match-card {
  min-height: 315px;
}

@media (max-width: 1440px) {
  .page-shell {
    width: min(1360px, calc(100% - 44px));
  }

  .site-header .wave-logo {
    width: 200px;
  }

  .site-header .site-nav > a {
    font-size: 14px;
  }

  .surf-home .surf-hero {
    grid-template-columns: minmax(0, 1.16fr) minmax(480px, 0.9fr);
    gap: 52px;
    padding-right: 44px;
    padding-left: 44px;
  }

  .hero-shortlist-card {
    width: min(520px, 100%);
  }
}

@media (max-width: 1180px) {
  .site-header .site-nav {
    display: none;
  }

  .site-header .menu-button {
    display: grid;
  }

  .surf-home .surf-hero {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.78fr);
    gap: 42px;
    padding-right: 34px;
    padding-left: 34px;
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 108px;
  }

  .site-header .wave-logo {
    width: 170px;
  }

  .surf-home .surf-hero {
    grid-template-columns: 1fr;
    gap: 64px;
    min-height: auto;
    padding: 78px 42px 94px;
  }

  .surf-home .surf-hero-copy {
    max-width: 780px;
  }

  .hero-shortlist-card {
    width: min(560px, 100%);
    min-height: 560px;
    justify-self: start;
  }
}

@media (max-width: 600px) {
  .page-shell {
    width: min(100% - 28px, 560px);
  }

  .site-header {
    min-height: 92px;
  }

  .site-header .wave-logo {
    width: 140px;
  }

  .surf-home .surf-hero {
    gap: 48px;
    padding: 58px 20px 72px;
  }

  .surf-home .surf-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .surf-home .surf-hero-actions .button {
    width: 100%;
    min-width: 0;
  }

  .hero-shortlist-card {
    min-height: 0;
    padding: 25px 18px;
  }
}

/* Sélection éditoriale premium de la page Métiers */
.premium-expertise-selection {
  padding: clamp(44px, 6vw, 76px);
  border: 1px solid rgba(11, 92, 255, 0.1);
  border-radius: 32px;
  background:
    radial-gradient(circle at 92% 8%, rgba(8, 184, 201, 0.1), transparent 32%),
    linear-gradient(145deg, #ffffff, #f7fbff);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.08);
}

.premium-expertise-selection .section-heading {
  max-width: 720px;
}

.premium-expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.premium-expertise-card {
  display: flex;
  min-height: 160px;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 25px;
  border: 1px solid rgba(11, 92, 255, 0.11);
  border-radius: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 15px 38px rgba(15, 23, 42, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.premium-expertise-card:hover,
.premium-expertise-card:focus-visible {
  color: var(--ink);
  border-color: rgba(11, 92, 255, 0.34);
  box-shadow: 0 22px 46px rgba(11, 92, 255, 0.12);
  transform: translateY(-3px);
}

.premium-expertise-card strong {
  font-size: 1.15rem;
}

.premium-expertise-card span {
  color: var(--muted);
  line-height: 1.6;
}

.premium-expertise-action {
  margin-top: 30px;
}

@media (max-width: 900px) {
  .premium-expertise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .premium-expertise-selection {
    padding: 30px 20px;
    border-radius: 24px;
  }

  .premium-expertise-grid {
    grid-template-columns: 1fr;
  }

  .premium-expertise-card {
    min-height: 135px;
  }
}

/* Correction ciblée du header et du menu mobile */
.site-header .brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.site-header .wave-logo {
  display: block;
  width: clamp(190px, 16vw, 230px);
  height: auto;
  max-height: none;
  object-fit: contain;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.mobile-menu-open {
  overflow: hidden;
  touch-action: none;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.24);
  backdrop-filter: blur(8px);
}

.mobile-menu-backdrop[hidden] {
  display: none;
}

.menu-button {
  position: relative;
  z-index: 1003;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  touch-action: manipulation;
}

.menu-button span {
  width: 22px;
  height: 3px;
  background: #0b3f91;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1440px) {
  .site-header .wave-logo {
    width: 200px;
  }
}

@media (max-width: 1180px) {
  .site-header {
    position: relative;
    top: auto;
    z-index: 1001;
    align-items: center;
    transform: none;
  }

  .site-header .wave-logo {
    width: clamp(160px, 20vw, 190px);
  }

  .site-header .menu-button {
    display: flex;
    margin-left: auto;
  }

  .site-header .site-nav {
    position: fixed;
    top: 92px;
    right: 16px;
    left: 16px;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    max-height: calc(100dvh - 112px);
    overflow-y: auto;
    padding: 16px;
    border: 1px solid rgba(11, 92, 255, 0.14);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-header .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .site-header .site-nav > a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 15px;
    white-space: normal;
  }

  .site-header .site-nav .nav-partner-cta,
  .site-header .site-nav .nav-cta {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .site-header {
    position: relative;
    top: auto;
    min-height: 88px;
    transform: none;
  }

  .site-header .wave-logo {
    width: clamp(125px, 38vw, 150px);
  }

  .site-header .site-nav {
    top: 82px;
    right: 12px;
    left: 12px;
    max-height: calc(100dvh - 98px);
  }
}
