:root {
  --ink: #061842;
  --navy: #061a42;
  --navy-2: #0c244f;
  --deep: #020d28;
  --cream: #fffaf5;
  --sand: #efd1a6;
  --sand-2: #f7dfbf;
  --mist: #eaf2f6;
  --glass: rgba(230, 240, 247, 0.72);
  --line: rgba(6, 24, 66, 0.14);
  --muted: #516b8c;
  --shadow: 0 24px 70px rgba(2, 13, 40, 0.18);
  --radius: 16px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #000;
  font-family: var(--sans);
  line-height: 1.45;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(196, 150, 92, 0.78);
  outline-offset: 3px;
}

.site-shell {
  width: 994px;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
}

.hero {
  min-height: 649px;
  padding: 118px 50px 100px;
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.88), transparent 28%),
    linear-gradient(180deg, #fffdf9 0%, #f5e4cf 58%, #efd1a6 100%);
}

.topbar {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 1000;
  width: min(894px, calc(100vw - 100px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 10px 20px;
  border: 1px solid rgba(15, 42, 83, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 40px rgba(17, 28, 54, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--ink);
}

.brand strong {
  display: block;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 800;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.brand.inverse {
  color: #fff;
}

.brand.inverse small {
  color: rgba(255, 255, 255, 0.8);
}

.brand-logo {
  flex: 0 0 auto;
  object-fit: contain;
}

.nav-logo {
  width: 38px;
  height: 38px;
}

.footer-logo {
  width: 42px;
  height: 42px;
}

.menu-panel {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #1b2d53;
  font-size: 12px;
  font-weight: 800;
}

.menu-panel a {
  padding: 8px 0;
  opacity: 0.88;
}

.menu-panel a:hover {
  color: #b4864e;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.menu-toggle:hover,
.modal-close:hover,
.cancel-btn:hover,
.small-link:hover,
.accordion-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  margin: 2px 0;
  border-radius: 2px;
  background: currentColor;
}

.nav-cta {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy);
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.hero-content {
  width: min(760px, 100%);
  padding-top: 45px;
}

.hero-content p:first-child {
  margin: 0 0 10px;
  font-size: 40px;
  line-height: 1.22;
  font-weight: 900;
}

.hero h1 {
  margin: 0;
  font-size: 46px;
  line-height: 1.16;
  letter-spacing: 0;
  color: var(--ink);
  font-weight: 950;
}

.hero-copy {
  width: min(650px, 100%);
  margin: 24px 0 72px;
  color: #667b98;
  font-size: 18px;
  font-weight: 600;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 12px;
  padding: 0 26px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, filter 180ms ease;
}

.btn::after,
.nav-cta::after,
.submit-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.34) 48%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

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

.btn:hover::after,
.nav-cta:hover::after,
.submit-btn:hover::after {
  transform: translateX(120%);
}

.btn:active,
.nav-cta:active,
.submit-btn:active,
.flip-btn:active {
  transform: translateY(0) scale(0.97);
}

.nav-cta:hover,
.submit-btn:hover {
  filter: brightness(1.08);
  box-shadow: 0 16px 34px rgba(6, 24, 66, 0.28);
}

.btn-primary,
.btn-outline {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 12px 26px rgba(6, 24, 66, 0.22);
}

.btn-light {
  color: var(--navy);
  background: transparent;
  border-color: var(--navy);
  border-width: 2px;
}

.btn-gold {
  color: var(--ink);
  background: var(--sand);
}

.btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
}

.ticker {
  height: 42px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 12s linear infinite;
}

.ticker-group {
  display: flex;
  flex: 0 0 auto;
}

.ticker span {
  padding: 0 28px;
  position: relative;
  white-space: nowrap;
}

.ticker span::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sand);
}

.section {
  padding: 64px 42px;
}

.stats-band {
  padding: 26px 42px 38px;
  background: #f7fbfd;
}

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

.stat-card {
  min-height: 86px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(6, 24, 66, 0.08);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 28px rgba(6, 24, 66, 0.08);
}

.stat-card strong {
  display: block;
  color: #c29155;
  font-size: 22px;
  font-weight: 950;
}

