:root {
  --ink: #101426;
  --ink-2: #1c2340;
  --muted: #667085;
  --soft: #f7f7fb;
  --paper: #ffffff;
  --line: #e6e8f0;
  --violet: #a985ff;
  --violet-2: #7c5cff;
  --violet-dark: #28165c;
  --navy: #0c1022;
  --navy-2: #121936;
  --radius: 8px;
  --shadow: 0 14px 42px rgba(18, 25, 54, .08);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p { overflow-wrap: break-word; }

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  min-height: 92px;
  padding: 0 max(28px, calc((100vw - var(--container)) / 2));
  display: flex;
  align-items: center;
  gap: 30px;
  color: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -.035em;
  white-space: nowrap;
}

.brand-mark {
  width: 40px;
  height: 40px;
  color: #b99cff;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linejoin: round;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 36px;
  color: rgba(255, 255, 255, .84);
  font-size: 15px;
  font-weight: 600;
}

.main-nav a,
.header-cta,
.button {
  transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}

.main-nav a:hover { color: #fff; }

.header-cta {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(185, 156, 255, .45);
  border-radius: 6px;
  background-color: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.header-cta:hover {
  background-color: rgba(185, 156, 255, .12);
  border-color: rgba(185, 156, 255, .8);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 7px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  place-content: center;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 118px max(28px, calc((100vw - var(--container)) / 2)) 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 26%, rgba(169, 133, 255, .22), transparent 28%),
    linear-gradient(90deg, rgba(10, 12, 29, .95) 0%, rgba(17, 20, 48, .86) 38%, rgba(17, 21, 45, .48) 62%, rgba(5, 7, 15, .2) 100%),
    image-set(url("/media/merkant-hero-building.webp") type("image/webp"), url("/media/merkant-hero-building.png") type("image/png"));
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(180deg, transparent, rgba(7, 8, 18, .66));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-copy {
  max-width: 690px;
  padding-top: clamp(6px, 3vh, 38px);
}

.hero-label,
.section-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 12px;
  font-weight: 800;
}

.hero-label {
  display: inline-flex;
  padding: 11px 15px;
  border: 1px solid rgba(185, 156, 255, .34);
  border-radius: 7px;
  background: rgba(255, 255, 255, .08);
  color: #d7c8ff;
}

.hero h1 {
  margin: 26px 0 0;
  max-width: 700px;
  font-size: clamp(46px, 4.45vw, 66px);
  line-height: 1.04;
  letter-spacing: -.055em;
  font-weight: 760;
}

.hero h1 span {
  display: block;
  color: var(--violet);
}

.hero-description {
  max-width: 590px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.68;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.button {
  min-height: 58px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 760;
}

.button:hover {
  border-color: #d8c8ff;
}

.button-primary {
  background-color: #b99cff;
  color: #17112b;
}

.button-ghost {
  color: #fff;
  border-color: rgba(211, 197, 255, .45);
  background-color: transparent;
}

.button-ghost:hover {
  border-color: rgba(211, 197, 255, .8);
  background-color: rgba(255, 255, 255, .08);
}

.hero-stats {
  max-width: 700px;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.hero-stats article {
  min-width: 0;
}

.stat-icon {
  display: block;
  color: #d2c2ff;
  font-size: 18px;
  font-weight: 840;
  letter-spacing: -.02em;
}

.hero-stats strong {
  display: block;
  margin-top: 9px;
  color: #fff;
  font-size: 17px;
  line-height: 1.15;
}

.hero-stats small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  line-height: 1.35;
}

.hero-feature-bar {
  position: relative;
  z-index: 1;
  width: min(100%, 930px);
  margin-top: 36px;
  padding: 21px 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  border: 1px solid rgba(211, 197, 255, .24);
  border-radius: 10px;
  background: rgba(31, 26, 61, .86);
  box-shadow: 0 14px 38px rgba(3, 5, 14, .2);
}

.hero-feature-bar article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: center;
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: #d1c0ff;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-feature-bar h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.22;
  font-weight: 720;
}

.hero-feature-bar p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, .67);
  font-size: 14px;
  line-height: 1.48;
}

