@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: block;
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: block;
  src: url("assets/fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: block;
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: block;
  src: url("assets/fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --navy: #03172f;
  --navy-deep: #061f42;
  --navy-soft: #0a2a52;
  --blue: #2f6bff;
  --gold: #ffc247;
  --gold-hover: #ffb020;
  --white: #ffffff;
  --muted: #afc3df;
  --light: #f6f9ff;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.24);
  --ink: #071b35;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --radius-card: 16px;
  --max: 1180px;
  --font-body: "Inter", Arial, sans-serif;
  --font-heading: "Manrope", "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--white);
  background:
    radial-gradient(circle at 72% 9%, rgba(47, 107, 255, 0.18), transparent 32rem),
    linear-gradient(180deg, #03172f 0%, #051b38 45%, #03172f 100%);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 400;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.section-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 50;
  width: min(var(--max), calc(100% - 40px));
  height: 64px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0;
  transform: translateX(-50%);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, height 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: none;
  height: 74px;
  padding: 10px max(24px, calc((100vw - var(--max)) / 2));
  transform: none;
  background: rgba(3, 23, 47, 0.96);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  animation: navDrop 260ms ease both;
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img,
.site-footer img {
  width: 178px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 500;
}

.main-nav a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
  border-color: var(--gold);
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  white-space: nowrap;
}

.btn svg {
  width: 17px;
  height: 17px;
}

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

.btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.btn-gold {
  color: #111827;
  background: linear-gradient(180deg, var(--gold), var(--gold-hover));
  box-shadow: 0 12px 28px rgba(255, 194, 71, 0.2);
}

.header-cta {
  border-radius: 999px;
  padding-inline: 24px;
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 194, 71, 0.58);
  background: rgba(255, 255, 255, 0.03);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--gold);
  background: rgba(255, 194, 71, 0.08);
}

.btn-dark {
  width: 100%;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(3, 23, 47, 0.7);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 0 0 42px;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 118px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 118' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 72 C300 98 500 108 720 108 C940 108 1140 98 1440 72 L1440 118 L0 118 Z' fill='%23F6F9FF'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  align-items: start;
  gap: 52px;
  padding: 92px 0 0;
}

.hero-grid > * {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
}

.eyebrow {
  padding: 8px 12px;
  border: 1px solid rgba(255, 194, 71, 0.28);
  border-radius: 999px;
  background: rgba(255, 194, 71, 0.08);
}

.hero-copy .eyebrow {
  visibility: hidden;
}

.eyebrow svg,
.section-kicker svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: 48px;
  line-height: 1.04;
  font-weight: 500;
}

.hero h1 span {
  color: var(--gold);
}

.hero-lead {
  max-width: 540px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
}

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

.hero-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 540px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 500;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-bullets svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.availability {
  max-width: 520px;
  display: none;
  align-items: center;
  gap: 11px;
  margin-top: 28px;
  padding: 13px 15px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.availability svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex: 0 0 auto;
}

.hero-visual {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner-image {
  width: min(780px, 112%);
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.28));
}

.trust-strip {
  position: relative;
  z-index: 1;
  display: block;
  padding: 10px 0 0;
  text-align: center;
}

.trust-strip p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
}

.profession-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.profession-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 32px;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}

.profession-row svg {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.78);
  flex: 0 0 auto;
}

.results {
  position: relative;
  color: var(--ink);
  background: var(--light);
  padding: 54px 0 88px;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.16;
  font-weight: 400;
}

.section-heading p:not(.section-kicker) {
  margin: 14px auto 0;
  color: #53657e;
  font-size: 17px;
}

.section-heading.inverse p:not(.section-kicker) {
  color: var(--muted);
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(47, 107, 255, 0.1);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: 0 22px 70px rgba(7, 27, 53, 0.05);
}

.result-card,
.price-card,
.testimonial-card {
  border-radius: var(--radius-card);
}

.result-card {
  position: relative;
  min-height: 286px;
  padding: 46px 42px 38px;
  background:
    linear-gradient(180deg, rgba(47, 107, 255, 0.035), transparent 46%),
    var(--white);
  border-right: 1px solid rgba(47, 107, 255, 0.1);
  box-shadow: none;
}

