:root {
  --arag-blue: #f5c400;
  --accent-dark: #735900;
  --accent-ink: #171300;
  --blue-900: #080808;
  --blue-850: #111111;
  --blue-800: #181818;
  --blue-700: #242424;
  --blue-100: #fff2ad;
  --blue-050: #fffaf0;
  --ink: #171717;
  --muted: #66645f;
  --line: #e3dfd3;
  --sand: #f0ece1;
  --warm-white: #f8f6ef;
  --white: #fff;
  --green: #a27d00;
  --amber: #f5c400;
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 22px 60px rgba(0, 0, 0, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  line-height: 1.16;
}

h1 {
  margin-bottom: 25px;
  font-size: clamp(2.9rem, 5.2vw, 5rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.15rem, 3.6vw, 3.55rem);
  letter-spacing: -0.045em;
}

h3 {
  letter-spacing: -0.025em;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.section {
  padding: 120px 0;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue-900);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.scroll-progress {
  position: fixed;
  z-index: 1200;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #f5c400, #ffe477);
  box-shadow: 0 0 16px rgba(245, 196, 0, 0.5);
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.demo-notice {
  color: var(--accent-ink);
  background: var(--amber);
  font-size: 0.83rem;
}

.demo-notice__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  position: relative;
}

.demo-notice__inner button {
  position: absolute;
  right: 0;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
}

.service-bar {
  color: #e7e7e7;
  background: var(--blue-900);
  font-size: 0.84rem;
}

.service-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
}

.service-bar p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.status-dot {
  display: inline-block;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  background: var(--arag-blue);
  border: 2px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(245, 196, 0, 0.15);
  animation: status-pulse 2.6s ease-in-out infinite;
}

.service-bar a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
}

.service-bar a svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  stroke: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  overflow: hidden;
  background: transparent;
  border-radius: 50%;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__text {
  display: grid;
  line-height: 1.15;
}

.brand__text strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
}

.brand__text small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav > a:not(.button) {
  position: relative;
  color: #2d2d2d;
  font-size: 0.92rem;
  font-weight: 600;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--arag-blue);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: var(--blue-050);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
  transition: transform 0.2s ease;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 0.91rem;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button::after {
  position: absolute;
  top: -60%;
  left: -55%;
  width: 38%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  content: "";
  pointer-events: none;
  transform: rotate(18deg) translateX(-180%);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.button:hover::after {
  transform: rotate(18deg) translateX(520%);
}

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

.button:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(245, 196, 0, 0.42);
  outline-offset: 3px;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button--small {
  min-height: 44px;
  padding-inline: 19px;
  font-size: 0.84rem;
}

.button--primary {
  color: var(--accent-ink);
  background: var(--arag-blue);
  box-shadow: 0 10px 24px rgba(245, 196, 0, 0.22);
  animation: button-breathe 4.2s ease-in-out infinite;
}

.button--primary:hover {
  background: #e3b500;
  box-shadow: 0 14px 30px rgba(245, 196, 0, 0.3);
}

.button--white {
  color: var(--blue-900);
  background: var(--white);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
}

.button--secondary {
  color: var(--blue-900);
  background: var(--blue-050);
  border-color: var(--line);
}

.button--full {
  width: 100%;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 26px;
  height: 2px;
  background: currentColor;
}

.eyebrow--light {
  color: var(--arag-blue);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 5%, rgba(245, 196, 0, 0.18), transparent 32%),
    linear-gradient(120deg, #060606 0%, #111111 53%, #1b1b1b 100%);
  background-size: 135% 135%, auto;
  animation: hero-ambient 13s ease-in-out infinite alternate;
}

.hero::before {
  position: absolute;
  top: 12%;
  right: 36%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(245, 196, 0, 0.18), transparent 68%);
  border-radius: 50%;
  content: "";
  filter: blur(8px);
  pointer-events: none;
  animation: glow-drift 8s ease-in-out infinite alternate;
}

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

.hero__shape--one {
  top: -190px;
  left: -150px;
  width: 540px;
  height: 540px;
  animation: orbit-drift 15s ease-in-out infinite alternate;
}

.hero__shape--two {
  right: -240px;
  bottom: -270px;
  width: 700px;
  height: 700px;
  animation: orbit-drift 19s ease-in-out -4s infinite alternate-reverse;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.88fr);
  gap: 66px;
  align-items: center;
  min-height: 695px;
  padding-top: 55px;
  padding-bottom: 62px;
}

