:root {
  --ci-red: #e2001a;
  --ci-red-strong: #ff1f37;
  --ci-green: #1f8f62;
  --ci-green-soft: #2fba7f;
  --ci-dark: #111111;
  --ci-dark-2: #2b2e31;
  --ci-light: #f1f1f1;
  --ci-muted: #cccccc;
  --ci-border: rgba(255, 255, 255, 0.16);
  --ci-success: #9adfb3;
  --text-strong: #f4f6f8;
  --text-body: #dde2e7;
  --text-muted: #bdc4cc;

  --font-head: "Roboto Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Roboto", "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: min(1220px, calc(100vw - 3rem));

  --shadow-sm: 0 10px 26px rgba(0, 0, 0, 0.26);
  --shadow-lg: 0 28px 70px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  scrollbar-color: rgba(226, 0, 26, 0.65) rgba(17, 17, 17, 0.95);
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: rgba(17, 17, 17, 0.95);
}

*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(226, 0, 26, 0.95), rgba(226, 0, 26, 0.56));
  border-radius: 999px;
  border: 2px solid rgba(17, 17, 17, 0.95);
}

body {
  margin: 0;
  color: var(--text-body);
  background: linear-gradient(180deg, #0d0e10 0%, #171a1c 100%);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-head);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  color: var(--text-strong);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 3000;
  background: var(--ci-red);
  color: #fff;
  padding: 0.72rem 0.95rem;
  border-radius: 0 0 10px 0;
}

.skip-link:focus {
  left: 0;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(3.1rem, 6vw, 5.2rem) 0;
  scroll-margin-top: 110px;
}

.section h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.7rem);
}

.section-lead {
  margin-top: 1rem;
  max-width: 70ch;
  color: var(--text-muted);
  font-size: clamp(1.03rem, 1.45vw, 1.2rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1300;
  min-height: 88px;
  backdrop-filter: blur(9px) saturate(120%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.95), rgba(17, 17, 17, 0.78));
  transition: min-height 0.24s ease, background 0.24s ease, box-shadow 0.24s ease, backdrop-filter 0.24s ease;
}

.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 3vw, 2.3rem);
  align-items: center;
  padding-block: 0.55rem;
  transition: min-height 0.24s ease, gap 0.24s ease, padding-block 0.24s ease;
}

.logo-link {
  display: block;
  width: clamp(162px, 18vw, 235px);
  transition: width 0.24s ease;
}

.logo-link img {
  width: 100%;
  height: auto;
}

.header-compact-actions {
  margin-left: auto;
  display: none;
  align-items: center;
  gap: 0.45rem;
  transition: gap 0.2s ease;
}

.mobile-lang-wrap {
  position: relative;
  display: none;
  align-items: center;
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mobile-lang-wrap::after {
  content: "";
  position: absolute;
  right: 0.72rem;
  top: 50%;
  width: 0.42rem;
  height: 0.42rem;
  border-right: 2px solid rgba(236, 240, 245, 0.84);
  border-bottom: 2px solid rgba(236, 240, 245, 0.84);
  transform: translateY(-58%) rotate(45deg);
  pointer-events: none;
}

.mobile-lang-wrap:focus-within {
  border-color: rgba(226, 0, 26, 0.72);
  box-shadow: 0 0 0 2px rgba(226, 0, 26, 0.26);
}

.mobile-lang-select {
  display: block;
  width: 100%;
  min-height: 42px;
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #f1f1f1;
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0.46rem 1.7rem 0.46rem 0.78rem;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
}

.mobile-lang-select:focus-visible {
  outline: none;
}

.mobile-lang-select option {
  background: #111;
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--ci-border);
  background: rgba(255, 255, 255, 0.03);
  padding: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: width 0.24s ease, height 0.24s ease, border-radius 0.24s ease, background-color 0.24s ease;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.menu-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-left: clamp(2.8rem, 5.5vw, 5rem);
  min-width: 0;
  transition: margin-left 0.24s ease;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.95rem, 1.95vw, 1.65rem);
}

.main-nav a {
  font-family: var(--font-head);
  font-size: 1.04rem;
  text-decoration: none;
  color: #d2d7dd;
  white-space: nowrap;
  transition: font-size 0.24s ease, color 0.24s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: gap 0.24s ease;
}

.header-main-cta {
  transition: padding 0.24s ease, font-size 0.24s ease;
}

.site-header.is-compact {
  min-height: 72px;
  backdrop-filter: blur(11px) saturate(132%);
  background: linear-gradient(180deg, rgba(13, 14, 16, 0.96), rgba(13, 14, 16, 0.86));
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.26);
}

