@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@500..800&family=Newsreader:opsz,wght@6..72,400..700&display=swap");

/* IPPO Espana - premium static site system */
:root {
  --bg: oklch(97.5% 0.012 84);
  --cream: oklch(94.5% 0.02 84);
  --surface: oklch(100% 0 0);
  --surface-tint: oklch(96% 0.018 72);
  --ink: oklch(16% 0.045 251);
  --ink-2: oklch(24% 0.055 250);
  --muted: oklch(48% 0.028 248);
  --border: oklch(86% 0.018 75);
  --blue: oklch(38% 0.092 250);
  --blue-dark: oklch(22% 0.065 252);
  --coral: oklch(64% 0.17 36);
  --coral-dark: oklch(49% 0.15 35);
  --amber: oklch(78% 0.15 78);
  --sage: oklch(60% 0.09 155);
  --success: oklch(57% 0.13 154);
  --warn: oklch(75% 0.14 78);
  --danger: oklch(58% 0.18 28);
  --shadow: 0 30px 90px rgb(15 32 55 / 0.18);
  --shadow-strong: 0 42px 120px rgb(8 18 34 / 0.28);
  --radius: 26px;
  --radius-sm: 14px;
  --max: 1180px;
  --pad: clamp(18px, 4vw, 52px);
  --font-display: "Newsreader", "Iowan Old Style", Georgia, serif;
  --font-body: "Instrument Sans", "Avenir Next", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-snap: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% -4%, color-mix(in oklch, var(--amber) 18%, transparent), transparent 28rem),
    linear-gradient(180deg, var(--bg), var(--cream) 46%, var(--bg));
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 calc(50% - 590px), rgb(15 32 55 / .05) calc(50% - 590px) calc(50% - 589px), transparent calc(50% - 589px) calc(50% + 590px), rgb(15 32 55 / .05) calc(50% + 590px) calc(50% + 591px), transparent calc(50% + 591px)),
    repeating-linear-gradient(90deg, rgb(15 32 55 / .026) 0 1px, transparent 1px 96px);
  mask-image: linear-gradient(180deg, black, transparent 72%);
}

body > * {
  position: relative;
  z-index: 1;
}

::selection {
  color: white;
  background: var(--coral);
}

body.nav-open {
  overflow: hidden;
}

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

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.btn:focus-visible,
.menu-toggle:focus-visible,
.site-nav a:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  border-radius: 12px;
}

.btn:focus-visible {
  border-radius: 999px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 10px var(--pad);
  background: color-mix(in oklch, var(--bg) 80%, transparent);
  border-bottom: 1px solid color-mix(in oklch, var(--border) 55%, transparent);
  backdrop-filter: blur(22px) saturate(1.1);
  transition: transform .35s var(--ease-out), box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  background: color-mix(in oklch, var(--surface) 88%, transparent);
  box-shadow: 0 12px 38px rgb(15 32 55 / .09);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 96px;
}

.brand-logo {
  width: auto;
  height: 50px;
  object-fit: contain;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 13px;
  border-radius: 999px;
  color: color-mix(in oklch, var(--ink) 68%, white);
  font-size: .93rem;
  font-weight: 750;
  text-decoration: none;
  transition: color .22s ease, background .22s ease, transform .22s var(--ease-out);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: color-mix(in oklch, var(--coral) 13%, white);
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  margin-left: 6px;
  color: white;
  background: var(--blue-dark);
  box-shadow: 0 12px 26px rgb(15 32 55 / .16);
}

.site-nav .nav-cta:hover {
  color: white;
  background: var(--coral-dark);
}

.menu-toggle {
  position: relative;
  z-index: 70;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid color-mix(in oklch, var(--border) 82%, white);
  border-radius: 999px;
  color: var(--ink);
  background: var(--surface);
  box-shadow: 0 10px 30px rgb(15 32 55 / .08);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  margin-left: -10px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .22s var(--ease-out), opacity .18s ease;
  transform-origin: 50% 50%;
}

.menu-toggle span:nth-child(1) { transform: translateY(-6px); }
.menu-toggle span:nth-child(2) { transform: translateY(0); }
.menu-toggle span:nth-child(3) { transform: translateY(6px); }

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

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

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