.stat-card span {
  display: block;
  margin-top: 6px;
  color: #9ab0c6;
  font-size: 11px;
  font-weight: 800;
}

.warm-section {
  padding-top: 32px;
  background: linear-gradient(180deg, #f5fbff 0%, #fff 100%);
}

.mini-card-grid,
.dark-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.mini-card {
  min-height: 182px;
  padding: 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff0d9, #f6d7ab);
  box-shadow: 0 18px 36px rgba(6, 24, 66, 0.09);
}

.mini-card .number {
  color: #c49359;
  font-size: 13px;
  font-weight: 900;
}

.mini-card h3,
.dark-card h3 {
  margin: 12px 0 10px;
  font-size: 17px;
  font-weight: 950;
}

.mini-card p,
.dark-card p {
  margin: 0 0 18px;
  color: #56708f;
  font-size: 13px;
  font-weight: 650;
}

.small-link {
  display: inline-flex;
  border: 1px solid rgba(6, 24, 66, 0.18);
  border-radius: 7px;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, filter 180ms ease;
}

.small-link:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(200, 154, 98, 0.58);
}

.dark-section {
  background: var(--navy);
}

.dark-card {
  min-height: 196px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border-radius: 12px;
  color: #e3c39d;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.dark-card p {
  color: #e3c39d;
}

.dark-card .small-link {
  margin-top: auto;
  color: #e3c39d;
  border-color: #e3c39d;
}

