:root {
  --bg: #f7f8fa;
  --surface: #ffffff;
  --surface-soft: #f1f4f7;
  --surface-dark: #11161c;
  --ink: #11161c;
  --muted: #5f6974;
  --line: rgba(17, 22, 28, 0.1);
  --accent: #156f79;
  --accent-dark: #0f5a62;
  --shadow: 0 20px 60px rgba(17, 22, 28, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(21, 111, 121, 0.04), transparent 26%),
    linear-gradient(180deg, #fafbfd 0%, #f7f8fa 42%, #f2f5f8 100%);
}

body.has-cookie-banner .sticky-cta {
  bottom: 210px;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

main,
.site-header,
.site-footer {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 12px;
  background: rgba(250, 251, 253, 0.86);
  backdrop-filter: blur(12px);
}

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

.brand img {
  width: clamp(158px, 22vw, 220px);
  object-fit: contain;
}

.header-cta,
.sticky-cta,
.button,
.reviews-link,
.lightbox__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button--primary,
.header-cta,
.sticky-cta,
.reviews-link,
.lightbox__close {
  color: #f7fbfc;
  background: linear-gradient(135deg, var(--accent) 0%, #1b8490 100%);
  box-shadow: 0 14px 28px rgba(21, 111, 121, 0.2);
}

.button--ghost {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
}

.button-link {
  color: var(--accent-dark);
  font-weight: 700;
  padding: 4px 0;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 34px;
  z-index: 40;
  min-height: 72px;
  padding: 20px 38px;
  font-size: 1.12rem;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 40px);
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 60;
  display: grid;
  gap: 18px;
  width: min(calc(100% - 32px), 760px);
  padding: 22px 24px;
  border: 1px solid rgba(17, 22, 28, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 64px rgba(17, 22, 28, 0.14);
  transform: translateX(-50%);
  backdrop-filter: blur(12px);
}

.cookie-banner[hidden] {
  display: none;
}

.status-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.status-overlay[hidden] {
  display: none;
}

.status-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 22, 28, 0.28);
  backdrop-filter: blur(6px);
}

.status-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  width: min(100%, 560px);
  padding: 28px 28px 24px;
  border: 1px solid rgba(17, 22, 28, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 24px 80px rgba(17, 22, 28, 0.18);
  backdrop-filter: blur(14px);
}

.status-card--success {
  border-color: rgba(21, 111, 121, 0.18);
}

.status-card--error {
  border-color: rgba(182, 53, 47, 0.16);
}

.status-card__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 22, 28, 0.08);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.status-card__eyebrow {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.status-card--error .status-card__eyebrow {
  color: #8a261f;
}

.status-card--success .status-card__eyebrow {
  color: var(--accent-dark);
}

.status-card p {
  margin: 0;
  color: var(--muted);
}

.cookie-banner__eyebrow {
  margin: 0 0 8px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.cookie-banner__copy h2 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.cookie-banner__copy p {
  margin: 12px 0 0;
  color: var(--muted);
}

.cookie-banner__copy a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cookie-banner__button {
  cursor: pointer;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
}

p,
li,
label,
input,
select,
textarea,
button {
  font-size: 1rem;
  line-height: 1.6;
}

h1,
h2,
h3,
p,
li,
label,
a {
  overflow-wrap: anywhere;
}

main {
  padding-bottom: 40px;
}

.hero,
.section,
.visual-band,
.reviews-compact,
.final-cta {
  margin-bottom: 28px;
}

.section-heading {
  display: grid;
  gap: 10px;
}

.hero__stage,
.hero__form-card,
.section,
.visual-band,
.reviews-compact,
.final-cta {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero__stage {
  overflow: hidden;
  position: relative;
  isolation: isolate;
  aspect-ratio: 16 / 10;
  min-height: 420px;
}

.hero__stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,22,28,0.04), rgba(17,22,28,0.18));
  z-index: 1;
  pointer-events: none;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 38%;
  opacity: 0;
  transform: scale(1.045) translate3d(0, 0, 0);
  will-change: opacity, transform;
  animation: hero-cinematic 12.5s infinite;
}

.hero__slide--1 { animation-delay: 0s; }
.hero__slide--2 { animation-delay: 2.5s; }
.hero__slide--3 { animation-delay: 5s; }
.hero__slide--4 { animation-delay: 7.5s; }
.hero__slide--5 { animation-delay: 10s; }

.hero__conversion {
  display: grid;
  gap: 28px;
  padding: 28px 4px 0;
}

