:root {
  --bg: #f4efe6;
  --bg-soft: #f8f5ef;
  --ink: #132236;
  --ink-deep: #081321;
  --ink-soft: #405267;
  --line: rgba(19, 34, 54, 0.12);
  --panel: rgba(255, 255, 255, 0.82);
  --panel-dark: rgba(8, 19, 33, 0.72);
  --accent: #f4b544;
  --accent-strong: #db7a22;
  --success: #d5ead8;
  --shadow: 0 20px 50px rgba(8, 19, 33, 0.15);
  --radius: 8px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Instrument Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(244, 181, 68, 0.24), transparent 24%),
    linear-gradient(180deg, #fbf8f2 0%, var(--bg) 100%);
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  padding: 0;
  color: #fff;
  background: rgba(10, 19, 33, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    backdrop-filter 180ms ease,
    border-color 180ms ease;
}

.topbar.is-scrolled {
  background: rgba(8, 19, 33, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 24px rgba(8, 19, 33, 0.18);
}

.topbar__inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
}

.topbar__cta {
  display: none;
  min-height: 42px;
  padding: 0.75rem 1rem;
  margin-left: auto;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.topbar.is-scrolled .topbar__cta {
  display: inline-flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.topbar:not(.is-scrolled) .topbar__cta {
  display: none;
}

.brand,
.topnav a,
.eyebrow,
.kicker,
.fact__label,
.step__number {
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand {
  font-family: "Oswald", sans-serif;
  font-size: 1.15rem;
  line-height: 1;
  text-decoration: none;
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem 1.2rem;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.18rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.language-switcher__button {
  min-width: 44px;
  min-height: 36px;
  padding: 0.45rem 0.62rem;
  border: 0;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  touch-action: manipulation;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.language-switcher__button:hover,
.language-switcher__button:focus-visible,
.language-switcher__button.is-active {
  color: var(--ink-deep);
  background: var(--accent);
}

.topnav a {
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.84);
  transition: color 180ms ease;
}

.topnav__blog {
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  color: var(--ink-deep) !important;
  background: var(--accent);
  box-shadow: 0 10px 22px rgba(244, 181, 68, 0.2);
}

.topnav a:hover,
.topnav a:focus-visible {
  color: #fff;
}

.hero {
  position: relative;
  min-height: 92svh;
  padding: 5.75rem clamp(1rem, 3vw, 2.5rem) 3.5rem;
  display: flex;
  align-items: end;
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center center;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(8, 19, 33, 0.82) 0%, rgba(8, 19, 33, 0.45) 38%, rgba(8, 19, 33, 0.18) 62%, rgba(8, 19, 33, 0.5) 100%),
    linear-gradient(180deg, rgba(8, 19, 33, 0.1) 0%, rgba(8, 19, 33, 0.62) 100%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 2rem;
  align-items: end;
}

.hero__content {
  color: #fff;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.eyebrow::before,
.kicker::before {
  content: "";
  width: 2.5rem;
  height: 0.18rem;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  line-height: 1;
}

html[lang="km"] body,
html[lang="km"] button,
html[lang="km"] input,
html[lang="km"] select,
html[lang="km"] textarea {
  font-family: "Noto Sans Khmer", "Instrument Sans", sans-serif;
}

html[lang="lo"] body,
html[lang="lo"] button,
html[lang="lo"] input,
html[lang="lo"] select,
html[lang="lo"] textarea {
  font-family: "Noto Sans Lao", "Instrument Sans", sans-serif;
}

html[lang="th"] body,
html[lang="th"] button,
html[lang="th"] input,
html[lang="th"] select,
html[lang="th"] textarea {
  font-family: "Noto Sans Thai", "Instrument Sans", sans-serif;
}

html[lang="km"] h1,
html[lang="km"] h2,
html[lang="km"] h3,
html[lang="lo"] h1,
html[lang="lo"] h2,
html[lang="lo"] h3,
html[lang="th"] h1,
html[lang="th"] h2,
html[lang="th"] h3 {
  font-family: inherit;
  line-height: 1.18;
}

h1 {
  max-width: 13.5ch;
  font-size: clamp(2.7rem, 4.8vw, 5rem);
}

.hero__lede {
  max-width: 34rem;
  margin: 1rem 0 0;
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  font-weight: 600;
  line-height: 1.32;
}

.hero__copy,
.section p,
.section li,
.footer {
  font-size: 1.02rem;
  line-height: 1.65;
}

.hero__copy {
  max-width: 41rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.9);
}

.hero__actions,
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.button {
  min-height: 48px;
  padding: 0.95rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  touch-action: manipulation;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

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

.button:disabled {
  opacity: 0.75;
  cursor: wait;
  transform: none;
}

.button:focus-visible,
.topnav a:focus-visible,
.brand:focus-visible,
.language-switcher__button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.button--primary {
  color: var(--ink-deep);
  background: linear-gradient(135deg, #ffcf69 0%, var(--accent) 100%);
  box-shadow: 0 14px 30px rgba(244, 181, 68, 0.28);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #ffc95f;
}

.button--secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(10px);
}

.button--ghost {
  color: var(--ink);
  background: transparent;
  border-color: rgba(19, 34, 54, 0.25);
}

.lead-form-card,
.hero__panel {
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(8, 19, 33, 0.42);
  backdrop-filter: blur(12px);
}

.hero__panel {
  display: grid;
  gap: 1rem;
}

.hero__panel-kicker {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.hero__panel-title {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  line-height: 1.12;
}

.hero__panel-list {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.84);
}

.hero__panel-list li + li {
  margin-top: 0.5rem;
}

.hero__messengers {
  display: grid;
  gap: 0.7rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero__messengers p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero__messenger-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.messenger-link {
  min-height: 40px;
  padding: 0.65rem 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.messenger-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.messenger-link--whatsapp {
  color: #062316;
  background: #7ee28a;
  border-color: transparent;
}

.messenger-link--telegram {
  color: #071827;
  background: #8fc8ff;
  border-color: transparent;
}

.lead-form-card__kicker {
  margin: 0 0 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.lead-form-card__title {
  margin: 0;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.12;
}

.lead-form-card__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.lead-form {
  margin-top: 1rem;
}

.lead-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.lead-form__grid--simple {
  grid-template-columns: 1fr;
}

.phone-field {
  display: grid;
  grid-template-columns: minmax(190px, 0.88fr) minmax(0, 1.12fr);
  gap: 0.9rem;
  align-items: end;
}

.field {
  display: grid;
  gap: 0.38rem;
}

.field--date {
  position: relative;
}

.field span {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
  color-scheme: dark;
}

.field select {
  appearance: none;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field--date::after {
  content: "";
  position: absolute;
  right: 0.95rem;
  bottom: 0.95rem;
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4'/%3E%3Cpath d='M16 2v4'/%3E%3Crect width='18' height='18' x='3' y='4' rx='2'/%3E%3Cpath d='M3 10h18'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1rem 1rem;
  opacity: 0.92;
  pointer-events: none;
}

.field input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
  position: absolute;
  inset: 0 0 0 auto;
  width: 3rem;
  height: 100%;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.54);
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.field--full {
  grid-column: 1 / -1;
}

.lead-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1rem;
}

.lead-form__honey {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 1.6rem;
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-status[data-state="success"] {
  color: #cfeec8;
}

.form-status[data-state="error"] {
  color: #ffd2bf;
}

.section {
  position: relative;
  padding: 5.5rem 1rem;
}

.section__inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.section--intro {
  margin-top: -1px;
}

.section--light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.78)),
    repeating-linear-gradient(
      135deg,
      rgba(19, 34, 54, 0.025) 0,
      rgba(19, 34, 54, 0.025) 9px,
      transparent 9px,
      transparent 26px
    );
}

.section--dark {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(8, 19, 33, 0.98), rgba(12, 24, 42, 0.94)),
    linear-gradient(90deg, rgba(244, 181, 68, 0.08), transparent 22%);
}

.section--warm {
  background:
    linear-gradient(180deg, #f7d79b 0%, #f5c66f 100%);
}

.section--blog {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 19, 33, 0.98), rgba(13, 31, 51, 0.94)),
    linear-gradient(90deg, rgba(244, 181, 68, 0.18), transparent 34%);
}

.section--cta {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 19, 33, 0.98), rgba(20, 47, 73, 0.92)),
    linear-gradient(90deg, rgba(244, 181, 68, 0.16), transparent 30%);
}

.section__heading {
  max-width: 46rem;
  margin-bottom: 2.5rem;
}

.section__heading h2 {
  font-size: clamp(2rem, 3.8vw, 3.35rem);
}

.section__heading .kicker {
  margin-bottom: 0.9rem;
}

.intro__grid,
.reasons__grid {
  display: grid;
  gap: 1.4rem 2rem;
}

.intro__grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  align-items: start;
}

.intro__text {
  margin: 0;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.5;
}

.intro__list {
  margin: 0;
  padding-left: 1.1rem;
}

.service-grid,
.steps,
.reasons__grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.service-card,
.step,
.reasons__grid article {
  min-height: 100%;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.step {
  background: rgba(255, 255, 255, 0.3);
}

.reasons__grid article {
  background: rgba(255, 255, 255, 0.72);
}

.service-card h3,
.step h3,
.reasons__grid h3 {
  font-size: 1.55rem;
  margin-bottom: 0.8rem;
}

.service-card p,
.step p,
.reasons__grid p,
.cta-band p {
  margin: 0;
}

.step__number {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(8, 19, 33, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
}

.cta-band {
  display: grid;
  gap: 1rem;
}

.cta-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.9fr);
  gap: 1.5rem 2rem;
  align-items: start;
}

.cta-band__grid--single {
  grid-template-columns: minmax(0, 0.8fr);
}

.cta-band__copy {
  display: grid;
  gap: 1rem;
}

.cta-band h2 {
  font-size: clamp(2rem, 3.7vw, 3.4rem);
  max-width: 17ch;
}

.contact-card {
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.lead-form-card--bottom {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.form-modal[hidden] {
  display: none;
}

.form-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
}

.form-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 19, 33, 0.72);
  backdrop-filter: blur(8px);
}

