:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-2: #eef3f8;
  --text: #111827;
  --muted: #5c687a;
  --muted-2: #7b8798;
  --line: rgba(17, 24, 39, 0.10);
  --primary: #009136;
  --primary-2: #37c85a;
  --primary-dark: #087334;
  --accent: #d7b63c;
  --danger: #e2001b;
  --dark: #07101d;
  --dark-2: #0f172a;
  --glass: rgba(7, 16, 29, 0.76);
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
  --shadow-soft: 0 14px 38px rgba(15, 23, 42, 0.08);
  --radius: 26px;
  --radius-lg: 36px;
  --container: 1160px;
  --header-height: 92px;
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

p,
li,
span,
a,
strong,
small,
label,
input,
textarea,
select,
button {
  overflow-wrap: anywhere;
}

p {
  margin-top: 0;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 2000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-height);
  color: #ffffff;
  background: linear-gradient(135deg, rgba(7, 16, 29, .90), rgba(15, 23, 42, .78));
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: height .25s ease, background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.topbar.is-scrolled {
  height: 78px;
  background: rgba(7, 16, 29, .92);
  border-bottom-color: rgba(255, 255, 255, .14);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .25);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  border-radius: 16px;
  color: #07101d;
  background: linear-gradient(135deg, #d7b63c, #37c85a);
  box-shadow: 0 14px 34px rgba(0, 145, 54, 0.26);
  transition: transform .25s ease, box-shadow .25s ease;
}

.brand:hover .brand-mark {
  transform: rotate(-4deg) scale(1.06);
  box-shadow: 0 18px 42px rgba(0, 145, 54, 0.34);
}

.brand-text {
  font-size: 1.35rem;
  color: #ffffff;
  white-space: nowrap;
}

.nrw-n {
  color: #009136;
}

.nrw-r {
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .25);
}

.nrw-w {
  color: #e2001b;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 760;
}

.nav-menu a:not(.btn) {
  position: relative;
  white-space: nowrap;
  transition: color .2s ease, transform .2s ease;
}

.nav-menu a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), #ffffff, var(--danger));
  transition: width .24s ease;
}

.nav-menu a:not(.btn):hover,
.nav-menu a:not(.btn):focus-visible,
.nav-menu a.active {
  color: #ffffff;
  transform: translateY(-1px);
}

.nav-menu a:not(.btn):hover::after,
.nav-menu a:not(.btn):focus-visible::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 100%;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
  cursor: pointer;
  will-change: transform;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

.btn-primary {
  color: #07101d;
  background: linear-gradient(135deg, #d7b63c, #37c85a);
  box-shadow: 0 16px 42px rgba(0, 145, 54, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 22px 54px rgba(0, 145, 54, 0.34);
}

.btn-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
  backdrop-filter: blur(12px);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .28);
}

.btn-small {
  min-height: 40px;
  padding: 0 16px;
  color: #07101d;
  background: #ffffff;
}

.hero,
.subhero,
.legal-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 10% 18%, rgba(0, 145, 54, 0.38), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(226, 0, 27, 0.16), transparent 30%),
    linear-gradient(135deg, #07101d 0%, #0f172a 48%, #123227 100%);
}

.hero {
  min-height: 100vh;
  padding: calc(var(--header-height) + 92px) 0 110px;
}

.subhero,
.legal-hero {
  padding: calc(var(--header-height) + 92px) 0 94px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 84%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -28%;
  width: min(760px, 58vw);
  height: min(760px, 58vw);
  border-radius: 50%;
  background: rgba(0, 145, 54, 0.28);
  filter: blur(12px);
}

.hero-grid,
.subhero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 56px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(330px, .94fr);
}

.subhero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, .74fr);
}

.hero-content,
.hero-panel,
.subhero-card,
.split-content,
.service-box,
.card,
.cta-box,
.steps-card,
.timeline-item,
.detail-card,
.legal-card {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: #78f0a0;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.045em;
  overflow-wrap: normal;
}

h1 {
  max-width: 920px;
  font-size: clamp(2.7rem, 5.7vw, 5.25rem);
}

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

h3 {
  font-size: clamp(1.28rem, 2vw, 1.55rem);
}