.hero__copy {
  max-width: 670px;
}

.hero .eyebrow {
  color: var(--arag-blue);
}

.hero h1 em {
  position: relative;
  z-index: 0;
  color: #ffd633;
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::after {
  position: absolute;
  z-index: -1;
  right: 2px;
  bottom: 3px;
  left: 2px;
  height: 8px;
  background: rgba(245, 196, 0, 0.22);
  border-radius: 10px;
  content: "";
}

.hero__lead {
  max-width: 610px;
  margin-bottom: 32px;
  color: #dedede;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 38px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.text-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.text-link__icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: none;
}

.text-link > span:last-child {
  display: grid;
  line-height: 1.2;
}

.text-link small {
  color: #bdbdbd;
  font-size: 0.7rem;
}

.text-link strong {
  margin-top: 4px;
  font-size: 0.9rem;
}

.text-link--dark .text-link__icon {
  color: var(--accent-dark);
  background: var(--blue-100);
  border-color: transparent;
}

.text-link--dark small {
  color: var(--muted);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  color: #dedede;
  font-size: 0.78rem;
  font-weight: 600;
}

.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  animation: trust-breathe 4.8s ease-in-out infinite;
}

.hero__trust span:nth-child(2) {
  animation-delay: 0.35s;
}

.hero__trust span:nth-child(3) {
  animation-delay: 0.7s;
}

.hero__trust svg {
  width: 17px;
  height: 17px;
  padding: 3px;
  color: #ffd633;
  background: rgba(245, 196, 0, 0.13);
  border-radius: 50%;
  stroke-width: 3;
}

.hero__visual {
  position: relative;
  min-width: 0;
}

.hero__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.91;
  background: #e6e1da;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 120px 16px 18px 18px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.42);
  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.65s ease;
  will-change: transform;
}

.hero__image-wrap::before {
  position: absolute;
  z-index: 1;
  inset: -18%;
  background: linear-gradient(
    110deg,
    transparent 28%,
    rgba(255, 255, 255, 0.2) 43%,
    transparent 58%
  );
  content: "";
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-62%) rotate(4deg);
  animation: image-shine 7.6s ease-in-out 1.2s infinite;
}

.hero__image-wrap::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.3));
  content: "";
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
  transform: scale(1.035) translate3d(var(--hero-x, 0), var(--hero-y, 0), 0);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero__name-card {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 13px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.hero__initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--accent-ink);
  background: var(--arag-blue);
  border-radius: 50%;
  font-family: "Manrope", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
}

.hero__name-card > span:last-child {
  display: grid;
  line-height: 1.25;
}

.hero__name-card strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
}

.hero__name-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
}

.hero__availability {
  position: absolute;
  z-index: 3;
  top: 80px;
  left: -44px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  color: var(--ink);
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  animation: gentle-float 4.8s ease-in-out infinite;
}

.hero__availability svg {
  width: 30px;
  height: 30px;
  padding: 6px;
  color: var(--accent-dark);
  background: var(--blue-100);
  border-radius: 8px;
}

.hero__availability span {
  display: grid;
  line-height: 1.25;
}

.hero__availability strong {
  font-size: 0.74rem;
}

.hero__availability small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.64rem;
}

.hero__footnote {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  padding: 17px 24px;
  color: #4a4945;
  background: var(--white);
  border-radius: 15px 15px 0 0;
  box-shadow: 0 -12px 35px rgba(0, 0, 0, 0.08);
}

.hero__footnote p {
  margin: 0;
  font-size: 0.86rem;
  text-align: center;
}

.hero__footnote strong {
  color: var(--accent-dark);
}

.motion-strip {
  position: relative;
  z-index: 4;
  overflow: hidden;
  color: var(--white);
  background: #080808;
  border-top: 1px solid rgba(245, 196, 0, 0.22);
  border-bottom: 1px solid rgba(245, 196, 0, 0.22);
}

.motion-strip::before,
.motion-strip::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 90px;
  content: "";
  pointer-events: none;
}

