:root {
  color-scheme: light;
  --blue: #1e3a8a;
  --teal: #0d766e;
  --orange: #f97316;
  --yellow: #fbbf24;
  --ink: #152033;
  --muted: #5f6b7c;
  --line: #e4e8ef;
  --soft: #f6f8fb;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(21, 32, 51, 0.12);
  --radius: 8px;
  --container: min(1120px, calc(100vw - 40px));
  font-family: 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: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--white);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(228, 232, 239, 0.86);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.nav {
  width: var(--container);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  min-width: 190px;
}

.brand__mark {
  width: 38px;
  height: auto;
  flex: 0 0 auto;
}

.brand__wordmark {
  width: 188px;
  height: auto;
  flex: 0 0 auto;
  filter: none;
}

.brand--footer {
  min-width: 0;
  margin-bottom: 0.7rem;
}

.brand--footer .brand__mark {
  width: 34px;
}

.brand--footer .brand__wordmark {
  width: 156px;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__links a {
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius);
  color: #2f3a4d;
  font-size: 0.95rem;
  transition: background 180ms ease, color 180ms ease;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  background: var(--soft);
  color: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(30, 58, 138, 0.18);
  transform: translateY(-1px);
}

.button--secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--blue);
}

.button--secondary:hover {
  background: var(--soft);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: min(780px, 78svh);
  overflow: hidden;
  color: var(--ink);
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.82) 52%, rgba(255, 255, 255, 0.78)),
    url("../assets/images/hero-home-bg.webp");
  background-position: center;
  background-size: cover;
}

.hero--home {
  background-position: center;
}

.hero__inner {
  width: var(--container);
  min-height: min(780px, 78svh);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 820px);
  align-content: center;
  padding: 5rem 0 2rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  font-size: clamp(2.35rem, 5.2vw, 4.9rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.hero p,
.page-intro p,
.section__intro,
.lead {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.35vw, 1.2rem);
}