.site-header.is-compact .header-inner {
  min-height: 72px;
  gap: clamp(1.1rem, 2.2vw, 1.7rem);
  padding-block: 0.38rem;
}

.site-header.is-compact .logo-link {
  width: clamp(136px, 14vw, 186px);
}

.site-header.is-compact .menu-panel {
  margin-left: clamp(1.9rem, 3.5vw, 3.4rem);
}

.site-header.is-compact .main-nav a {
  font-size: 0.98rem;
  color: #c8ced5;
}

.site-header.is-compact .header-actions {
  gap: 0.58rem;
}

.site-header.is-compact .header-main-cta {
  font-size: 0.95rem;
  padding: 0.72rem 1.04rem;
}

.language-switcher {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.22rem;
  border-radius: 999px;
  border: 1px solid var(--ci-border);
  background: rgba(255, 255, 255, 0.03);
}

.lang-btn {
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #d6d6d6;
  font-family: var(--font-head);
  font-size: 0.84rem;
  min-width: 34px;
  padding: 0.35rem 0.48rem;
  cursor: pointer;
}

.lang-btn:hover,
.lang-btn:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.lang-btn.active {
  color: #fff;
  background: var(--ci-red);
}

.hero {
  min-height: min(940px, 100vh);
  display: flex;
  align-items: center;
  padding-top: clamp(2.8rem, 5.5vw, 4.6rem);
  padding-bottom: clamp(2.2rem, 5vw, 4rem);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 14%, rgba(226, 0, 26, 0.16), transparent 35%),
    linear-gradient(96deg, rgba(11, 13, 15, 0.9) 0%, rgba(11, 13, 15, 0.74) 49%, rgba(11, 13, 15, 0.86) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.kicker {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(19, 21, 24, 0.62);
  padding: 0.58rem 1rem;
  font-family: var(--font-head);
  font-size: 0.96rem;
  margin-bottom: 1.15rem;
  color: var(--text-body);
}

.hero h1 {
  max-width: 15ch;
  font-size: clamp(2.1rem, 5.6vw, 4.9rem);
  line-height: 0.99;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.hero-subline {
  margin-top: 1.08rem;
  max-width: 62ch;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.44;
  color: var(--text-body);
  font-weight: 480;
}

.qualifier {
  margin-top: 1rem;
  max-width: 63ch;
  color: var(--text-muted);
  font-size: 1rem;
}

.hero-cta-row {
  margin-top: 1.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.trust-list {
  margin-top: 1.3rem;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.62rem;
}

.trust-list li {
  position: relative;
  min-height: 52px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 0.48rem 0.7rem 0.48rem 0.92rem;
  background: linear-gradient(180deg, rgba(18, 20, 22, 0.72), rgba(18, 20, 22, 0.6));
  font-size: 0.9rem;
  color: #d7dce2;
  line-height: 1.28;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(47, 186, 127, 0.95), rgba(47, 186, 127, 0.45));
}

.hero-quick-links {
  margin-top: 0.86rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

.hero-quick-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.98rem;
}

.btn {
  appearance: none;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.86rem 1.24rem;
  font-family: var(--font-head);
  font-size: 1.04rem;
  font-weight: 520;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--ci-red);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--ci-red-strong);
}

.btn-secondary {
  color: #edf0f3;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06));
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.17);
}

.btn-ghost {
  color: #e4e8ed;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.34);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.btn-call {
  background: rgba(154, 223, 179, 0.12);
  border-color: rgba(154, 223, 179, 0.5);
  color: #e6f8ee;
}

.btn-call:hover,
.btn-call:focus-visible {
  background: rgba(154, 223, 179, 0.2);
}

.section-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(1.3rem, 3.6vw, 2.8rem);
  align-items: center;
}

.section-grid.reversed {
  grid-template-columns: 0.96fr 1.04fr;
}

.section-state {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.32rem 0.72rem;
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.problem-state {
  color: #ffc9d2;
  border-color: rgba(226, 0, 26, 0.44);
  background: rgba(226, 0, 26, 0.14);
}

.solution-state {
  color: #b8f3d8;
  border-color: rgba(47, 186, 127, 0.42);
  background: rgba(31, 143, 98, 0.18);
}

.image-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-sm);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.problem {
  background:
    radial-gradient(circle at 12% 20%, rgba(226, 0, 26, 0.12), transparent 48%),
    linear-gradient(180deg, rgba(43, 46, 49, 0.72), rgba(17, 17, 17, 0.8)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 2px, transparent 2px, transparent 10px);
}