.motion-strip::before {
  left: 0;
  background: linear-gradient(90deg, #080808, transparent);
}

.motion-strip::after {
  right: 0;
  background: linear-gradient(-90deg, #080808, transparent);
}

.motion-strip__track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 66px;
  animation: marquee 28s linear infinite;
  will-change: transform;
}

.motion-strip:hover .motion-strip__track {
  animation-play-state: paused;
}

.motion-strip__track span {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding-right: 48px;
  color: #d4d4d4;
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.motion-strip__track i {
  width: 8px;
  height: 8px;
  background: var(--arag-blue);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(245, 196, 0, 0.5);
  transform: rotate(45deg);
}

.solutions {
  background:
    linear-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    var(--warm-white);
  background-size: 44px 44px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading h2 {
  max-width: 590px;
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 470px;
  margin-bottom: 6px;
  color: var(--muted);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.solution-card {
  position: relative;
  overflow: hidden;
  min-height: 354px;
  padding: 31px 27px 27px;
  background: var(--white);
  border: 1px solid #e3e0d7;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.solution-card::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(
    260px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(245, 196, 0, 0.14),
    transparent 62%
  );
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.solution-card > * {
  position: relative;
  z-index: 1;
}

.solution-card:hover {
  z-index: 2;
  border-color: var(--arag-blue);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.13);
  transform: translateY(-8px);
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-card--featured {
  color: var(--white);
  background: linear-gradient(145deg, #0d0d0d, #262626);
  border-color: var(--arag-blue);
}

.solution-card__tag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 9px;
  color: var(--accent-ink);
  background: var(--arag-blue);
  border-radius: 20px;
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.solution-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 38px;
  color: var(--accent-dark);
  background: var(--blue-100);
  border-radius: 14px;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 0.35s ease;
  animation: icon-float 5.2s ease-in-out infinite;
}

.solution-card:nth-child(2n) .solution-card__icon {
  animation-delay: 0.7s;
}

.solution-card:nth-child(3n) .solution-card__icon {
  animation-delay: 1.2s;
}

.solution-card:hover .solution-card__icon {
  border-radius: 50%;
  transform: translateY(-4px) rotate(-4deg) scale(1.08);
}

.solution-card--featured .solution-card__icon {
  color: var(--arag-blue);
  background: rgba(245, 196, 0, 0.12);
}

.solution-card__icon svg {
  width: 25px;
  height: 25px;
}

.solution-card__number {
  position: absolute;
  top: 39px;
  right: 25px;
  color: #bfbcb3;
  font-family: "Manrope", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
}

.solution-card--featured .solution-card__number {
  display: none;
}

.solution-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.solution-card p:not(.solution-card__number) {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.87rem;
}

.solution-card--featured p:not(.solution-card__number) {
  color: #d7d7d7;
}

.solution-card a {
  position: absolute;
  bottom: 25px;
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 800;
}

.solution-card a span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.2s ease;
}

.solution-card:hover a span {
  transform: translateX(4px);
}

.solution-card--featured a {
  color: var(--arag-blue);
}

.section-note {
  max-width: 830px;
  margin: 28px auto 0;
  color: #777570;
  font-size: 0.74rem;
  text-align: center;
}

.insurance-bridge {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 72px minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 28px;
  align-items: center;
  margin-top: 30px;
  padding: 32px;
  color: var(--white);
  background:
    radial-gradient(circle at 0 20%, rgba(245, 196, 0, 0.22), transparent 34%),
    linear-gradient(135deg, #080808, #1d1d1d);
  border: 1px solid rgba(245, 196, 0, 0.24);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.insurance-bridge::after {
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(245, 196, 0, 0.16), transparent 66%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.insurance-bridge > * {
  position: relative;
  z-index: 1;
}

.insurance-bridge__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  color: var(--accent-ink);
  background: var(--arag-blue);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(245, 196, 0, 0.22);
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  animation: mark-pulse 3.8s ease-in-out infinite;
}

.insurance-bridge .eyebrow {
  margin-bottom: 11px;
  color: var(--arag-blue);
}

.insurance-bridge h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.3vw, 2.05rem);
}

.insurance-bridge__copy > p:not(.eyebrow) {
  margin: 0;
  color: #d6d6d6;
  font-size: 0.91rem;
}

.insurance-bridge__points {
  display: grid;
  gap: 10px;
}

.insurance-bridge__points p {
  display: grid;
  margin: 0;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  line-height: 1.3;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.insurance-bridge__points p:hover {
  background: rgba(245, 196, 0, 0.1);
  border-color: rgba(245, 196, 0, 0.25);
  transform: translateX(5px);
}

.insurance-bridge__points strong {
  font-size: 0.82rem;
}

.insurance-bridge__points small {
  margin-top: 4px;
  color: #c6c6c6;
  font-size: 0.68rem;
}

.process {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-900);
}

.process::before {
  position: absolute;
  top: -210px;
  right: -120px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(245, 196, 0, 0.16), transparent 66%);
  content: "";
}

.process__grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
}

.process__intro {
  align-self: center;
}

.process__intro p:not(.eyebrow) {
  margin-bottom: 31px;
  color: #c8c8c8;
}

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

.process-list li {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.process-list li:hover {
  border-color: rgba(245, 196, 0, 0.38);
  transform: translateX(8px);
}

.process-list li:first-child {
  padding-top: 4px;
}

.process-list li:last-child {
  padding-bottom: 4px;
  border-bottom: 0;
}

.process-list__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: var(--arag-blue);
  background: rgba(245, 196, 0, 0.1);
  border: 1px solid rgba(245, 196, 0, 0.22);
  border-radius: 50%;
  font-family: "Manrope", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}

.process-list li:hover .process-list__number {
  color: var(--accent-ink);
  background: var(--arag-blue);
  transform: rotate(7deg) scale(1.06);
}

.process-list h3 {
  margin-bottom: 9px;
  font-size: 1.2rem;
}

.process-list p {
  max-width: 580px;
  margin: 0;
  color: #c0c0c0;
  font-size: 0.9rem;
}

.about {
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.about__portrait {
  position: relative;
  height: 620px;
}

.about__portrait::before {
  position: absolute;
  z-index: 0;
  top: -22px;
  left: -22px;
  width: 56%;
  height: 43%;
  background:
    radial-gradient(circle, rgba(245, 196, 0, 0.36) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  content: "";
}

.about__portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  border-radius: 20px 120px 20px 20px;
  box-shadow: var(--shadow-md);
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s ease;
}

.about__portrait:hover img {
  filter: contrast(1.03) saturate(0.92);
  transform: scale(1.018);
}

.about__portrait::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(0, 0, 0, 0.22));
  border-radius: 20px 120px 20px 20px;
  content: "";
}