.result-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 42px;
  right: 42px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), rgba(255, 194, 71, 0.74));
  border-radius: 0 0 999px 999px;
  opacity: 0;
  transition: opacity 180ms ease;
}

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

.result-card:last-child {
  border-right: 0;
}

.result-card svg {
  width: 54px;
  height: 54px;
  padding: 13px;
  color: var(--blue);
  border: 1px solid rgba(47, 107, 255, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.95), transparent 42%),
    rgba(47, 107, 255, 0.08);
  box-shadow: 0 12px 30px rgba(47, 107, 255, 0.12);
}

.result-card h3 {
  margin: 34px 0 16px;
  font-size: 18px;
  line-height: 1.2;
}

.result-card p {
  margin: 0;
  color: #53657e;
  font-size: 15px;
  line-height: 1.8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.stats-grid div {
  padding: 22px 16px;
  text-align: center;
  border-radius: var(--radius-card);
  background: #eaf1ff;
  border: 1px solid rgba(47, 107, 255, 0.12);
}

.stats-grid strong {
  display: block;
  color: var(--blue);
  font-size: 28px;
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 8px;
  color: #53657e;
  font-size: 13px;
  font-weight: 500;
}

.pricing-section,
.testimonials-section,
.contact-section {
  position: relative;
  padding: 70px 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(47, 107, 255, 0.16), transparent 28rem),
    var(--navy);
}

.pricing-section .section-shell,
.process-section .section-shell,
.testimonials-section .section-shell,
.contact-section .section-shell {
  position: relative;
  z-index: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  max-width: 980px;
  margin: 14px auto 0;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 450px;
  padding: 38px 30px 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(47, 107, 255, 0.14), transparent 13rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 38%);
  opacity: 0.55;
}

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

.price-card.featured {
  border-color: rgba(255, 194, 71, 0.78);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 194, 71, 0.1);
  overflow: visible;
}

.label {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  min-width: 142px;
  padding: 7px 18px;
  color: #161616;
  background: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.price-card h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  text-align: center;
}

.package-note {
  min-height: 58px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.price {
  margin: 16px 0 20px;
  color: var(--gold);
  font-size: 28px;
  line-height: 1.1;
  font-weight: 600;
  text-align: center;
}

.price.smaller {
  font-size: 22px;
  white-space: normal;
}

.price span {
  display: inline-block;
  margin-top: 6px;
  font-size: 17px;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  color: rgba(255, 255, 255, 0.88);
  list-style: none;
  font-size: 12.5px;
  line-height: 1.45;
}

.price-card li {
  display: flex;
  gap: 10px;
}

.price-card li svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex: 0 0 auto;
  margin-top: 2px;
}

.price-card .btn {
  margin-top: auto;
  min-height: 44px;
  padding-block: 10px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.pricing-notes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.pricing-notes span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pricing-notes svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
}

.testimonials-section,
.contact-section {
  background: var(--navy-deep);
}

.process-section {
  position: relative;
  padding: 58px 0 66px;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, var(--light) 100%);
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  max-width: 1040px;
  margin: 30px auto 0;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 9%;
  right: 9%;
  height: 1px;
  background: rgba(47, 107, 255, 0.14);
}

.process-line article {
  position: relative;
  min-height: 104px;
  padding: 0 8px;
  text-align: center;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.process-line article::after {
  content: "→";
  position: absolute;
  top: 8px;
  right: -15px;
  color: rgba(47, 107, 255, 0.16);
  font-size: 22px;
  line-height: 1;
}

.process-line article:last-child::after {
  display: none;
}

.process-line article::after {
  content: none;
  display: none;
}

.process-line span {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  margin: 0 auto 16px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(47, 107, 255, 0.22);
  font-size: 15px;
  font-weight: 700;
}

.process-line h3 {
  margin: 0 auto;
  max-width: 132px;
  color: #173050;
  font-size: 13px;
  line-height: 1.38;
  font-weight: 500;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}

.testimonial-card {
  position: relative;
  padding: 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-card);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.045));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 1px;
}

.testimonial-card p {
  margin: 14px 0 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.65;
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.person > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #111827;
  background: var(--gold);
  border-radius: 50%;
  font-weight: 700;
}