main {
  overflow: clip;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
  min-height: min(820px, calc(100svh - 76px));
  padding: clamp(96px, 9vw, 132px) var(--pad) clamp(48px, 7vw, 88px);
  color: white;
  background:
    linear-gradient(120deg, color-mix(in oklch, var(--blue-dark) 92%, black), color-mix(in oklch, var(--blue) 82%, black) 52%, color-mix(in oklch, var(--coral-dark) 44%, var(--blue-dark))),
    var(--blue-dark);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.hero::before {
  inset: 0;
  background:
    radial-gradient(circle at 72% 22%, color-mix(in oklch, var(--amber) 24%, transparent), transparent 22rem),
    linear-gradient(90deg, rgb(255 255 255 / .055) 0 1px, transparent 1px 100%);
  background-size: auto, 88px 100%;
  opacity: .9;
}

.hero::after {
  right: min(4vw, 52px);
  bottom: clamp(24px, 5vw, 74px);
  width: min(38vw, 520px);
  height: min(38vw, 520px);
  border: 1px solid rgb(255 255 255 / .12);
  border-radius: 999px;
  transform: translate3d(0, calc(var(--scroll, 0) * -34px), 0);
}

.hero-copy {
  max-width: 720px;
  padding-top: 0;
  align-self: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 650;
  letter-spacing: -.025em;
}

h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(2.4rem, 5.4vw, 5.4rem);
  line-height: .96;
}

h1 span {
  display: block;
  margin-top: .15em;
  color: color-mix(in oklch, var(--amber) 72%, white);
  font-style: italic;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 3.8vw, 3.6rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.08rem, 1.6vw, 1.45rem);
  line-height: 1.1;
}

.hero .eyebrow {
  color: color-mix(in oklch, var(--amber) 70%, white);
  animation: riseIn .85s var(--ease-out) .08s both;
}

.hero-lede,
.page-hero p,
.section-text {
  color: color-mix(in oklch, var(--ink) 66%, white);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.5;
}

.hero-lede {
  max-width: 720px;
  margin: clamp(24px, 3vw, 34px) 0 0;
  color: color-mix(in oklch, white 86%, var(--amber));
  font-size: clamp(1.18rem, 2vw, 1.75rem);
  animation: riseIn .9s var(--ease-out) .26s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  animation: riseIn .88s var(--ease-out) .42s both;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform .24s var(--ease-out), box-shadow .24s ease, background .24s ease, border-color .24s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -80% auto -80% -46%;
  width: 38%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / .34), transparent);
  opacity: 0;
}

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

.btn:hover::before {
  animation: buttonShine .7s var(--ease-out);
}

.btn-primary {
  color: white;
  background: var(--coral);
  box-shadow: 0 18px 44px color-mix(in oklch, var(--coral) 36%, transparent);
}

.btn-primary:hover {
  background: var(--coral-dark);
}

.btn-secondary {
  color: white;
  border-color: rgb(255 255 255 / .24);
  background: rgb(255 255 255 / .11);
  backdrop-filter: blur(18px);
}

.btn-secondary:hover {
  border-color: rgb(255 255 255 / .42);
  background: rgb(255 255 255 / .17);
}

.btn-light {
  color: var(--ink);
  background: white;
  box-shadow: 0 18px 46px rgb(8 18 34 / .18);
}

.btn-block {
  width: 100%;
}

.btn-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.btn-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.1;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  animation: riseIn .86s var(--ease-out) .56s both;
}

.trust-list li {
  padding: 9px 13px;
  border: 1px solid rgb(255 255 255 / .18);
  border-radius: 999px;
  color: color-mix(in oklch, white 82%, var(--amber));
  background: rgb(255 255 255 / .08);
  font-size: .88rem;
  font-weight: 750;
  backdrop-filter: blur(12px);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 620px);
  margin-top: 42px;
  border: 1px solid rgb(255 255 255 / .14);
  border-radius: 22px;
  background: rgb(255 255 255 / .08);
  overflow: hidden;
  animation: riseIn .85s var(--ease-out) .68s both;
}

.hero-proof div {
  padding: 17px 18px;
  background: rgb(255 255 255 / .06);
}

.hero-proof strong {
  display: block;
  color: white;
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.hero-proof span {
  display: block;
  margin-top: 5px;
  color: rgb(255 255 255 / .72);
  font-size: .82rem;
  font-weight: 700;
}

.hero-card {
  position: relative;
  display: flex;
  align-self: stretch;
  min-height: clamp(440px, 60vh, 620px);
  animation: mediaIn 1s var(--ease-out) .2s both;
}

.hero-card .portrait-frame {
  width: 100%;
}

.portrait-frame {
  position: relative;
  flex: 1 1 auto;
  min-height: 360px;
  border-radius: clamp(28px, 4vw, 44px);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-strong);
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 32%, rgb(8 18 34 / .56)),
    radial-gradient(circle at 78% 18%, color-mix(in oklch, var(--amber) 18%, transparent), transparent 16rem);
  pointer-events: none;
}

.portrait-photo {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, calc(var(--scroll, 0) * -42px), 0) scale(calc(1.04 + var(--scroll, 0) * .035));
  filter: saturate(1.04) contrast(1.02);
}