.about__seal {
  position: absolute;
  z-index: 3;
  right: -38px;
  bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 135px;
  height: 135px;
  color: var(--accent-ink);
  background: var(--arag-blue);
  border: 7px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  line-height: 1.15;
  text-align: center;
  animation: gentle-float 5.4s ease-in-out -1.8s infinite;
}

.about__seal span {
  font-size: 0.62rem;
}

.about__seal strong {
  margin: 3px 0;
  font-family: "Manrope", sans-serif;
  font-size: 0.93rem;
}

.about__copy {
  padding-left: 10px;
}

.about__copy h2 {
  max-width: 660px;
}

.about__copy > p:not(.eyebrow) {
  color: var(--muted);
}

.about__copy .about__lead {
  color: #3c3b38;
  font-size: 1rem;
}

.about__promises {
  display: grid;
  gap: 14px;
  margin-top: 31px;
}

.about__promises > div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 17px;
  background: var(--blue-050);
  border-left: 3px solid var(--arag-blue);
  border-radius: 4px 12px 12px 4px;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.about__promises > div:hover {
  background: #fff5bd;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
  transform: translateX(6px);
}

.about__promises > div > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 39px;
  height: 39px;
  color: var(--accent-dark);
  background: var(--white);
  border-radius: 50%;
  font-size: 0.69rem;
  font-weight: 800;
}

.about__promises p {
  display: grid;
  margin: 0;
  line-height: 1.3;
}

.about__promises strong {
  font-size: 0.87rem;
}

.about__promises small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.74rem;
}

.reassurance {
  padding-top: 0;
  padding-bottom: 0;
}

