:root {
  --navy: #070b4f;
  --navy-2: #12165f;
  --pink: #d30a83;
  --pink-2: #f0189c;
  --pink-soft: #fff0f8;
  --lavender: #f6f3ff;
  --ink: #141525;
  --muted: #6e7281;
  --line: #e4e6f0;
  --soft: #f8f8fb;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(7, 11, 79, 0.09);
  --shadow-soft: 0 12px 34px rgba(7, 11, 79, 0.055);
  --page-max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background:
    linear-gradient(180deg, #ffffff 0, #ffffff 240px, var(--soft) 760px);
  color: var(--ink);
  margin: 0;
  overflow-x: hidden;
}

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

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(228, 230, 240, 0.8);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 16px max(22px, calc((100vw - var(--page-max)) / 2));
  position: sticky;
  top: 0;
  z-index: 30;
}

.brand {
  color: var(--navy);
  font-size: 29px;
  font-weight: 950;
  letter-spacing: 0;
}

.brand span,
.kicker,
.mini-label {
  color: var(--pink);
}

nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  font-weight: 800;
}

.header-cta {
  background: var(--navy);
  border-radius: 8px;
  color: var(--white);
  padding: 11px 15px;
}

.header-login {
  border: 1px solid rgba(7, 11, 79, 0.18);
  border-radius: 8px;
  color: var(--navy);
  padding: 10px 14px;
}

.header-login:hover {
  background: rgba(7, 11, 79, 0.06);
}

.hero {
  background: transparent;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.92fr);
  margin: 30px auto 0;
  max-width: min(var(--page-max), calc(100vw - 44px));
  overflow: hidden;
  padding: 0 0 32px;
}

.hero-copy {
  align-self: center;
}

.kicker,
.mini-label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.8vw, 64px);
  font-weight: 760;
  line-height: 0.94;
  margin: 12px 0 18px;
  max-width: 720px;
}

h1 span {
  display: block;
  white-space: nowrap;
}

h1 .line-two {
  color: var(--pink);
}

h2 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 760;
  line-height: 1.04;
  margin: 8px 0 12px;
}

h3 {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.14;
  margin: 0;
}

.lead {
  color: var(--navy);
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 850;
  line-height: 1.34;
  max-width: 620px;
}

.problem-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 24px 0 18px;
  max-width: 690px;
}

.problem-grid article {
  align-items: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(211, 10, 131, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 13px;
  min-height: 72px;
  padding: 13px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.problem-grid article:hover {
  border-color: var(--pink);
  box-shadow: 0 20px 42px rgba(211, 10, 131, 0.12);
  transform: translateY(-4px);
}

.icon {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.48)),
    rgba(7, 11, 79, 0.08);
  border: 1px solid rgba(7, 11, 79, 0.08);
  border-radius: 999px;
  color: var(--navy);
  display: inline-flex;
  flex: 0 0 40px;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.icon svg {
  fill: none;
  height: 21px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  width: 21px;
}

.problem-grid strong {
  color: var(--navy);
  font-size: 13px;
  line-height: 1.22;
}

.member-note {
  background: rgba(7, 11, 79, 0.055);
  border: 1px solid rgba(7, 11, 79, 0.12);
  border-radius: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 820;
  line-height: 1.4;
  margin: 22px 0;
  max-width: 690px;
  padding: 13px 15px;
}

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

.button {
  align-items: center;
  border: 2px solid var(--navy);
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-2));
  border-color: var(--pink);
  box-shadow: 0 14px 30px rgba(211, 10, 131, 0.2);
  color: var(--white);
}

.button.secondary {
  background: var(--white);
  color: var(--navy);
}

.button.secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.launch-note {
  color: #8d1158;
  font-size: 12px;
  font-weight: 850;
  margin-top: 12px;
}

.hero-media {
  align-self: center;
}