.advisor-card,
.contact-card,
.price-card,
.profile-card,
.contact-form,
.feature-card,
.process-card,
.include-panel,
.legal-page {
  border: 1px solid color-mix(in oklch, var(--border) 78%, white);
  border-radius: var(--radius);
  background: color-mix(in oklch, var(--surface) 90%, var(--bg));
  box-shadow: 0 22px 70px rgb(15 32 55 / .08);
}

.advisor-card {
  position: absolute;
  right: clamp(12px, 2vw, 24px);
  bottom: clamp(12px, 2vw, 24px);
  left: clamp(12px, 2vw, 24px);
  padding: clamp(18px, 3vw, 28px);
  color: white;
  border-color: rgb(255 255 255 / .18);
  background: color-mix(in oklch, var(--blue-dark) 72%, transparent);
  box-shadow: 0 26px 78px rgb(8 18 34 / .28);
  backdrop-filter: blur(18px);
}

.advisor-card h2 {
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  letter-spacing: -.03em;
}

.advisor-card p {
  margin: 0 0 14px;
  color: rgb(255 255 255 / .78);
}

.advisor-card span,
.advisor-role {
  color: color-mix(in oklch, var(--amber) 80%, white);
  font-size: .82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.section,
.page-hero {
  max-width: calc(var(--max) + var(--pad) * 2);
  margin: 0 auto;
  padding: clamp(70px, 9vw, 132px) var(--pad);
}

.section-soft {
  max-width: none;
  margin: 0;
  padding-inline: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  background:
    linear-gradient(180deg, color-mix(in oklch, white 76%, var(--cream)), color-mix(in oklch, var(--surface-tint) 74%, white));
}

.section-soft .feature-card {
  border-color: color-mix(in oklch, var(--blue-dark) 14%, var(--border));
  background: white;
  box-shadow: 0 14px 38px rgb(15 32 55 / .06);
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  max-width: 760px;
  margin-bottom: clamp(26px, 5vw, 54px);
}

.section-head h2 {
  margin: 0;
}

.section-head::after {
  content: "";
  align-self: stretch;
  max-width: 220px;
  height: 2px;
  margin-top: 8px;
  background: linear-gradient(90deg, var(--coral), transparent);
  border-radius: 2px;
}

.feature-grid {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
}

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

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

.feature-card,
.process-card,
.profile-card,
.contact-card,
.price-card {
  position: relative;
  padding: clamp(22px, 3vw, 34px);
  overflow: hidden;
  transition: transform .32s var(--ease-out), box-shadow .32s ease, border-color .32s ease;
}

.feature-card::before,
.process-card::before,
.profile-card::before,
.contact-card::before,
.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--coral), var(--amber));
  opacity: .86;
}

.feature-card:hover,
.process-card:hover,
.profile-card:hover,
.contact-card:hover,
.price-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in oklch, var(--coral) 34%, var(--border));
  box-shadow: 0 30px 90px rgb(15 32 55 / .13);
}

.brand-icon {
  --icon-primary: var(--blue-dark);
  --icon-accent: var(--coral);
  --icon-surface: color-mix(in oklch, white 82%, var(--cream));
  position: relative;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 22px;
  color: var(--icon-primary);
  transform-origin: 50% 60%;
  transition: transform .34s var(--ease-out), filter .34s ease;
}

.brand-icon::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 22px;
  background: color-mix(in oklch, var(--icon-accent) 14%, white);
  filter: blur(12px);
  opacity: .42;
  transform: rotate(-7deg);
  transition: opacity .3s ease, transform .34s var(--ease-out);
}

.brand-icon svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 14px 24px rgb(15 32 55 / .12));
}

.brand-icon .icon-plate {
  fill: var(--icon-surface);
  stroke: color-mix(in oklch, var(--icon-primary) 14%, white);
  stroke-width: 1.1;
}

.brand-icon .icon-fill {
  fill: color-mix(in oklch, var(--icon-accent) 16%, white);
  stroke: none;
}

