:root {
  --ink: #08111f;
  --muted: #617086;
  --line: #dfe6ef;
  --soft: #f4f7fb;
  --navy: #081120;
  --navy-2: #101a2d;
  --blue: #1f6fff;
  --green: #36e3a2;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(8, 17, 32, 0.14);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body.modal-open {
  width: 100%;
}

main,
section {
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  main,
  section {
    overflow-x: hidden;
  }
}

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

.entry-title,
.page-title,
.elementor-page-title {
  display: none !important;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 18px max(18px, calc((100% - var(--max)) / 2));
  border: 1px solid transparent;
  border-radius: 0;
  overflow: visible;
  isolation: isolate;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: translateX(-50%);
  transition: all 220ms ease;
}

body.admin-bar .site-header {
  top: 32px;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0) 52%),
    linear-gradient(90deg, rgba(31, 111, 255, 0.12), transparent 34%, rgba(54, 227, 162, 0.08));
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.site-header.is-scrolled {
  top: 16px;
  width: min(var(--max), calc(100% - 32px));
  padding: 10px 12px;
  border-color: rgba(8, 17, 32, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 22px 70px rgba(8, 17, 32, 0.12);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
}

body.admin-bar .site-header.is-scrolled {
  top: 48px;
}

.site-header.is-scrolled::before {
  opacity: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  padding: 0;
  background: transparent;
  box-shadow:
    0 0 0 1px rgba(223, 230, 239, 0.95),
    0 10px 26px rgba(8, 17, 32, 0.16);
}

.nav {
  display: none;
  align-items: center;
  gap: 24px;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 600;
}

.nav a {
  transition: color 180ms ease;
}

.nav a:hover {
  color: var(--blue);
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #0757d8);
  box-shadow: 0 12px 28px rgba(31, 111, 255, 0.26);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
}

.mobile-menu-toggle,
.mobile-menu-panel {
  display: none;
}

.section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 84px 0;
}

.hero {
  display: grid;
  gap: 46px;
  min-height: 92vh;
  padding-top: 138px;
  padding-bottom: 58px;
  align-items: center;
}

.hero-content {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 6vw, 72px);
  border: 1px solid rgba(31, 111, 255, 0.16);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(244, 247, 251, 0.72)),
    rgba(255, 255, 255, 0.72);
  box-shadow: none;
  transform: perspective(1100px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(31, 111, 255, 0.12), transparent 40%),
    linear-gradient(300deg, rgba(54, 227, 162, 0.14), transparent 34%);
  pointer-events: none;
}

.hero-content > * {
  position: relative;
  z-index: 1;
}