.person strong,
.person small {
  display: block;
}

.person small {
  color: var(--muted);
}

.contact-section {
  padding: 86px 0 104px;
  overflow: hidden;
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.72fr);
  gap: 34px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(255, 194, 71, 0.26);
  border-radius: var(--radius-card);
  background:
    linear-gradient(120deg, rgba(255, 194, 71, 0.11), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(255, 194, 71, 0.2), transparent 18rem),
    radial-gradient(circle at 12% 100%, rgba(47, 107, 255, 0.2), transparent 24rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 30px 95px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.contact-panel::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -96px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255, 194, 71, 0.18);
  border-radius: 50%;
}

.contact-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.contact-panel h2 {
  margin: 0;
  max-width: 560px;
  font-size: 42px;
  line-height: 1.08;
}

.contact-panel p:not(.section-kicker) {
  max-width: 500px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.contact-showcase {
  position: relative;
  min-height: 312px;
  margin: 22px 0 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at 54% 42%, rgba(255, 194, 71, 0.18), transparent 16rem),
    radial-gradient(circle at 24% 72%, rgba(47, 107, 255, 0.24), transparent 18rem),
    rgba(3, 23, 47, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 24px 72px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.contact-showcase::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius-card) - 4px);
  pointer-events: none;
}

.contact-showcase img {
  position: relative;
  z-index: 1;
  width: min(430px, 106%);
  height: auto;
  max-width: none;
  filter: drop-shadow(0 26px 42px rgba(0, 0, 0, 0.34));
  transform: translateY(6px);
}

.contact-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  align-self: center;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-card);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%),
    rgba(3, 23, 47, 0.7);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.form-heading strong,
.form-heading span {
  display: block;
}

.form-heading strong {
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.2;
}

.form-heading span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.contact-form label:not(.privacy-check) span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.contact-form input:not([type="checkbox"]) {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 14px;
  outline: 0;
}

.contact-form input:not([type="checkbox"]):focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 194, 71, 0.2);
}

.privacy-check {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 2px 2px 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12.5px;
  line-height: 1.5;
  cursor: pointer;
}

.privacy-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.privacy-check .checkmark {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 1px;
  display: grid;
  place-items: center;
  color: #111827;
  border: 1px solid rgba(255, 194, 71, 0.48);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.privacy-check .checkmark::after {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid #071b35;
  border-bottom: 2px solid #071b35;
  transform: rotate(-45deg) scale(0);
  transition: transform 160ms ease;
}

.privacy-check input:checked + .checkmark {
  background: var(--gold);
  border-color: var(--gold);
}

.privacy-check input:checked + .checkmark::after {
  transform: rotate(-45deg) scale(1);
}

.privacy-check input:focus-visible + .checkmark {
  box-shadow: 0 0 0 3px rgba(255, 194, 71, 0.22);
}

.privacy-check a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form .btn {
  height: 54px;
  border-radius: 999px;
}

.form-note {
  grid-column: 1 / -1;
  font-size: 13px;
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding: 44px 0 26px;
  background: #020f20;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 34px;
}

.footer-grid p {
  max-width: 290px;
  color: var(--muted);
  font-size: 14px;
}

.footer-grid h2 {
  margin: 0 0 12px;
  font-size: 14px;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin: 8px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.56);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.footer-bottom a {
  color: var(--gold);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.legal-page {
  background: var(--light);
  color: var(--ink);
}

.legal-header {
  position: absolute;
  top: 16px;
  left: 50%;
  width: min(var(--max), calc(100% - 40px));
  margin: 0;
  transform: translateX(-50%);
}

.legal-hero {
  padding: 132px 0 56px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 10%, rgba(47, 107, 255, 0.18), transparent 28rem),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
}

.legal-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 400;
}

.legal-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.legal-hero span {
  display: inline-flex;
  margin-top: 22px;
  padding: 8px 12px;
  color: var(--gold);
  border: 1px solid rgba(255, 194, 71, 0.24);
  border-radius: 999px;
  background: rgba(255, 194, 71, 0.08);
  font-size: 13px;
  font-weight: 600;
}