.form-modal__dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(720px, calc(100% - 2rem));
  max-height: calc(100svh - 2rem);
  padding: 1.35rem;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(26, 40, 60, 0.96), rgba(16, 28, 45, 0.98));
  box-shadow: 0 24px 60px rgba(8, 19, 33, 0.38);
  color: #fff;
  transform: translate(-50%, -50%);
}

.form-modal__close {
  margin-left: auto;
  margin-bottom: 0.9rem;
  display: inline-flex;
  padding: 0.3rem 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.form-modal__close:hover,
.form-modal__close:focus-visible {
  color: #fff;
}

.cta-band__actions {
  margin-top: 1.1rem;
}

.button--wide {
  min-width: min(100%, 16rem);
}

.contact-points {
  margin: 1.15rem 0 0;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.84);
}

.contact-points li + li {
  margin-top: 0.55rem;
}

.thank-you__contact {
  display: grid;
  gap: 0.75rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.contact-pill {
  min-height: 38px;
  padding: 0.6rem 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.contact-pill--phone {
  color: var(--ink-deep);
  background: var(--accent);
  border-color: transparent;
}

.blog-band {
  display: grid;
  gap: 2rem;
}

.blog-band__header {
  display: grid;
  gap: 1rem;
  max-width: 56rem;
}

.blog-band__header h2 {
  max-width: 14ch;
  font-size: clamp(2.3rem, 4.2vw, 4rem);
}

.blog-band__header p:not(.kicker) {
  max-width: 44rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.blog-card {
  min-height: 100%;
  padding: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 18px 42px rgba(8, 19, 33, 0.18);
}

.blog-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  color: var(--ink-deep);
  background: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
}

.blog-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.55rem;
}

.blog-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 1.5rem 1rem 2rem;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  color: var(--ink-soft);
  border-top: 1px solid rgba(19, 34, 54, 0.1);
}

