:root {
  --navy-950: #081a33;
  --navy-900: #0d2342;
  --navy-700: #1f3d68;
  --white: #f8f9fb;
  --white-soft: rgba(248, 249, 251, 0.72);
  --red-700: #b11f3a;
  --red-800: #92152d;
  --line: rgba(248, 249, 251, 0.22);
  --content-width: min(1240px, calc(100vw - 80px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy-950);
  color: var(--white);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
}

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

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid #f3b61f;
  outline-offset: 4px;
}

.hero-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #09172d 0%, #0c203d 100%);
}

.hero-panel {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px max(40px, calc((100vw - 1240px) / 2)) 42px;
  background:
    linear-gradient(90deg, rgba(8, 26, 51, 0.92) 0%, rgba(8, 26, 51, 0.8) 34%, rgba(8, 26, 51, 0.18) 62%, rgba(8, 26, 51, 0.06) 100%),
    url("assets/hero-lp-elm.jpg") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 12, 24, 0.14) 0%, rgba(5, 12, 24, 0.42) 100%);
  pointer-events: none;
}

.hero-header,
.hero-content,
.hero-flag-accent {
  position: relative;
  z-index: 1;
}

.hero-header {
  width: var(--content-width);
  margin: 0 auto;
  padding-top: 4px;
}

.hero-brand {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
  padding: 7px 16px 10px 15px;
  border-left: 4px solid var(--red-700);
  letter-spacing: 0.04em;
}

.hero-brand::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: linear-gradient(90deg, #f8f9fb 0 52%, var(--red-700) 52% 76%, var(--navy-700) 76% 100%);
}

.hero-brand-main {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.05;
}