.hero-content:hover,
.hero-content.is-hovered {
  border-color: rgba(31, 111, 255, 0.26);
  box-shadow: none;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 1040px;
  margin-bottom: 20px;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(54px, 5.5vw, 88px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(54px, 5.5vw, 88px);
  font-weight: 390;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-subtitle {
  max-width: 690px;
  color: #4b5870;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #0757d8);
  box-shadow: 0 18px 40px rgba(31, 111, 255, 0.26);
}

.btn-secondary {
  min-width: 230px;
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.hero-actions .btn {
  flex: 0 0 auto;
}

.btn-secondary.light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.split-layout,
.section-heading {
  display: grid;
  gap: 24px;
}

.split-layout > p,
.section-heading > p,
.note-panel > p,
.final-cta p {
  color: var(--muted);
  font-size: 1.05rem;
}

.dark-band {
  width: 100%;
  max-width: none;
  overflow-x: hidden;
  padding: 92px max(16px, calc((100% - var(--max)) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 78% 20%, rgba(31, 111, 255, 0.24), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.dark-band p {
  color: #c1ccdb;
}

.problem .split-layout,
.dark-band .split-layout {
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.problem .split-layout > p,
.dark-band .split-layout > p {
  max-width: 760px;
}

.cards-grid {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.solution-card {
  position: relative;
  min-height: 240px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  touch-action: manipulation;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.solution-card:hover {
  transform: translateY(-4px);
}

.solution-card:focus-visible {
  outline: 3px solid rgba(31, 111, 255, 0.32);
  outline-offset: 4px;
}

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

.card-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(8, 17, 32, 0.05);
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 180ms ease, box-shadow 180ms ease;
}

.card-front {
  transform: rotateY(0deg);
}

.card-back {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(31, 111, 255, 0.28), rgba(54, 227, 162, 0.1)),
    var(--navy);
  transform: rotateY(180deg);
}

.card-back p {
  color: #d4deec;
}

.solution-card:hover .card-face {
  border-color: rgba(31, 111, 255, 0.28);
  box-shadow: 0 24px 70px rgba(8, 17, 32, 0.1);
}

.solution-card.is-flipped .card-front {
  transform: rotateY(180deg);
}

.solution-card.is-flipped .card-back {
  transform: rotateY(360deg);
}

.flip-hint {
  margin-top: auto;
  padding-top: 18px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border-radius: 50%;
  color: var(--blue);
  background: #eef5ff;
  font-size: 0.78rem;
  font-weight: 900;
}

.process {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-list {
  display: grid;
  gap: 12px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.process-list span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
}

.process-list strong {
  font-size: 1.03rem;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.benefits {
  padding-bottom: 42px;
}

.benefits-grid {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.benefits-grid div,
.fit-list span {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: #263247;
  font-weight: 800;
}

.benefits-grid div::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--green);
}

.fit-section {
  width: 100%;
  max-width: none;
  padding: 84px max(16px, calc((100% - var(--max)) / 2));
  background: var(--soft);
}

.fit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.custom-note {
  padding-top: 42px;
}

.note-panel {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  align-items: start;
  padding: 28px;
  border: 1px solid rgba(31, 111, 255, 0.18);
  border-radius: 18px;
  background: linear-gradient(135deg, #f7fbff, #ffffff);
  box-shadow: 0 18px 70px rgba(31, 111, 255, 0.08);
}

.note-panel > p {
  max-width: 760px;
}

.final-cta {
  width: 100%;
  max-width: none;
  padding: 84px 16px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(31, 111, 255, 0.18), transparent 38%),
    linear-gradient(225deg, rgba(54, 227, 162, 0.12), transparent 34%),
    var(--navy);
}

.final-cta-inner {
  width: min(100%, 860px);
  margin: 0 auto;
  text-align: center;
}

.final-cta h2 {
  margin-bottom: 18px;
}

.final-cta p {
  color: #cbd5e1;
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  display: grid;
  gap: 24px;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 34px 0;
  color: #5d6c80;
}

.site-footer p {
  margin: 12px 0 0;
}

.footer-links {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.footer-policy-links {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.footer-policy-link {
  width: fit-content;
  padding: 0;
  border: 0;
  color: var(--blue);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: left;
}

.footer-policy-link:hover {
  text-decoration: underline;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000001;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(8, 17, 32, 0.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

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

.modal-dialog {
  position: relative;
  width: min(100%, 780px);
  max-height: min(92vh, 780px);
  overflow: auto;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 251, 0.9)),
    var(--white);
  box-shadow: 0 30px 110px rgba(8, 17, 32, 0.32);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.modal-copy {
  max-width: 620px;
  margin-bottom: 24px;
}

.modal-copy h2 {
  margin-bottom: 12px;
  font-size: 2.45rem;
}

.modal-copy p {
  color: var(--muted);
}

.policy-dialog {
  width: min(100%, 880px);
}

.policy-content {
  display: grid;
  gap: 16px;
}

.policy-content section {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.policy-content h3 {
  margin-bottom: 6px;
}

.policy-content p {
  margin-bottom: 0;
  color: var(--muted);
}

.policy-content a {
  color: var(--blue);
  font-weight: 800;
}

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

.consultation-form label {
  display: grid;
  gap: 8px;
}

.consultation-form span {
  color: #344259;
  font-size: 0.86rem;
  font-weight: 800;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.consultation-form input,
.consultation-form select {
  min-height: 48px;
  padding: 0 14px;
}

.consultation-form textarea {
  resize: vertical;
  min-height: 116px;
  padding: 12px 14px;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
  outline: 3px solid rgba(31, 111, 255, 0.16);
  border-color: rgba(31, 111, 255, 0.55);
}

.form-wide {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.form-status.is-success {
  color: #087a4a;
}

.form-status.is-error {
  color: #b42318;
}

body.modal-open {
  overflow: hidden;
}

.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000002;
  display: grid;
  gap: 16px;
  width: min(calc(100% - 44px), 430px);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.9)),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 100px rgba(8, 17, 32, 0.28);
  backdrop-filter: blur(34px) saturate(1.45);
  -webkit-backdrop-filter: blur(34px) saturate(1.45);
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  animation: cookie-pop 360ms ease forwards;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1.05rem;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cookie-actions .btn {
  min-height: 46px;
  padding: 0 18px;
  font-size: 0.92rem;
}

@keyframes cookie-pop {
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

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

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

@media (min-width: 680px) {
  .hero-subtitle {
    font-size: 1.16rem;
  }

  .hero-actions {
    flex-direction: row;
  }

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

  .process-list li {
    grid-template-columns: 44px 1fr;
    align-items: start;
  }

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

@media (min-width: 920px) {
  .hero-subtitle {
    font-size: 1.24rem;
  }

  .nav {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .split-layout,
  .section-heading {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.65fr);
    align-items: start;
  }

  .note-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

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

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

@media (max-width: 520px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overscroll-behavior-x: none;
  }

  body {
    touch-action: pan-y;
  }

  body.admin-bar .site-header {
    top: 46px;
  }

  .site-header {
    width: 100%;
    margin-top: 0;
    padding: 10px 18px;
    display: flex;
    border-radius: 0;
  }

  .site-header.is-scrolled {
    top: 10px;
    width: calc(100% - 18px);
    padding: 8px 10px;
    border-radius: 999px;
  }

  body.admin-bar .site-header.is-scrolled {
    top: 56px;
  }

  .brand {
    min-width: 0;
  }

  .brand span:last-child {
    display: none;
  }

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

  .lang-toggle {
    justify-self: end;
    min-width: 44px;
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.84rem;
  }

  .desktop-lang {
    display: none;
  }

  .mobile-menu-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-self: end;
    min-height: 38px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), #0757d8);
    box-shadow: 0 12px 28px rgba(31, 111, 255, 0.26);
    font: inherit;
    font-size: 0.84rem;
    font-weight: 800;
    cursor: pointer;
  }

  .mobile-menu-toggle i,
  .mobile-menu-toggle i::before,
  .mobile-menu-toggle i::after {
    display: block;
    width: 14px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .mobile-menu-toggle i {
    position: relative;
  }

  .mobile-menu-toggle i::before,
  .mobile-menu-toggle i::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .mobile-menu-toggle i::before {
    top: -5px;
  }

  .mobile-menu-toggle i::after {
    top: 5px;
  }

  .mobile-menu-toggle.is-open i {
    background: transparent;
  }

  .mobile-menu-toggle.is-open i::before {
    transform: translateY(5px) rotate(45deg);
  }

  .mobile-menu-toggle.is-open i::after {
    transform: translateY(-5px) rotate(-45deg);
  }

  .mobile-menu-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 22px;
    background:
      linear-gradient(135deg, rgba(245, 248, 253, 0.94), rgba(230, 238, 249, 0.86)),
      rgba(236, 243, 252, 0.88);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.82),
      0 24px 72px rgba(8, 17, 32, 0.2);
    backdrop-filter: blur(60px) saturate(1.55);
    -webkit-backdrop-filter: blur(60px) saturate(1.55);
  }

  .mobile-menu-panel[hidden] {
    display: none;
  }

  .mobile-menu-panel a,
  .mobile-menu-panel .mobile-lang {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 14px;
    color: #172033;
    background: rgba(255, 255, 255, 0.78);
    font-weight: 800;
  }

  .mobile-menu-panel .mobile-lang {
    justify-content: center;
    width: 100%;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), #0757d8);
  }

  .nav {
    display: none;
  }

  .section {
    width: min(calc(100% - 24px), var(--max));
    padding: 58px 0;
  }

  .hero {
    min-height: auto;
    gap: 32px;
    padding-top: 118px;
    padding-bottom: 28px;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(42px, 11vw, 54px);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(38px, 10vw, 50px);
    line-height: 1.08;
  }

  h3 {
    font-size: 1.02rem;
  }

  .hero-subtitle,
  .split-layout > p,
  .section-heading > p,
  .note-panel > p,
  .final-cta p {
    font-size: 1rem;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .btn {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    text-align: center;
  }

  .cards-grid {
    gap: 12px;
  }

  .solution-card {
    min-height: 282px;
  }

  .card-face {
    justify-content: flex-start;
    padding: 20px;
  }

  .card-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 22px;
  }

  .flip-hint {
    padding-top: 14px;
    font-size: 0.78rem;
  }

  .process-list {
    margin-top: 28px;
  }

  .process-list li {
    padding: 18px;
  }

  .benefits-grid {
    gap: 9px;
  }

  .benefits-grid div,
  .fit-list span {
    padding: 14px 15px;
    font-size: 0.94rem;
  }

  .note-panel {
    gap: 18px;
    padding: 22px;
    border-radius: 14px;
  }

  .final-cta {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .final-cta h2 {
    font-size: clamp(38px, 10vw, 50px);
  }

  .site-footer {
    width: min(calc(100% - 24px), var(--max));
    padding: 28px 0;
  }

  .site-footer .brand span:last-child {
    display: inline;
  }

  .footer-links {
    font-size: 0.94rem;
  }

  .modal-backdrop {
    align-items: center;
    padding: 76px 10px 12px;
  }

  .modal-dialog {
    width: 100%;
    max-height: min(78vh, 720px);
    padding: 22px;
    border-radius: 18px;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .modal-copy h2 {
    padding-right: 40px;
    font-size: 1.95rem;
  }

  .policy-content section {
    padding: 14px;
  }

  .consultation-form {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
    border-radius: 16px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .dark-band,
  .fit-section,
  .final-cta {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    overflow-x: hidden;
    padding-left: 14px;
    padding-right: 14px;
  }

  .dark-band h2,
  .dark-band p,
  .fit-section h2,
  .fit-section p,
  .final-cta h2,
  .final-cta p {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

/* Premium motion layer */
body::before {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -2;
  background:
    radial-gradient(circle at 16% 14%, rgba(31, 111, 255, 0.11), transparent 28%),
    radial-gradient(circle at 84% 10%, rgba(54, 227, 162, 0.12), transparent 24%),
    radial-gradient(circle at 52% 76%, rgba(31, 111, 255, 0.08), transparent 26%);
  animation: ambient-drift 18s ease-in-out infinite alternate;
  pointer-events: none;
}

.brand-mark {
  animation: logo-breathe 4.2s ease-in-out infinite;
}

.lang-toggle,
.btn,
.mobile-menu-toggle {
  transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0);
}

.lang-toggle:hover,
.btn-primary:hover {
  box-shadow: 0 22px 54px rgba(31, 111, 255, 0.34);
}

.btn-secondary:hover {
  border-color: rgba(31, 111, 255, 0.35);
  box-shadow: 0 16px 42px rgba(8, 17, 32, 0.09);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-canvas {
  position: absolute;
  inset: 72px -8vw 0;
  z-index: 0;
  width: calc(100% + 16vw);
  height: calc(100% - 72px);
  opacity: 0.62;
  pointer-events: none;
}

.hero-content,
.solution-card,
.note-panel {
  position: relative;
  transform-style: preserve-3d;
}

.hero-content::after,
.card-face::after,
.note-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--glow-x, 50%) var(--glow-y, 50%),
    rgba(31, 111, 255, 0.2),
    transparent 34%
  );
  opacity: var(--glow-opacity, 0);
  transition: opacity 180ms ease;
  pointer-events: none;
}

.dark-band,
.final-cta {
  position: relative;
  overflow: hidden;
}

.dark-band::after,
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--section-glow-x, 50%) var(--section-glow-y, 50%),
    rgba(31, 111, 255, 0.28),
    rgba(54, 227, 162, 0.1) 18%,
    transparent 42%
  );
  opacity: var(--section-glow-opacity, 0);
  transition: opacity 220ms ease;
  pointer-events: none;
}

.dark-band > * {
  position: relative;
  z-index: 1;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
}

.solution-card:hover {
  transform: translateY(-6px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.card-face {
  overflow: hidden;
}

.card-icon {
  display: none;
}

.benefits-grid div,
.fit-list span {
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.benefits-grid div:hover,
.fit-list span:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 111, 255, 0.24);
  box-shadow: 0 18px 48px rgba(8, 17, 32, 0.08);
}

[data-reveal] {
  transform: translateY(24px) scale(0.985);
}

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

@keyframes ambient-drift {
  from {
    transform: translate3d(-2%, -1%, 0) rotate(0deg);
  }
  to {
    transform: translate3d(2%, 1.5%, 0) rotate(2deg);
  }
}

@keyframes logo-breathe {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(223, 230, 239, 0.95), 0 10px 26px rgba(8, 17, 32, 0.16);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(31, 111, 255, 0.22), 0 0 24px rgba(31, 111, 255, 0.22), 0 10px 26px rgba(8, 17, 32, 0.16);
  }
}

@keyframes icon-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@media (max-width: 520px) {
  .hero-canvas {
    inset: 70px 0 auto;
    width: 100%;
    max-width: 100%;
    height: 420px;
    opacity: 0.34;
  }

}

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

  .hero-canvas {
    display: none !important;
  }
}
