:root {
  --navy-950: #061a2e;
  --navy-900: #0b2c4d;
  --navy-800: #123f6d;
  --blue-700: #087fb9;
  --blue-600: #0a96d6;
  --blue-100: #e9f7fd;
  --green-700: #299d49;
  --green-600: #42b94f;
  --green-100: #eaf8ed;
  --ink: #10263a;
  --text: #263b4e;
  --muted: #627486;
  --line: #dce6ed;
  --line-dark: rgba(255, 255, 255, 0.16);
  --surface: #ffffff;
  --surface-soft: #f4f8fb;
  --surface-blue: #eef8fd;
  --surface-green: #edf9f0;
  --shadow-sm: 0 12px 30px rgba(11, 44, 77, 0.08);
  --shadow-md: 0 22px 60px rgba(11, 44, 77, 0.13);
  --shadow-lg: 0 30px 90px rgba(3, 20, 35, 0.22);
  --gradient: linear-gradient(110deg, #0a96d6 0%, #43be50 100%);
  --gradient-dark: linear-gradient(135deg, #0b2c4d 0%, #123f6d 58%, #0d5371 100%);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1200px;
  --header-height: 78px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 28px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

svg {
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI Variable Display", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.4rem);
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.65rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

p {
  margin-bottom: 1em;
}

::selection {
  color: #fff;
  background: var(--blue-700);
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--navy-950);
  border-radius: 8px;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(220, 230, 237, 0.92);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 28px rgba(11, 44, 77, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  color: var(--navy-900);
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 45px;
  height: 40px;
  object-fit: contain;
}

.brand-name {
  font-family: "Avenir Next", "Segoe UI Variable Display", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.brand-name strong {
  color: var(--green-700);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  padding: 27px 0 25px;
  color: #2c4052;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 999px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--navy-900);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--blue-700);
}

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 9px;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  width: 24px;
  height: 2px;
  margin: 3px 0;
  background: var(--navy-900);
  border-radius: 99px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-button[aria-expanded="true"] span:nth-of-type(2) {
  transform: translateY(8px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-of-type(3) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-of-type(4) {
  transform: translateY(-8px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 23px;
  color: #fff;
  background: var(--gradient);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 11px 28px rgba(8, 127, 185, 0.22);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(41, 157, 73, 0.26);
  filter: saturate(1.08);
}

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 43px;
  padding: 10px 17px;
  font-size: 0.85rem;
}

.button-light {
  color: var(--navy-950);
  background: #fff;
  box-shadow: 0 12px 30px rgba(3, 20, 35, 0.18);
}

.button-light:hover {
  box-shadow: 0 18px 38px rgba(3, 20, 35, 0.24);
}

.button-outline,
.button-ghost {
  color: var(--navy-900);
  background: transparent;
  border: 1.5px solid rgba(11, 44, 77, 0.25);
  box-shadow: none;
}

.button-outline:hover,
.button-ghost:hover {
  color: var(--blue-700);
  border-color: var(--blue-700);
  box-shadow: none;
}

.button-icon,
.text-link-icon,
.mobile-action-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy-900);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  color: var(--blue-700);
}

.text-link .text-link-icon {
  transition: transform 0.2s ease;
}

.text-link:hover .text-link-icon {
  transform: translateX(4px);
}

.text-link-light {
  color: #fff;
}

.text-link-light:hover {
  color: #bdebd0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-700);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.kicker::before {
  width: 17px;
  height: 2px;
  background: var(--gradient);
  border-radius: 99px;
  content: "";
}

.kicker-light {
  color: #aeeac2;
}

.kicker-light::before {
  background: linear-gradient(90deg, #44c2f1, #83dc8b);
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-soft {
  background: var(--surface-soft);
}

.section-dark {
  color: #d7e5ef;
  background: var(--navy-950);
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading h2 {
  max-width: 770px;
  margin: 13px 0 0;
}

.section-heading p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading-split {
  display: grid;
  grid-template-columns: 1.1fr 0.72fr;
  gap: 70px;
  align-items: end;
}

.section-heading-centered {
  max-width: 760px;
  margin-right: auto;
  margin-bottom: 52px;
  margin-left: auto;
  text-align: center;
}

.section-heading-centered .kicker {
  justify-content: center;
}

.section-heading-centered h2 {
  margin: 14px auto 15px;
}

.section-heading-centered p {
  margin: 0 auto;
}

.home-hero {
  position: relative;
  min-height: 730px;
  overflow: hidden;
  color: #fff;
  background: var(--navy-950);
}

.home-hero-media,
.home-hero-overlay {
  position: absolute;
  inset: 0;
}

.home-hero-media picture,
.home-hero-media img {
  width: 100%;
  height: 100%;
}

.home-hero-media img {
  object-fit: cover;
  object-position: center;
}

.home-hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 26, 46, 0.98) 0%, rgba(6, 26, 46, 0.94) 33%, rgba(6, 26, 46, 0.72) 55%, rgba(6, 26, 46, 0.11) 77%, rgba(6, 26, 46, 0.02) 100%),
    linear-gradient(0deg, rgba(6, 26, 46, 0.18), transparent 30%);
}

.home-hero-inner {
  position: relative;
  z-index: 3;
  min-height: 730px;
  padding-top: 115px;
  padding-bottom: 105px;
}

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

.home-hero h1 {
  max-width: 690px;
  margin: 17px 0 24px;
  color: #fff;
  font-size: clamp(3.35rem, 7.2vw, 6.7rem);
  letter-spacing: -0.06em;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 0;
  color: #d8e7f1;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 33px 0 0;
  padding: 0;
  list-style: none;
}

.hero-chips li {
  padding: 7px 13px;
  color: #dbeaf4;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 750;
  backdrop-filter: blur(8px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 470px;
  margin-top: 24px;
  color: #b9ccda;
  font-size: 0.82rem;
}

.hero-trust-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: none;
  stroke: #72d58b;
  stroke-width: 1.8;
}

.portrait-label {
  position: absolute;
  right: 0;
  bottom: 55px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 310px;
  padding: 15px 18px;
  color: #fff;
  background: rgba(6, 26, 46, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}

.portrait-label strong,
.portrait-label span {
  display: block;
}

.portrait-label strong {
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.portrait-label span span {
  color: #bcd0df;
  font-size: 0.76rem;
  line-height: 1.45;
}

.portrait-dot,
.status-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  margin-top: 5px;
  background: #67d879;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(103, 216, 121, 0.15);
}

.hero-orbit {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  top: -310px;
  left: -250px;
  width: 700px;
  height: 700px;
}

.hero-orbit-two {
  top: -195px;
  left: -130px;
  width: 470px;
  height: 470px;
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 34px;
  overflow: hidden;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(11, 44, 77, 0.04);
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--gradient);
  content: "";
}

.service-card:hover {
  border-color: rgba(10, 150, 214, 0.38);
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.service-card-featured {
  color: #dbeaf4;
  background: var(--gradient-dark);
  border-color: transparent;
}

.service-card-featured h3 {
  color: #fff;
}

.service-card-featured p {
  color: #c5d8e5;
}

.service-card-featured .service-number {
  color: rgba(255, 255, 255, 0.12);
}

.service-card-featured .service-link {
  color: #fff;
}

.service-number {
  position: absolute;
  top: 17px;
  right: 24px;
  color: #edf3f7;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 4.6rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.service-icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 61px;
  height: 61px;
  place-items: center;
  margin-bottom: 47px;
  color: var(--blue-700);
  background: linear-gradient(135deg, var(--blue-100), var(--green-100));
  border-radius: 17px;
}

.service-card-featured .service-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.line-icon {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.service-card h3 {
  margin-bottom: 13px;
  font-size: 1.55rem;
}

.service-card p {
  margin-bottom: 28px;
  color: var(--muted);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 850;
}

.philosophy {
  overflow: hidden;
}

.philosophy-orbit {
  position: absolute;
  right: -310px;
  bottom: -380px;
  width: 900px;
  height: 900px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow: inset 0 0 0 150px rgba(255, 255, 255, 0.015), inset 0 0 0 300px rgba(255, 255, 255, 0.012);
}

.philosophy-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 100px;
  align-items: start;
}

.philosophy-statement {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.philosophy-statement h2 {
  margin: 17px 0 23px;
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
}

.philosophy-statement h2 em {
  color: #8ce09f;
  font-style: normal;
}

.philosophy-statement p {
  max-width: 590px;
  margin-bottom: 0;
  color: #b8ccda;
  font-size: 1.08rem;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.process-list li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 24px;
  padding: 31px 0;
  border-bottom: 1px solid var(--line-dark);
}

.process-number {
  color: #69d681;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.process-list h3 {
  margin-bottom: 7px;
  color: #fff;
  font-size: 1.4rem;
}

.process-list p {
  max-width: 480px;
  margin-bottom: 0;
  color: #aebfcd;
}

.section-situations {
  background:
    radial-gradient(circle at 12% 10%, rgba(10, 150, 214, 0.09), transparent 30%),
    #fff;
}

.situations-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 88px;
  align-items: start;
}

.situations-intro {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.situations-intro h2 {
  margin: 14px 0 20px;
  font-size: clamp(2.1rem, 4.1vw, 3.5rem);
}

.situations-intro p {
  margin-bottom: 26px;
  color: var(--muted);
}

.situation-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.situation-item {
  min-height: 250px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 20px rgba(11, 44, 77, 0.035);
}

.situation-item > span {
  display: block;
  margin-bottom: 48px;
  color: var(--green-700);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.situation-item h3 {
  margin-bottom: 10px;
}

.situation-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-team-preview {
  background: var(--surface-soft);
}

.team-preview-grid {
  display: grid;
  grid-template-columns: 0.9fr 0.9fr 1.05fr;
  gap: 20px;
}

.team-preview-card,
.team-preview-message {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.team-preview-card {
  color: #fff;
  text-decoration: none;
}

.team-preview-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.team-preview-photo:hover img {
  transform: scale(1.035);
}

.team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 26, 46, 0.92) 0%, rgba(6, 26, 46, 0.08) 58%);
}

.team-card-copy {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
}

.team-card-copy strong,
.team-card-copy small {
  display: block;
}

.team-card-copy strong {
  margin-bottom: 5px;
  color: #fff;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 1.42rem;
  letter-spacing: -0.03em;
}

.team-card-copy small {
  color: #c4d6e2;
  font-size: 0.82rem;
  line-height: 1.45;
}

.team-preview-monogram {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(73, 201, 85, 0.34), transparent 35%),
    linear-gradient(145deg, #0d3458, #0b223c);
}

.monogram {
  position: relative;
  z-index: 2;
  color: #fff;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.08em;
}

.monogram-orbit {
  position: absolute;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow: inset 0 0 0 60px rgba(255, 255, 255, 0.025), inset 0 0 0 120px rgba(255, 255, 255, 0.018);
}

.team-preview-message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  background: #fff;
  border: 1px solid var(--line);
}

.team-preview-message h3 {
  margin: 16px 0 17px;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.team-preview-message p {
  margin-bottom: 28px;
  color: var(--muted);
}

.team-preview-message .button {
  align-self: flex-start;
}

.section-cta {
  padding-top: 0;
  padding-bottom: 112px;
  background: var(--surface-soft);
}

.cta-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 55px;
  align-items: center;
  padding: 54px;
  overflow: hidden;
  color: #d8e7f1;
  background:
    radial-gradient(circle at 85% 0%, rgba(68, 200, 83, 0.24), transparent 35%),
    var(--gradient-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.cta-banner::after {
  position: absolute;
  right: -170px;
  bottom: -250px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: inset 0 0 0 85px rgba(255, 255, 255, 0.02), inset 0 0 0 170px rgba(255, 255, 255, 0.015);
  content: "";
}

.cta-banner > * {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  max-width: 760px;
  margin: 13px 0 13px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.cta-banner p {
  max-width: 700px;
  margin-bottom: 0;
  color: #bfd2df;
}

.cta-banner-actions {
  display: grid;
  gap: 19px;
  min-width: 245px;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 850;
  text-decoration: none;
}

.cta-phone span,
.cta-phone small {
  display: block;
}

.cta-phone small {
  margin-bottom: 2px;
  color: #aebfcd;
  font-size: 0.72rem;
  font-weight: 650;
}

.cta-phone-icon {
  width: 35px;
  height: 35px;
  padding: 8px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.7;
  background: rgba(255, 255, 255, 0.11);
  border-radius: 50%;
}

.site-footer {
  padding: 76px 0 28px;
  color: #afc2d0;
  background: #061a2e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.72fr 1.05fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.brand-footer {
  color: #fff;
}

.brand-footer .brand-name strong {
  color: #6cd67c;
}

.footer-brand p {
  max-width: 330px;
  margin: 18px 0 0;
  color: #9db2c1;
  font-size: 0.92rem;
}

.footer-brand .regulatory {
  color: #7f99ab;
  font-size: 0.78rem;
  line-height: 1.55;
}

.footer-title {
  margin: 7px 0 19px;
  color: #fff;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.footer-links,
.footer-contact {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  color: #afc2d0;
  font-size: 0.89rem;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #73d887;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  color: #afc2d0;
  font-size: 0.89rem;
  line-height: 1.5;
}

.footer-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 3px;
  fill: none;
  stroke: #65ca78;
  stroke-width: 1.8;
}

.footer-cta {
  padding: 24px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
}

.footer-kicker {
  color: #75d987;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-cta h2 {
  margin: 9px 0 8px;
  color: #fff;
  font-size: 1.45rem;
}

.footer-cta p {
  margin-bottom: 18px;
  color: #9eb2c1;
  font-size: 0.85rem;
}

.footer-cta .button {
  width: 100%;
  min-height: 46px;
  padding: 10px 16px;
  font-size: 0.82rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  padding-top: 24px;
  color: #718b9d;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
}

.mobile-actions {
  display: none;
}

.inner-hero {
  position: relative;
  overflow: hidden;
  color: #d8e7f1;
  background:
    radial-gradient(circle at 80% 20%, rgba(66, 185, 79, 0.2), transparent 28%),
    var(--gradient-dark);
}

.inner-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.72fr;
  gap: 90px;
  align-items: end;
  padding-top: 108px;
  padding-bottom: 104px;
}

.inner-hero h1 {
  max-width: 780px;
  margin: 17px 0 0;
  color: #fff;
  font-size: clamp(2.85rem, 6vw, 5.3rem);
}

.inner-hero-copy {
  padding-bottom: 6px;
}

.inner-hero-copy p {
  margin-bottom: 24px;
  color: #c0d3df;
  font-size: 1.08rem;
}

.inner-hero-orbit {
  position: absolute;
  right: -260px;
  top: -440px;
  width: 860px;
  height: 860px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: inset 0 0 0 150px rgba(255, 255, 255, 0.018), inset 0 0 0 300px rgba(255, 255, 255, 0.012);
}

.inner-hero-compact .inner-hero-grid {
  padding-top: 78px;
  padding-bottom: 78px;
}

.inner-hero-compact h1 {
  font-size: clamp(2.55rem, 5vw, 4.5rem);
}

.profile-feature-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 86px;
  align-items: center;
}

.profile-photo-wrap {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: #d7d7d7;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.profile-photo-wrap picture,
.profile-photo-wrap img {
  width: 100%;
  height: 100%;
}

.profile-photo-wrap img {
  position: absolute;
  object-fit: cover;
  object-position: center 28%;
}

.profile-photo-caption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 17px 18px;
  color: #fff;
  background: rgba(6, 26, 46, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  backdrop-filter: blur(14px);
}

.profile-photo-caption span,
.profile-photo-caption small {
  display: block;
}

.profile-photo-caption small {
  color: #bcd0dd;
  font-size: 0.78rem;
}

.profile-copy h2 {
  margin: 15px 0 9px;
}

.profile-role {
  margin-bottom: 24px;
  color: var(--green-700);
  font-size: 0.87rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-transform: uppercase;
}

.profile-intro {
  color: var(--ink);
  font-size: 1.16rem;
  font-weight: 650;
}

.profile-copy > p:not(.profile-role):not(.profile-intro) {
  color: var(--muted);
}

.profile-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 31px;
}

.profile-focus span {
  padding: 7px 12px;
  color: var(--navy-900);
  background: var(--surface-blue);
  border: 1px solid #d7edf6;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 780;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 23px;
}

.working-style {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.principle-card {
  padding: 31px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 9px 24px rgba(11, 44, 77, 0.04);
}

.principle-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 31px;
  color: var(--blue-700);
  background: linear-gradient(135deg, var(--blue-100), var(--green-100));
  border-radius: 17px;
}

.principle-card h3 {
  margin-bottom: 11px;
}

.principle-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.profile-secondary-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr;
  gap: 90px;
  align-items: center;
}

.pierre-visual {
  position: relative;
  display: grid;
  min-height: 570px;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 80% 15%, rgba(76, 208, 90, 0.4), transparent 35%),
    linear-gradient(145deg, #0f426c, #071e35);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.pierre-monogram {
  position: relative;
  z-index: 3;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(6rem, 13vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.1em;
}

.pierre-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.pierre-orbit-one {
  width: 420px;
  height: 420px;
  box-shadow: inset 0 0 0 80px rgba(255, 255, 255, 0.025), inset 0 0 0 160px rgba(255, 255, 255, 0.018);
}

.pierre-orbit-two {
  width: 680px;
  height: 680px;
}

.pierre-label {
  position: absolute;
  right: 25px;
  bottom: 25px;
  left: 25px;
  z-index: 4;
  padding: 18px;
  background: rgba(6, 26, 46, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  backdrop-filter: blur(12px);
}

.pierre-label strong,
.pierre-label span {
  display: block;
}

.pierre-label span {
  color: #bcd0dd;
  font-size: 0.82rem;
}

.product-jump {
  position: sticky;
  z-index: 60;
  top: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.product-jump .container {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-top: 13px;
  padding-bottom: 13px;
}

.product-jump a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  color: var(--navy-900);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.product-jump a:hover {
  color: var(--blue-700);
  border-color: #a9dced;
}

.jump-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.product-detail {
  scroll-margin-top: 140px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 76px;
  align-items: center;
}

.product-detail-reverse {
  grid-template-columns: 1.22fr 0.78fr;
}

.product-visual {
  position: relative;
  display: flex;
  min-height: 490px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.product-visual::before,
.product-visual::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  content: "";
}

.product-visual::before {
  width: 360px;
  height: 360px;
  box-shadow: inset 0 0 0 65px rgba(255, 255, 255, 0.03), inset 0 0 0 130px rgba(255, 255, 255, 0.025);
}

.product-visual::after {
  width: 620px;
  height: 620px;
}

.product-visual-blue {
  background: linear-gradient(145deg, #087fb9, #0c4f81);
}

.product-visual-green {
  background: linear-gradient(145deg, #2c9e4b, #0f6c55);
}

.product-visual-navy {
  background:
    radial-gradient(circle at 70% 10%, rgba(66, 185, 79, 0.35), transparent 34%),
    linear-gradient(145deg, #133f69, #061a2e);
}

.product-visual-number {
  position: absolute;
  top: 23px;
  right: 29px;
  color: rgba(255, 255, 255, 0.13);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 6.7rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.product-visual-icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 145px;
  height: 145px;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 34px;
  backdrop-filter: blur(10px);
}

.product-big-icon {
  width: 75px;
  height: 75px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
}

.product-visual p {
  position: relative;
  z-index: 2;
  margin: 24px 0 0;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-content h2 {
  margin: 14px 0 20px;
  font-size: clamp(2.25rem, 4.5vw, 3.8rem);
}

.product-lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.product-info-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 22px;
  margin: 31px 0;
  align-items: start;
}

.product-info-grid h3 {
  margin-bottom: 16px;
  font-size: 1.06rem;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 9px;
  font-size: 0.94rem;
}

.check-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin-top: 3px;
  fill: none;
  stroke: var(--green-700);
  stroke-width: 2.6;
}

.consider-card {
  padding: 22px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.consider-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section-disclaimer {
  padding-top: 0;
}

.disclaimer-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  padding: 30px;
  background: var(--surface-blue);
  border: 1px solid #d4eaf4;
  border-radius: var(--radius-md);
}

.disclaimer-icon {
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  color: var(--blue-700);
  background: #fff;
  border-radius: 15px;
}

.disclaimer-card h2 {
  margin-bottom: 9px;
  font-size: 1.35rem;
}

.disclaimer-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.quote-section {
  background:
    radial-gradient(circle at 5% 5%, rgba(10, 150, 214, 0.08), transparent 24%),
    var(--surface-soft);
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 38px;
  align-items: start;
}

.quote-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 35px);
}

.advisor-card {
  overflow: hidden;
  background: var(--navy-950);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.advisor-card picture {
  height: 345px;
}

.advisor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.advisor-card-content {
  padding: 29px;
  color: #c0d3df;
}

.advisor-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: #9ddfac;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.advisor-status i {
  width: 8px;
  height: 8px;
  background: #65d579;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(101, 213, 121, 0.13);
}

.advisor-card h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.85rem;
}

.advisor-card p {
  color: #a9bdcb;
  font-size: 0.91rem;
}

.advisor-phone {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 22px;
  color: #fff;
  font-weight: 850;
  text-decoration: none;
}

.advisor-phone span,
.advisor-phone small {
  display: block;
}

.advisor-phone small {
  color: #8fa7b8;
  font-size: 0.7rem;
  font-weight: 650;
}

.advisor-phone-icon {
  width: 42px;
  height: 42px;
  padding: 10px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.7;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.quote-assurance {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  margin-top: 17px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.quote-assurance-icon {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--green-700);
  stroke-width: 1.8;
}

.quote-assurance p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.quote-assurance strong {
  color: var(--ink);
}

.quote-form-shell {
  padding: 43px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-heading {
  margin-bottom: 28px;
}

.form-heading h2 {
  margin: 11px 0 8px;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
}

.form-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.form-progress {
  margin-bottom: 30px;
}

.form-progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.78rem;
}

.form-progress-track {
  height: 7px;
  overflow: hidden;
  background: #eaf0f4;
  border-radius: 999px;
}

.form-progress-track span {
  display: block;
  width: 33.333%;
  height: 100%;
  background: var(--gradient);
  border-radius: inherit;
  transition: width 0.35s ease;
}

.notice {
  margin-bottom: 24px;
  padding: 15px 17px;
  border-radius: 12px;
  font-size: 0.89rem;
}

.notice-error {
  color: #8b2730;
  background: #fff0f1;
  border: 1px solid #f2c6ca;
}

.quote-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.quote-form > .form-step + .form-step {
  margin-top: 42px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.quote-form.is-enhanced > .form-step + .form-step {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.quote-form legend {
  width: 100%;
  margin-bottom: 22px;
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.step-eyebrow {
  display: block;
  margin-bottom: 5px;
  color: var(--green-700);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.choice-card {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 105px;
  padding: 16px;
  background: var(--surface-soft);
  border: 1.5px solid var(--line);
  border-radius: 15px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.choice-card:hover {
  border-color: #9fd6e9;
  transform: translateY(-2px);
}

.choice-card:has(input:checked) {
  background: #eff9f4;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(66, 185, 79, 0.1);
}

.choice-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-card input:focus-visible ~ .choice-visual {
  outline: 3px solid rgba(10, 150, 214, 0.35);
  outline-offset: 3px;
}

.choice-visual {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--blue-700);
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 6px 15px rgba(11, 44, 77, 0.07);
}

.choice-card:has(input:checked) .choice-visual {
  color: var(--green-700);
}

.choice-icon {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.choice-card strong,
.choice-card small {
  display: block;
}

.choice-card strong {
  color: var(--ink);
  font-size: 0.94rem;
}

.choice-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.71rem;
  line-height: 1.4;
}

.field {
  margin-bottom: 19px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 16px;
}

.field label,
.mini-fieldset legend {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfdfe;
  border: 1.5px solid #d5e1e8;
  border-radius: 11px;
  outline: none;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 155px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: #fff;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(10, 150, 214, 0.1);
}

.field input:user-invalid,
.field select:user-invalid,
.field textarea:user-invalid {
  border-color: #c9505b;
}

.field-help {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.72rem;
}

.mini-fieldset {
  margin: 5px 0 24px !important;
}

.inline-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.inline-options label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  color: var(--text);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  cursor: pointer;
}

.inline-options input {
  accent-color: var(--green-700);
}

.consent-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: start;
  padding: 16px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
  cursor: pointer;
}

.consent-box input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green-700);
}

.consent-box a {
  color: var(--blue-700);
  font-weight: 750;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-disclaimer {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.form-navigation-js {
  display: none;
}

.quote-form.is-enhanced .form-navigation.form-navigation-js {
  display: flex;
}

.quote-form.is-enhanced .button.form-navigation-js {
  display: inline-flex;
}

.quote-form.is-enhanced .form-step:not([data-active="true"]) {
  display: none;
}

.success-section {
  position: relative;
  display: grid;
  min-height: 720px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(10, 150, 214, 0.15), transparent 30%),
    var(--surface-soft);
}

.success-card {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 70px auto;
  padding: 60px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.success-icon {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  margin: 0 auto 24px;
  color: #fff;
  background: var(--gradient);
  border-radius: 50%;
  box-shadow: 0 13px 30px rgba(41, 157, 73, 0.22);
}

.success-check {
  width: 39px;
  height: 39px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

.success-card h1 {
  margin: 14px 0 18px;
  font-size: clamp(2.4rem, 5vw, 4.25rem);
}

.success-card p {
  max-width: 610px;
  margin: 0 auto;
  color: var(--muted);
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.success-orbit {
  position: absolute;
  border: 1px solid rgba(11, 44, 77, 0.08);
  border-radius: 50%;
}

.success-orbit-one {
  top: -280px;
  left: -240px;
  width: 700px;
  height: 700px;
  box-shadow: inset 0 0 0 120px rgba(10, 150, 214, 0.025), inset 0 0 0 240px rgba(66, 185, 79, 0.018);
}

.success-orbit-two {
  right: -300px;
  bottom: -360px;
  width: 800px;
  height: 800px;
  box-shadow: inset 0 0 0 145px rgba(66, 185, 79, 0.025), inset 0 0 0 290px rgba(10, 150, 214, 0.018);
}

.legal-section {
  background: var(--surface-soft);
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 780px);
  justify-content: center;
  gap: 70px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: calc(var(--header-height) + 35px);
  display: grid;
  gap: 9px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.legal-nav strong {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.86rem;
}

.legal-nav a {
  color: var(--muted);
  font-size: 0.78rem;
  text-decoration: none;
}

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

.legal-content {
  padding: 45px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.legal-content section + section {
  margin-top: 42px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 14px;
  font-size: 1.45rem;
}

.legal-content p {
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-contact-card {
  display: grid;
  gap: 4px;
  margin-top: 20px;
  padding: 20px;
  background: var(--surface-blue);
  border: 1px solid #d6ebf4;
  border-radius: 13px;
  font-size: 0.9rem;
}

.legal-contact-card a {
  color: var(--blue-700);
  font-weight: 750;
  text-decoration: none;
}

.legal-note {
  margin-top: 42px;
  padding: 21px;
  background: #fff8e9;
  border: 1px solid #f0dfb7;
  border-radius: 13px;
}

.legal-note p {
  margin: 5px 0 0;
  font-size: 0.84rem;
}

.not-found-section {
  display: grid;
  min-height: 650px;
  place-items: center;
  background: var(--surface-soft);
}

.not-found-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 80px;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 70px;
}

.not-found-code {
  display: block;
  margin-bottom: -12px;
  color: #dfeaf0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(6rem, 16vw, 12rem);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.75;
}

.not-found-grid h1 {
  margin: 15px 0 17px;
  font-size: clamp(2.5rem, 5vw, 4.3rem);
}

.not-found-grid p {
  color: var(--muted);
}

.not-found-mark {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  background: linear-gradient(145deg, var(--surface-blue), var(--surface-green));
  border-radius: 50%;
}

.not-found-mark img {
  width: 52%;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 3px solid rgba(10, 150, 214, 0.45);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .header-phone {
    display: none;
  }

  .main-nav {
    gap: 20px;
  }

  .philosophy-grid,
  .situations-grid {
    gap: 58px;
  }

  .team-preview-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-preview-message {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.75fr 1fr;
  }

  .footer-cta {
    grid-column: 1 / -1;
  }

  .profile-feature-grid,
  .profile-secondary-grid,
  .product-detail-grid {
    gap: 55px;
  }

  .quote-layout {
    grid-template-columns: 0.62fr 1.38fr;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(100% - 36px, var(--container));
  }

  .header-actions {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .main-nav {
    position: fixed;
    z-index: 110;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    max-height: 0;
    margin: 0;
    padding: 0 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.99);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(11, 44, 77, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.22s ease, visibility 0.22s ease, padding 0.3s ease;
  }

  .main-nav.is-open {
    max-height: 400px;
    padding-top: 10px;
    padding-bottom: 18px;
    opacity: 1;
    visibility: visible;
  }

  .main-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading-split,
  .inner-hero-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    align-items: start;
  }

  .section-heading-split p {
    max-width: 760px;
  }

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

  .service-card-featured {
    grid-column: 1 / -1;
    min-height: 300px;
  }

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

  .philosophy-statement,
  .situations-intro,
  .quote-sidebar,
  .legal-nav {
    position: static;
  }

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

  .situations-intro {
    max-width: 690px;
  }

  .cta-banner {
    grid-template-columns: 1fr;
  }

  .cta-banner-actions {
    grid-template-columns: max-content max-content;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1.1fr 0.8fr 1fr;
    gap: 35px;
  }

  .inner-hero-grid {
    padding-top: 82px;
    padding-bottom: 80px;
  }

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

  .profile-feature-grid,
  .profile-secondary-grid {
    grid-template-columns: 1fr;
  }

  .profile-photo-wrap {
    min-height: 720px;
  }

  .profile-secondary-grid .profile-copy {
    order: 2;
  }

  .profile-secondary-grid .pierre-visual {
    order: 1;
  }

  .product-detail-grid,
  .product-detail-reverse {
    grid-template-columns: 1fr;
  }

  .product-detail-reverse .product-content {
    order: 2;
  }

  .product-detail-reverse .product-visual {
    order: 1;
  }

  .product-visual {
    min-height: 430px;
  }

  .quote-layout {
    grid-template-columns: 1fr;
  }

  .quote-form-shell {
    order: 1;
  }

  .quote-sidebar {
    order: 2;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 18px;
  }

  .quote-assurance {
    margin-top: 0;
    align-content: center;
  }

  .advisor-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
  }

  .advisor-card picture {
    height: auto;
    min-height: 310px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .legal-nav {
    display: flex;
    flex-wrap: wrap;
  }

  .legal-nav strong {
    flex-basis: 100%;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 70px;
    font-size: 16px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand-name {
    font-size: 1rem;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero-media {
    position: relative;
    height: 410px;
  }

  .home-hero-media img {
    object-position: 50% 31%;
  }

  .home-hero-overlay {
    bottom: auto;
    height: 410px;
    background: linear-gradient(0deg, var(--navy-950) 0%, rgba(6, 26, 46, 0.13) 48%, rgba(6, 26, 46, 0.02) 100%);
  }

  .home-hero-inner {
    display: flex;
    min-height: auto;
    flex-direction: column;
    padding-top: 54px;
    padding-bottom: 65px;
  }

  .home-hero-copy {
    order: 2;
  }

  .portrait-label {
    position: absolute;
    top: -150px;
    right: 0;
    bottom: auto;
    order: 1;
    max-width: 245px;
    margin: 0;
    padding: 12px 14px;
  }

  .home-hero h1 {
    margin-top: 15px;
    font-size: clamp(2.9rem, 12vw, 4.2rem);
  }

  .hero-lead {
    font-size: 1.02rem;
  }

  .hero-actions {
    align-items: stretch;
  }

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

  .hero-actions .text-link {
    padding: 4px 2px;
  }

  .hero-chips {
    gap: 7px;
  }

  .hero-orbit {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 10vw, 3.15rem);
  }

  .section-heading-split {
    gap: 18px;
  }

  .service-grid,
  .situation-list,
  .principle-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card-featured {
    grid-column: auto;
    min-height: 325px;
  }

  .philosophy-grid {
    gap: 45px;
  }

  .philosophy-statement h2 {
    font-size: clamp(2.25rem, 10.5vw, 3.5rem);
  }

  .process-list li {
    grid-template-columns: 43px 1fr;
    gap: 12px;
  }

  .team-preview-grid {
    grid-template-columns: 1fr;
  }

  .team-preview-card {
    min-height: 500px;
  }

  .team-preview-message {
    min-height: auto;
    padding: 32px;
  }

  .cta-banner {
    gap: 30px;
    padding: 34px 26px;
  }

  .cta-banner-actions {
    grid-template-columns: 1fr;
  }

  .cta-banner-actions .button {
    width: 100%;
  }

  .section-cta {
    padding-bottom: 72px;
  }

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

  .footer-cta {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-actions {
    position: fixed;
    z-index: 150;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    min-height: 66px;
    background: rgba(6, 26, 46, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 850;
    text-decoration: none;
  }

  .mobile-actions a + a {
    background: var(--gradient);
  }

  .inner-hero-grid {
    padding-top: 66px;
    padding-bottom: 64px;
  }

  .inner-hero h1 {
    font-size: clamp(2.65rem, 12vw, 4.1rem);
  }

  .inner-hero-compact .inner-hero-grid {
    padding-top: 60px;
    padding-bottom: 58px;
  }

  .product-jump {
    overflow-x: auto;
  }

  .product-jump .container {
    width: max-content;
    min-width: 100%;
    justify-content: flex-start;
    padding-right: 14px;
    padding-left: 14px;
  }

  .profile-photo-wrap {
    min-height: 610px;
  }

  .profile-feature-grid,
  .profile-secondary-grid,
  .product-detail-grid {
    gap: 42px;
  }

  .profile-actions {
    align-items: stretch;
  }

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

  .pierre-visual {
    min-height: 480px;
  }

  .product-visual {
    min-height: 390px;
  }

  .product-info-grid {
    grid-template-columns: 1fr;
  }

  .quote-sidebar {
    display: block;
  }

  .advisor-card {
    display: block;
  }

  .advisor-card picture {
    display: block;
    height: 390px;
    min-height: auto;
  }

  .quote-assurance {
    margin-top: 16px;
  }

  .quote-form-shell {
    padding: 29px 20px;
    border-radius: 22px;
  }

  .choice-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .choice-card {
    min-height: 96px;
  }

  .inline-options {
    display: grid;
  }

  .inline-options label {
    border-radius: 11px;
  }

  .form-navigation {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .form-navigation .button {
    width: 100%;
  }

  .form-navigation > span {
    display: none;
  }

  .success-card {
    padding: 40px 22px;
  }

  .legal-content {
    padding: 29px 21px;
  }

  .legal-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .legal-nav strong {
    display: none;
  }

  .legal-nav a {
    flex: 0 0 auto;
    padding: 7px 10px;
    background: var(--surface-soft);
    border-radius: 999px;
  }

  .not-found-grid {
    grid-template-columns: 1fr;
  }

  .not-found-mark {
    max-width: 330px;
    margin: 0 auto;
  }
}

@media (max-width: 420px) {
  .home-hero-media,
  .home-hero-overlay {
    height: 380px;
  }

  .home-hero-media img {
    object-position: 48% 29%;
  }

  .portrait-label {
    top: -142px;
    max-width: 235px;
    padding: 11px 13px;
  }

  .profile-photo-wrap {
    min-height: 530px;
  }

  .team-preview-card {
    min-height: 450px;
  }

  .advisor-card picture {
    height: 350px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .mobile-actions,
  .section-cta,
  .site-footer,
  .product-jump,
  .button,
  .text-link {
    display: none !important;
  }

  body {
    padding: 0;
    color: #000;
    background: #fff;
  }

  .section,
  .inner-hero-grid {
    padding: 24px 0;
  }
}

/* Préférences de confidentialité — Google Ads */
.privacy-consent {
  position: fixed;
  z-index: 500;
  right: 20px;
  bottom: 20px;
  left: 20px;
  max-width: 980px;
  margin-inline: auto;
  color: var(--text);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.privacy-consent__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 24px;
}

.privacy-consent__eyebrow {
  display: block;
  margin-bottom: 5px;
  color: var(--green-700);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.privacy-consent h2 {
  margin-bottom: 8px;
  font-size: clamp(1.25rem, 2.3vw, 1.75rem);
}

.privacy-consent p {
  max-width: 680px;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.5;
}

.privacy-consent a {
  color: var(--blue-700);
  font-size: 0.86rem;
  font-weight: 800;
}

.privacy-consent__actions {
  display: flex;
  min-width: 240px;
  flex-direction: column;
  gap: 10px;
}

.privacy-consent__actions .button {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 0.84rem;
}

.privacy-settings-button {
  position: fixed;
  z-index: 450;
  bottom: 12px;
  left: 12px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(6, 26, 46, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(3, 20, 35, 0.2);
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
}

.privacy-settings-button:hover,
.privacy-settings-button:focus-visible {
  background: var(--navy-800);
}

@media (max-width: 760px) {
  .privacy-consent {
    right: 10px;
    bottom: 76px;
    left: 10px;
  }

  .privacy-consent__content {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .privacy-consent__actions {
    min-width: 0;
  }

  .privacy-settings-button {
    right: 10px;
    bottom: 76px;
    left: auto;
  }
}

@media print {
  .privacy-consent,
  .privacy-settings-button {
    display: none !important;
  }
}