.brand-icon .icon-line,
.brand-icon .icon-accent,
.brand-icon .icon-slash {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-icon .icon-line {
  stroke: var(--icon-primary);
  stroke-width: 2.05;
}

.brand-icon .icon-accent,
.brand-icon .icon-slash {
  stroke: var(--icon-accent);
  stroke-width: 2.45;
}

.brand-icon .icon-dot {
  fill: var(--icon-accent);
  stroke: none;
}

.brand-icon-chat {
  --icon-accent: var(--sage);
}

.brand-icon-launch,
.brand-icon-demo {
  --icon-accent: var(--amber);
}

.brand-icon-muted {
  --icon-primary: color-mix(in oklch, var(--blue-dark) 82%, white);
  --icon-accent: var(--coral-dark);
  --icon-surface: color-mix(in oklch, white 86%, var(--bg));
}

.feature-card:nth-child(2n) .brand-icon {
  --icon-accent: var(--coral);
}

.feature-card:nth-child(3n) .brand-icon {
  --icon-accent: var(--amber);
}

.feature-card:hover .brand-icon,
.process-card:hover .brand-icon,
.contact-card:hover .brand-icon,
.price-card:hover .brand-icon {
  transform: translateY(-5px) rotate(-2deg);
  filter: saturate(1.08);
}

.feature-card:hover .brand-icon::before,
.process-card:hover .brand-icon::before,
.contact-card:hover .brand-icon::before,
.price-card:hover .brand-icon::before {
  opacity: .72;
  transform: rotate(4deg) scale(1.08);
}

.reveal-item .brand-icon .icon-line,
.reveal-item .brand-icon .icon-accent,
.reveal-item .brand-icon .icon-slash {
  stroke-dasharray: 130;
  stroke-dashoffset: 130;
}

.reveal-item.is-visible .brand-icon .icon-line,
.reveal-item.is-visible .brand-icon .icon-accent,
.reveal-item.is-visible .brand-icon .icon-slash {
  animation: iconDraw .9s var(--ease-out) forwards;
}

.reveal-item.is-visible .brand-icon .icon-float {
  animation: iconDraw .82s var(--ease-out) forwards, iconFloat 3s ease-in-out 1.05s infinite;
}

.reveal-item.is-visible .brand-icon .icon-pulse {
  animation: iconDot .42s var(--ease-out) .62s both, iconPulse 2.4s ease-in-out 1.2s infinite;
}

.feature-card p,
.process-card p,
.profile-card p,
.contact-card p,
.price-card p,
.detail-item span,
.include-row span,
.legal-page p,
.legal-page li {
  color: var(--muted);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(310px, .72fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  max-width: none;
  min-height: 120vh;
  padding-inline: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  color: white;
  background:
    radial-gradient(circle at 78% 12%, color-mix(in oklch, var(--coral) 30%, transparent), transparent 23rem),
    linear-gradient(135deg, var(--blue-dark), color-mix(in oklch, var(--blue) 74%, black));
}

.story-copy {
  position: sticky;
  top: 104px;
}

.story-copy .eyebrow {
  color: color-mix(in oklch, var(--amber) 80%, white);
}

.story-copy h2 {
  color: white;
}

.story-steps {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.story-step {
  position: relative;
  padding: 20px 0 20px 28px;
  border-left: 1px solid rgb(255 255 255 / .2);
  opacity: .52;
  transition: opacity .32s ease, transform .32s var(--ease-out);
}

.story-step::before {
  content: "";
  position: absolute;
  top: 25px;
  left: -6px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgb(255 255 255 / .35);
  box-shadow: 0 0 0 0 color-mix(in oklch, var(--coral) 40%, transparent);
}

.story-step.is-active {
  opacity: 1;
  transform: translateX(8px);
}

.story-step.is-active::before {
  background: var(--coral);
  box-shadow: 0 0 0 8px color-mix(in oklch, var(--coral) 20%, transparent);
}

.story-step span {
  color: var(--amber);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .1em;
}

.story-step h3 {
  color: white;
}

.story-step p {
  margin: 0;
  color: rgb(255 255 255 / .72);
}

.story-visual {
  position: sticky;
  top: 104px;
  display: grid;
  place-items: center;
}

.phone-shell {
  position: relative;
  width: min(100%, 360px);
  min-height: 640px;
  padding: 10px 10px 12px;
  border-radius: 46px;
  background: #0b0b0e;
  box-shadow:
    inset 0 0 0 2px #1f1f24,
    0 40px 110px rgb(0 0 0 / .45),
    0 2px 0 rgb(255 255 255 / .04);
  overflow: hidden;
  isolation: isolate;
  transform: translate3d(0, calc(var(--story-p, 0) * -22px), 0) rotate(calc(var(--story-p, 0) * -1.2deg));
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 26px;
  border-radius: 999px;
  background: #000;
  z-index: 5;
}

.story-phone {
  display: flex;
  flex-direction: column;
}

.wa-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px 6px;
  background: #008069;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .01em;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
}

.wa-statusbar .wa-time {
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

.wa-statusbar .wa-icons {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.wa-statusbar .wa-icons svg {
  fill: #fff;
  stroke: #fff;
}

.wa-statusbar .wa-icons svg path,
.wa-statusbar .wa-icons svg rect {
  stroke: #fff;
  fill: #fff;
}

.wa-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px 10px;
  background: #008069;
  color: #fff;
}

.wa-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: default;
}

.wa-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 2px rgb(255 255 255 / .35);
}

.wa-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wa-contact {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.wa-contact strong {
  font-size: .98rem;
  font-weight: 600;
  letter-spacing: .002em;
  color: #fff;
}

.wa-contact span {
  font-size: .76rem;
  font-weight: 400;
  color: rgb(255 255 255 / .86);
}

.wa-status-online {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgb(255 255 255 / .86) !important;
}

.wa-status-online i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 2px rgb(37 211 102 / .25);
  animation: wa-online-pulse 2.4s infinite ease-in-out;
}

@keyframes wa-online-pulse {
  0%, 100% { box-shadow: 0 0 0 2px rgb(37 211 102 / .25); }
  50%      { box-shadow: 0 0 0 4px rgb(37 211 102 / .15); }
}

@media (prefers-reduced-motion: reduce) {
  .wa-status-online i { animation: none; }
}

.wa-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.wa-actions svg {
  flex-shrink: 0;
}

.wa-chat {
  position: relative;
  flex: 1;
  padding: 12px 12px 14px;
  background-color: #efeae2;
  background-image:
    radial-gradient(rgb(0 0 0 / .03) 1px, transparent 1px),
    radial-gradient(rgb(0 0 0 / .025) 1px, transparent 1px);
  background-size: 22px 22px, 38px 38px;
  background-position: 0 0, 11px 19px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
}

.wa-daystamp {
  align-self: center;
  margin: 4px 0 10px;
}

.wa-daystamp span {
  display: inline-block;
  padding: 4px 10px;
  background: #e1f2fa;
  color: #54656f;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .04em;
  border-radius: 8px;
  box-shadow: 0 1px 0.5px rgb(11 20 26 / .13);
}

.wa-bubble {
  position: relative;
  max-width: 82%;
  padding: 6px 9px 6px 10px;
  color: #111b21;
  font-size: .92rem;
  font-weight: 400;
  line-height: 1.35;
  border-radius: 8px;
  box-shadow: 0 1px 0.5px rgb(11 20 26 / .13);
  margin-bottom: 4px;
  word-wrap: break-word;
}

.wa-in {
  align-self: flex-start;
  background: #ffffff;
  border-top-left-radius: 0;
  margin-left: 8px;
}

.wa-in::before {
  content: "";
  position: absolute;
  top: 0;
  left: -8px;
  width: 8px;
  height: 13px;
  background:
    radial-gradient(circle at 100% 0, transparent 8px, #ffffff 8px);
  filter: drop-shadow(-1px 0.5px 0.5px rgb(11 20 26 / .08));
}

.wa-out {
  align-self: flex-end;
  background: #d9fdd3;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 0;
  margin-right: 8px;
}

.wa-out::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -8px;
  width: 8px;
  height: 13px;
  background: radial-gradient(circle at 0 0, transparent 8px, #d9fdd3 8px);
  filter: drop-shadow(1px 0.5px 0.5px rgb(11 20 26 / .08));
}

.wa-out-tight {
  margin-top: -2px;
}

.wa-out-tight::after {
  display: none;
}

.wa-meta {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  float: right;
  margin: 6px -2px -2px 8px;
  color: #667781;
  font-size: .66rem;
  font-weight: 400;
  line-height: 1;
}

.wa-meta time {
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

.wa-ticks {
  flex-shrink: 0;
}

.wa-inputbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 6px 10px;
  background: #f0f2f5;
}

.wa-input-pill {
  flex: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 1px 0.5px rgb(11 20 26 / .13);
  color: #54656f;
}

.wa-input-pill em {
  flex: 1;
  font-style: normal;
  font-size: .92rem;
  font-weight: 400;
}

.wa-send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #008069;
  flex-shrink: 0;
}

.split,
.pricing-layout,
.contact-layout,
.team-hero {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(320px, .72fr);
  gap: clamp(26px, 5vw, 74px);
  align-items: center;
}

.include-panel {
  padding: clamp(22px, 3vw, 32px);
}

.include-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid color-mix(in oklch, var(--border) 78%, white);
}