.hero__intro {
  position: relative;
  max-width: 720px;
}

.hero__intro,
.hero__form-card,
.section__copy,
.section__media,
.reviews-compact__intro,
.reviews-compact__list,
.final-cta__copy,
.logo-strip,
.context-card,
.benefit-layout__copy {
  min-width: 0;
}

.hero__lead,
.section__lead,
.visual-band__intro p,
.reviews-compact__intro p,
.final-cta__copy p,
.form-card__lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero__actions,
.final-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 26px;
}

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

.final-cta__actions {
  align-items: center;
}

.hero__proof-block {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hero__proof-label {
  margin: 0 0 16px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--muted);
}

.hero__proof,
.logo-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
  align-items: center;
}

.hero__proof-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.hero__proof-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: logo-marquee 34s linear infinite;
}

.hero__proof-track img,
.logo-strip__track img {
  max-width: 100%;
  max-height: 30px;
  width: auto;
  height: auto;
  object-fit: contain;
  flex: 0 0 auto;
}

.hero__proof-track img:first-child,
.logo-strip__track img:first-child {
  max-height: 42px;
}

.hero__proof-track img:last-child,
.hero__proof-track img:nth-child(5),
.logo-strip__track img:last-child,
.logo-strip__track img:nth-child(5) {
  max-height: 24px;
}

.logo-strip {
  display: block;
}

.logo-strip__marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.logo-strip__track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: logo-marquee 34s linear infinite;
}

.hero__form-card,
.section,
.visual-band,
.reviews-compact,
.final-cta {
  padding: 28px;
}

.hero__form-card {
  background: linear-gradient(180deg, #fcfdff 0%, #f6f8fb 100%);
}

.lead-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  font-size: 0.94rem;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(17, 22, 28, 0.12);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
}

.lead-form textarea {
  min-height: 124px;
  resize: vertical;
}

.lead-form__submit {
  width: fit-content;
  max-width: 100%;
  cursor: pointer;
}

.recaptcha-anchor {
  min-height: 0;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
}

.consent input {
  width: 16px;
  height: 16px;
  min-height: 16px;
  margin-top: 3px;
  padding: 0;
}

.section {
  display: grid;
  gap: 28px;
  border: 1px solid rgba(17, 22, 28, 0.06);
}

.section__copy {
  align-self: center;
}

.section__media {
  order: -1;
}

.section__media img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 22px;
}

.section__media--top img {
  object-position: center 20%;
}

.section__media--center img {
  object-position: center center;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--accent);
  flex: 0 0 auto;
}

.visual-band {
  display: grid;
  gap: 24px;
  background: linear-gradient(180deg, #11161c 0%, #182029 100%);
  color: #f6f8fa;
}

.visual-band__intro p {
  color: rgba(246, 248, 250, 0.76);
}

.visual-band__grid {
  display: grid;
  gap: 16px;
}

.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.25s ease;
}