.thank-you-page {
  min-height: 100svh;
  color: #fff;
  background: var(--ink-deep);
}

.thank-you {
  position: relative;
  min-height: 100svh;
  padding: clamp(1rem, 4vw, 2.5rem);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.thank-you__image,
.thank-you__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.thank-you__image {
  object-fit: cover;
}

.thank-you__overlay {
  background:
    linear-gradient(90deg, rgba(8, 19, 33, 0.9), rgba(8, 19, 33, 0.62)),
    linear-gradient(180deg, rgba(8, 19, 33, 0.28), rgba(8, 19, 33, 0.82));
}

.thank-you__card {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(26, 40, 60, 0.9), rgba(16, 28, 45, 0.95));
  box-shadow: 0 24px 70px rgba(8, 19, 33, 0.45);
}

.thank-you__brand {
  display: inline-flex;
  margin-bottom: 3rem;
}

.thank-you__kicker {
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent);
}

.thank-you__card h1 {
  max-width: 11ch;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.thank-you__card p:not(.thank-you__kicker) {
  max-width: 34rem;
  margin: 1.1rem 0 1.6rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.62;
}

.thank-you__contact {
  margin: 0 0 1.6rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.thank-you__contact p {
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  line-height: 1.5;
}

.variant-page {
  background: #f8fafc;
}

.variant-page h1 {
  max-width: 12ch;
}

.variant-page .hero__lede {
  max-width: 32rem;
}

.variant-page .hero__copy {
  max-width: 44rem;
}

.variant-hero__grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.hero--conversion .hero__overlay {
  background:
    linear-gradient(90deg, rgba(5, 14, 27, 0.88) 0%, rgba(7, 22, 40, 0.72) 45%, rgba(8, 19, 33, 0.28) 100%),
    linear-gradient(180deg, rgba(8, 19, 33, 0.2) 0%, rgba(8, 19, 33, 0.68) 100%);
}

.hero--trust .hero__overlay {
  background:
    linear-gradient(90deg, rgba(8, 19, 33, 0.82) 0%, rgba(12, 35, 55, 0.66) 45%, rgba(8, 19, 33, 0.48) 100%),
    linear-gradient(180deg, rgba(8, 19, 33, 0.18) 0%, rgba(8, 19, 33, 0.72) 100%);
}

.hero__panel--conversion {
  border-color: rgba(244, 181, 68, 0.3);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(8, 19, 33, 0.5);
}

.signal-strip {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  padding: 1rem;
  color: #fff;
  background: #0f172a;
}

.signal-strip__inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.signal-strip__inner div {
  min-height: 7.5rem;
  padding: 1.2rem;
  display: grid;
  align-content: center;
  gap: 0.35rem;
  background: rgba(15, 23, 42, 0.96);
}

.signal-strip strong,
.signal-strip span {
  display: block;
}

.signal-strip strong {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  line-height: 1.05;
}

.signal-strip span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: start;
}

.proof-grid,
.trust-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.proof-grid article,
.trust-proof__grid article,
.standards-list article {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.proof-grid h3,
.trust-proof__grid h3,
.standards-list h3 {
  margin-bottom: 0.7rem;
  font-size: 1.55rem;
}

.proof-grid p,
.trust-proof__grid p,
.standards-list p {
  margin: 0;
  color: var(--ink-soft);
}

.proof-grid__number,
.standards-list span {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  background: #1e40af;
}

.steps--conversion .step {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}

.steps--conversion .step p {
  color: rgba(255, 255, 255, 0.78);
}

.steps--conversion .step__number {
  color: var(--ink-deep);
  background: var(--accent);
}

.conversion-close {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem 2rem;
  align-items: end;
}

.conversion-close h2 {
  max-width: 16ch;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.conversion-close p:not(.kicker) {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.trust-panel {
  gap: 0.75rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06)),
    rgba(8, 19, 33, 0.54);
}

.trust-panel__metric {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.trust-panel__metric strong {
  min-width: 3.2rem;
  font-family: "Oswald", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--accent);
}

.trust-panel__metric span {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.service-grid--trust .service-card {
  color: var(--ink);
  background: #fff;
  border-color: rgba(19, 34, 54, 0.1);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
}

.service-grid--trust .service-card p {
  color: var(--ink-soft);
}

.standards-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.standards-list {
  display: grid;
  gap: 1rem;
}

.standards-list article {
  background: rgba(255, 255, 255, 0.44);
  border-color: rgba(8, 19, 33, 0.12);
}

.standards-list span {
  background: #0f172a;
}

.trust-proof__grid article {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.trust-proof__grid p {
  color: rgba(255, 255, 255, 0.76);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero__grid,
  .variant-hero__grid,
  .intro__grid,
  .lead-form__grid,
  .phone-field,
  .service-grid,
  .steps,
  .reasons__grid,
  .blog-grid,
  .cta-band__grid,
  .split-section,
  .standards-layout,
  .proof-grid,
  .trust-proof__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__grid {
    align-items: start;
  }
}

@media (max-width: 760px) {
  .topbar__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
    padding-top: 0.85rem;
    padding-bottom: 0.8rem;
  }

  .topnav {
    gap: 0.55rem 1rem;
    justify-content: flex-start;
  }

  .language-switcher {
    flex-wrap: wrap;
    max-width: 100%;
  }

  .topbar__cta {
    margin-left: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 14.5rem;
    padding-bottom: 2.5rem;
  }

  .hero__grid,
  .variant-hero__grid,
  .intro__grid,
  .lead-form__grid,
  .service-grid,
  .steps,
  .reasons__grid,
  .blog-grid,
  .cta-band__grid,
  .signal-strip__inner,
  .split-section,
  .standards-layout,
  .proof-grid,
  .trust-proof__grid,
  .conversion-close {
    grid-template-columns: 1fr;
  }

  .cta-band__actions {
    flex-direction: column;
  }

  .button--wide {
    width: 100%;
  }

  .form-modal__dialog {
    width: min(100%, calc(100% - 1rem));
    max-height: calc(100svh - 1rem);
    padding: 1rem;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 10vw, 3.35rem);
  }

  .hero__lede {
    max-width: 100%;
  }

  .signal-strip {
    padding: 0.75rem;
  }

  .signal-strip__inner div {
    min-height: auto;
  }

  .hero__facts,
  .lead-form-card,
  .service-card,
  .blog-card,
  .step,
  .reasons__grid article {
    padding: 1.15rem;
  }

  .section {
    padding-top: 4.2rem;
    padding-bottom: 4.2rem;
  }

  .footer {
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