.hero p {
  max-width: 600px;
  margin: 1.35rem 0 1.8rem;
  color: #344258;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero__media-strip {
  position: relative;
  width: min(520px, calc(100vw - 40px));
  margin: 0 max(20px, calc((100vw - 1120px) / 2)) 2rem auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

.hero__media-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.section {
  padding: 5.5rem 0;
}

.section--soft {
  background: var(--soft);
}

.section--contact-form {
  padding-top: 2.25rem;
}

.section__inner,
.page-intro,
.footer__inner {
  width: var(--container);
  margin: 0 auto;
}

.section__heading {
  max-width: 760px;
}

.section__intro {
  max-width: 760px;
  margin: 1rem 0 0;
}

.section-offset {
  margin-top: 2rem;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-item {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.info-item__mark {
  width: 38px;
  height: 6px;
  margin-bottom: 1.2rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(21, 32, 51, 0.06);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card__body {
  padding: 1.25rem;
}

.service-card h2,
.service-card h3 {
  font-size: 1.35rem;
}

.service-card__body p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.section--services-intro {
  padding: 4.5rem 0 3rem;
  background:
    linear-gradient(90deg, var(--white) 0 58%, var(--soft) 58% 100%);
}

.section--services-list {
  padding-top: 0;
}

.services-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}

.services-index-card {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(21, 32, 51, 0.06);
}

.services-index-card__title {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-index-card a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--ink);
  font-weight: 800;
}

.services-index-card span {
  color: var(--blue);
}

.service-dossiers {
  display: grid;
  gap: 1.6rem;
}

.service-detail {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0;
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(21, 32, 51, 0.06);
}

.service-detail img {
  grid-column: 1 / 6;
  grid-row: 1;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: var(--radius) 0 0 var(--radius);
}

.service-detail--right img {
  grid-column: 8 / 13;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.service-detail__body {
  grid-column: 6 / 13;
  grid-row: 1;
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border-left: 6px solid var(--blue);
}

.service-detail--right .service-detail__body {
  grid-column: 1 / 8;
  border-left: 0;
  border-right: 6px solid var(--orange);
}

.service-detail__body .service-detail__label {
  margin: 0;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-detail__body h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.service-detail__body p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.service-detail__examples {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail__examples li,
.request-example {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--ink);
  font-weight: 700;
}

.service-detail__examples li {
  padding: 0.48rem 0.7rem;
  font-size: 0.95rem;
}

.request-examples {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.request-example {
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 1rem;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(21, 32, 51, 0.05);
}

.after-request-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.after-request-steps li {
  position: relative;
  display: grid;
  gap: 0.75rem;
  min-height: 172px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(21, 32, 51, 0.05);
  color: var(--muted);
  line-height: 1.5;
}

.after-request-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.68rem;
  z-index: 1;
  width: 0.36rem;
  height: 0.36rem;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
  transform: translateY(-50%) rotate(45deg);
  background: var(--white);
}

.after-request-steps span {
  color: var(--blue);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 900px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(21, 32, 51, 0.05);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.faq-item summary::after {
  content: "+";
  color: var(--blue);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 1.1rem 1.1rem;
  color: var(--muted);
}

.services-final-cta {
  text-align: left;
  border-left: 6px solid var(--orange);
}

.services-final-cta p {
  margin-left: 0;
  margin-right: 0;
}

.page-hero {
  padding: 5rem 0 3.5rem;
  background-color: var(--soft);
  background-image:
    linear-gradient(90deg, rgba(246, 248, 251, 0.88), rgba(246, 248, 251, 0.82)),
    var(--page-hero-image);
  background-position: center;
  background-size: cover;
}

.page-hero--services {
  --page-hero-image: url("../assets/images/hero-services-bg.webp");
}

.page-hero--function {
  --page-hero-image: url("../assets/images/hero-function-bg.webp");
}

.page-hero--contact {
  --page-hero-image: url("../assets/images/hero-contact-bg.webp");
}

.page-intro {
  display: grid;
  gap: 1rem;
}

.page-intro p {
  max-width: 760px;
  margin: 0;
}

.content-stack {
  display: grid;
  gap: 1.25rem;
  max-width: 880px;
}

.notice {
  border-left: 5px solid var(--orange);
  padding: 1.1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  background: #fff8f1;
}

.notice p {
  margin: 0;
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 320px);
  gap: 1.65rem;
  align-items: start;
}

.section--contact-form .section__inner {
  width: min(1240px, calc(100vw - 40px));
}

.request-form {
  display: grid;
  gap: 1.2rem;
}

.contact-workspace {
  display: grid;
  gap: 1rem;
}

.contact-panel__intro {
  max-width: 680px;
  margin: -0.35rem 0 0.45rem;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.request-form--primary {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(21, 32, 51, 0.06);
}

.request-form--primary h1 {
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  letter-spacing: 0;
}

.form-reassurance {
  margin: -0.25rem 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.05rem 1.15rem;
}

.field {
  display: grid;
  gap: 0.46rem;
}

.field label {
  color: #273449;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 0.92rem 0.95rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(30, 58, 138, 0.55);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
  outline: none;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field--full {
  grid-column: 1 / -1;
}

.help-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.field--honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field-error {
  margin: 0;
  color: #a3261f;
  font-size: 0.9rem;
  font-weight: 700;
}

.field [aria-invalid="true"] {
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.1);
}

.side-note {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.side-note p,
.side-note ul {
  color: var(--muted);
}

.side-note ul {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
}

.cta-card {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 38px rgba(21, 32, 51, 0.08);
  text-align: center;
}

.cta-card--compact {
  max-width: 1040px;
}

.cta-card--aside {
  max-width: 300px;
  justify-self: end;
  padding: 1.2rem;
  border-radius: var(--radius);
  background: #f8fafc;
  box-shadow: 0 12px 28px rgba(21, 32, 51, 0.06);
}

.cta-card--aside .cta-card__icon {
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-width: 3px;
  font-size: 1.15rem;
}

.cta-card--aside h2 {
  font-size: 1.08rem;
  line-height: 1.15;
}

.cta-card--aside p {
  font-size: 0.9rem;
  line-height: 1.62;
}

.cta-card__email {
  margin-top: 1.1rem;
}

.cta-card__icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  place-items: center;
  border: 5px solid var(--orange);
  border-radius: 999px;
  color: var(--orange);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.cta-card h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
}

.cta-card p {
  max-width: 760px;
  margin: 1.3rem auto 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
}

.cta-card a:not(.button) {
  color: var(--blue);
  font-weight: 800;
}

.contact-icon-links {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.contact-icon-link {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-icon-link:hover {
  transform: translateY(-2px);
}

.contact-icon-link svg {
  width: 28px;
  height: 28px;
}

.contact-icon-link--mail {
  color: var(--blue);
  box-shadow: 0 12px 22px rgba(30, 58, 138, 0.22);
}

.contact-icon-link--mail svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-card a.contact-icon-link--whatsapp {
  color: #25d366;
  box-shadow: 0 12px 22px rgba(37, 211, 102, 0.24);
}

.cta-card a.contact-icon-link--whatsapp svg {
  fill: currentColor;
  stroke: none;
}

.cta-card__button {
  min-width: min(300px, 100%);
  margin-top: 2.1rem;
}

.form-status {
  min-height: 48px;
  border-radius: var(--radius);
  color: var(--muted);
}

.form-status[role="status"] {
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--soft);
}

.form-status[role="alert"] {
  padding: 1rem;
  border: 1px solid rgba(180, 35, 24, 0.35);
  background: #fff7f6;
  color: #7a271a;
}

.form-status[data-state="success"] {
  border-color: rgba(24, 128, 56, 0.3);
  background: #f3faf5;
  color: #166534;
}

.form-status p {
  margin: 0;
}

.form-status__retry {
  margin-top: 0.75rem;
  border: 0;
  background: transparent;
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  cursor: pointer;
}

.request-form button[aria-busy="true"] {
  cursor: wait;
  opacity: 0.72;
}

.privacy-notice {
  margin: 0;
  padding: 1rem;
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--soft);
  color: var(--muted);
  font-size: 0.9rem;
}

.privacy-notice a,
.legal-content a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.page-hero--legal {
  min-height: 360px;
}

.legal-content {
  display: grid;
  max-width: 840px;
  gap: 2rem;
}

.legal-content section {
  display: grid;
  gap: 0.75rem;
}

.legal-content h2,
.legal-content p,
.legal-content ul {
  margin: 0;
}

.legal-content ul {
  display: grid;
  gap: 0.6rem;
  padding-left: 1.3rem;
}

.legal-updated {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  padding: 2rem 0;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: start;
}

.footer__links a:hover {
  color: var(--blue);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media (max-width: 920px) {
  .nav__toggle {
    display: inline-block;
  }

  .nav__links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.7rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    padding: 0.85rem;
  }

  .grid--3,
  .grid--4,
  .services-intro-layout,
  .form-shell,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .after-request-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .after-request-steps li:not(:last-child)::after {
    display: none;
  }

  .section--services-intro {
    background: var(--white);
  }

  .service-detail img,
  .service-detail--right img,
  .service-detail__body,
  .service-detail--right .service-detail__body {
    grid-column: 1;
  }

  .service-detail img,
  .service-detail--right img {
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .service-detail__body,
  .service-detail--right .service-detail__body {
    grid-row: 2;
    border-right: 0;
    border-left: 6px solid var(--blue);
  }

  .service-detail img {
    min-height: 240px;
  }

  .request-examples {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__media-strip {
    width: var(--container);
    margin: 0 auto 1.5rem;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 28px, 1120px);
  }

  .brand {
    min-width: 0;
  }

  .brand__mark {
    width: 32px;
  }

  .brand__wordmark {
    width: 148px;
  }

  .hero,
  .hero__inner {
    min-height: 720px;
  }

  .hero__media-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 4rem 0;
  }

  .field-grid,
  .request-examples,
  .after-request-steps,
  .footer__inner {
    grid-template-columns: 1fr;
  }

}

@media (min-width: 921px) and (min-height: 720px) {
  .hero__inner {
    padding-bottom: 7rem;
  }

  .hero__media-strip {
    position: absolute;
    right: max(20px, calc((100vw - 1120px) / 2));
    bottom: 28px;
    margin: 0;
  }
}
.payment-result-page {
  min-height: 100vh;
  background: linear-gradient(145deg, #f8fafc 0%, #eef6f5 100%);
}

.payment-result {
  width: min(100% - 2rem, 42rem);
  min-height: 100vh;
  margin-inline: auto;
  display: grid;
  place-content: center;
  gap: 2rem;
  padding-block: 3rem;
}

.payment-result__logo {
  width: min(15rem, 70vw);
  height: auto;
  margin-inline: auto;
}

.payment-result__card {
  border: 1px solid rgba(30, 58, 138, 0.14);
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 1.5rem 4rem rgba(30, 58, 138, 0.1);
  padding: clamp(1.5rem, 6vw, 3rem);
  text-align: center;
}

.payment-result__card h1 {
  margin: 0.5rem 0 1rem;
  color: #1e3a8a;
  font-size: clamp(1.8rem, 6vw, 2.75rem);
  line-height: 1.1;
}

.payment-result__card p:not(.eyebrow) {
  max-width: 34rem;
  margin: 0 auto;
  color: #334155;
  line-height: 1.7;
}

.payment-result__mark {
  display: grid;
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  place-items: center;
  border-radius: 999px;
  background: #fff7ed;
  color: #c2410c;
  font-size: 1.5rem;
  font-weight: 800;
}

.payment-result__mark--success {
  background: #ecfdf5;
  color: #047857;
}

.payment-result__help {
  margin-top: 1rem !important;
  font-size: 0.925rem;
}