.legal-content {
  padding: 56px 0 78px;
}

.legal-card {
  padding: 42px;
  color: #173050;
  background: var(--white);
  border: 1px solid rgba(47, 107, 255, 0.12);
  border-radius: var(--radius-card);
  box-shadow: 0 24px 80px rgba(7, 27, 53, 0.08);
}

.legal-card article + article {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(47, 107, 255, 0.1);
}

.legal-card h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
}

.legal-card p {
  margin: 0;
  color: #53657e;
  font-size: 15px;
  line-height: 1.78;
}

.legal-card p + p {
  margin-top: 12px;
}

.legal-card a {
  color: var(--blue);
  font-weight: 600;
}

@media (max-width: 1080px) {
  .site-header {
    gap: 14px;
  }

  .main-nav {
    gap: 12px;
    font-size: 13px;
  }

  .header-cta {
    padding-inline: 18px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-visual {
    min-height: 520px;
  }

  .laptop {
    left: 0;
    right: auto;
  }

  .phone {
    right: 7%;
  }

  .trust-strip,
  .stats-grid,
  .process-line {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .result-card:nth-child(2n) {
    border-right: 0;
  }

  .result-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(47, 107, 255, 0.1);
  }

  .process-line article::after {
    display: none;
  }

  .process-line::before {
    display: none;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    min-height: 0;
  }

  .contact-showcase {
    min-height: 320px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 820px) {
  .site-header {
    height: 68px;
  }

  .brand img {
    width: 158px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: rgba(3, 23, 47, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 96px;
  }

  .hero-grid {
    gap: 20px;
    padding-top: 14px;
    padding-bottom: 42px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-lead {
    font-size: 16px;
  }

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

  .hero-visual {
    min-height: 500px;
  }

  .laptop {
    top: 28px;
    width: 100%;
  }

  .preview-content {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .preview-content h2 {
    font-size: 27px;
  }

  .preview-content img {
    display: none;
  }

  .phone {
    right: 0;
    bottom: 0;
    width: 160px;
  }

  .contact-panel h2 {
    font-size: 34px;
  }

  .trust-strip,
  .stats-grid,
  .pricing-grid,
  .process-line,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .result-card,
  .result-card:nth-child(2n) {
    border-right: 0;
  }

  .result-card:not(:last-child) {
    border-bottom: 1px solid rgba(47, 107, 255, 0.1);
  }

  .section-heading h2 {
    font-size: 31px;
  }

  .result-card {
    min-height: 0;
  }

  .price-card {
    min-height: 0;
  }

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

  .footer-bottom-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .section-shell {
    width: min(100% - 22px, var(--max));
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-bullets {
    grid-template-columns: 1fr;
  }

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

  .availability {
    align-items: flex-start;
  }

  .hero-visual {
    min-height: 330px;
  }

  .hero-banner-image {
    width: min(100%, 340px);
    max-width: 100%;
    transform: none;
    transform-origin: center;
  }

  .hero::after {
    bottom: -2px;
    height: 96px;
  }

  .results {
    margin-top: -1px;
  }

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

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

  .profession-row span {
    min-height: 42px;
    padding: 9px 10px;
    justify-content: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.055);
    font-size: 12px;
  }

  .site-preview {
    height: 270px;
  }

  .preview-content {
    min-height: 228px;
    padding: 18px;
  }

  .phone {
    width: 136px;
  }

  .phone-screen {
    min-height: 286px;
    padding-inline: 10px;
  }

  .phone-screen img {
    height: 82px;
  }

  .phone-screen h3 {
    font-size: 16px;
  }

  .results,
  .pricing-section,
  .process-section,
  .testimonials-section,
  .contact-section {
    padding: 58px 0;
  }

  .contact-panel {
    padding: 24px;
  }

  .contact-showcase {
    min-height: 246px;
    margin-top: 20px;
  }

  .contact-showcase img {
    width: min(104%, 360px);
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .legal-header {
    width: min(100% - 22px, var(--max));
  }

  .legal-hero {
    padding: 114px 0 38px;
  }

  .legal-hero h1 {
    font-size: 34px;
  }

  .legal-card {
    padding: 24px;
  }
}