.include-row:last-child {
  border-bottom: 0;
}

.include-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.include-row .include-mark {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border: 1px solid color-mix(in oklch, var(--blue) 18%, white);
  border-radius: 999px;
  color: var(--blue-dark);
  background: color-mix(in oklch, var(--amber) 14%, white);
  box-shadow: 0 10px 22px rgb(15 32 55 / .08);
  transition: transform .24s var(--ease-out), background .24s ease, color .24s ease;
}

.include-mark svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.15;
}

.include-row:hover .include-mark {
  color: white;
  background: var(--coral);
  transform: translateY(-2px) scale(1.05);
}

.include-row strong {
  color: var(--coral-dark);
}

.section-cta {
  max-width: none;
  margin: 0;
  padding-inline: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
}

.cta-box {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 80px);
  border-radius: clamp(28px, 5vw, 58px);
  color: white;
  background:
    radial-gradient(circle at 84% 20%, color-mix(in oklch, var(--amber) 24%, transparent), transparent 20rem),
    linear-gradient(135deg, var(--blue-dark), color-mix(in oklch, var(--blue) 78%, black));
  box-shadow: var(--shadow-strong);
}

.cta-box::after {
  content: "";
  position: absolute;
  inset: auto 8% -46% auto;
  width: 360px;
  height: 360px;
  border: 1px solid rgb(255 255 255 / .13);
  border-radius: 999px;
}