.problem-list {
  margin: 1.2rem 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.problem-list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--text-body);
}

.problem-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--ci-red);
  box-shadow: 0 0 0 4px rgba(226, 0, 26, 0.18);
}

.problem-conclusion {
  font-family: var(--font-head);
  font-size: 1.04rem;
}

.solution {
  background:
    radial-gradient(circle at 82% 18%, rgba(47, 186, 127, 0.2), transparent 39%),
    linear-gradient(180deg, rgba(17, 17, 17, 0.95), rgba(43, 46, 49, 0.64));
}

.feature-grid {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.82rem;
}

.feature-card {
  position: relative;
  border: 1px solid rgba(47, 186, 127, 0.32);
  background: linear-gradient(180deg, rgba(12, 26, 20, 0.56), rgba(17, 17, 17, 0.56));
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem 1rem 1.22rem;
}

.feature-card::before {
  content: "";
  position: absolute;
  left: 0.66rem;
  top: 22%;
  bottom: 22%;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(47, 186, 127, 0.96), rgba(47, 186, 127, 0.5));
}

.feature-card h3 {
  font-size: 1.16rem;
}

.feature-card p {
  margin-top: 0.4rem;
  color: var(--ci-muted);
  font-size: 1rem;
}

.benefits {
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.99), rgba(20, 22, 24, 0.92));
}

.benefit-grid {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.86rem;
}

.benefit-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  padding: 1.2rem;
}

.metric {
  display: inline-block;
  font-family: var(--font-head);
  color: #f9d98f;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}

.benefit-card h3 {
  margin-top: 0.56rem;
  font-size: 1.2rem;
}

.benefit-card p {
  margin-top: 0.46rem;
  color: var(--ci-muted);
  font-size: 1rem;
}

.cta {
  overflow: clip;
}

.cta-background {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.cta-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.94), rgba(17, 17, 17, 0.86));
}

.cta-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.86rem;
}

.cta-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  background: rgba(17, 17, 17, 0.72);
  padding: 1.16rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cta-card.primary {
  border-color: rgba(226, 0, 26, 0.74);
  box-shadow: 0 0 0 1px rgba(226, 0, 26, 0.5), var(--shadow-sm);
}

.cta-card h3 {
  font-size: 1.15rem;
}

.cta-card p {
  color: var(--text-muted);
  flex-grow: 1;
}

.call-now {
  margin-top: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(154, 223, 179, 0.5);
  background: rgba(154, 223, 179, 0.11);
  color: #e8f9ef;
  text-decoration: none;
  padding: 0.72rem 1.05rem;
  font-family: var(--font-head);
  min-height: 48px;
}

.call-now strong {
  font-size: 1.04rem;
  letter-spacing: 0.01em;
}

.site-footer {
  padding: 1.7rem 0 2rem;
  background: #0a0a0b;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  align-items: center;
}

.site-footer h2 {
  font-size: 1rem;
}

.site-footer p,
.site-footer a {
  color: var(--ci-muted);
  text-decoration: none;
}

.site-footer nav {
  display: flex;
  gap: 1rem;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: #fff;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.2rem 0;
}

.copyright {
  font-size: 0.9rem;
}

.mobile-sticky-cta {
  display: none;
}

@keyframes ctaShimmerSweep {
  0% {
    transform: translateX(-155%) skewX(-26deg);
    opacity: 0;
  }
  12% {
    opacity: 0.7;
  }
  28% {
    transform: translateX(165%) skewX(-26deg);
    opacity: 0;
  }
  100% {
    transform: translateX(165%) skewX(-26deg);
    opacity: 0;
  }
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1600;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(7px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.lead-modal {
  width: min(640px, calc(100vw - 1.8rem));
  max-height: min(90vh, 790px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #141517 0%, #1d2023 100%);
  box-shadow: var(--shadow-lg);
  padding: 1.18rem 1.18rem 1.24rem;
}

.modal-close {
  float: right;
  margin: -0.2rem -0.1rem 0 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #f2f2f2;
  font-size: 1.3rem;
  cursor: pointer;
}

#lead-form {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.56rem;
}

#lead-form label {
  font-family: var(--font-head);
  font-size: 0.87rem;
}

#lead-form input,
#lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.24);
  color: #fff;
  padding: 0.66rem 0.74rem;
  font: inherit;
}

#lead-form textarea {
  resize: vertical;
  min-height: 6.5rem;
}

.microcopy {
  font-size: 0.84rem;
  color: var(--ci-muted);
}

.fallback {
  margin-top: 0.2rem;
}