.hero-text {
  max-width: 740px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(1.06rem, 1.7vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span {
  max-width: 100%;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: rgba(255, 255, 255, .80);
  background: rgba(255, 255, 255, .07);
  font-size: .9rem;
  font-weight: 780;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.trust-row span:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .24);
}

.hero-panel,
.subhero-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .07)),
    rgba(255, 255, 255, .08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
  backdrop-filter: blur(22px);
  padding: clamp(22px, 4vw, 34px);
  transform-style: preserve-3d;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.tilt-card:hover {
  transform: perspective(900px) rotateX(2deg) rotateY(-2deg) translateY(-6px);
  border-color: rgba(255, 255, 255, .24);
  box-shadow: 0 34px 96px rgba(0, 0, 0, .36);
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.panel-logo {
  min-width: 0;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 950;
  letter-spacing: -.04em;
}

.panel-top span {
  color: rgba(255, 255, 255, .58);
  font-size: .9rem;
  font-weight: 750;
  text-align: right;
}

.panel-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 24px 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  background: rgba(255, 255, 255, .08);
}

.status-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  margin-top: 8px;
  border-radius: 50%;
  background: #37c85a;
  box-shadow: 0 0 0 7px rgba(55, 200, 90, .12);
}

.panel-feature strong,
.panel-note strong,
.subhero-card strong {
  display: block;
  color: #fff;
  font-size: 1.04rem;
  line-height: 1.35;
}

.panel-feature p,
.panel-note p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: .96rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.metric-grid a {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .08);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.metric-grid a:hover,
.metric-grid a:focus-visible {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .13);
  border-color: rgba(255, 255, 255, .24);
}

.metric-grid strong {
  display: block;
  color: #d7b63c;
  font-size: 1.32rem;
  line-height: 1.2;
}

.metric-grid span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .80);
  font-size: .92rem;
  font-weight: 760;
}

.panel-note {
  margin-top: 14px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(5, 12, 24, .36);
}

.subhero-card h2 {
  margin-bottom: 20px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, .76);
  font-weight: 720;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #78f0a0;
  font-weight: 950;
}

.section {
  padding: 96px 0;
}

.section-soft {
  background:
    radial-gradient(circle at 14% 20%, rgba(0, 145, 54, .10), transparent 28%),
    var(--surface-2);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 52px;
  align-items: start;
}

.intro .eyebrow,
.section:not(.dark) .eyebrow,
.cta .eyebrow,
.legal-content .eyebrow {
  color: var(--primary);
}

.intro-text p,
.section-head p,
.split-content p,
.domain-grid p,
.cta-content p {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-text p:last-child,
.split-content p:last-of-type,
.domain-grid p:last-child {
  margin-bottom: 0;
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.cards {
  display: grid;
  gap: 20px;
}

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

.card,
.detail-card,
.timeline-item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(24px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.card::before,
.detail-card::before,
.timeline-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 145, 54, .08), transparent 38%);
  opacity: 0;
  transition: opacity .24s ease;
  pointer-events: none;
}

.card:hover,
.card:focus-visible,
.detail-card:hover,
.timeline-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 68px rgba(15, 23, 42, .14);
  border-color: rgba(0, 145, 54, .24);
}

.card:hover::before,
.detail-card:hover::before,
.timeline-item:hover::before {
  opacity: 1;
}

.icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 58px;
  margin-bottom: 22px;
  border-radius: 18px;
  color: var(--primary-dark);
  background: linear-gradient(135deg, rgba(215, 182, 60, .22), rgba(0, 145, 54, .13));
  font-size: .98rem;
  font-weight: 950;
  transition: transform .24s ease;
}

.card:hover .icon {
  transform: rotate(-5deg) scale(1.04);
}

.card p,
.card li,
.timeline-item p,
.service-box p,
.steps-card p,
.detail-card p {
  color: var(--muted);
}

.card p {
  margin: 16px 0 0;
}

.card-link {
  margin-top: auto;
  padding-top: 22px;
  color: var(--primary-dark);
  font-weight: 900;
}

.card-link::after {
  content: " →";
  transition: margin-left .2s ease;
}

.card:hover .card-link::after {
  margin-left: 6px;
}

.highlight-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 145, 54, .12), transparent 30%),
    #ffffff;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  gap: 38px;
  align-items: center;
}

.split-content .btn {
  margin-top: 8px;
}

.service-box {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.service-box h3 {
  margin-bottom: 18px;
}

.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.service-row span {
  color: #273244;
  font-weight: 760;
}

.service-row strong {
  color: var(--primary-dark);
  text-align: right;
}

.service-box p {
  margin: 22px 0 0;
}

.dark {
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 145, 54, 0.20), transparent 30%),
    linear-gradient(135deg, var(--dark), var(--dark-2));
}

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