.cta-box .eyebrow {
  color: color-mix(in oklch, var(--amber) 82%, white);
}

.cta-box h2 {
  position: relative;
  z-index: 1;
  max-width: 880px;
  color: white;
}

.page-hero {
  position: relative;
  max-width: none;
  margin: 0;
  padding-inline: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  color: white;
  background:
    radial-gradient(circle at 80% 18%, color-mix(in oklch, var(--coral) 22%, transparent), transparent 22rem),
    linear-gradient(135deg, var(--blue-dark), color-mix(in oklch, var(--blue) 78%, black));
}

.page-hero.compact {
  min-height: clamp(360px, 44vh, 520px);
}

.page-hero h1 {
  max-width: 980px;
  color: white;
}

.page-hero p {
  max-width: 740px;
  color: rgb(255 255 255 / .76);
}

.page-hero .eyebrow {
  color: color-mix(in oklch, var(--amber) 80%, white);
}

.pricing-layout {
  align-items: start;
}

.price-card {
  position: sticky;
  top: 104px;
}

.big-price {
  margin: 12px 0 22px;
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 7.2vw, 6.4rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -.04em;
}

.big-price span {
  display: block;
  margin-top: 18px;
  color: var(--coral-dark);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

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

.detail-list h2 {
  margin-bottom: 10px;
}

.detail-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid color-mix(in oklch, var(--border) 78%, white);
}

.detail-item .detail-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid color-mix(in oklch, var(--blue) 17%, white);
  border-radius: 16px;
  color: var(--blue-dark);
  background:
    linear-gradient(135deg, color-mix(in oklch, white 86%, var(--cream)), color-mix(in oklch, var(--amber) 13%, white));
  box-shadow: 0 12px 26px rgb(15 32 55 / .08);
  transition: transform .25s var(--ease-out), border-color .25s ease, color .25s ease;
}

.detail-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.95;
}

.detail-item:hover .detail-icon {
  color: var(--coral-dark);
  border-color: color-mix(in oklch, var(--coral) 35%, white);
  transform: translateY(-2px) rotate(-2deg);
}

.detail-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1.08rem;
}

.process-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}

.process-card {
  padding-top: clamp(104px, 9vw, 126px);
}

.process-card h2 {
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: -.04em;
}

.process-marker {
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.process-marker .brand-icon {
  width: 58px;
  height: 58px;
  margin: 0;
}

.step-badge {
  display: grid;
  place-items: center;
  min-width: 48px;
  height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--blue-dark);
  border: 1px solid color-mix(in oklch, var(--blue) 16%, white);
  background: color-mix(in oklch, white 86%, var(--cream));
  font-weight: 850;
  font-size: .78rem;
  letter-spacing: .08em;
  font-variant-numeric: tabular-nums;
}

.process-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.process-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.process-card li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--coral);
}

.team-hero {
  max-width: var(--max);
  margin: 0 auto;
}

.team-portrait {
  min-height: 520px;
}

.team-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .64fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: stretch;
}

.profile-card {
  display: grid;
  align-content: start;
}

.primary-profile {
  color: white;
  background:
    radial-gradient(circle at 78% 0%, color-mix(in oklch, var(--coral) 26%, transparent), transparent 18rem),
    var(--blue-dark);
}

.primary-profile .eyebrow,
.primary-profile .profile-quote {
  color: color-mix(in oklch, white 80%, var(--amber));
}

.primary-profile h2 {
  color: white;
}

.profile-quote {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 3.1rem);
  line-height: 1.05;
}

.language-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.language-row span {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink);
  background: white;
  font-size: .82rem;
  font-weight: 850;
}

.founder-photo {
  width: 96px;
  height: 96px;
  margin-bottom: 22px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 12px 34px rgb(15 32 55 / .14);
}

.contact-layout {
  align-items: start;
}

.contact-card,
.contact-form {
  padding: clamp(22px, 3vw, 36px);
}

.contact-card {
  position: sticky;
  top: 104px;
}

.contact-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.contact-person img {
  width: 76px;
  height: 76px;
  border-radius: 999px;
  object-fit: cover;
}

.contact-person strong,
.contact-person span {
  display: block;
}

.contact-person span {
  color: var(--muted);
  font-size: .9rem;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 700;
}