.reassurance__panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
  padding: 60px 68px;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(5, 5, 5, 0.98), rgba(24, 24, 24, 0.95)),
    url("assets/barbara-rostasi-waist.webp") center 42% / cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.reassurance__panel::before {
  position: absolute;
  right: -130px;
  bottom: -170px;
  width: 390px;
  height: 390px;
  background: radial-gradient(circle, rgba(245, 196, 0, 0.18), transparent 67%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  animation: glow-drift 9s ease-in-out -2s infinite alternate;
}

.reassurance__panel::after {
  position: absolute;
  top: -120px;
  right: 30%;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.reassurance h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.reassurance__points {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 17px;
}

.reassurance__points p {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.reassurance__points p:hover {
  background: rgba(245, 196, 0, 0.09);
  border-color: rgba(245, 196, 0, 0.28);
  transform: translateX(6px);
}

.reassurance__points svg {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  padding: 7px;
  color: var(--arag-blue);
  background: rgba(245, 196, 0, 0.1);
  border-radius: 10px;
  animation: icon-float 5.4s ease-in-out infinite;
}

.reassurance__points span {
  display: grid;
  line-height: 1.3;
}

.reassurance__points strong {
  font-size: 0.83rem;
}

.reassurance__points small {
  margin-top: 4px;
  color: #c4c4c4;
  font-size: 0.69rem;
}

.faq {
  background: var(--white);
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.faq__intro {
  position: sticky;
  top: 135px;
  align-self: start;
}

.faq__intro p:not(.eyebrow) {
  margin-bottom: 29px;
  color: var(--muted);
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 5px;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  list-style: none;
  transition:
    color 0.25s ease,
    padding-left 0.25s ease;
}

.accordion details[open] summary {
  padding-left: 12px;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  position: relative;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  background: var(--blue-050);
  border-radius: 50%;
}

.accordion summary span::before,
.accordion summary span::after {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 12px;
  height: 2px;
  background: var(--accent-dark);
  content: "";
  transition: transform 0.2s ease;
}

.accordion summary span::after {
  transform: rotate(90deg);
}

.accordion details[open] summary {
  color: var(--accent-dark);
}

.accordion details[open] summary span::after {
  transform: rotate(0);
}

.accordion details p {
  max-width: 730px;
  margin: -7px 50px 24px 5px;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 0 100%, rgba(245, 196, 0, 0.16), transparent 36%),
    var(--blue-900);
}

.contact::before {
  position: absolute;
  top: -260px;
  right: -120px;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.contact__grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 105px;
  align-items: center;
}

.contact__copy > p:not(.eyebrow, .contact__hours) {
  color: #c9c9c9;
}

.contact__direct {
  display: grid;
  gap: 12px;
  margin: 34px 0 24px;
}

.contact__direct a {
  display: flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
}

.contact__direct a > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  color: var(--arag-blue);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
}

.contact__direct svg {
  width: 19px;
  height: 19px;
}

.contact__direct p {
  display: grid;
  margin: 0;
  line-height: 1.3;
}

.contact__direct small {
  color: #aaa;
  font-size: 0.67rem;
}

.contact__direct strong {
  margin-top: 3px;
  font-size: 0.89rem;
}

.contact__hours {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #bbb;
  font-size: 0.77rem;
}

.contact-form {
  padding: 37px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
}

.contact-form:hover {
  box-shadow: 0 36px 95px rgba(0, 0, 0, 0.42);
  transform: translateY(-4px);
}

.contact-form__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 25px;
}

.contact-form__heading p {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.28rem;
  font-weight: 800;
}

.contact-form__heading span {
  color: var(--accent-dark);
  font-size: 0.67rem;
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form > label,
.form-row label {
  display: grid;
  margin-bottom: 14px;
}

.contact-form label > span:first-child,
.form-row label > span:first-child {
  margin-bottom: 7px;
  color: #3e3d39;
  font-size: 0.72rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: #fbfcfd;
  border: 1px solid #ddd9ce;
  border-radius: 9px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form input,
.contact-form select {
  height: 49px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 95px;
  padding: 12px 13px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9aa7b4;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--arag-blue);
  box-shadow: 0 0 0 4px rgba(245, 196, 0, 0.13);
}

.contact-form .is-invalid {
  border-color: #c84c5a;
}

.field-error {
  display: none;
  margin-top: 4px;
  color: #b53b49;
  font-size: 0.66rem;
}

.field-error.is-visible {
  display: block;
}

.check-field {
  display: flex !important;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 9px;
  margin-top: 2px;
  margin-bottom: 3px !important;
}

.check-field input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 3px;
  accent-color: var(--arag-blue);
}

.check-field > span {
  margin: 0 !important;
  color: var(--muted) !important;
  font-size: 0.68rem !important;
  font-weight: 400 !important;
  line-height: 1.5;
}

.check-field button {
  padding: 0;
  color: var(--accent-dark);
  background: none;
  border: 0;
  cursor: pointer;
  font-size: inherit;
  text-decoration: underline;
}

.field-error--privacy {
  margin-bottom: 10px;
}

.contact-form .button {
  margin-top: 13px;
}

.form-disclaimer {
  margin: 11px 0 0;
  color: #8794a2;
  font-size: 0.65rem;
  text-align: center;
}

.form-success {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 15px;
  padding: 13px;
  color: #554200;
  background: #fff8d6;
  border: 1px solid #ead475;
  border-radius: 9px;
}

.form-success[hidden] {
  display: none;
}

.form-success > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: var(--accent-ink);
  background: var(--arag-blue);
  border-radius: 50%;
  font-weight: 800;
}