.gallery-item--landscape img {
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.gallery-item--topcrop img {
  object-position: center 16%;
}

.gallery-item--portrait img {
  aspect-ratio: 0.92 / 1;
  object-fit: cover;
  object-position: center top;
}

.gallery-item--square img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery-item:hover img {
  transform: scale(1.01);
}

.benefit-layout {
  display: grid;
  gap: 20px;
  margin-top: 22px;
}

.benefit-layout__media img {
  width: 100%;
  min-height: 320px;
  border-radius: 22px;
  object-fit: cover;
}

.benefit-layout__copy {
  display: grid;
  gap: 18px;
}

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

.benefit-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.context-grid {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.context-card {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(17,22,28,0.08);
}

.context-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.section--muted {
  background: rgba(244, 247, 250, 0.92);
}

.section--proof {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding-inline: 0;
}

.reviews-compact {
  display: grid;
  gap: 22px;
}

.reviews-compact__intro {
  display: grid;
  gap: 14px;
  align-items: start;
}

.reviews-google {
  display: inline-flex;
  width: fit-content;
  min-height: 36px;
  padding: 0 14px;
  align-items: center;
  border-radius: 999px;
  background: rgba(66, 133, 244, 0.1);
  color: #1f4fbf;
  font-size: 0.86rem;
  font-weight: 800;
}

.reviews-compact__list {
  display: grid;
  gap: 14px;
}

.reviews-carousel {
  position: relative;
  width: min(100%, 430px);
  min-height: 250px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7f8 100%);
}

.reviews-carousel__track {
  display: flex;
  height: 100%;
  transition: transform 420ms ease;
  will-change: transform;
}

.reviews-carousel__slide {
  flex: 0 0 100%;
  margin: 0;
  min-width: 100%;
  padding: clamp(14px, 2vw, 20px);
  background: linear-gradient(180deg, #ffffff 0%, #f4f7f8 100%);
}

.reviews-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.review-snippet {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.review-snippet:first-child {
  border-top: 0;
  padding-top: 0;
}

.review-snippet__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.review-snippet__avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #d9e6ea, #b8ced4);
  color: var(--surface-dark);
  font-weight: 800;
  flex: 0 0 auto;
}

.review-snippet__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
}

.review-snippet__meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.review-snippet__stars {
  margin: 2px 0 0;
  color: #f4b400;
  letter-spacing: 0.08em;
  font-size: 0.86rem;
}

.final-cta {
  display: grid;
  gap: 20px;
  background: linear-gradient(180deg, #11161c 0%, #182029 100%);
  color: #f6f8fa;
}

.final-cta__copy p {
  color: rgba(246, 248, 250, 0.8);
}

.lead-form--wide input,
.lead-form--wide select,
.lead-form--wide textarea {
  background: rgba(255, 255, 255, 0.98);
}

.lead-form__full {
  grid-column: 1 / -1;
}

.final-cta .lead-form--wide {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  padding: 0 0 32px;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer__button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.site-footer__button:hover,
.site-footer a:hover {
  color: var(--ink);
}

.lightbox {
  width: min(92vw, 1200px);
  padding: 20px;
  border: 0;
  border-radius: 22px;
  background: rgba(17, 22, 28, 0.96);
  color: #f6f8fa;
}

.lightbox::backdrop {
  background: rgba(10, 12, 16, 0.82);
}

.lightbox__close {
  border: 0;
  cursor: pointer;
  margin-left: auto;
  margin-bottom: 14px;
}

.lightbox__image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 18px;
}

.lightbox__caption {
  margin: 14px 0 0;
  color: rgba(246, 248, 250, 0.78);
}

@media (min-width: 760px) {
  .final-cta__actions,
  .reviews-compact__intro {
    flex-direction: row;
  }

  .section--text,
  .section--split,
  .section--proof,
  .final-cta {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .section__media {
    order: initial;
  }

  .card-grid,
  .reviews-compact__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 40px;
  }

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

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

  .benefit-layout {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

  .reviews-compact__intro {
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
  }
}

@media (min-width: 1040px) {
  .hero__conversion {
    grid-template-columns: minmax(0, 1.34fr) minmax(300px, 0.66fr);
    align-items: start;
    gap: 18px;
  }

  .hero__stage {
    aspect-ratio: 16 / 8.5;
    min-height: 520px;
  }

  .hero__intro {
    max-width: 860px;
    padding: 18px 20px 26px;
    border-radius: 28px;
    background:
      radial-gradient(circle at 18% 18%, rgba(21, 111, 121, 0.1), transparent 34%),
      radial-gradient(circle at 78% 82%, rgba(21, 111, 121, 0.06), transparent 28%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0.18) 100%);
  }

  .hero__proof-block {
    margin-top: 18px;
    padding-top: 14px;
  }

  .hero__proof-label {
    margin-bottom: 12px;
  }

  .hero__proof-track {
    gap: 24px;
  }

  .hero__form-card {
    max-width: 390px;
    justify-self: end;
    padding: 22px;
  }

  .lead-form {
    gap: 12px;
  }

  .lead-form label {
    gap: 6px;
    font-size: 0.9rem;
  }

  .lead-form input,
  .lead-form select,
  .lead-form textarea {
    min-height: 50px;
    padding: 12px 14px;
  }

  .lead-form textarea {
    min-height: 108px;
  }

  .hero__slide {
    object-position: center 34%;
  }

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

  .context-card--wide {
    grid-column: span 1;
  }

  .hero__proof,
  .logo-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .visual-band__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }

  .gallery-item {
    background: transparent;
  }

  .gallery-item--landscape,
  .gallery-item--portrait,
  .gallery-item--square {
    grid-column: auto;
  }

  .gallery-item img,
  .gallery-item--landscape img,
  .gallery-item--portrait img,
  .gallery-item--square img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center center;
  }

  .gallery-item--topcrop img,
  .gallery-item--portrait img {
    object-position: center 18%;
  }

}