.value-grid div {
  min-width: 0;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.value-grid div:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .22);
}

.value-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1.2;
  letter-spacing: -.04em;
}

.value-grid span {
  color: rgba(255, 255, 255, .72);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.timeline-item span,
.detail-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 16px;
  color: #07101d;
  background: linear-gradient(135deg, #d7b63c, #37c85a);
  font-size: .95rem;
  font-weight: 950;
}

.timeline-item p,
.detail-card p {
  margin: 14px 0 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.cta {
  padding-top: 32px;
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 42px;
  align-items: start;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 10% 20%, rgba(215, 182, 60, .14), transparent 28%),
    #ffffff;
  box-shadow: var(--shadow);
}

.contact-info {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-info a {
  width: fit-content;
  max-width: 100%;
  color: var(--primary-dark);
  font-weight: 850;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #273244;
  font-weight: 820;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  background: #f8fafc;
  color: var(--text);
  outline: none;
  transition: border .18s ease, box-shadow .18s ease, background .18s ease, transform .18s ease;
}

input::placeholder,
textarea::placeholder {
  color: #8a95a6;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(0, 145, 54, .55);
  box-shadow: 0 0 0 4px rgba(0, 145, 54, .10);
  background: #ffffff;
  transform: translateY(-1px);
}

textarea {
  resize: vertical;
}

.contact-form small {
  color: var(--muted-2);
}

.legal-hero {
  min-height: 420px;
}

.legal-content {
  max-width: 940px;
}

.legal-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.legal-card h2 {
  margin-top: 30px;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  color: var(--muted);
}

.footer {
  padding: 58px 0 24px;
  color: rgba(255, 255, 255, .74);
  background: #070b13;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.footer-brand .brand-text {
  color: #ffffff;
}

.footer p {
  max-width: 420px;
  margin: 18px 0 0;
}

.footer h4 {
  margin: 0 0 14px;
  color: #ffffff;
}

.footer a {
  display: block;
  margin: 8px 0;
  transition: color .2s ease, transform .2s ease;
}

.footer a.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin: 0 0 18px 0;
}

.footer a.footer-brand .brand-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
}

.footer a.footer-brand .brand-text {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  color: #ffffff;
  font-size: 1.35rem;
  white-space: nowrap;
}

.footer a:hover,
.footer a:focus-visible {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

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

@media (max-width: 1120px) {
  .nav-menu {
    gap: 14px;
    font-size: .88rem;
  }

  .nav-menu .btn-small {
    display: none;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 82px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    left: 20px;
    right: 20px;
    top: calc(var(--header-height) + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - 110px);
    overflow: auto;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    background: rgba(7, 16, 29, .96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .32);
    backdrop-filter: blur(18px);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 13px 12px;
  }

  .nav-menu .btn-small {
    display: inline-flex;
    margin-top: 8px;
  }

  .hero-grid,
  .subhero-grid,
  .intro,
  .split,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: calc(var(--header-height) + 54px) 0 78px;
  }

  .subhero,
  .legal-hero {
    padding: calc(var(--header-height) + 54px) 0 74px;
  }

  .hero-panel,
  .subhero-card {
    max-width: 720px;
  }

  .cards.three,
  .value-grid,
  .timeline,
  .detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand-text {
    font-size: 1.12rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  h1 {
    font-size: clamp(2.28rem, 12vw, 3.3rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-row span {
    white-space: normal;
  }

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

  .panel-top,
  .service-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-row strong {
    text-align: left;
  }

  .section {
    padding: 68px 0;
  }

  .cta-box {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  padding: 14px 16px;
  border-radius: 16px;
  margin-bottom: 18px;
  font-weight: 800;
}

.form-status-success {
  color: #065f46;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.28);
}

.form-status-captcha,
.form-status-spam,
.form-status-email,
.form-status-missing,
.form-status-error {
  color: #7f1d1d;
  background: rgba(226, 0, 27, 0.10);
  border: 1px solid rgba(226, 0, 27, 0.22);
}

.protected-mail {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--primary, #009136);
  font-weight: 850;
  transition: color .2s ease, transform .2s ease;
}

.protected-mail:hover,
.protected-mail:focus-visible,
.protected-mail.is-visible-mail {
  color: #37c85a;
  transform: translateX(3px);
}