:root {
  --navy: #0b1536;
  --navy-2: #111f49;
  --ink: #12162a;
  --muted: #657086;
  --pink: #ff5c9e;
  --pink-soft: #ffd6e7;
  --cream: #f8f5ee;
  --paper: #fffefd;
  --line: #dfe3e9;
  --white: #ffffff;
  --container: 1240px;
  --radius-sm: 14px;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(11, 21, 54, 0.12);
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

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

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

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

.section {
  padding: 124px 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  color: var(--navy);
  background: rgba(255, 254, 253, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(11, 21, 54, 0.09);
  box-shadow: 0 10px 30px rgba(11, 21, 54, 0.06);
}

.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: auto;
  height: 52px;
  object-fit: contain;
}

.brand-mark {
  width: 38px;
  height: 38px;
  overflow: visible;
}

.brand-mark path:first-child {
  fill: var(--navy);
}

.brand-mark path:last-child {
  fill: var(--pink);
  transform: scale(0.55) translate(18px, 18px);
  transform-origin: center;
}

.brand-copy {
  display: flex;
  font-size: 17px;
  letter-spacing: -0.5px;
}

.brand-copy strong {
  font-weight: 750;
}

.brand-copy span {
  color: var(--pink);
  font-weight: 750;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  margin-right: 40px;
}

.desktop-nav a,
.text-link {
  position: relative;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a::after,
.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  color: var(--white);
  background: var(--pink);
  border: 1px solid var(--pink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(255, 92, 158, 0.22);
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 92, 158, 0.3);
}

.button-small {
  min-height: 43px;
  padding-inline: 19px;
  font-size: 12px;
}

.button-light {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.14);
}

.button-light:hover {
  color: var(--white);
  background: var(--pink);
  border-color: var(--pink);
}

.button-light svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.button-ghost {
  color: var(--navy);
  background: transparent;
  border-color: rgba(11, 21, 54, 0.2);
  box-shadow: none;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  padding: 0;
  color: var(--navy);
  background: transparent;
  border: 1px solid rgba(11, 21, 54, 0.15);
  border-radius: 50%;
}

.menu-toggle span {
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.25s ease;
}

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

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

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  padding: 172px 0 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 25%, rgba(74, 100, 190, 0.2), transparent 32%),
    linear-gradient(135deg, #0b1536 0%, #0d173c 52%, #101d49 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='70' viewBox='0 0 70 70'%3E%3Cpath d='M70 0H0v70' fill='none' stroke='%23fff' stroke-opacity='.25'/%3E%3C/svg%3E");
  mask-image: linear-gradient(to right, transparent, #000 32%, #000 74%, transparent);
}

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

.hero-orb-one {
  width: 340px;
  height: 340px;
  top: -130px;
  left: -90px;
  border: 1px solid rgba(255, 92, 158, 0.3);
}

.hero-orb-two {
  width: 540px;
  height: 540px;
  right: -260px;
  bottom: -250px;
  background: rgba(255, 92, 158, 0.08);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 60px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 24px;
  color: #e2e6f2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 32px;
  height: 1px;
  background: var(--pink);
}

.hero h1,
.intro h2,
.section-head h2,
.why-content h2,
.reviews-head h2,
.faq-intro h2,
.cta-card h2 {
  margin-bottom: 28px;
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: 0.99;
  letter-spacing: -0.052em;
}

h1 em,
h2 em {
  color: var(--pink);
  font-family: var(--font-serif);
  font-weight: 400;
}

.hero-lead {
  max-width: 625px;
  margin-bottom: 36px;
  color: #cbd2e4;
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 38px;
}

.play-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #f3f5fa;
  font-size: 13px;
  font-weight: 750;
}