.form-success p {
  display: grid;
  margin: 0;
  font-size: 0.73rem;
  line-height: 1.4;
}

.form-success strong {
  font-size: 0.77rem;
}

.site-footer {
  padding: 72px 0 0;
  color: #b8b8b8;
  background: #050505;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 0.65fr 0.75fr 1fr;
  gap: 70px;
  padding-bottom: 53px;
}

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

.brand--footer .brand__text small {
  color: #aaa;
}

.footer__brand p {
  max-width: 330px;
  margin: 22px 0 0;
  font-size: 0.79rem;
}

.footer__links,
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links p,
.footer__contact > p {
  margin-bottom: 10px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
}

.footer__links a,
.footer__links button,
.footer__contact a,
.footer__contact span {
  width: fit-content;
  padding: 0;
  color: #b8b8b8;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 0.76rem;
  text-align: left;
}

.footer__links a:hover,
.footer__links button:hover,
.footer__contact a:hover {
  color: var(--white);
}

.footer__legal {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  padding: 25px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer__legal p {
  margin: 0;
  color: #929292;
  font-size: 0.64rem;
}

.floating-call {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px 10px 10px;
  color: var(--accent-ink);
  background: var(--arag-blue);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease;
}

.floating-call::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(245, 196, 0, 0.45);
  border-radius: inherit;
  content: "";
  pointer-events: none;
  animation: call-ring 2.8s ease-out infinite;
}

.floating-call:hover {
  transform: translateY(-3px);
}

.floating-call > span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.floating-call svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke: none;
}

.floating-call > span:last-child {
  display: grid;
  line-height: 1.12;
}

.floating-call small {
  color: #574600;
  font-size: 0.62rem;
}

.floating-call strong {
  margin-top: 3px;
  font-size: 0.75rem;
}

.legal-dialog {
  width: min(680px, calc(100% - 32px));
  max-height: min(760px, calc(100vh - 32px));
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 18px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.38);
}

.legal-dialog::backdrop {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.legal-dialog__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 27px 30px 21px;
  border-bottom: 1px solid var(--line);
}