.media-card {
  aspect-ratio: 1418 / 1132;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 10px;
  box-shadow: 0 22px 56px rgba(7, 11, 79, 0.14);
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.media-image {
  background:
    url("assets/hilex-hero.png");
  background-position: center;
  background-size: cover;
  height: 100%;
  min-height: 0;
}

.floating-note {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(7, 11, 79, 0.14);
  color: #1f2028;
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  font-weight: 520;
  line-height: 1.05;
  max-width: 270px;
  padding: 13px 18px;
  position: absolute;
  display: none;
}

.floating-note::before {
  background: transparent;
  border-radius: 0;
  color: var(--pink);
  content: "⚖";
  display: grid;
  flex: 0 0 38px;
  font-size: 28px;
  font-weight: 950;
  height: 38px;
  margin-right: 12px;
  place-items: center;
}

.floating-note strong {
  display: block;
  flex-basis: calc(100% - 50px);
  font-weight: 920;
}

.floating-note[data-icon="person"]::before {
  content: "○";
  font-size: 34px;
}

.floating-note[data-icon="chat"]::before {
  content: "☏";
  font-size: 30px;
}

.note-one {
  right: 26px;
  top: 92px;
}

.note-two {
  bottom: 132px;
  right: 26px;
}

.note-three {
  bottom: 34px;
  left: 26px;
}

.trust-strip {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(228, 230, 240, 0.9);
  border-radius: 10px;
  box-shadow: 0 18px 46px rgba(7, 11, 79, 0.055);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 8px auto 0;
  max-width: min(var(--page-max), calc(100vw - 44px));
  overflow: hidden;
  padding: 22px 28px 26px;
  position: relative;
  z-index: 3;
}

.trust-title {
  align-items: center;
  background: transparent;
  border-bottom: 0;
  display: grid;
  gap: 5px;
  grid-column: 1 / -1;
  justify-content: center;
  padding: 0 0 20px;
  text-align: center;
}

.trust-title span {
  color: var(--pink);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-title h2 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 850;
  margin: 0;
  text-align: center;
}

.trust-strip article {
  align-items: start;
  border-right: 1px solid rgba(228, 230, 240, 0.95);
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 8px 26px 0;
}

.trust-strip article:last-child {
  border-right: 0;
}

.trust-strip strong {
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.24;
}

.trust-strip p {
  color: var(--navy);
  font-size: 12px;
  font-weight: 560;
  line-height: 1.45;
  margin: 0;
  opacity: 0.86;
}

.trust-icon {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--pink);
  display: inline-flex;
  flex: 0 0 34px;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.trust-icon svg {
  fill: none;
  height: 34px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  width: 34px;
}

.section {
  margin: 0 auto;
  max-width: min(var(--page-max), calc(100vw - 44px));
  padding: 54px 0;
}

.section.centered {
  text-align: center;
}

.section.centered:not(.soft) {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(228, 230, 240, 0.92);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  margin-top: 14px;
  padding: 38px 34px;
}

.section.soft {
  background: transparent;
  max-width: min(var(--page-max), calc(100vw - 44px));
  padding-left: 0;
  padding-right: 0;
}

.muted {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  margin-left: auto;
  margin-right: auto;
  max-width: 790px;
}

.situation-grid,
.steps-grid,
.video-grid,
.pricing-grid {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

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

.info-card,
.step,
.video-card,
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.info-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 270px;
  padding: 28px;
  position: relative;
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.info-card:hover,
.video-card:hover,
.price-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.info-card.emphasized {
  border-color: var(--line);
}

.card-number {
  color: rgba(7, 11, 79, 0.35);
  display: inline-block;
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
  padding-bottom: 12px;
  position: relative;
}

.card-number::after {
  background: var(--pink);
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 34px;
}

.info-card h3 {
  font-size: 20px;
  line-height: 1.08;
  max-width: 260px;
}

.info-card p,
.step p,
.video-card p,
.price-card p,
.footer p {
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

.info-card > p {
  border-top: 2px solid rgba(7, 11, 79, 0.18);
  font-size: 13px;
  margin: 0;
  max-width: 270px;
  padding-top: 16px;
}

.info-card strong,
.video-card small,
.small-note {
  background: rgba(7, 11, 79, 0.055);
  border-radius: 8px;
  color: var(--navy);
  display: block;
  font-weight: 790;
  padding: 14px;
}

.info-card strong {
  align-items: center;
  display: grid;
  font-size: 12px;
  gap: 12px;
  grid-template-columns: 38px minmax(0, 1fr);
  margin-top: auto;
  padding: 12px;
}

.info-card strong span {
  align-items: center;
  border-right: 1px solid rgba(7, 11, 79, 0.12);
  color: var(--pink);
  display: inline-flex;
  font-size: 24px;
  height: 42px;
}

.member-note.slim {
  display: inline-block;
  font-size: 13px;
  margin-top: 26px;
  max-width: 980px;
}

.steps-grid {
  counter-reset: membership-step;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-left: auto;
  margin-right: auto;
  max-width: 980px;
  position: relative;
}

.steps-grid::before {
  background: linear-gradient(90deg, transparent, rgba(7, 11, 79, 0.16), transparent);
  content: "";
  height: 2px;
  left: 12%;
  position: absolute;
  right: 12%;
  top: 42px;
}

.step {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88));
  min-height: 238px;
  overflow: hidden;
  padding: 30px;
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.step.active {
  background:
    linear-gradient(145deg, var(--navy), var(--navy-2));
  color: var(--white);
}

.step.active h3,
.step.active p {
  color: var(--white);
}

.step span {
  align-items: center;
  background: rgba(7, 11, 79, 0.07);
  border: 1px solid rgba(7, 11, 79, 0.08);
  border-radius: 999px;
  color: var(--navy);
  display: inline-flex;
  font-size: 21px;
  font-weight: 950;
  height: 64px;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  width: 64px;
  z-index: 1;
}

.step.active span {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.step::after {
  background: rgba(7, 11, 79, 0.045);
  border-radius: 999px;
  content: "";
  height: 150px;
  position: absolute;
  right: -54px;
  top: -62px;
  width: 150px;
}

.step:hover {
  border-color: rgba(7, 11, 79, 0.18);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

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

.video-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.video-card h3,
.video-card p,
.video-card small {
  margin-left: 20px;
  margin-right: 20px;
}

.video-card h3 {
  font-size: 18px;
  margin-top: 22px;
}

.video-card small {
  margin-bottom: 24px;
}

.video-thumb {
  align-items: center;
  aspect-ratio: 16 / 9;
  border: 0;
  background-position: center;
  background-size: cover;
  cursor: pointer;
  display: grid;
  font: inherit;
  overflow: hidden;
  padding: 0;
  place-items: center;
  position: relative;
  text-align: center;
  width: 100%;
}

.video-thumb:hover span,
.video-thumb:focus-visible span {
  transform: scale(1.06);
}

.video-thumb:focus-visible {
  outline: 3px solid rgba(211, 10, 131, 0.36);
  outline-offset: 4px;
}

.video-thumb::before {
  background: linear-gradient(180deg, rgba(7, 11, 79, 0.08), rgba(7, 11, 79, 0.62));
  content: "";
  inset: 0;
  position: absolute;
}

.video-thumb span {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  color: var(--pink);
  display: inline-flex;
  font-size: 24px;
  height: 58px;
  justify-content: center;
  padding-left: 5px;
  position: relative;
  transition: transform 180ms ease;
  width: 58px;
}

.video-thumb b {
  background: var(--pink);
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 950;
  left: 16px;
  padding: 8px 11px;
  position: absolute;
  text-transform: uppercase;
  top: 16px;
}

.video-thumb.police {
  background-image: url("https://images.unsplash.com/photo-1589578527966-fdac0f44566c?auto=format&fit=crop&w=900&q=80");
}

.video-thumb.citizenship {
  background-image: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=900&q=80");
}

.video-thumb.protection {
  background-image: url("https://images.unsplash.com/photo-1505664194779-8beaceb93744?auto=format&fit=crop&w=900&q=80");
}

.package-subtitle,
.closing-line {
  color: var(--navy);
  font-weight: 950;
}

.pricing-grid {
  align-items: stretch;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-left: auto;
  margin-right: auto;
  max-width: 1040px;
  text-align: left;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  position: relative;
}

.price-card.recommended {
  border: 2px solid var(--pink);
  box-shadow: 0 22px 58px rgba(211, 10, 131, 0.14);
}

.recommended-label {
  color: var(--pink);
  background: var(--pink);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-size: 12px;
  font-weight: 950;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: -18px;
  width: fit-content;
  margin: 0 auto;
  padding: 7px 12px;
}

.price {
  color: #030303;
  font-size: clamp(42px, 4.8vw, 58px);
  font-weight: 950;
  line-height: 1;
  margin: 20px 0 14px;
}

.price span {
  font-size: 18px;
  font-weight: 500;
}

.price-card hr {
  border: 0;
  border-top: 3px solid var(--pink);
  margin: 20px 0;
  width: 100%;
}

ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 16px 0 28px;
  padding: 0;
}

li {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
  padding-left: 28px;
  position: relative;
}

li::before {
  align-items: center;
  background: var(--navy);
  border-radius: 999px;
  color: var(--white);
  content: "✓";
  display: inline-flex;
  font-size: 12px;
  font-weight: 950;
  height: 18px;
  justify-content: center;
  left: 0;
  position: absolute;
  top: -1px;
  width: 18px;
}

.recommended li::before {
  background: var(--pink);
}

.price-card .button {
  margin-top: auto;
  width: 100%;
}

.small-note {
  font-size: 12px;
  margin-bottom: 0;
  text-align: center;
}

.modal-open {
  overflow: hidden;
}

.modal-overlay {
  align-items: center;
  background: rgba(7, 11, 79, 0.58);
  backdrop-filter: blur(10px);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 24px;
  pointer-events: none;
  position: fixed;
  transition: opacity 180ms ease;
  z-index: 100;
}

.modal-overlay[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.member-modal {
  background:
    radial-gradient(circle at top right, rgba(211, 10, 131, 0.14), transparent 34%),
    var(--white);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 18px;
  box-shadow: 0 34px 90px rgba(7, 11, 79, 0.28);
  color: var(--navy);
  max-width: 520px;
  padding: 34px;
  position: relative;
  text-align: center;
  transform: translateY(10px) scale(0.98);
  transition: transform 180ms ease;
  width: min(100%, 520px);
}

.modal-overlay[aria-hidden="false"] .member-modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  align-items: center;
  background: #f1f3f8;
  border: 0;
  border-radius: 999px;
  color: var(--navy);
  cursor: pointer;
  display: inline-flex;
  font-size: 26px;
  font-weight: 700;
  height: 38px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 38px;
}

.modal-close:hover,
.modal-close:focus-visible {
  background: rgba(211, 10, 131, 0.1);
  outline: none;
}

.modal-icon {
  align-items: center;
  background: rgba(211, 10, 131, 0.1);
  border-radius: 999px;
  color: var(--pink);
  display: inline-flex;
  font-size: 22px;
  height: 64px;
  justify-content: center;
  margin-bottom: 18px;
  padding-left: 4px;
  width: 64px;
}

.member-modal .mini-label {
  display: block;
  margin-bottom: 10px;
}

.member-modal h2 {
  font-family: inherit;
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.08;
  margin: 0 auto 14px;
  max-width: 430px;
}

.member-modal p:not(.mini-label) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 430px;
}

.modal-actions {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.modal-secondary {
  background: transparent;
  border: 1px solid rgba(7, 11, 79, 0.16);
  color: var(--navy);
}

.about-hero {
  margin: 26px auto 0;
  max-width: min(1160px, calc(100vw - 56px));
}

.about-hero-image {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(7, 11, 79, 0.08), rgba(7, 11, 79, 0.02)),
    url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
  border-radius: 18px;
  display: flex;
  min-height: 560px;
  padding: clamp(24px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}

.about-hero-panel {
  background: linear-gradient(145deg, var(--navy), #25206f);
  border-radius: 20px;
  box-shadow: 0 28px 80px rgba(7, 11, 79, 0.26);
  color: var(--white);
  max-width: 500px;
  padding: clamp(28px, 3.8vw, 44px);
}

.about-hero-panel h1 {
  color: var(--white);
  font-family: inherit;
  font-size: clamp(40px, 4.4vw, 62px);
  font-weight: 400;
  line-height: 0.94;
  margin: 10px 0 20px;
  max-width: 100%;
}

.about-hero-panel h1 span {
  color: var(--pink);
}

.about-hero-panel p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.42;
}

.about-panel-line {
  background: var(--pink);
  height: 3px;
  margin: 20px 0;
  width: 100%;
}

.about-proof-list {
  display: grid;
  gap: 16px;
}

.about-proof-list article {
  align-items: center;
  display: grid;
  gap: 15px;
  grid-template-columns: 52px minmax(0, 1fr);
}

.about-proof-list strong {
  color: var(--white);
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.about-proof-list p {
  font-size: 15px;
  margin: 0;
}

.about-proof-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--white);
  display: inline-flex;
  height: 52px;
  justify-content: center;
  width: 52px;
}

.about-proof-icon svg,
.about-value-icon svg,
.about-cta-icon svg {
  fill: none;
  height: 34px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 34px;
}

.about-mission,
.about-team,
.about-cta {
  margin: 34px auto 0;
  max-width: min(1160px, calc(100vw - 56px));
}

.about-mission {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(228, 230, 240, 0.8);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: clamp(34px, 5vw, 64px);
  text-align: center;
}

.about-mission .mini-label {
  color: var(--navy);
  display: inline-flex;
  justify-content: center;
  position: relative;
}

.about-mission .mini-label::after,
.about-team .mini-label::after {
  background: var(--pink);
  bottom: -10px;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 120px;
}

.about-section-lead {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.42;
  margin: 20px auto 54px;
  max-width: 960px;
}

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

.about-values-grid article {
  text-align: center;
}

.about-value-icon {
  color: var(--pink);
  display: inline-flex;
  margin-bottom: 22px;
}

.about-value-icon svg {
  height: 78px;
  stroke-width: 1.45;
  width: 78px;
}

.about-value-icon.solid svg {
  fill: var(--pink);
  stroke: var(--pink);
}

.about-value-icon.solid path:last-child {
  stroke: var(--white);
  fill: none;
}

.about-values-grid h3 {
  color: #050505;
  font-size: 24px;
  margin-bottom: 14px;
}

.about-values-grid p {
  color: #73737b;
  font-size: 18px;
  line-height: 1.4;
  margin: 0 auto;
  max-width: 260px;
}

.about-team {
  display: grid;
  gap: 34px;
  grid-template-columns: 0.8fr 1.2fr;
  padding: 28px 12px 0;
}

.about-team .mini-label {
  display: inline-flex;
  position: relative;
}

.about-team h2 {
  font-family: inherit;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 900;
  line-height: 1.08;
  margin-top: 22px;
}

.about-team-intro p:not(.mini-label) {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.about-expertise {
  margin: 44px auto 0;
  max-width: min(1160px, calc(100vw - 56px));
  padding: 24px 0 0;
}

.about-expertise-heading {
  margin: 0 auto 32px;
  max-width: 840px;
  text-align: center;
}

.about-expertise-heading .mini-label {
  display: inline-flex;
  position: relative;
}

.about-expertise-heading .mini-label::after {
  background: var(--pink);
  bottom: -10px;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 120px;
}

.about-expertise-heading h2 {
  color: #050505;
  font-family: inherit;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.08;
  margin-top: 24px;
}

.about-expertise-layout {
  align-items: center;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.45fr);
}

.about-expertise-copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.52;
}

.about-expertise-copy p {
  margin: 0 0 18px;
}

.about-expertise-copy strong {
  color: var(--navy);
  font-weight: 900;
}

.expertise-link {
  margin-top: 6px;
}

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

.team-card {
  background: #e9e9ee;
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(7, 11, 79, 0.09);
  overflow: hidden;
  text-align: center;
}

.team-card img {
  aspect-ratio: 4 / 5;
  border: 3px solid #f1f1f5;
  border-radius: 12px 12px 0 0;
  display: block;
  height: auto;
  object-fit: cover;
  object-position: center 18%;
  width: 100%;
}

.team-card:nth-child(2) img {
  object-position: center top;
}

.team-card div {
  padding: 12px 10px 15px;
}

.team-card h3 {
  color: #26226f;
  font-size: clamp(18px, 1.6vw, 25px);
  font-weight: 950;
  line-height: 0.95;
}

.team-card p {
  color: #26226f;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 850;
  line-height: 1;
  margin: 4px 0 0;
}

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

.about-support-grid article {
  background: var(--white);
  border: 1px solid rgba(228, 230, 240, 0.95);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  min-height: 260px;
  padding: 26px;
}

.about-support-grid span {
  color: rgba(7, 11, 79, 0.32);
  display: block;
  font-size: 42px;
  font-weight: 950;
  margin-bottom: 28px;
}

.about-support-grid h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.about-support-grid p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.about-cta {
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(228, 230, 240, 0.84);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 28px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  margin-bottom: 48px;
  padding: clamp(28px, 4vw, 44px);
}

.about-cta-icon {
  align-items: center;
  background: var(--navy);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  height: 84px;
  justify-content: center;
  width: 84px;
}

.about-cta p {
  color: var(--ink);
  font-size: 22px;
  margin: 0 0 12px;
}

.about-cta strong {
  color: #050505;
  font-size: 24px;
}

.closing-line {
  color: var(--navy);
  font-size: 13px;
  margin-top: 36px;
}

.faq {
  max-width: min(var(--page-max), calc(100vw - 44px));
}

.faq-list {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.faq details {
  margin: 0;
  text-align: left;
}

.faq details::before {
  content: none;
}

.faq summary {
  align-items: center;
  background: #f1f3f8;
  border-radius: 8px;
  color: #20212b;
  cursor: pointer;
  display: flex;
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 650;
  justify-content: space-between;
  min-height: 44px;
  padding: 12px 14px;
}

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

.faq summary::after {
  align-items: center;
  background: #1b1c21;
  border-radius: 999px;
  color: var(--white);
  content: "⌃";
  display: inline-flex;
  flex: 0 0 22px;
  font-size: 15px;
  height: 22px;
  justify-content: center;
  margin-left: 14px;
  width: 22px;
}

.faq details[open] summary::after {
  content: "⌄";
}

.faq details p {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  line-height: 1.5;
  font-size: 15px;
  margin: 8px 0 0;
  padding: 14px 18px;
}

.footer {
  align-items: stretch;
  background: linear-gradient(120deg, var(--navy), #101368 52%, var(--pink));
  color: var(--white);
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr auto 1fr;
  margin-top: 28px;
  padding: 28px max(22px, calc((100vw - var(--page-max)) / 2));
}

.footer .brand,
.footer h3,
.footer p,
.footer a {
  color: var(--white);
}

.footer > div {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.footer div:nth-child(2) {
  display: grid;
  gap: 12px;
}

.footer-cta {
  background: transparent !important;
  text-align: right;
}

@media (max-width: 1080px) {
  .hero,
  .problem-grid,
  .situation-grid,
  .steps-grid,
  .video-grid,
  .pricing-grid,
  .footer {
    grid-template-columns: 1fr;
  }

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

  .about-values-grid,
  .about-support-grid,
  .team-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-team,
  .about-cta,
  .about-expertise-layout {
    grid-template-columns: 1fr;
  }

  .about-cta .button {
    width: fit-content;
  }

  .trust-title {
    grid-column: 1 / -1;
  }

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

  h1 {
    font-size: clamp(38px, 6.8vw, 54px);
  }

  .media-card,
  .media-image {
    min-height: 460px;
  }

  .trust-strip {
    margin-top: 0;
  }

  .trust-strip article:nth-child(3) {
    border-right: 0;
  }
}

@media (max-width: 720px) {
  .site-header,
  nav,
  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .site-header {
    padding: 16px 20px;
    position: static;
  }

  .hero {
    gap: 26px;
    margin-top: 22px;
    max-width: calc(100vw - 36px);
    overflow: visible;
    padding: 0 0 24px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 43px);
    line-height: 0.95;
    max-width: 100%;
  }

  h1 span {
    white-space: nowrap;
  }

  .lead {
    font-size: 17px;
    line-height: 1.38;
    max-width: 100%;
  }

  .problem-grid {
    gap: 12px;
    max-width: 100%;
  }

  .problem-grid article {
    min-height: auto;
    width: 100%;
  }

  .problem-grid strong {
    font-size: 15px;
  }

  .member-note {
    max-width: 100%;
    overflow: hidden;
    overflow-wrap: anywhere;
  }

  .actions {
    max-width: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .about-hero {
    max-width: calc(100vw - 28px);
  }

  .about-hero-image {
    align-items: flex-end;
    border-radius: 16px;
    min-height: auto;
    padding: 18px;
  }

  .about-hero-panel {
    border-radius: 14px;
    padding: 26px 20px;
  }

  .about-hero-panel h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .about-hero-panel p,
  .about-proof-list p {
    font-size: 15px;
  }

  .about-proof-list article {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .about-proof-icon {
    height: 48px;
    width: 48px;
  }

  .about-proof-icon svg {
    height: 28px;
    width: 28px;
  }

  .about-mission,
  .about-team,
  .about-expertise,
  .about-cta {
    max-width: calc(100vw - 28px);
  }

  .about-values-grid,
  .about-support-grid,
  .team-card-grid {
    grid-template-columns: 1fr;
  }

  .about-mission {
    border-radius: 16px;
    padding: 32px 20px;
  }

  .about-section-lead {
    font-size: 16px;
    margin-bottom: 34px;
  }

  .about-value-icon svg {
    height: 62px;
    width: 62px;
  }

  .about-values-grid p,
  .about-team-intro p:not(.mini-label),
  .about-support-grid p {
    font-size: 16px;
  }

  .about-team {
    padding-left: 0;
    padding-right: 0;
  }

  .about-expertise {
    margin-top: 34px;
    padding-top: 8px;
  }

  .about-expertise-heading {
    margin-bottom: 26px;
  }

  .about-expertise-copy {
    font-size: 16px;
  }

  .team-card-grid {
    gap: 14px;
  }

  .about-support-grid article {
    min-height: auto;
  }

  .about-cta {
    text-align: center;
  }

  .about-cta-icon {
    margin: 0 auto;
  }

  .team-card h3 {
    font-size: 20px;
  }

  .team-card p {
    font-size: 15px;
  }

  .trust-strip article {
    border-right: 0;
    border-top: 1px solid rgba(228, 230, 240, 0.9);
    min-height: auto;
    padding: 18px;
  }

  .trust-strip article:first-of-type {
    border-top: 0;
  }

  .button,
  .header-cta {
    max-width: 100%;
    text-align: center;
    width: 100%;
  }

  .media-card {
    aspect-ratio: 1418 / 1132;
    width: 100%;
  }

  .media-card,
  .media-image {
    min-height: 0;
  }

  .floating-note {
    left: 18px;
    max-width: calc(100% - 36px);
    right: auto;
  }

  .note-one {
    top: 24px;
  }

  .note-two {
    bottom: 96px;
  }

  .note-three {
    bottom: 24px;
  }

  .section {
    padding: 60px 0;
  }

  .info-card {
    min-height: auto;
    padding: 26px;
  }

  .faq summary {
    font-size: 15px;
    min-height: 50px;
    padding: 13px 14px;
  }

  .faq details p {
    margin-top: 8px;
  }

  .price-card {
    padding: 26px;
  }

  .price span {
    display: block;
    font-size: 28px;
    margin-top: 8px;
  }

  .modal-overlay {
    padding: 18px;
  }

  .member-modal {
    border-radius: 14px;
    padding: 30px 20px 22px;
  }

  .member-modal h2 {
    font-size: 24px;
  }

  .member-modal p:not(.mini-label) {
    font-size: 15px;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: clamp(31px, 9.2vw, 36px);
  }

  .kicker {
    font-size: 10px;
  }

  .lead {
    font-size: 16px;
  }

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