.hero-brand-sub {
  font-size: 0.66rem;
  color: var(--white-soft);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-content {
  width: var(--content-width);
  margin: auto auto auto;
  padding: 48px 0 64px;
}

.hero-kicker {
  margin: 0 0 18px;
  color: var(--white-soft);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-content h1 {
  max-width: 12.4ch;
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2.9rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  margin: 14px 0 0;
  color: rgba(248, 249, 251, 0.8);
  font-size: 1.08rem;
  line-height: 1.5;
  font-weight: 500;
}

.hero-subtitle-highlight {
  position: relative;
  display: inline-block;
  color: #f8f9fb;
  font-weight: 700;
  isolation: isolate;
}

.hero-subtitle-highlight::after {
  content: "";
  position: absolute;
  left: -0.08em;
  right: -0.08em;
  bottom: 0.08em;
  z-index: -1;
  height: 0.2em;
  background: rgba(214, 28, 62, 0.72);
  transform: rotate(-1.2deg);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 58px;
  margin-top: 34px;
  padding: 0 32px;
  border: 1px solid transparent;
  background: linear-gradient(180deg, var(--red-700), var(--red-800));
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(248, 249, 251, 0.38);
  background: linear-gradient(180deg, #c92444, #99152f);
}

.hero-logos {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-logo-item {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.hero-logo-item:nth-child(2) {
  height: 40px;
}

.hero-logo-item:nth-child(5) {
  height: 42px;
}

.hero-flag-accent {
  width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.6fr 1.1fr 0.8fr;
  gap: 12px;
}

.hero-flag-accent span {
  display: block;
  height: 6px;
}

.hero-flag-accent span:nth-child(1) {
  background: var(--white);
}

.hero-flag-accent span:nth-child(2) {
  background: var(--red-700);
}

.hero-flag-accent span:nth-child(3) {
  background: var(--navy-700);
  border: 1px solid var(--line);
}

.problem-section {
  padding: 88px 40px 64px;
  background: #ffffff;
  color: var(--navy-900);
}

.section-shell {
  width: var(--content-width);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 44px;
}

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

.section-kicker {
  margin: 0;
  color: #a53a4c;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 700;
}

.section-heading h2 {
  max-width: none;
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.7rem, 2.6vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

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

.problem-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 28px 28px 30px;
  border: 1px solid rgba(13, 35, 66, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 38px rgba(10, 27, 52, 0.06);
  position: relative;
  overflow: hidden;
}

.problem-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(177, 31, 58, 0.9) 0%, rgba(146, 21, 45, 0.78) 100%);
}

.problem-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(177, 31, 58, 0.16);
  background: linear-gradient(180deg, #fffafb 0%, #f8eef1 100%);
  color: #a53a4c;
}

.problem-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.problem-icon-image {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.problem-icon-image-tinted {
  filter: brightness(0) saturate(100%) invert(30%) sepia(24%) saturate(2026%) hue-rotate(314deg) brightness(94%) contrast(90%);
}

.problem-item-copy {
  display: grid;
  gap: 8px;
}

.problem-item-copy h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 1.08rem;
  line-height: 1.42;
  font-weight: 700;
}

.problem-item-copy p {
  margin: 0;
  color: #5f6f86;
  font-size: 1rem;
  line-height: 1.58;
  font-weight: 500;
}

.problem-closing-message {
  max-width: 900px;
  margin: 56px auto 0;
  text-align: center;
}

.problem-closing-message h3 {
  margin: 0;
  color: var(--navy-900);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 1.95rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.problem-closing-message p {
  max-width: 760px;
  margin: 16px auto 0;
  color: #5f6f86;
  font-size: 1.08rem;
  line-height: 1.62;
}

.results-section {
  padding: 64px 40px 72px;
  background:
    linear-gradient(135deg, #0b1d38 0%, #10284b 56%, #17345f 100%);
  color: var(--white);
}

.results-layout {
  display: grid;
  gap: 34px;
  align-items: start;
}

.section-kicker-light {
  color: rgba(248, 249, 251, 0.66);
}

.results-copy h2 {
  margin: 0;
  max-width: none;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.62rem, 2.28vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  white-space: nowrap;
  text-align: center;
}

.results-intro {
  max-width: 820px;
  margin: 18px auto 0;
  color: rgba(248, 249, 251, 0.78);
  font-size: 1.08rem;
  line-height: 1.62;
  font-weight: 500;
  text-align: center;
}

.results-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  max-width: 980px;
  width: 100%;
  margin-inline: auto;
}

.results-list li {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 100%;
  padding: 24px 24px 22px;
  border: 1px solid rgba(248, 249, 251, 0.12);
  border-left: 3px solid rgba(177, 31, 58, 0.9);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.results-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-top: 2px;
  border: 1px solid rgba(248, 249, 251, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #f8f9fb;
}

.results-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.results-icon-image {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.results-list li:nth-child(4) .results-icon-image {
  width: 31px;
  height: 31px;
}

.results-list p {
  margin: 0;
  color: rgba(248, 249, 251, 0.9);
  font-size: 1.08rem;
  line-height: 1.68;
  font-weight: 600;
}

.contact-section-pro {
  padding: 96px 40px 118px;
  background: #ffffff;
  color: var(--navy-900);
}

.contact-promo-banner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-bottom: 44px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 18px 32px;
  background: linear-gradient(135deg, #10284b 0%, #173763 100%);
  border: 1px solid rgba(95, 181, 110, 0.35);
  box-shadow: 0 18px 40px rgba(8, 26, 51, 0.12);
}

.contact-promo-banner-inline {
  width: 100%;
  margin: 0 0 18px;
  padding: 10px 12px;
  gap: 10px;
  grid-template-columns: auto minmax(0, 1fr);
  box-shadow: 0 10px 24px rgba(8, 26, 51, 0.08);
}

.contact-promo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: rgba(95, 181, 110, 0.12);
  border: 1px solid rgba(95, 181, 110, 0.22);
  color: #b8e3c0;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-promo-banner-inline .contact-promo-badge {
  width: 50px;
  height: 50px;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, #b51635 0%, #d92a49 100%);
  border-color: rgba(217, 42, 73, 0.58);
  color: #ffffff;
}

.contact-promo-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.contact-promo-banner-inline .contact-promo-copy {
  gap: 4px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(540px, 1.22fr);
  gap: 34px;
  align-items: start;
}

.contact-form-shell {
  scroll-margin-top: 18px;
  justify-self: end;
  width: min(100%, 760px);
  max-width: 760px;
}

.contact-promo-kicker {
  margin: 0;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-promo-banner-inline .contact-promo-kicker {
  font-size: 0.66rem;
  letter-spacing: 0.08em;
}

.contact-promo-text {
  margin: 0;
  color: #f7f9fc;
  font-size: clamp(1.08rem, 1.65vw, 1.4rem);
  line-height: 1.24;
  font-weight: 700;
  max-width: 42ch;
}

.contact-promo-banner-inline .contact-promo-text {
  font-size: 0.92rem;
  line-height: 1.18;
  max-width: none;
  display: grid;
  gap: 1px;
}

.contact-promo-line {
  display: block;
  white-space: nowrap;
}

.contact-promo-banner-inline .contact-promo-line {
  display: block;
  white-space: normal;
}

.contact-promo-text strong {
  color: #ffffff;
  font-weight: 700;
}

.contact-promo-text span {
  color: #ffffff;
}

.contact-promo-text .contact-promo-highlight {
  color: #7cf2a0;
}

.contact-promo-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  text-align: right;
}

.contact-promo-banner-inline .contact-promo-side {
  align-items: center;
  text-align: center;
}

.contact-promo-side-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  min-height: 68px;
  padding: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #47b864 0%, #78db91 100%);
  color: #ffffff;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: -0.05em;
  box-shadow: 0 12px 24px rgba(71, 184, 100, 0.24);
}

.contact-promo-banner-inline .contact-promo-side-top {
  min-width: 40px;
  min-height: 40px;
  padding: 6px;
  font-size: 1rem;
  box-shadow: 0 8px 16px rgba(71, 184, 100, 0.18);
}

.contact-promo-side-bottom {
  color: rgba(247, 249, 252, 0.92);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-promo-banner-inline .contact-promo-side-bottom {
  display: none;
}

.contact-copy-pro h2 {
  margin: 0 0 18px;
  max-width: 10ch;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.7rem, 2.6vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.contact-copy-pro p:not(.section-kicker) {
  max-width: 35rem;
  margin: 0;
  color: #5f6f86;
  font-size: 1.04rem;
  line-height: 1.75;
}

.contact-copy-pro p:not(.section-kicker) + p:not(.section-kicker) {
  margin-top: 18px;
}

.contact-copy-emphasis {
  color: var(--navy-900);
  font-weight: 700;
}

.contact-price-highlight-pro {
  position: relative;
  display: inline-block;
  color: var(--navy-900);
  font-weight: 700;
  isolation: isolate;
}

.contact-price-highlight-pro::after {
  content: "";
  position: absolute;
  left: -0.08em;
  right: -0.08em;
  bottom: 0.08em;
  z-index: -1;
  height: 0.22em;
  background: rgba(214, 28, 62, 0.68);
  transform: rotate(-1.2deg);
}

.contact-logos {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.contact-logo-item {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(8, 33, 69, 0.08));
}

.contact-logo-item:nth-child(2) {
  height: 40px;
}

.contact-logo-item:nth-child(5) {
  height: 42px;
}

.contact-logo-pearson {
  height: 30px;
}

.contact-embed-pro {
  display: block;
  width: 100%;
  max-width: 760px;
  padding: 32px;
  background: #ffffff;
  border: 1px solid rgba(13, 35, 66, 0.1);
  box-shadow: 0 20px 40px rgba(3, 10, 24, 0.08);
}

.contact-embed-pro ._form_125,
.contact-embed-pro [class^="_form_"],
.contact-embed-pro iframe,
.contact-embed-pro form {
  width: 100% !important;
  max-width: 100% !important;
}

.contact-embed-pro input[type="checkbox"] {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  transform: none !important;
  accent-color: var(--navy-700);
}

.contact-embed-pro ._checkbox-radio .field-required {
  position: relative;
  top: -0.35em;
}

.site-footer-pro {
  padding: 28px 40px 40px;
  background: #ffffff;
  border-top: 1px solid rgba(13, 35, 66, 0.08);
}

.footer-layout-pro {
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.footer-brand-pro {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.footer-brand-main-pro {
  color: var(--navy-900);
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-brand-sub-pro {
  color: #b11f3a;
  font-size: 0.8rem;
  font-weight: 600;
}

.footer-copy-pro {
  margin: 0;
  color: #5f6f86;
  font-size: 0.94rem;
  line-height: 1.6;
  justify-self: center;
  text-align: center;
}

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

.footer-links-pro a {
  color: var(--navy-900);
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-legal-pro {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(13, 35, 66, 0.08);
  color: #6e7f98;
  font-size: 0.84rem;
  line-height: 1.5;
  text-align: center;
  padding-left: 0;
}

.hero-reviews-pro {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: min(330px, calc(100vw - 32px));
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 240ms ease, transform 240ms ease;
  z-index: 8;
}

.hero-reviews-pro.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-reviews-pro.is-hidden-near-footer {
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}

.hero-review-card-pro {
  position: relative;
  margin: 0;
  padding: 10px 38px 11px 14px;
  height: 104px;
  border: 1px solid rgba(13, 35, 66, 0.2);
  background: rgba(255, 255, 255, 0.995);
  box-shadow:
    0 30px 60px rgba(10, 27, 52, 0.28),
    0 10px 24px rgba(10, 27, 52, 0.16),
    0 0 0 1px rgba(13, 35, 66, 0.04);
  backdrop-filter: blur(10px);
  text-align: left;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-review-dismiss-pro {
  position: absolute;
  top: 7px;
  right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #5f6f86;
  font: inherit;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.hero-review-dismiss-pro:hover {
  background: rgba(13, 35, 66, 0.08);
  color: var(--navy-900);
}

.review-badge-pro {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.review-google-logo-pro {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex: 0 0 auto;
}

.review-stars-pro {
  color: #f4b400;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.hero-review-meta-pro {
  margin: 0 0 0 10px;
  color: #4f6077;
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
}

.hero-review-text-pro {
  margin: 0;
  color: var(--navy-900);
  font-size: 0.84rem;
  line-height: 1.36;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.72em;
  max-height: 2.72em;
}

.hero-review-actions-pro {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 16px;
}

.review-read-more-pro {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--navy-900);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(13, 35, 66, 0.34);
  cursor: pointer;
}

.review-read-more-pro.is-hidden {
  display: none;
}

.review-modal-pro {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 30;
}

.review-modal-pro.is-open {
  display: flex;
}

.review-modal-backdrop-pro {
  position: absolute;
  inset: 0;
  background: rgba(8, 26, 51, 0.56);
  backdrop-filter: blur(4px);
}

.review-modal-dialog-pro {
  position: relative;
  width: min(560px, 100%);
  max-height: min(78vh, 720px);
  overflow: auto;
  padding: 28px 26px 24px;
  background: #ffffff;
  border: 1px solid rgba(13, 35, 66, 0.12);
  box-shadow: 0 24px 48px rgba(10, 27, 52, 0.24);
  color: var(--navy-900);
}

.review-modal-close-pro {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 0;
  background: transparent;
  color: var(--navy-900);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.review-badge-modal-pro {
  margin-bottom: 16px;
}

.review-modal-text-pro {
  margin: 0 0 16px;
  color: var(--navy-900);
  font-size: 1rem;
  line-height: 1.72;
}

.review-modal-meta-pro {
  margin: 0;
  color: #5f6f86;
  font-size: 0.92rem;
  font-weight: 700;
}

body.review-modal-pro-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  :root {
    --content-width: min(100vw - 40px, 100%);
  }

  .hero-panel {
    padding: 20px 20px 28px;
    background-position: 68% center;
  }

  .hero-content {
    padding: 36px 0 48px;
  }

  .hero-content h1 {
    max-width: 10ch;
    font-size: clamp(2.9rem, 11.5vw, 4.4rem);
  }

  .problem-section {
    padding: 72px 20px 56px;
  }

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

  .results-section {
    padding: 56px 20px 64px;
  }

  .results-layout {
    gap: 32px;
  }

  .results-list {
    grid-template-columns: 1fr;
  }

  .contact-section-pro {
    padding: 74px 20px 90px;
  }

  .contact-layout {
      grid-template-columns: 1fr;
      gap: 28px;
    }

  .contact-promo-banner {
      grid-template-columns: 1fr;
      gap: 16px;
      margin-bottom: 30px;
      width: calc(100vw - 24px);
      margin-left: calc(50% - 50vw + 12px);
      margin-right: calc(50% - 50vw + 12px);
      padding: 16px 16px 18px;
    }

  .contact-promo-badge {
      width: 64px;
      height: 64px;
      font-size: 0.76rem;
    }

  .contact-promo-text {
      max-width: 100%;
    }

  .contact-promo-line {
      white-space: normal;
    }

  .contact-promo-side {
      align-items: flex-start;
      text-align: left;
    }

  .contact-promo-banner-inline {
      width: 100%;
      margin: 0 0 14px;
      padding: 10px 10px 11px;
      grid-template-columns: auto minmax(0, 1fr);
      gap: 10px;
    }

  .contact-promo-banner-inline .contact-promo-badge {
    width: 44px;
    height: 44px;
    font-size: 0.56rem;
  }

  .contact-promo-banner-inline .contact-promo-kicker {
        font-size: 0.58rem;
      }

  .contact-promo-banner-inline .contact-promo-text {
        font-size: 0.84rem;
        display: block;
      }

  .contact-promo-banner-inline .contact-promo-line {
        white-space: normal;
      }

  .contact-promo-banner-inline .contact-promo-side {
      align-items: center;
      text-align: center;
    }

  .contact-promo-banner-inline .contact-promo-side-top {
      min-width: 36px;
      min-height: 36px;
      font-size: 0.92rem;
    }

  .contact-form-shell {
      scroll-margin-top: 12px;
      justify-self: stretch;
      width: 100%;
      max-width: 100%;
    }

  .site-footer-pro {
    padding: 24px 20px 32px;
  }

  .footer-layout-pro {
      grid-template-columns: 1fr;
      gap: 16px;
      align-items: center;
    }

  .footer-brand-pro {
      justify-self: center;
      align-items: center;
      text-align: center;
    }

  .footer-links-pro {
      justify-content: center;
    }

  .footer-legal-pro {
    margin-top: 16px;
    padding-top: 14px;
    padding-left: 0;
    font-size: 0.8rem;
    text-align: center;
  }

  }

@media (max-width: 640px) {
  .hero-panel {
    justify-content: flex-start;
    background:
      linear-gradient(180deg, rgba(8, 26, 51, 0.82) 0%, rgba(8, 26, 51, 0.7) 28%, rgba(8, 26, 51, 0.48) 55%, rgba(8, 26, 51, 0.78) 100%),
      url("assets/hero-lp-elm.jpg") 72% center / cover no-repeat;
  }

  .hero-content {
    margin-top: auto;
    padding-bottom: 32px;
  }

  .hero-kicker {
    margin-bottom: 14px;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  .hero-content h1 {
    max-width: 7ch;
    line-height: 1;
  }

  .hero-subtitle {
    margin-top: 12px;
    font-size: 0.98rem;
  }

  .hero-cta {
    width: 100%;
    min-width: 0;
    margin-top: 28px;
  }

  .hero-logos {
    gap: 10px 12px;
  }

  .hero-logo-item {
    height: 28px;
  }

  .hero-logo-item:nth-child(2) {
    height: 31px;
  }

  .hero-logo-item:nth-child(5) {
    height: 33px;
  }

  .hero-flag-accent {
    gap: 8px;
  }

  .hero-flag-accent span {
    height: 5px;
  }

  .contact-promo-banner {
    width: calc(100vw - 16px);
    margin-left: calc(50% - 50vw + 8px);
    margin-right: calc(50% - 50vw + 8px);
    padding: 14px 14px 16px;
  }

  .contact-promo-banner-inline {
    width: 100%;
    margin: 0 0 12px;
    padding: 9px 9px 10px;
  }

  .contact-promo-text {
    font-size: 0.98rem;
  }

  .contact-promo-side-top {
    min-width: 58px;
    min-height: 58px;
    font-size: 1.45rem;
  }

  .contact-promo-banner-inline .contact-promo-text {
      font-size: 0.8rem;
      display: block;
    }

  .contact-promo-banner-inline .contact-promo-line {
      white-space: normal;
    }

  .contact-promo-banner-inline .contact-promo-side-top {
    min-width: 34px;
    min-height: 34px;
    font-size: 0.88rem;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .problem-closing-message {
    margin-top: 42px;
  }

  .problem-closing-message p {
    font-size: 1rem;
  }

  .section-heading h2 {
    max-width: 100%;
    font-size: clamp(1.8rem, 8vw, 2.45rem);
    white-space: normal;
  }

  .problem-item {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    padding: 22px 20px;
  }

  .problem-icon {
    width: 52px;
    height: 52px;
  }

  .problem-icon svg {
    width: 24px;
    height: 24px;
  }

  .problem-icon-image {
    width: 24px;
    height: 24px;
  }

  .results-copy h2 {
    max-width: 100%;
    font-size: clamp(1.8rem, 8vw, 2.45rem);
    white-space: normal;
  }

  .results-list {
    gap: 18px;
  }

  .results-list li {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    padding-bottom: 18px;
  }

  .results-icon {
    width: 52px;
    height: 52px;
  }

  .results-icon svg {
    width: 24px;
    height: 24px;
  }

  .results-icon-image {
    width: 24px;
    height: 24px;
  }

  .results-list li:nth-child(4) .results-icon-image {
    width: 26px;
    height: 26px;
  }

  .contact-copy-pro h2 {
    max-width: 100%;
    font-size: clamp(1.8rem, 8vw, 2.45rem);
  }

  .contact-copy-pro p:not(.section-kicker) {
    font-size: 1rem;
  }

  .contact-logos {
    gap: 10px 12px;
  }

  .contact-logo-item {
    height: 28px;
  }

  .contact-logo-item:nth-child(2) {
    height: 31px;
  }

  .contact-logo-item:nth-child(5) {
    height: 33px;
  }

  .contact-logo-pearson {
    height: 24px;
  }

  .contact-embed-pro {
    padding: 22px 18px;
  }

  .hero-reviews-pro {
    display: none;
  }

  .review-modal-pro {
    padding: 16px;
  }

  .review-modal-dialog-pro {
    max-height: min(82vh, 720px);
    padding: 22px 18px 18px;
  }

  .review-modal-text-pro {
    font-size: 0.96rem;
    line-height: 1.68;
  }
}

/* Thank you page */
.thank-you-body {
  min-width: 320px;
  background: var(--navy-950);
}

.thank-you-page {
  min-height: 100vh;
  min-height: 100svh;
}

.thank-you-panel {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 32px max(40px, calc((100vw - 1240px) / 2)) 42px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 26, 51, 0.94) 0%, rgba(8, 26, 51, 0.82) 43%, rgba(8, 26, 51, 0.36) 100%),
    url("assets/hero-lp-elm.jpg") center center / cover no-repeat;
}

.thank-you-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 46%, rgba(31, 61, 104, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(5, 12, 24, 0.12), rgba(5, 12, 24, 0.5));
  pointer-events: none;
}

.thank-you-header,
.thank-you-content,
.thank-you-flag-accent {
  position: relative;
  z-index: 1;
  width: var(--content-width);
  margin-inline: auto;
}

.thank-you-header {
  padding-top: 4px;
}

.thank-you-content {
  display: flex;
  align-items: center;
  padding-block: 56px;
}

.thank-you-card {
  width: min(720px, 100%);
  padding: clamp(34px, 5vw, 62px);
  border: 1px solid rgba(248, 249, 251, 0.2);
  border-left: 4px solid var(--red-700);
  background: rgba(8, 26, 51, 0.84);
  box-shadow: 0 30px 70px rgba(3, 10, 24, 0.32);
  backdrop-filter: blur(12px);
}

.thank-you-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  border: 1px solid rgba(248, 249, 251, 0.3);
  border-radius: 50%;
  background: rgba(248, 249, 251, 0.08);
  color: #7cf2a0;
  font-size: 1.65rem;
  font-weight: 700;
}

.thank-you-kicker {
  margin: 0 0 14px;
  color: rgba(248, 249, 251, 0.68);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.thank-you-card h1 {
  max-width: 14ch;
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.thank-you-message {
  max-width: 590px;
  margin: 22px 0 0;
  color: rgba(248, 249, 251, 0.82);
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
  line-height: 1.65;
}

.thank-you-flag-accent {
  display: grid;
  grid-template-columns: 2.6fr 1.1fr 0.8fr;
  gap: 12px;
}

.thank-you-flag-accent span {
  display: block;
  height: 6px;
}

.thank-you-flag-accent span:nth-child(1) {
  background: var(--white);
}

.thank-you-flag-accent span:nth-child(2) {
  background: var(--red-700);
}

.thank-you-flag-accent span:nth-child(3) {
  border: 1px solid var(--line);
  background: var(--navy-700);
}

@media (max-width: 900px) {
  .thank-you-panel {
    padding: 20px 20px 28px;
    background-position: 68% center;
  }

  .thank-you-content {
    padding-block: 42px;
  }
}

@media (max-width: 640px) {
  .thank-you-panel {
    background:
      linear-gradient(180deg, rgba(8, 26, 51, 0.9) 0%, rgba(8, 26, 51, 0.78) 48%, rgba(8, 26, 51, 0.92) 100%),
      url("assets/hero-lp-elm.jpg") 72% center / cover no-repeat;
  }

  .thank-you-content {
    padding-block: 32px;
  }

  .thank-you-card {
    padding: 28px 22px 30px;
  }

  .thank-you-check {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
  }

  .thank-you-card h1 {
    max-width: none;
  }

  .thank-you-flag-accent {
    gap: 8px;
  }

  .thank-you-flag-accent span {
    height: 5px;
  }
}