.legal-dialog__header span {
  color: var(--accent-dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-dialog__header h2 {
  margin: 4px 0 0;
  font-size: 1.45rem;
}

.legal-dialog__header > button {
  width: 34px;
  height: 34px;
  padding: 0;
  background: var(--blue-050);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.legal-dialog__content {
  max-height: 480px;
  overflow: auto;
  padding: 24px 30px;
  color: var(--muted);
  font-size: 0.83rem;
}

.legal-dialog__content h3 {
  margin: 24px 0 8px;
  color: var(--ink);
  font-size: 0.96rem;
}

.legal-dialog__content h3:first-child {
  margin-top: 0;
}

.legal-dialog__content p {
  margin-bottom: 12px;
}

.legal-dialog__content ul {
  padding-left: 20px;
}

.legal-dialog__content .placeholder {
  color: #624b00;
  background: #fff6d9;
  border: 1px solid #f1dfa2;
  border-radius: 4px;
}

.legal-dialog__footer {
  display: flex;
  justify-content: flex-end;
  padding: 18px 30px;
  border-top: 1px solid var(--line);
}

html.js body:not(.page-ready) .hero__copy > *,
html.js body:not(.page-ready) .hero__image-wrap,
html.js body:not(.page-ready) .hero__availability {
  opacity: 0;
}

.page-ready .hero__copy .eyebrow {
  animation: hero-enter 0.7s 0.08s both;
}

.page-ready .hero__copy h1 {
  animation: hero-enter 0.85s 0.16s both;
}

.page-ready .hero__copy .hero__lead {
  animation: hero-enter 0.85s 0.27s both;
}

.page-ready .hero__copy .hero__actions {
  animation: hero-enter 0.85s 0.38s both;
}

.page-ready .hero__copy .hero__trust {
  animation: hero-enter 0.85s 0.48s both;
}

.page-ready .hero__image-wrap {
  animation: image-enter 1s 0.18s both;
}

.page-ready .hero__availability {
  animation:
    card-pop 0.72s 0.72s both,
    gentle-float 4.8s 1.5s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  filter: blur(8px);
  clip-path: inset(14% 0 0 0 round 18px);
  scale: 0.985;
  translate: var(--reveal-x, 0) var(--reveal-y, 34px);
  will-change: opacity, filter, clip-path, scale, translate;
}

.reveal.is-visible {
  animation: reveal-enter 0.92s var(--reveal-delay, 0ms) cubic-bezier(0.22, 1, 0.36, 1)
    both;
}

@keyframes status-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(245, 196, 0, 0.15);
    opacity: 0.9;
  }
  50% {
    box-shadow:
      0 0 0 4px rgba(245, 196, 0, 0.18),
      0 0 0 11px rgba(245, 196, 0, 0.08);
    opacity: 1;
  }
}

@keyframes button-breathe {
  0%,
  100% {
    box-shadow: 0 10px 24px rgba(245, 196, 0, 0.22);
  }
  50% {
    box-shadow:
      0 15px 34px rgba(245, 196, 0, 0.32),
      0 0 0 5px rgba(245, 196, 0, 0.08);
  }
}

@keyframes hero-ambient {
  from {
    background-position:
      0% 0%,
      center;
  }
  to {
    background-position:
      9% 7%,
      center;
  }
}

@keyframes image-shine {
  0%,
  62%,
  100% {
    opacity: 0;
    transform: translateX(-62%) rotate(4deg);
  }
  72% {
    opacity: 0.55;
  }
  88% {
    opacity: 0;
    transform: translateX(62%) rotate(4deg);
  }
}

@keyframes trust-breathe {
  0%,
  100% {
    opacity: 0.86;
    translate: 0 0;
  }
  50% {
    opacity: 1;
    translate: 0 -2px;
  }
}

@keyframes icon-float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -6px;
  }
}

@keyframes mark-pulse {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.06) rotate(5deg);
  }
}

@keyframes call-ring {
  0% {
    opacity: 0.55;
    transform: scale(0.96);
  }
  72%,
  100% {
    opacity: 0;
    transform: scale(1.14);
  }
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes image-enter {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0 round 120px 16px 18px 18px);
    transform: translateY(30px) scale(0.97);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0 round 120px 16px 18px 18px);
    transform: translateY(0) scale(1);
  }
}