@media (max-width: 759px) {
  h1 {
    font-size: clamp(2.1rem, 8.8vw, 3.1rem);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(1.65rem, 7vw, 2.2rem);
    line-height: 1.06;
  }

  .hero__conversion {
    padding: 22px 0 0;
    gap: 22px;
  }

  .hero__form-card,
  .section,
  .visual-band,
  .reviews-compact,
  .final-cta {
    padding: 22px;
  }

  .hero__lead,
  .section__lead,
  .visual-band__intro p,
  .reviews-compact__intro p,
  .final-cta__copy p,
  .form-card__lead {
    font-size: 0.98rem;
  }

  .site-header {
    justify-content: center;
    padding-top: 14px;
  }

  .header-cta {
    display: none;
  }

  .brand {
    justify-content: center;
    width: 100%;
  }

  .brand img {
    width: min(62vw, 220px);
  }

  .hero__stage {
    aspect-ratio: 4 / 5;
    min-height: 460px;
  }

  .hero__slide {
    object-position: center 26%;
  }

  .section__media img {
    min-height: 280px;
  }

  .reviews-carousel {
    width: 100%;
    min-height: 220px;
  }

  body.has-cookie-banner .sticky-cta {
    bottom: 236px;
  }

  .sticky-cta {
    left: 50%;
    bottom: 28px;
    min-height: 66px;
    padding: 18px 30px;
    font-size: 1rem;
    max-width: calc(100% - 32px);
  }

  .cookie-banner {
    bottom: 16px;
    padding: 20px;
    gap: 16px;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .header-cta,
  .sticky-cta,
  .reviews-link,
  .gallery-item img,
  .hero__slide,
  .reviews-carousel__track,
  .reviews-carousel__slide {
    transition: none;
    animation: none;
    transform: none;
  }

  .hero__slide {
    opacity: 0;
  }

  .hero__slide--1 {
    opacity: 1;
  }
}

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

.final-cta__actions {
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 26px;
  margin-inline: auto;
  text-align: center;
}

.final-cta__actions .button--ghost {
  margin-inline: auto;
}

.button--ghost-compact {
  align-self: center;
  min-height: 38px;
  padding: 8px 14px;
  font-size: 0.84rem;
  line-height: 1.2;
  width: fit-content;
  max-width: max-content;
  white-space: nowrap;
}

@media (min-width: 1040px) {
  .final-cta .lead-form--wide {
    justify-self: center;
    width: min(100%, 760px);
  }

  .final-cta__actions.lead-form__full {
    justify-self: center;
    width: fit-content;
    min-width: min(100%, 320px);
  }
}

@media (min-width: 760px) {
  .final-cta__actions {
    justify-content: center;
    align-items: center;
  }
}

@keyframes hero-cinematic {
  0% {
    opacity: 0;
    transform: scale(1.045) translate3d(0, 0, 0);
  }

  8% {
    opacity: 1;
  }

  32% {
    opacity: 1;
    transform: scale(1.02) translate3d(0, -0.2%, 0);
  }

  48% {
    opacity: 0;
    transform: scale(1) translate3d(0, -0.4%, 0);
  }

  100% {
    opacity: 0;
    transform: scale(1) translate3d(0, -0.4%, 0);
  }
}



.flash {
  width: min(calc(100% - 32px), var(--container));
  margin: 20px auto 0;
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 0.95rem;
  font-weight: 600;
}

.flash--success {
  background: rgba(21, 111, 121, 0.12);
  color: var(--accent-dark);
  border: 1px solid rgba(21, 111, 121, 0.18);
}

.flash--error {
  background: rgba(182, 53, 47, 0.08);
  color: #8a261f;
  border: 1px solid rgba(182, 53, 47, 0.18);
}

.form-feedback {
  margin: 0;
  color: #8a261f;
  font-size: 0.9rem;
  line-height: 1.45;
}

.final-cta__actions .form-feedback {
  flex-basis: 100%;
  text-align: center;
}

.captcha-note {
  display: grid;
  justify-content: start;
  gap: 10px;
}

.captcha-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.honeypot,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.thanks-card {
  min-height: calc(100vh - 120px);
  display: grid;
  place-items: center;
}

.thanks-card__copy {
  max-width: 720px;
  text-align: center;
}

.thanks-card__actions {
  justify-content: center;
}

.thanks-page {
  min-height: 100vh;
}

.thanks-page main {
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.thanks-page__shell {
  position: relative;
  width: min(100%, 1120px);
  min-height: min(720px, calc(100vh - 48px));
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 28px;
}

.thanks-page__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(21, 111, 121, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(14px);
}

.thanks-page__card {
  width: min(100%, 560px);
  text-align: center;
}

.thanks-page__card h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.thanks-page__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}