.contact-methods a,
.contact-methods span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
}

.contact-methods .method-icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: color-mix(in oklch, var(--amber) 15%, white);
}

.method-icon svg {
  width: 17px;
  height: 17px;
  stroke-width: 2;
}

.contact-hero-icon {
  margin: -4px 0 18px;
}

.contact-methods a,
.text-link,
.footer-france {
  color: var(--coral-dark);
  font-weight: 850;
  text-underline-offset: 4px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

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

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label,
.check-row {
  color: var(--ink);
  font-size: .9rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid color-mix(in oklch, var(--border) 88%, white);
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--ink);
  background: color-mix(in oklch, white 92%, var(--bg));
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

input:focus,
textarea:focus {
  border-color: color-mix(in oklch, var(--coral) 70%, var(--border));
  background: white;
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--coral) 15%, transparent);
}

textarea {
  resize: vertical;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--coral);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.form-status {
  display: none;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 800;
}

.form-status.is-success,
.form-status.is-error {
  display: block;
}

.form-status.is-success {
  color: color-mix(in oklch, var(--success) 70%, black);
  background: color-mix(in oklch, var(--success) 14%, white);
}

.form-status.is-error {
  color: color-mix(in oklch, var(--danger) 70%, black);
  background: color-mix(in oklch, var(--danger) 12%, white);
}

.legal-page {
  max-width: 860px;
  margin: clamp(46px, 8vw, 90px) auto;
  padding: clamp(28px, 5vw, 56px);
}

.legal-page h1 {
  margin-bottom: 26px;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: .9;
}

.legal-page section {
  padding: 24px 0;
  border-top: 1px solid color-mix(in oklch, var(--border) 80%, white);
}

.legal-page h2 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  letter-spacing: -.03em;
}

.site-footer {
  padding: clamp(44px, 7vw, 78px) var(--pad) 28px;
  color: color-mix(in oklch, var(--ink) 82%, white);
  background: color-mix(in oklch, var(--ink) 6%, var(--bg));
  border-top: 1px solid color-mix(in oklch, var(--border) 84%, white);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: clamp(28px, 5vw, 72px);
  max-width: var(--max);
  margin: 0 auto;
}

.footer-logo {
  width: 120px;
  height: auto;
  margin-bottom: 16px;
}

.footer-main p {
  max-width: 420px;
  color: var(--muted);
}

.footer-main nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-main a {
  text-decoration: none;
}