@keyframes card-pop {
  from {
    opacity: 0;
    transform: translate(-18px, 18px) scale(0.88);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes reveal-enter {
  from {
    opacity: 0;
    filter: blur(8px);
    clip-path: inset(14% 0 0 0 round 18px);
    scale: 0.985;
    translate: var(--reveal-x, 0) var(--reveal-y, 34px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    clip-path: inset(0 0 0 0 round 0);
    scale: 1;
    translate: 0 0;
  }
}

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

@keyframes glow-drift {
  0% {
    opacity: 0.55;
    transform: translate3d(-20px, -12px, 0) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translate3d(34px, 24px, 0) scale(1.18);
  }
}

@keyframes orbit-drift {
  0% {
    transform: translate3d(0, 0, 0) rotate(0);
  }
  100% {
    transform: translate3d(26px, -18px, 0) rotate(7deg);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 20px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 40px;
  }

  .hero__availability {
    left: -20px;
  }

  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insurance-bridge {
    grid-template-columns: 64px 1fr;
  }

  .insurance-bridge__points {
    grid-column: 2;
  }

  .about__grid {
    gap: 70px;
  }

  .contact__grid {
    gap: 70px;
  }

  .footer__top {
    gap: 38px;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 90px 0;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 83px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 22px 24px 40px;
    background: var(--white);
    transform: translateX(105%);
    transition: transform 0.25s ease;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav > a:not(.button) {
    padding: 17px 3px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .main-nav .button {
    margin-top: 22px;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 78px;
    padding-bottom: 60px;
  }

  .hero__copy {
    max-width: 720px;
  }

  .hero__visual {
    width: min(570px, 100%);
    margin-inline: auto;
  }

  .hero__image-wrap {
    aspect-ratio: 1.12;
    border-radius: 80px 14px 14px;
  }

  .hero__availability {
    left: -12px;
  }

  .section-heading--split,
  .process__grid,
  .about__grid,
  .reassurance__panel,
  .faq__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

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

  .insurance-bridge {
    grid-template-columns: 1fr;
  }

  .insurance-bridge__points {
    grid-column: auto;
  }

  .process__grid {
    gap: 65px;
  }

  .about__grid {
    gap: 75px;
  }

  .about__portrait {
    width: min(560px, 92%);
    height: 580px;
  }

  .reassurance__panel {
    gap: 40px;
  }

  .faq__grid {
    gap: 60px;
  }

  .faq__intro {
    position: static;
  }

  .contact__grid {
    gap: 55px;
  }

  .footer__top {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer__contact {
    grid-column: 2 / 4;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
    padding-bottom: 64px;
  }

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

  .section {
    padding: 72px 0;
  }

  .demo-notice__inner {
    justify-content: flex-start;
    padding-right: 30px;
  }

  .service-bar__inner {
    min-height: 40px;
  }

  .service-bar p {
    display: none;
  }

  .service-bar a {
    width: 100%;
    justify-content: center;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .main-nav {
    top: 71px;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .brand__text strong {
    font-size: 0.88rem;
  }

  .brand__text small {
    font-size: 0.64rem;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 3.8rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .hero__grid {
    padding-top: 61px;
  }

  .hero__lead {
    font-size: 0.98rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__image-wrap {
    aspect-ratio: 0.9;
    border-radius: 60px 12px 12px;
  }

  .hero__image-wrap img {
    object-position: 50% 43%;
  }

  .hero__availability {
    top: -17px;
    left: 12px;
  }

  .hero__name-card {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .hero__trust {
    gap: 9px 15px;
  }

  .hero__footnote {
    padding-inline: 15px;
  }

  .hero__footnote p {
    font-size: 0.74rem;
  }

  .motion-strip__track {
    min-height: 58px;
  }

  .motion-strip__track span {
    gap: 18px;
    padding-right: 36px;
    font-size: 0.65rem;
  }

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

  .solution-card {
    min-height: 315px;
  }

  .insurance-bridge {
    margin-top: 22px;
    padding: 24px 20px;
  }

  .insurance-bridge__mark {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    font-size: 1.7rem;
  }

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

  .process-list__number {
    width: 47px;
    height: 47px;
  }

  .about__portrait {
    width: calc(100% - 22px);
    height: 470px;
  }

  .about__portrait img,
  .about__portrait::after {
    border-radius: 16px 80px 16px 16px;
  }

  .about__seal {
    right: -22px;
    width: 116px;
    height: 116px;
  }

  .about__copy {
    padding: 0;
  }

  .reassurance {
    padding: 0;
  }

  .reassurance .container {
    width: 100%;
  }

  .reassurance__panel {
    padding: 50px 22px;
    border-radius: 0;
  }

  .accordion summary {
    padding-block: 21px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 26px 20px;
  }

  .contact-form__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

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

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

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

  .footer__legal {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .floating-call {
    right: 0;
    bottom: 0;
    left: 0;
    justify-content: center;
    min-height: 64px;
    border: 0;
    border-radius: 0;
  }

  .floating-call > span:first-child {
    width: 34px;
    height: 34px;
  }

  .legal-dialog__header,
  .legal-dialog__content,
  .legal-dialog__footer {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  html.js body:not(.page-ready) .hero__copy > *,
  html.js body:not(.page-ready) .hero__image-wrap,
  html.js body:not(.page-ready) .hero__availability,
  .reveal {
    opacity: 1 !important;
    filter: none !important;
    translate: 0 0 !important;
  }

  .hero::before,
  .hero__shape,
  .hero__availability,
  .about__seal,
  .reassurance__panel::before,
  .motion-strip__track,
  .page-ready .hero__copy > *,
  .page-ready .hero__image-wrap,
  .page-ready .hero__availability,
  .reveal.is-visible {
    animation: none !important;
  }

  .hero__image-wrap img {
    transform: none !important;
  }
}