.process-section {
  text-align: center;
  background: linear-gradient(180deg, #eaf3f8 0%, #f8fbfd 100%);
}

h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-note,
.micro-note {
  margin: 0 auto 42px;
  color: #69819d;
  font-size: 15px;
  font-weight: 650;
}

.formats-section .micro-note {
  margin-top: 22px;
}

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

.step-card {
  position: relative;
  min-height: 152px;
  display: grid;
  place-items: center;
  padding: 34px 16px 20px;
  border-radius: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 44px rgba(6, 24, 66, 0.14);
  font-weight: 900;
}

.step-card span {
  position: absolute;
  top: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: #b89163;
  box-shadow: 0 8px 16px rgba(6, 24, 66, 0.15);
}

.benefits-section {
  background: #fff;
  text-align: center;
}

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

.benefit-card {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 82px;
  padding: 14px 18px;
  border: 2px solid #d69f57;
  border-radius: 8px;
  color: #fff;
  background: #071739;
  text-align: left;
  font-size: 15px;
  font-weight: 900;
}

.benefit-card svg {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: #e5bf89;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
}

.info-section {
  background: linear-gradient(180deg, #fff 0%, #eaf3f8 100%);
}

.info-section h2 {
  color: #c09a70;
  text-align: center;
}

.accordion {
  display: grid;
  gap: 14px;
}

.accordion-item {
  border: 1px solid rgba(200, 149, 84, 0.42);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 26px rgba(6, 24, 66, 0.06);
}

.accordion-btn {
  width: 100%;
  min-height: 52px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  border: 0;
  padding: 0 18px;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-size: 14px;
  font-weight: 950;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.accordion-btn:hover {
  background: rgba(237, 201, 154, 0.16);
}

.accordion-num {
  min-width: 37px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #b08249;
  background: #f4ddbd;
  font-size: 11px;
}

.accordion-icon {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  color: #fff;
  background: #c89a62;
  transition: transform 220ms ease;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 360ms ease;
}

.accordion-body p {
  margin: 0;
  padding: 6px 28px 28px 92px;
  color: #293d61;
  font-size: 17px;
}

.accordion-item.is-open .accordion-icon {
  transform: rotate(180deg);
}

.commission-section {
  background: #fff;
}

.commission-section h2 {
  text-align: center;
}

.commission-list {
  display: grid;
  gap: 24px;
}

.person-card {
  overflow: hidden;
  border: 1px solid rgba(6, 24, 66, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 58px rgba(6, 24, 66, 0.16);
}

.portrait-band {
  min-height: 292px;
  display: grid;
  place-items: center;
  background: linear-gradient(120deg, #fff2dd, #edc99a);
}

.portrait-band img {
  width: 214px;
  height: 214px;
  border-radius: 50%;
  border: 8px solid #fff;
  box-shadow: 0 18px 34px rgba(6, 24, 66, 0.18);
}

.portrait-band-plain img {
  border: 0;
  box-shadow: none;
  background: transparent;
}

.person-body {
  padding: 44px 44px 38px;
}

.experience {
  display: inline-flex;
  margin-bottom: 24px;
  border-radius: 999px;
  padding: 12px 24px;
  color: var(--sand-2);
  background: #002f3f;
  box-shadow: 0 10px 18px rgba(6, 24, 66, 0.18);
  font-size: 16px;
  font-weight: 950;
}

.experience.light {
  color: var(--ink);
  background: #edc99a;
}

.person-body h3 {
  margin: 0;
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1;
  font-weight: 950;
  text-shadow: 0 5px 0 rgba(191, 146, 91, 0.38);
}

.person-body strong {
  display: block;
  margin: 10px 0 18px;
  color: #b08351;
  font-size: 25px;
}

.person-body p {
  margin: 0 0 30px;
  color: #526d91;
  font-size: 22px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.tags span {
  border-radius: 999px;
  padding: 12px 24px;
  color: var(--sand-2);
  background: var(--deep);
  font-size: 16px;
  font-weight: 950;
}

.certificate-section {
  text-align: center;
  color: #fff;
  background: var(--deep);
}

.certificate-section h2 {
  color: #fff;
  font-family: var(--sans);
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 950;
}

.certificate-section h2::first-line {
  color: #fff;
}

.certificate-stage {
  margin: 48px auto 28px;
  width: min(860px, 100%);
  perspective: 1400px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
}

.certificate-card {
  position: relative;
  aspect-ratio: 725 / 514;
  transform-style: preserve-3d;
  transition: transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.certificate-card.is-flipped {
  transform: rotateY(180deg);
}

.certificate-side {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 18px;
  backface-visibility: hidden;
  background: #fff;
}

.certificate-side.back {
  transform: rotateY(180deg);
}

.certificate-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flip-btn {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: transform 220ms ease, filter 220ms ease;
}

.flip-btn:hover {
  transform: rotate(18deg) scale(1.08);
  filter: drop-shadow(0 12px 18px rgba(237, 201, 154, 0.24));
}

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

.formats-section {
  text-align: center;
  background: #fff;
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 900px);
  margin: 0 auto;
}

.format-card {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 26px 26px;
  border: 1px solid rgba(6, 24, 66, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  text-align: left;
  box-shadow: 0 18px 38px rgba(6, 24, 66, 0.1);
  overflow: visible;
  transition: transform 220ms ease, filter 220ms ease;
}

.format-card:nth-child(1) {
  width: auto;
  height: auto;
}

.format-card:nth-child(2) {
  width: auto;
  height: auto;
}

.format-card:nth-child(3) {
  width: auto;
  height: auto;
}

.format-card.featured {
  border-color: rgba(102, 72, 43, 0.42);
  background: #e8c69d;
  box-shadow: 0 24px 54px rgba(6, 24, 66, 0.2);
}

.format-card:hover {
  transform: translateY(-6px);
  filter: drop-shadow(0 18px 24px rgba(6, 24, 66, 0.16));
}

.format-card.featured:hover {
  transform: translateY(-6px);
}

.format-label {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  margin-bottom: 34px;
  border-radius: 999px;
  padding: 6px 14px;
  color: var(--ink);
  background: #d7e0e6;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 950;
}

.format-card.featured .format-label {
  color: #fff;
  background: #a9855d;
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 16px;
  max-width: calc(100% - 32px);
  border-radius: 999px;
  padding: 10px 16px;
  color: #fff;
  background: #244aab;
  box-shadow: 0 12px 26px rgba(6, 24, 66, 0.24);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.format-card h3 {
  min-height: 64px;
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 27px;
  line-height: 1.22;
  font-weight: 950;
}

.format-card p {
  min-height: 72px;
  margin: 0 0 28px;
  color: #516b8c;
  font-size: 18px;
  line-height: 1.42;
  font-weight: 650;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: auto 0 28px;
  color: var(--ink);
  white-space: nowrap;
  flex-wrap: nowrap;
}

.price strong {
  font-size: clamp(40px, 4.4vw, 48px);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

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

.price-word strong {
  font-size: 36px;
}

.format-card .btn {
  width: 100%;
  min-height: 54px;
  margin-top: auto;
  font-size: 16px;
}

.reviews-section {
  text-align: center;
  background: #dce8ed;
}

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

.review-card {
  min-height: 228px;
  padding: 26px 22px;
  border: 1px solid rgba(6, 24, 66, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  text-align: left;
  box-shadow: 0 18px 38px rgba(6, 24, 66, 0.1);
}

.stars {
  color: #c2935c;
  letter-spacing: 0;
  font-size: 19px;
}

.review-card p {
  color: #425b7c;
  font-size: 15px;
  font-weight: 700;
}

.review-card strong {
  color: var(--ink);
}

.cta-section {
  padding: 66px 42px;
  text-align: center;
  color: #fff;
  background: #597493;
}

.cta-section h2 {
  color: #fff;
  font-family: var(--sans);
  font-size: clamp(29px, 4vw, 42px);
  font-weight: 950;
}

.cta-section p {
  width: min(590px, 100%);
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.78);
}

.cta-actions {
  justify-content: center;
}

.footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  padding: 50px 42px 26px;
  color: #fff;
  background: var(--deep);
}

.footer-brand {
  display: grid;
  gap: 26px;
}

.socials {
  display: flex;
  gap: 18px;
}

.socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 950;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.socials a:hover {
  transform: translateY(-2px) scale(1.06);
  background: rgba(255, 255, 255, 0.1);
}

.social-img img {
  width: 23px;
  height: 22px;
  object-fit: contain;
}

address {
  display: grid;
  gap: 8px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.82);
}

address strong {
  color: #fff;
}

.copyright {
  grid-column: 1 / -1;
  margin: 28px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.56);
  text-align: center;
  font-size: 12px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  place-items: center;
  padding: 26px;
}

.modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(195, 210, 220, 0.82);
  backdrop-filter: blur(10px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(690px, 100%);
  max-height: min(92vh, 830px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 26px;
  background: var(--glass);
  box-shadow: 0 34px 90px rgba(6, 24, 66, 0.22);
  backdrop-filter: blur(28px);
}

.form-state {
  transform: scale(0.985);
  opacity: 0;
  transition: opacity 260ms ease, transform 260ms ease;
}

.form-state.is-active {
  transform: scale(1);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 26px;
  right: 26px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  color: #49688a;
  background: rgba(255, 255, 255, 0.92);
  font-size: 24px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.lead-form {
  padding: 52px 46px 42px;
}

.modal-pill {
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 8px 16px;
  color: #b28a5f;
  background: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 950;
}

.lead-form h2,
.thanks-card h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(30px, 4.2vw, 42px);
  font-weight: 950;
}

.lead-form > p,
.thanks-card p {
  margin: 0 0 28px;
  color: #4f6b8f;
  font-size: 18px;
  font-weight: 650;
}

.field,
.lead-form label {
  display: grid;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--ink);
  font-weight: 850;
}

.field label span,
.lead-form label span {
  color: #5d7798;
  font-weight: 700;
}

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

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(6, 24, 66, 0.08);
  border-radius: 13px;
  padding: 0 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.lead-form input {
  height: 60px;
}

.lead-form textarea {
  min-height: 104px;
  padding-top: 18px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: #9b744c;
  box-shadow: 0 0 0 4px rgba(196, 150, 92, 0.18);
}

.lead-form .invalid {
  border-color: #b42318;
  background: rgba(255, 249, 248, 0.94);
}

.field-message {
  min-height: 17px;
  margin-top: -3px;
  color: #b42318;
  font-size: 12px;
  font-weight: 800;
}

.consent-message {
  display: block;
  margin: -9px 0 14px 36px;
}

.policy-title {
  margin: 10px 0 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(6, 24, 66, 0.12);
  font-weight: 950;
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(6, 24, 66, 0.14);
  color: #4f6b8f !important;
}

.consent input {
  width: 22px;
  height: 22px;
  padding: 0;
  accent-color: var(--navy);
}

.form-error {
  min-height: 22px;
  margin: 6px 0 12px !important;
  color: #b42318 !important;
  font-size: 14px !important;
  font-weight: 850 !important;
}

.submit-btn,
.cancel-btn {
  width: 100%;
  min-height: 66px;
  border: 0;
  border-radius: 12px;
  font-weight: 950;
  cursor: pointer;
}

.submit-btn {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
  box-shadow: 0 14px 30px rgba(6, 24, 66, 0.24);
}

.lead-form[data-state="submitting"] .submit-btn {
  cursor: wait;
  opacity: 0.82;
}

.submit-btn:disabled {
  cursor: wait;
}

.cancel-btn {
  min-height: 46px;
  margin-top: 10px;
  color: #49688a;
  background: transparent;
  transition: transform 180ms ease, color 180ms ease;
}

.cancel-btn:hover {
  color: var(--ink);
}

.thanks-card {
  padding: 62px 64px;
  text-align: center;
}

.checkmark {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  margin: 0 auto 32px;
  border-radius: 50%;
  color: #21883a;
  background: #eafcf1;
  font-size: 44px;
  font-weight: 500;
}

.response-time {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 40px 0;
  padding: 22px 28px;
  border-radius: 17px;
  color: #405e84;
  background: rgba(255, 255, 255, 0.86);
  text-align: left;
}

.response-time span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #a77d52;
  background: #f4eadf;
  font-size: 27px;
}

.response-time strong {
  color: #b28a5f;
}

.home-btn {
  width: min(330px, 100%);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}

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

@media (max-width: 820px) {
  .hero,
  .section,
  .stats-band,
  .cta-section,
  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .topbar {
    top: 10px;
    width: calc(100vw - 48px);
  }

  .menu-toggle {
    display: grid;
  }

  .menu-panel {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 10px);
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 40px rgba(6, 24, 66, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .topbar.menu-open .menu-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-panel a,
  .nav-cta {
    width: 100%;
    justify-content: flex-start;
    padding: 13px 14px;
  }

  .stats-grid,
  .mini-card-grid,
  .dark-card-grid,
  .steps,
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .formats-grid {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    height: auto;
    justify-items: center;
  }

  .format-card,
  .format-card:nth-child(1),
  .format-card:nth-child(2),
  .format-card:nth-child(3) {
    position: relative;
    left: auto;
    top: auto;
    width: min(100%, 375px);
    height: auto;
    min-height: 390px;
  }

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

  .person-body {
    padding: 32px 28px;
  }

  .person-body p {
    font-size: 18px;
  }

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

@media (max-width: 560px) {
  .site-shell {
    width: 100%;
  }

  .hero {
    min-height: 410px;
    padding-top: 12px;
  }

  .hero-content {
    padding-top: 42px;
  }

  .brand strong {
    font-size: 10px;
  }

  .brand small {
    font-size: 8px;
  }

  .stats-grid,
  .mini-card-grid,
  .dark-card-grid,
  .steps,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    gap: 14px;
  }

  .step-card {
    min-height: 120px;
  }

  .accordion-btn {
    grid-template-columns: auto 1fr auto;
    padding: 0 12px;
    font-size: 13px;
  }

  .accordion-body p {
    padding: 2px 18px 24px;
    font-size: 15px;
  }

  .portrait-band {
    min-height: 220px;
  }

  .portrait-band img {
    width: 156px;
    height: 156px;
  }

  .person-body h3 {
    font-size: 31px;
  }

  .person-body strong {
    font-size: 19px;
  }

  .tags {
    gap: 10px;
  }

  .tags span,
  .experience {
    padding: 10px 14px;
    font-size: 13px;
  }

  .certificate-stage {
    padding: 12px;
  }

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

  .lead-form,
  .thanks-card {
    padding: 42px 24px 32px;
  }

  .modal {
    padding: 14px;
  }

  .modal-close {
    top: 16px;
    right: 16px;
  }

  .response-time {
    align-items: flex-start;
    padding: 18px;
  }
}