.footer-main nav a:hover {
  color: var(--coral-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: var(--max);
  margin: 38px auto 0;
  padding-top: 20px;
  border-top: 1px solid color-mix(in oklch, var(--border) 84%, white);
  color: var(--muted);
  font-size: .88rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}

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

.feature-card:nth-child(2),
.detail-item:nth-child(2),
.process-card:nth-child(2) {
  transition-delay: .08s;
}

.feature-card:nth-child(3),
.detail-item:nth-child(3),
.process-card:nth-child(3) {
  transition-delay: .16s;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mediaIn {
  from {
    opacity: 0;
    transform: translateY(34px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes buttonShine {
  0% {
    opacity: 0;
    transform: translateX(0) rotate(18deg);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(430%) rotate(18deg);
  }
}

@keyframes iconDraw {
  to {
    stroke-dashoffset: 0;
  }
}

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

@keyframes iconDot {
  from {
    opacity: 0;
    transform: scale(.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes iconPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: .58;
    transform: scale(.82);
  }
}

@media (min-width: 900px) {
  .site-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
}

@media (max-width: 1080px) {
  .hero,
  .split,
  .pricing-layout,
  .contact-layout,
  .team-hero,
  .story-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-card,
  .story-copy,
  .story-visual,
  .price-card,
  .contact-card {
    position: relative;
    top: auto;
  }

  .hero-card {
    flex-direction: column;
    min-height: auto;
    gap: 18px;
  }

  .portrait-frame {
    aspect-ratio: 4 / 3;
    min-height: 320px;
  }

  .story-section {
    min-height: auto;
  }

  .phone-shell {
    min-height: 560px;
  }

  .process-board,
  .feature-grid.three {
    grid-template-columns: 1fr;
  }

  .section,
  .page-hero {
    padding-block: clamp(48px, 7vw, 80px);
  }

  .section-soft {
    padding-block: clamp(44px, 6vw, 72px);
  }
}

@media (max-width: 899px) {
  .site-header {
    z-index: 60;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: color-mix(in oklch, var(--bg) 96%, transparent);
  }

  .site-header.is-scrolled {
    background: var(--surface);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 0;
    z-index: 55;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 22px var(--pad) 32px;
    border: none;
    border-top: 1px solid color-mix(in oklch, var(--border) 60%, transparent);
    border-radius: 0;
    background: var(--surface);
    box-shadow: 0 28px 60px rgb(15 32 55 / .18);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    transition: opacity .22s ease, transform .22s var(--ease-out), visibility 0s linear .22s;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity .22s ease, transform .22s var(--ease-out), visibility 0s linear 0s;
  }

  .site-nav a {
    width: 100%;
    min-height: 58px;
    padding: 16px 18px;
    justify-content: space-between;
    border-radius: 14px;
    border-bottom: 1px solid color-mix(in oklch, var(--border) 50%, transparent);
    color: var(--ink);
    font-size: 1.12rem;
    font-weight: 750;
  }

  .site-nav a:not(.nav-cta):last-of-type {
    border-bottom: none;
  }

  .site-nav a[aria-current="page"] {
    background: color-mix(in oklch, var(--coral) 16%, white);
    color: var(--blue-dark);
  }

  .site-nav a:not(.nav-cta)::after {
    content: "";
    width: 18px;
    height: 18px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='9 6 15 12 9 18'/></svg>") center/contain no-repeat;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='9 6 15 12 9 18'/></svg>") center/contain no-repeat;
    opacity: .55;
  }

  .site-nav .nav-cta {
    margin-top: 18px;
    margin-left: 0;
    min-height: 58px;
    justify-content: center;
    border-radius: 999px;
    border-bottom: none;
    color: white;
    background: var(--blue-dark);
    box-shadow: 0 14px 30px rgb(15 32 55 / .22);
  }

  .site-nav .nav-cta::after {
    display: none;
  }

  body.nav-open::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 45;
    background: rgb(15 32 55 / .35);
    backdrop-filter: blur(6px);
    pointer-events: none;
  }

  .hero-proof,
  .feature-grid.two,
  .team-grid,
  .form-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .section-head {
    grid-template-columns: 1fr;
  }

  .section-head::after {
    max-width: 180px;
  }

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

@media (max-width: 620px) {
  :root {
    --pad: 18px;
  }

  .site-header {
    min-height: 64px;
    padding-block: 10px;
  }

  .brand-logo {
    height: 38px;
  }

  .site-nav {
    top: 64px;
    inset: 64px 0 0;
  }

  .hero {
    padding-top: 32px;
    padding-bottom: 36px;
    gap: 28px;
    min-height: auto;
  }

  h1 {
    font-size: clamp(2.4rem, 10vw, 3.6rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.65rem, 7vw, 2.4rem);
    line-height: 1.08;
  }

  h3 {
    font-size: 1.08rem;
  }

  .hero-lede {
    font-size: 1.05rem;
    margin-top: 16px;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
  }

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

  .trust-list li {
    font-size: .8rem;
    padding: 7px 11px;
  }

  .btn {
    width: 100%;
    min-height: 48px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 24px;
    border-radius: 16px;
  }

  .hero-proof div {
    padding: 14px 16px;
  }

  .hero-card {
    flex-direction: column;
    gap: 14px;
    min-height: auto;
  }

  .portrait-frame {
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 0;
    max-height: 62vh;
    border-radius: 22px;
  }

  .portrait-photo {
    object-position: center 22%;
  }

  .advisor-card {
    position: relative;
    inset: auto;
    margin-top: 0;
    margin-inline: 0;
    padding: 18px 18px 20px;
    border-radius: 18px;
  }

  .advisor-card h2 {
    font-size: 1.15rem;
    margin-bottom: 8px;
  }

  .advisor-card p {
    font-size: .92rem;
    margin-bottom: 10px;
  }

  .section,
  .page-hero {
    padding-block: 44px;
  }

  .section-soft {
    padding-block: 40px;
  }

  .section-head {
    margin-bottom: 22px;
    gap: 10px;
  }

  .section-head::after {
    max-width: 120px;
    margin-top: 4px;
  }

  .feature-grid {
    gap: 12px;
  }

  .feature-card,
  .process-card,
  .profile-card,
  .contact-card,
  .price-card {
    padding: 20px 18px;
    border-radius: 18px;
  }

  .feature-card::before,
  .process-card::before,
  .profile-card::before,
  .contact-card::before,
  .price-card::before {
    height: 2px;
    opacity: .6;
  }

  .brand-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 14px;
  }

  .story-section {
    padding-block: 48px;
    gap: 28px;
    min-height: auto;
  }

  .story-step {
    padding: 16px 18px;
  }

  .phone-shell {
    min-height: 480px;
    border-radius: 30px;
  }

  .section-cta {
    padding-block: 40px;
  }

  .cta-box {
    padding: 24px 22px;
  }

  .legal-page {
    margin-block: 28px;
  }

  .site-footer {
    padding: 36px var(--pad) 24px;
  }
}

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

  .reveal-item {
    opacity: 1;
    transform: none;
  }
}