.play-link span {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.play-link:hover span {
  background: var(--pink);
  border-color: var(--pink);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  color: #aeb8cf;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.03em;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-trust i {
  width: 17px;
  height: 17px;
  display: inline-grid;
  place-items: center;
  color: var(--navy);
  background: var(--pink);
  border-radius: 50%;
  font-size: 10px;
  font-style: normal;
}

.hero-visual {
  position: relative;
  min-height: 510px;
}

.document-stack {
  position: absolute;
  width: 390px;
  height: 470px;
  top: 8px;
  left: 50%;
  transform: translateX(-50%) rotate(2deg);
}

.paper {
  position: absolute;
  inset: 0;
  border-radius: 5px;
}

.paper-back {
  background: #34416a;
  transform: rotate(9deg) translate(18px, 5px);
}

.paper-mid {
  background: var(--pink-soft);
  transform: rotate(-5deg) translate(-12px, 8px);
}

.paper-main {
  padding: 32px 31px;
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.27);
}

.paper-main::before {
  content: "";
  position: absolute;
  top: 0;
  right: 30px;
  width: 1px;
  height: 100%;
  background: rgba(255, 92, 158, 0.18);
}

.paper-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #d9d8d2;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.paper-status {
  color: #4a8666;
}

.paper-kicker {
  margin: 70px 0 13px;
  color: var(--pink);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.paper-main h2 {
  width: 92%;
  margin-bottom: 28px;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.paper-lines {
  display: grid;
  gap: 8px;
  margin-bottom: 44px;
}

.paper-lines i {
  width: 88%;
  height: 2px;
  background: #d8d7d0;
}

.paper-lines i:nth-child(2) { width: 77%; }
.paper-lines i:nth-child(3) { width: 82%; }
.paper-lines i:nth-child(4) { width: 61%; }

.paper-note {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 16px;
  border-top: 1px solid #d9d8d2;
}

.paper-note span {
  color: var(--pink);
  font-family: var(--font-serif);
  font-size: 23px;
}

.paper-note p {
  margin: 0;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

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

.floating-card strong {
  font-size: 11px;
}

.floating-card small {
  color: var(--muted);
  font-size: 9px;
}

.floating-card-top {
  top: 52px;
  right: -2px;
  animation: float 4.5s ease-in-out infinite;
}

.floating-card-bottom {
  bottom: 34px;
  left: 0;
  animation: float 5s ease-in-out -1.2s infinite;
}

.mini-icon {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--pink);
  border-radius: 9px;
}

.avatar-group {
  display: flex;
  padding-left: 8px;
}

.avatar-group span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  margin-left: -8px;
  color: var(--white);
  background: var(--navy);
  border: 2px solid var(--white);
  border-radius: 50%;
  font-size: 8px;
  font-weight: 800;
}

.avatar-group span:nth-child(2) { background: #6070a7; }
.avatar-group span:nth-child(3) { background: var(--pink); }

.hero-footnote {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 52px;
  color: #7783a0;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.23em;
}

.hero-footnote i {
  width: 3px;
  height: 3px;
  background: var(--pink);
  border-radius: 50%;
}

.intro {
  padding-top: 142px;
  padding-bottom: 72px;
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.29fr 0.71fr;
  gap: 50px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-label span {
  color: var(--pink);
}

.intro-copy h2,
.section-head h2,
.why-content h2,
.reviews-head h2,
.faq-intro h2,
.cta-card h2 {
  font-size: clamp(38px, 4.2vw, 58px);
}

.intro-copy p {
  max-width: 730px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.services {
  background: #f3f1eb;
}

.section-head,
.reviews-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 56px;
}

.section-head h2,
.reviews-head h2 {
  margin-bottom: 0;
}

.section-head > p {
  max-width: 430px;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 15px;
}

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

.service-card,
.service-cta {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid #e4e2dd;
  border-radius: var(--radius-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  z-index: 2;
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.service-card-featured {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.service-card-featured::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -85px;
  bottom: -75px;
  background: rgba(255, 92, 158, 0.12);
  border: 1px solid rgba(255, 92, 158, 0.35);
  border-radius: 50%;
}

.service-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: #b4b9c5;
  font-family: var(--font-serif);
  font-size: 16px;
}

.service-card-featured .service-number {
  color: #69738e;
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 44px;
  color: var(--pink);
  background: #fff0f6;
  border-radius: 14px;
}

.service-card-featured .service-icon {
  background: rgba(255, 92, 158, 0.15);
}

.service-icon svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.service-card p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

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

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 5px 9px;
  color: #c9d0e1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-card > a {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid #e8e6e1;
  font-size: 11px;
  font-weight: 850;
}

.service-card-featured > a {
  border-color: rgba(255, 255, 255, 0.14);
}

.service-card > a span {
  color: var(--pink);
  font-size: 17px;
  transition: transform 0.25s ease;
}

.service-card > a:hover span,
.service-cta a:hover span {
  transform: translate(3px, -3px);
}

.service-cta {
  justify-content: flex-end;
  color: var(--navy);
  background: var(--pink-soft);
  border-color: var(--pink-soft);
}

.service-cta::before {
  content: "?";
  position: absolute;
  top: 10px;
  right: 30px;
  color: rgba(11, 21, 54, 0.08);
  font-family: var(--font-serif);
  font-size: 180px;
  line-height: 1;
}

.service-cta p {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  font-family: var(--font-serif);
  font-size: 29px;
  line-height: 1.12;
}

.service-cta a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(11, 21, 54, 0.16);
  font-size: 11px;
  font-weight: 850;
}

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

.process-orb {
  width: 600px;
  height: 600px;
  top: -290px;
  right: -180px;
  background: rgba(255, 92, 158, 0.08);
  border: 1px solid rgba(255, 92, 158, 0.2);
}

.section-head-light {
  position: relative;
  z-index: 1;
}

.section-head-light > p {
  color: #aeb8cf;
}

.section-head-light .section-label {
  color: #8792ac;
}

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.process-step {
  position: relative;
  min-height: 340px;
  padding: 30px 22px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.process-step:first-child {
  padding-left: 0;
}

.process-step:last-child {
  border-right: 0;
}

.process-step > span {
  color: #65718d;
  font-family: var(--font-serif);
  font-size: 13px;
}

.step-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin: 45px 0 24px;
  color: var(--navy);
  background: var(--pink);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 21px;
  transition: transform 0.3s ease;
}

.process-step:hover .step-icon {
  transform: rotate(-10deg) scale(1.08);
}

.process-step h3 {
  margin-bottom: 13px;
  font-size: 16px;
}

.process-step p {
  margin: 0;
  color: #98a3bc;
  font-size: 12px;
  line-height: 1.7;
}

.why {
  background: var(--paper);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: stretch;
  gap: 90px;
}

.why-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 54px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 15%, rgba(255, 92, 158, 0.25), transparent 30%),
    linear-gradient(155deg, #111f49, #0b1536 70%);
  border-radius: var(--radius);
}

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

.why-visual::before {
  width: 350px;
  height: 350px;
  top: 30px;
  right: -110px;
}

.why-visual::after {
  width: 210px;
  height: 210px;
  top: 100px;
  right: -40px;
}

.quote-mark {
  position: absolute;
  top: 30px;
  left: 47px;
  color: var(--pink);
  font-family: var(--font-serif);
  font-size: 120px;
  line-height: 1;
}

.why-visual > p {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
  font-family: var(--font-serif);
  font-size: 31px;
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.why-signature {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #96a1ba;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.why-signature i {
  width: 35px;
  height: 1px;
  background: var(--pink);
}

.why-content {
  padding-top: 16px;
}

.benefit-list {
  margin-top: 55px;
  border-top: 1px solid var(--line);
}

.benefit-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.benefit-list article > span {
  padding-top: 2px;
  color: var(--pink);
  font-family: var(--font-serif);
  font-size: 13px;
}

.benefit-list h3 {
  margin-bottom: 7px;
  font-size: 15px;
}

.benefit-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.reviews {
  background: #f3f1eb;
}

.slider-controls {
  display: flex;
  gap: 9px;
  padding-bottom: 3px;
}

.slider-controls button {
  width: 46px;
  height: 46px;
  color: var(--navy);
  background: transparent;
  border: 1px solid #cfd2d8;
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.slider-controls button:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.review-slider {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  border-radius: var(--radius);
}

.review-card {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 0.22fr 0.78fr;
  align-content: center;
  padding: 55px 64px;
  visibility: hidden;
  opacity: 0;
  background: var(--paper);
  border: 1px solid #e1dfda;
  border-radius: var(--radius);
  transform: translateX(25px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
}

.review-card.is-active {
  position: relative;
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.review-stars {
  color: var(--pink);
  font-size: 13px;
  letter-spacing: 4px;
}

.review-card blockquote {
  margin: 0 0 48px;
  font-family: var(--font-serif);
  font-size: clamp(23px, 2.7vw, 36px);
  line-height: 1.36;
  letter-spacing: -0.025em;
}

.review-card footer {
  grid-column: 2;
  display: flex;
  align-items: center;
}

.review-avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-right: 13px;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-family: var(--font-serif);
}

.review-card footer div {
  display: grid;
  line-height: 1.35;
}

.review-card footer strong {
  font-size: 12px;
}

.review-card footer small {
  color: var(--muted);
  font-size: 9px;
}

.review-type {
  margin-left: auto;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-disclaimer {
  margin: 14px 0 0;
  color: #888f9d;
  font-size: 10px;
  text-align: right;
}

.writer-callout {
  display: grid;
  grid-template-columns: 1.15fr 1fr auto;
  align-items: center;
  gap: 42px;
  margin-top: 18px;
  padding: 28px 32px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-sm);
}

.writer-callout > div {
  display: grid;
  gap: 4px;
}

.writer-callout > div span {
  color: var(--pink);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.writer-callout > div strong {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}

.writer-callout p {
  margin: 0;
  color: #9ca7bf;
  font-size: 11px;
  line-height: 1.65;
}

.writer-callout .button {
  min-width: 210px;
  white-space: nowrap;
}

.promise {
  padding: 55px 0;
  color: var(--white);
  background: var(--pink);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.promise-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 75px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.promise-item:last-child {
  border: 0;
}

.promise-item strong {
  font-family: var(--font-serif);
  font-size: 39px;
  font-weight: 400;
  line-height: 1;
}

.promise-item span {
  font-size: 9px;
  font-weight: 850;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  gap: 110px;
}

.faq-intro > p:not(.section-label) {
  margin: 50px 0 8px;
  color: var(--muted);
  font-size: 12px;
}

.faq-intro > a {
  display: inline-flex;
  gap: 10px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 850;
}

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

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

.accordion-item button {
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.accordion-item button span {
  font-size: 14px;
  font-weight: 750;
}

.accordion-item button i {
  position: relative;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border: 1px solid #cfd2d8;
  border-radius: 50%;
}

.accordion-item button i::before,
.accordion-item button i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 1px;
  background: var(--navy);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.accordion-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item.is-open button i {
  background: var(--pink);
  border-color: var(--pink);
}

.accordion-item.is-open button i::before,
.accordion-item.is-open button i::after {
  background: var(--white);
}

.accordion-item.is-open button i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  transition: grid-template-rows 0.35s ease, opacity 0.35s ease, visibility 0.35s;
}

.accordion-item.is-open .accordion-panel {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

.accordion-panel p {
  min-height: 0;
  margin: -4px 50px 24px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.cta-section {
  padding: 0 0 42px;
  background: var(--paper);
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: 86px 70px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 21, 54, 0.98), rgba(17, 31, 73, 0.93)),
    var(--navy);
  border-radius: var(--radius);
}

.cta-card::after {
  content: "G";
  position: absolute;
  right: 4%;
  bottom: -35%;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--font-serif);
  font-size: 440px;
  line-height: 1;
}

.cta-orb {
  width: 470px;
  height: 470px;
  top: -260px;
  right: -50px;
  background: rgba(255, 92, 158, 0.13);
  border: 1px solid rgba(255, 92, 158, 0.28);
}

.cta-card > *:not(.cta-orb) {
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  max-width: 690px;
}

.cta-card > p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 35px;
  color: #aeb8cf;
  font-size: 14px;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.cta-actions > a:last-child {
  color: #c9d0e1;
  font-size: 11px;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  padding: 72px 0 28px;
  color: #b9c2d5;
  background: #070e25;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.65fr 0.75fr 0.85fr 1fr;
  gap: 60px;
  padding-bottom: 65px;
}

.brand-footer {
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
}

.brand-footer .brand-logo {
  height: 47px;
}

.footer-brand > p {
  margin: 20px 0 24px;
  color: #77839e;
  font-family: var(--font-serif);
  font-size: 15px;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  color: #9ba6bf;
  border: 1px solid #27324e;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 850;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.social-links a:hover {
  color: var(--white);
  background: var(--pink);
  border-color: var(--pink);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h3 {
  margin-bottom: 13px;
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  color: #77839e;
  font-size: 11px;
  transition: color 0.25s ease;
}

.footer-col a:hover {
  color: var(--pink);
}

.footer-contact a:first-of-type {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 21px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 23px;
  color: #54607a;
  border-top: 1px solid #1d2741;
  font-size: 9px;
}

.footer-credits {
  display: grid;
  gap: 3px;
  text-align: right;
}

.footer-credits a {
  color: #7b88a4;
  transition: color 0.25s ease;
}

.footer-credits a:hover {
  color: var(--pink);
}

.footer-credits small {
  color: #3f4b64;
  font-size: 8px;
}

.floating-contact {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(255, 92, 158, 0.38);
  transition: transform 0.25s ease;
}

.floating-contact:hover {
  transform: translateY(-4px) rotate(-6deg);
}

.floating-contact svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 1080px) {
  .desktop-nav { gap: 21px; margin-right: 24px; }
  .hero-grid { gap: 20px; }
  .document-stack { width: 350px; height: 440px; }
  .paper-main h2 { font-size: 29px; }
  .service-card, .service-cta { padding: 28px; }
  .why-grid { gap: 55px; }
  .faq-grid { gap: 75px; }
  .footer-main { gap: 38px; }
}

@media (max-width: 920px) {
  .section { padding: 96px 0; }
  .desktop-nav, .hide-mobile { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav {
    position: absolute;
    top: 82px;
    right: 0;
    left: 0;
    height: calc(100vh - 82px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 28px 24px 40px;
    visibility: hidden;
    opacity: 0;
    background: var(--paper);
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }
  .mobile-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .mobile-nav > a { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 18px; font-weight: 750; }
  .mobile-nav-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: auto; }
  .hero { padding-top: 150px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero h1 { font-size: clamp(48px, 8vw, 70px); }
  .hero-visual { min-height: 560px; margin-top: 35px; }
  .document-stack { width: 390px; height: 470px; }
  .floating-card-top { right: 10%; }
  .floating-card-bottom { left: 9%; }
  .intro-grid { grid-template-columns: 1fr; gap: 15px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step { border-bottom: 1px solid rgba(255, 255, 255, 0.13); }
  .process-step:nth-child(even) { border-right: 0; }
  .process-step:last-child { grid-column: 1 / -1; min-height: 260px; border-right: 0; border-bottom: 0; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { min-height: 520px; }
  .review-card { grid-template-columns: 1fr; }
  .review-card footer { grid-column: 1; }
  .review-stars { margin-bottom: 20px; }
  .writer-callout { grid-template-columns: 1fr; gap: 20px; }
  .writer-callout .button { justify-self: start; }
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .promise-item:nth-child(2) { border-right: 0; }
  .promise-item:nth-child(-n+2) { padding-bottom: 28px; margin-bottom: 28px; border-bottom: 1px solid rgba(255, 255, 255, 0.28); }
  .faq-grid { grid-template-columns: 1fr; gap: 55px; }
  .faq-intro > p:not(.section-label) { margin-top: 25px; }
  .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 78px 0; }
  .header-inner { height: 72px; }
  .mobile-nav { top: 72px; height: calc(100vh - 72px); }
  .brand-logo { height: 43px; }
  .brand-footer .brand-logo { height: 43px; }
  .hero { min-height: auto; padding: 125px 0 28px; }
  .hero::before { display: none; }
  .hero h1 { font-size: 45px; line-height: 1.02; }
  .hero-lead { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-trust { gap: 12px 18px; }
  .hero-visual { min-height: 470px; margin-top: 25px; }
  .document-stack { width: min(300px, 82vw); height: 390px; }
  .paper-main { padding: 25px 23px; }
  .paper-kicker { margin-top: 50px; }
  .paper-main h2 { font-size: 24px; }
  .paper-lines { margin-bottom: 32px; }
  .floating-card-top { top: 22px; right: -5px; }
  .floating-card-bottom { bottom: 8px; left: 0; }
  .hero-footnote { gap: 10px; margin-top: 25px; font-size: 6px; letter-spacing: 0.13em; }
  .intro { padding-top: 88px; padding-bottom: 52px; }
  .intro-copy h2, .section-head h2, .why-content h2, .reviews-head h2, .faq-intro h2, .cta-card h2 { font-size: 38px; }
  .intro-copy p { font-size: 15px; }
  .section-head, .reviews-head { align-items: flex-start; flex-direction: column; gap: 25px; margin-bottom: 38px; }
  .section-head > p { font-size: 13px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-cta { min-height: 360px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step, .process-step:first-child, .process-step:nth-child(3) { min-height: 275px; padding: 27px 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.13); }
  .process-step:last-child { border-bottom: 0; }
  .step-icon { margin: 35px 0 22px; }
  .why-grid { gap: 50px; }
  .why-visual { min-height: 480px; padding: 36px 30px; }
  .quote-mark { left: 27px; }
  .why-visual > p { font-size: 25px; }
  .benefit-list { margin-top: 38px; }
  .benefit-list article { grid-template-columns: 35px 1fr; gap: 12px; }
  .slider-controls { margin-top: -8px; }
  .review-slider { min-height: 500px; }
  .review-card { padding: 37px 28px; }
  .review-card blockquote { margin-bottom: 35px; font-size: 24px; }
  .review-card footer { align-items: flex-start; flex-wrap: wrap; }
  .review-type { width: 100%; margin: 20px 0 0; }
  .review-disclaimer { text-align: left; }
  .writer-callout { padding: 28px 24px; }
  .writer-callout .button { width: 100%; min-width: 0; white-space: normal; }
  .promise { padding: 42px 0; }
  .promise-item { gap: 11px; }
  .promise-item strong { font-size: 32px; }
  .promise-item span { font-size: 7px; }
  .faq-grid { gap: 38px; }
  .accordion-item button { min-height: 72px; }
  .accordion-item button span { font-size: 13px; }
  .accordion-panel p { margin-right: 0; }
  .cta-section { padding-bottom: 16px; }
  .cta-section .container { width: 100%; }
  .cta-card { padding: 70px 24px; border-radius: 0; }
  .cta-card::after { right: -20%; font-size: 320px; }
  .cta-actions { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 44px 25px; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .footer-credits { text-align: left; }
  .floating-contact { right: 15px; bottom: 15px; width: 48px; height: 48px; }
}

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