.success-hint {
  display: none;
  color: var(--ci-success);
  font-family: var(--font-head);
  font-size: 0.93rem;
}

.success-hint.visible {
  display: block;
}

:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 1rem;
  }

  .header-main-cta {
    padding-inline: 0.9rem;
    font-size: 0.97rem;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 82px;
  }

  .header-inner {
    min-height: 82px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .logo-link {
    width: min(150px, 40vw);
  }

  .header-compact-actions {
    display: inline-flex;
  }

  .mobile-lang-wrap {
    display: inline-flex;
    min-width: 66px;
  }

  .mobile-lang-select {
    min-height: 40px;
    font-size: 0.84rem;
    padding: 0.42rem 1.58rem 0.42rem 0.62rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .menu-panel {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    margin-left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
    padding: 0.95rem 1.05rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.98), rgba(17, 17, 17, 0.95));
    box-shadow: var(--shadow-sm);
  }

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

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.9rem 1rem;
  }

  .main-nav a {
    font-size: 1.02rem;
  }

  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .header-actions .language-switcher {
    display: none;
  }

  .header-main-cta {
    width: 100%;
    text-align: center;
  }

  .section-grid,
  .section-grid.reversed,
  .benefit-grid,
  .cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    align-items: flex-start;
  }

  .hero {
    min-height: auto;
    padding-top: 1.55rem;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-subline {
    font-size: clamp(1.1rem, 2.6vw, 1.34rem);
  }

  .call-now {
    width: 100%;
    justify-content: space-between;
  }

  .site-header.is-compact {
    min-height: 68px;
  }

  .site-header.is-compact .header-inner {
    min-height: 68px;
    padding-block: 0.34rem;
  }

  .site-header.is-compact .logo-link {
    width: min(128px, 34vw);
  }

  .site-header.is-compact .header-compact-actions {
    gap: 0.32rem;
  }

  .site-header.is-compact .mobile-lang-wrap {
    min-height: 38px;
  }

  .site-header.is-compact .mobile-lang-select {
    min-height: 36px;
    font-size: 0.8rem;
    padding-top: 0.34rem;
    padding-bottom: 0.34rem;
  }

  .site-header.is-compact .menu-toggle {
    width: 42px;
    height: 38px;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(1220px, calc(100vw - 2rem));
  }

  body {
    padding-bottom: 86px;
  }

  .hero {
    padding-top: 1.1rem;
  }

  .mobile-lang-select {
    min-height: 38px;
    font-size: 0.84rem;
    padding: 0.4rem 1.52rem 0.4rem 0.58rem;
  }

  .kicker {
    font-size: 0.89rem;
    margin-bottom: 0.95rem;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 10.2vw, 3.15rem);
  }

  .hero-subline {
    margin-top: 0.9rem;
    font-size: 1.07rem;
    line-height: 1.4;
  }

  .qualifier {
    margin-top: 0.8rem;
    font-size: 0.98rem;
  }

  .hero-cta-row .btn {
    width: 100%;
  }

  .hero-quick-links .hero-quick-btn {
    width: 100%;
  }

  .trust-list {
    margin-top: 1.1rem;
    grid-template-columns: 1fr;
    gap: 0.48rem;
  }

  .trust-list li {
    font-size: 0.92rem;
    min-height: 46px;
    padding: 0.42rem 0.64rem 0.42rem 0.84rem;
  }

  .section {
    padding: 2.8rem 0;
  }

  .section h2 {
    font-size: clamp(1.55rem, 7vw, 2.25rem);
  }

  .section-lead,
  .feature-card p,
  .benefit-card p,
  .cta-card p,
  .problem-list li {
    font-size: 1rem;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1400;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.6rem;
    padding: 0.62rem 0.85rem calc(0.62rem + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.96), rgba(17, 17, 17, 0.99));
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.36);
  }

  .mobile-sticky-cta .btn {
    min-height: 48px;
    font-size: 1.08rem;
    font-weight: 700;
    justify-content: center;
    display: inline-flex;
    align-items: center;
  }

  .mobile-sticky-cta .btn-primary {
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }

  .mobile-sticky-cta .btn-primary::after {
    content: "";
    position: absolute;
    top: -35%;
    bottom: -35%;
    width: 32%;
    left: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(224, 232, 236, 0.8), rgba(255, 255, 255, 0));
    filter: blur(1px);
    animation: ctaShimmerSweep 5.2s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
  }

  .mobile-sticky-cta .btn-call {
    padding-inline: 0.85rem;
    font-size: 1rem;
    font-weight: 580;
  }

  .call-now {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