.section {
  padding: 104px max(28px, calc((100vw - var(--container)) / 2));
}

.section-heading {
  max-width: 760px;
}

.section-heading.wide {
  max-width: 920px;
}

.section-kicker {
  color: var(--violet-2);
}

.section-heading h2,
.premium-copy h2,
.about-band h2,
.final-cta h2,
.page-hero h1 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.section-heading p:not(.section-kicker),
.premium-copy p,
.about-copy p,
.final-cta p,
.page-hero p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.trust-section {
  background: #fff;
}

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

.trust-grid article,
.service-grid article,
.news-grid article,
.content-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(18, 25, 54, .06);
}

.trust-grid article {
  padding: 28px;
}

.trust-grid h3,
.service-grid h3,
.premium-grid h3,
.process-list h3,
.news-grid h3,
.content-card h2,
.content-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.24;
  letter-spacing: -.025em;
}

.trust-grid p,
.service-grid p,
.premium-grid p,
.process-list p,
.news-grid p,
.content-card p,
.content-card li {
  color: var(--muted);
  line-height: 1.65;
}

.services-section,
.faq-section {
  background: var(--soft);
}

.service-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-grid article {
  min-height: 275px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.service-grid span,
.process-list span,
.news-grid span {
  color: var(--violet-2);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.service-grid h3 {
  margin-top: 34px;
}

.service-grid p {
  margin: 14px 0 24px;
}

.service-grid a {
  margin-top: auto;
  color: var(--violet-2);
  font-size: 14px;
  font-weight: 780;
}

.premium-section {
  margin: 0;
  padding: 104px max(28px, calc((100vw - var(--container)) / 2));
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 56px;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(169, 133, 255, .24), transparent 32%),
    linear-gradient(135deg, #111831, #171239 55%, #090d1f);
}

.premium-copy h2,
.premium-copy p {
  color: #fff;
}

.premium-copy p {
  color: rgba(255, 255, 255, .72);
}

.premium-copy .button {
  margin-top: 28px;
}

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

.premium-grid article {
  min-height: 180px;
  padding: 26px;
  border: 1px solid rgba(211, 197, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
}

.premium-grid h3 {
  color: #fff;
}

.premium-grid p {
  color: rgba(255, 255, 255, .68);
}

.process-list {
  margin-top: 48px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.process-list article {
  display: grid;
  grid-template-columns: 82px .52fr 1fr;
  gap: 28px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.process-list p {
  margin: 0;
}

.about-band {
  padding: 104px max(28px, calc((100vw - var(--container)) / 2));
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 62px;
  background: #f1f2f7;
}

.about-copy p {
  margin-top: 0;
}

.about-copy ul {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
}

.about-copy li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink-2);
  font-weight: 650;
}

.faq-list {
  margin-top: 34px;
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 38px rgba(18, 25, 54, .045);
}

.faq-list summary {
  cursor: pointer;
  padding: 24px 26px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 760;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--violet-2);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 26px 24px;
  color: var(--muted);
  line-height: 1.7;
}

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

.news-grid article {
  min-height: 190px;
  padding: 26px;
}

.news-grid h3 {
  margin-top: 42px;
}

.final-cta {
  margin: 0 max(28px, calc((100vw - var(--container)) / 2)) 104px;
  padding: 76px;
  text-align: center;
  border-radius: 12px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(169, 133, 255, .18), transparent 48%),
    linear-gradient(135deg, #111831, #1a143d);
  box-shadow: var(--shadow);
}

.final-cta .section-kicker,
.final-cta h2,
.final-cta p {
  color: #fff;
}

.final-cta h2,
.final-cta p {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta p {
  color: rgba(255, 255, 255, .72);
}

.final-cta .button {
  margin-top: 28px;
}

.contact-section {
  padding: 104px max(28px, calc((100vw - var(--container)) / 2));
  background: var(--soft);
}

.contact-section .section-heading {
  margin-bottom: 34px;
}

.contact-section .form-status {
  max-width: 760px;
}

.site-footer {
  padding: 34px max(28px, calc((100vw - var(--container)) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
}

.site-footer .brand {
  font-size: 23px;
}

.site-footer .brand-mark {
  width: 34px;
  height: 34px;
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

body.inner-page {
  background: var(--soft);
}

body.inner-page .site-header {
  position: sticky;
  background: #0c1022;
  box-shadow: 0 8px 24px rgba(8, 12, 28, .14);
}

.page-hero {
  padding: 94px max(28px, calc((100vw - var(--container)) / 2)) 66px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 10%, rgba(169, 133, 255, .2), transparent 30%),
    linear-gradient(135deg, #111831, #171239 58%, #090d1f);
}

.page-hero h1,
.page-hero p {
  color: #fff;
  max-width: 820px;
}

.page-hero p {
  color: rgba(255, 255, 255, .72);
}

.page-content {
  padding: 76px max(28px, calc((100vw - var(--container)) / 2)) 104px;
}

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

.content-card {
  padding: 30px;
}

.content-card p,
.content-card ul {
  margin: 16px 0 0;
}

.content-card ul {
  padding-left: 20px;
}

.content-card.full {
  grid-column: 1 / -1;
}

.contact-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
}

.contact-box {
  padding: 34px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-box a {
  color: var(--violet-2);
  font-weight: 760;
}

.contact-hero {
  padding-bottom: 112px;
}

.contact-page {
  padding-top: 0;
  margin-top: -56px;
  position: relative;
  z-index: 2;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  gap: 26px;
  align-items: start;
}

.contact-aside {
  position: sticky;
  top: 104px;
  padding: 34px;
  border: 1px solid rgba(211, 197, 255, .18);
  border-radius: 12px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 12%, rgba(185, 156, 255, .18), transparent 34%),
    linear-gradient(145deg, #111831, #171239 58%, #090d1f);
}

.contact-aside h2 {
  margin: 14px 0 0;
  max-width: 420px;
  font-size: clamp(30px, 3.1vw, 44px);
  line-height: 1.06;
  letter-spacing: -.04em;
}

.contact-aside p:not(.section-kicker) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .7);
  line-height: 1.68;
}

.contact-email-card {
  margin-top: 30px;
  padding: 18px;
  display: grid;
  gap: 7px;
  border: 1px solid rgba(211, 197, 255, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.contact-email-card span {
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.contact-email-card strong {
  color: #fff;
  font-size: 17px;
  overflow-wrap: anywhere;
}

.contact-highlights {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.contact-highlights li {
  padding: 12px 0 12px 24px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .72);
  line-height: 1.5;
}

.contact-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--violet);
}

.form-stack {
  display: grid;
  gap: 22px;
}

.form-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-color: #dfe2ee;
  border-radius: 12px;
  box-shadow: 0 26px 80px rgba(18, 25, 54, .1);
}

.form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--violet-2);
}

.form-card-secondary::before {
  background: #111831;
}

.form-card-header {
  padding: 32px 34px 24px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #fbfbff);
}

.form-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid #ded7ff;
  border-radius: 999px;
  color: var(--violet-2);
  background: #f5f2ff;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.form-card h2 {
  margin: 15px 0 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.form-card-header p {
  margin: 14px 0 0;
  max-width: 560px;
  color: var(--muted);
  line-height: 1.65;
}

.contact-form {
  margin-top: 0;
  padding: 28px 34px 34px;
  display: grid;
  gap: 11px;
}

.contact-form label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .01em;
}

.contact-form label span {
  color: var(--muted);
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dfe2ee;
  border-radius: 8px;
  background: #f8f8fc;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  line-height: 1.45;
  transition: background-color .18s ease, border-color .18s ease, outline-color .18s ease;
}

.contact-form input {
  min-height: 54px;
  padding: 0 16px;
}

.contact-form textarea {
  min-height: 188px;
  padding: 15px 16px;
  resize: vertical;
}

.consultation-form textarea {
  min-height: 130px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9aa1b4;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(124, 92, 255, .14);
  border-color: var(--violet-2);
  background: #fff;
}

.contact-form .button {
  width: 100%;
  margin-top: 14px;
  border: 0;
  cursor: pointer;
  min-height: 56px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin-bottom: 24px;
  padding: 16px 18px;
  border-radius: 7px;
  border: 1px solid #c8ead4;
  background: #f2fbf5;
  color: #185b2c;
  font-weight: 700;
}

.form-status.error {
  border-color: #f3c7c7;
  background: #fff5f5;
  color: #8a1f1f;
}

.back-to-top {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 40;
  min-height: 46px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(185, 156, 255, .55);
  border-radius: 6px;
  background-color: #111831;
  color: #fff;
  font-size: 14px;
  font-weight: 760;
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  transition: opacity .18s ease, visibility .18s ease, border-color .18s ease, background-color .18s ease;
}

.back-to-top[hidden] {
  display: inline-flex;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.back-to-top:hover {
  border-color: #d8c8ff;
  background-color: #171f3c;
}

.back-to-top svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1060px) {
  .site-header {
    min-height: 82px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .main-nav.open {
    position: fixed;
    top: 82px;
    left: 16px;
    right: 16px;
    z-index: 30;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid rgba(211, 197, 255, .2);
    border-radius: 10px;
    background: rgba(12, 16, 34, .98);
    box-shadow: 0 30px 70px rgba(3, 5, 14, .4);
  }

  .main-nav.open a {
    padding: 15px 12px;
    border-radius: 6px;
  }

  .main-nav.open a:hover {
    background: rgba(255, 255, 255, .08);
  }

  .hero {
    min-height: auto;
    padding: 116px 22px 30px;
    background-position: 62% center;
  }

  .hero-copy {
    padding-top: 22px;
  }

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

  .hero-feature-bar,
  .trust-grid,
  .service-grid,
  .premium-section,
  .about-band,
  .news-grid,
  .content-grid,
  .contact-panel,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-aside {
    position: static;
  }

  .hero-feature-bar {
    width: 100%;
  }

  .premium-section,
  .about-band {
    gap: 36px;
  }

  .process-list article {
    grid-template-columns: 64px 1fr;
  }

  .process-list article p {
    grid-column: 2;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer .brand,
  .site-footer nav {
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .brand {
    font-size: 24px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
    background-position: 100% center;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(5, 7, 16, .22);
    pointer-events: none;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 58px);
  }

  .hero-description {
    font-size: 17px;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .hero-stats {
    gap: 16px;
  }

  .hero-feature-bar {
    padding: 18px;
    gap: 18px;
  }

  .hero-feature-bar article {
    grid-template-columns: 54px 1fr;
  }

  .feature-icon {
    width: 54px;
    height: 54px;
  }

  .section,
  .premium-section,
  .about-band,
  .contact-section,
  .page-content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .premium-section,
  .about-band,
  .contact-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .premium-grid,
  .about-copy ul {
    grid-template-columns: 1fr;
  }

  .process-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .process-list article p {
    grid-column: auto;
  }

  .final-cta {
    margin: 0 18px 76px;
    padding: 48px 22px;
  }

  .contact-hero {
    padding-bottom: 86px;
  }

  .contact-page {
    margin-top: -40px;
  }

  .contact-aside,
  .form-card-header,
  .contact-form {
    padding-left: 22px;
    padding-right: 22px;
  }

  .contact-aside,
  .form-card {
    border-radius: 10px;
  }

  .contact-form .button {
    width: 100%;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 14px 22px;
  }

  .back-to-top {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 46px;
    min-height: 46px;
    padding: 0;
  }

  .back-to-top span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}
