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

:root {
  --ink: #07121f;
  --navy: #0b1c2d;
  --navy-2: #10283e;
  --paper: #f6f8fb;
  --white: #ffffff;
  --line: #dbe4ee;
  --muted: #5f7286;
  --blue: #1b83d8;
  --blue-2: #075fa9;
  --cyan: #17c7df;
  --green: #28a745;
  --shadow: 0 20px 60px rgba(7, 18, 31, 0.12);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(23, 199, 223, 0.5);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
}

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

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 72px;
  padding: 0 5vw;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 228, 238, 0.8);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-nav.is-scrolled {
  box-shadow: 0 12px 34px rgba(7, 18, 31, 0.08);
}

.nav-logo img {
  width: 170px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 11px;
  border-radius: 8px;
  color: #41576c;
  font-size: 13px;
  font-weight: 700;
}

.nav-links a:hover {
  background: #edf5fc;
  color: var(--blue-2);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  font-size: 14px;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.nav-cta,
.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 12px 28px rgba(27, 131, 216, 0.26);
}

.nav-cta:hover,
.button--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(27, 131, 216, 0.34);
}

.button--secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.button--outline {
  color: var(--blue-2);
  background: #eef6fd;
  border: 1px solid rgba(27, 131, 216, 0.24);
}

.hamburger {
  display: none;
  min-height: 42px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 46px;
  min-height: 720px;
  padding: 110px 5vw 88px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(7, 18, 31, 0.98) 0%, rgba(7, 18, 31, 0.92) 45%, rgba(7, 18, 31, 0.68) 100%),
    #08131f;
}

.hero__media {
  position: absolute;
  inset: 0;
  opacity: 0.32;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__content,
.diagnostic-card {
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 760px;
  align-self: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.hero__lead {
  max-width: 660px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

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

.hero__trust span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
}

.diagnostic-card {
  align-self: center;
  padding: 26px;
  border: 1px solid rgba(23, 199, 223, 0.3);
  border-radius: 8px;
  background: rgba(8, 25, 40, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.diagnostic-card__header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.65);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.diagnostic-card__header strong {
  color: #ffd166;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-row span {
  color: rgba(255, 255, 255, 0.64);
}

.metric-row strong {
  color: var(--white);
  font-family: "JetBrains Mono", monospace;
}

.impact-box {
  margin-top: 14px;
  padding: 18px;
  border-left: 3px solid var(--cyan);
  background: rgba(23, 199, 223, 0.08);
}

.impact-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.route-strip {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 18px 5vw;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.route-strip span {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
  color: #44596d;
  font-size: 13px;
  font-weight: 800;
}

.factumat-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #081725;
  border-bottom: 1px solid rgba(23, 199, 223, 0.14);
}

.factumat-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
}

.factumat-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: 58px;
  max-width: 1240px;
  margin: 0 auto;
}

.factumat-copy {
  max-width: 590px;
}

.factumat-lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.factumat-points {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.factumat-points li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.76);
}

.factumat-points li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #5eead4;
  content: "✓";
  font-weight: 900;
}

.factumat-points strong {
  color: var(--white);
}

.factumat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.factumat-actions .button--outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.factumat-note {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

.factumat-preview {
  position: relative;
  display: block;
  min-width: 0;
  padding: 9px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #050c14;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.factumat-preview img {
  width: 100%;
  aspect-ratio: 1.36 / 1;
  border-radius: 5px;
  object-fit: cover;
  object-position: left top;
}

.factumat-preview__label,
.factumat-preview__footer {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 12, 20, 0.9);
  color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
}

.factumat-preview__label {
  top: 24px;
  left: 24px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.factumat-preview__footer {
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.section {
  padding: 92px 5vw;
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head p,
.split p,
.modernization p,
.contact-layout p,
.proof-card p {
  color: var(--muted);
  font-size: 16px;
}

.section-head .eyebrow {
  color: var(--blue-2);
}

.section--dark .section-head .eyebrow {
  color: var(--cyan);
}

.section--dark {
  color: var(--white);
  background: var(--navy);
}

.section--dark p {
  color: rgba(255, 255, 255, 0.68);
}

.section--soft {
  background: #eaf2f8;
}

.plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
}

.plan-card,
.service-grid article,
.cards-three article,
.technical-grid article,
.web-tech-grid article,
.process-card,
.trust-grid article,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.plan-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  box-shadow: 0 12px 40px rgba(7, 18, 31, 0.06);
}

.plan-card--featured {
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  border-color: rgba(23, 199, 223, 0.32);
}

.plan-card__label {
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 8px;
  background: #edf5fc;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-card--featured .plan-card__label {
  background: rgba(23, 199, 223, 0.12);
  color: var(--cyan);
}

.plan-card__price {
  margin-bottom: 14px;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.plan-card__price span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.plan-card--featured .plan-card__price span,
.plan-card--featured .plan-card__fit {
  color: rgba(255, 255, 255, 0.68);
}

.plan-card__fit {
  color: var(--muted);
}

.plan-card ul,
.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 8px 0 26px;
  list-style: none;
}

.plan-card li,
.check-list li {
  position: relative;
  padding-left: 22px;
  color: #34495e;
}

.plan-card--featured li {
  color: rgba(255, 255, 255, 0.84);
}

.plan-card li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.plan-card .button {
  margin-top: auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.service-grid {
  display: grid;
  gap: 16px;
}

.service-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.service-number {
  display: block;
  margin-bottom: 14px;
  color: var(--cyan);
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 800;
}

.proof-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.proof-card,
.modernization,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
}

.proof-card {
  grid-template-columns: 420px minmax(0, 1fr);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.proof-card img,
.modernization img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.proof-metrics span {
  padding: 10px;
  border-radius: 8px;
  background: #eef6fd;
  color: var(--blue-2);
  font-weight: 900;
  text-align: center;
}

.technical-section {
  background: var(--white);
}

.technical-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.technical-grid article {
  padding: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.technical-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 30px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: #eaf6fb;
  color: var(--blue-2);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 900;
}

.technical-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.technical-deep {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  max-width: 1180px;
  margin: 34px auto 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f4f9fd;
}

.technical-deep__intro p {
  color: var(--muted);
}

.spec-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.spec-table div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.spec-table div:last-child {
  border-bottom: 0;
}

.spec-table strong {
  color: var(--ink);
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
}

.spec-table span {
  color: var(--muted);
  font-size: 14px;
}

.modernization {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(7, 18, 31, 0.07);
}

.modernization__copy {
  max-width: 610px;
}

.web-lab {
  max-width: 1180px;
  margin: 54px auto 0;
}

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

.web-tech-grid article {
  padding: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.web-tech-grid ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.web-tech-grid li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.web-tech-grid li::before {
  position: absolute;
  left: 0;
  color: var(--blue);
  content: "-";
  font-weight: 900;
}

.cards-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.cards-three article {
  padding: 26px;
}

.cards-three p {
  color: var(--muted);
}

.process-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}

.process-card {
  padding: 28px;
}

.process-card ol {
  display: grid;
  gap: 12px;
  padding-left: 22px;
  margin: 16px 0 0;
  color: #43596f;
}

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

.trust-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.faq-section {
  background: #edf5fa;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 7vw, 96px);
  max-width: 1180px;
  margin: 0 auto;
}

.faq-intro {
  align-self: start;
}

.faq-intro .eyebrow {
  color: #087488;
}

.faq-intro > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--ink-soft);
}

.faq-intro .button {
  margin-top: 24px;
}

.faq-list {
  border-top: 1px solid #b8cad8;
}

.faq-list details {
  border-bottom: 1px solid #b8cad8;
}

.faq-list summary {
  position: relative;
  padding: 22px 44px 22px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 850;
  line-height: 1.35;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 4px;
  content: "+";
  color: var(--blue-2);
  font-family: "JetBrains Mono", monospace;
  font-size: 24px;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list summary:focus-visible {
  outline: 3px solid rgba(27, 131, 216, 0.2);
  outline-offset: 4px;
}

.faq-list details p {
  max-width: 780px;
  padding: 0 44px 22px 0;
  margin: 0;
  color: #43596f;
  line-height: 1.75;
}

.contact-section {
  background: var(--white);
}

.contact-layout {
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-list a {
  width: fit-content;
  color: var(--blue-2);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  margin-bottom: 0;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: #263b50;
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbfd;
  color: var(--ink);
  font-weight: 500;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(27, 131, 216, 0.14);
  border-color: var(--blue);
  background: var(--white);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 20px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}

.site-footer {
  padding: 54px 5vw 24px;
  background: #06101c;
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 34px;
  max-width: 1180px;
  margin: 0 auto 34px;
}

.footer-logo {
  width: 170px;
  margin-bottom: 16px;
}

.site-footer h4 {
  margin: 0 0 12px;
  color: var(--white);
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 1180px;
  padding-top: 20px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.3);
  font-weight: 900;
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

@media (max-width: 1060px) {
  .nav-cta {
    display: none;
  }

  .hero,
  .split,
  .proof-card,
  .modernization,
  .contact-layout,
  .factumat-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .diagnostic-card {
    max-width: 520px;
  }

  .factumat-copy {
    max-width: 760px;
  }

  .factumat-preview {
    max-width: 800px;
  }

  .proof-card {
    grid-template-columns: 1fr;
  }

  .proof-card img {
    max-height: 420px;
  }

  .trust-grid,
  .cards-three,
  .technical-grid,
  .web-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .technical-deep {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-nav {
    min-height: 66px;
  }

  .hamburger {
    display: inline-flex;
    align-items: center;
  }

  .nav-links {
    position: fixed;
    top: 66px;
    right: 0;
    left: 0;
    display: none;
    padding: 16px 5vw;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    padding: 12px 0;
  }

  .hero {
    padding: 62px 5vw 38px;
  }

  .diagnostic-card {
    display: none;
  }

  h1 {
    font-size: clamp(38px, 11vw, 46px);
  }

  .hero__lead {
    font-size: 16px;
    line-height: 1.65;
  }

  h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .section {
    padding: 64px 5vw;
  }

  .plans,
  .cards-three,
  .technical-grid,
  .web-tech-grid,
  .process-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .plan-card,
  .modernization,
  .proof-card,
  .contact-form {
    padding: 22px;
  }

  .factumat-actions {
    display: grid;
  }

  .factumat-preview__label {
    top: 17px;
    left: 17px;
  }

  .factumat-preview__footer {
    right: 17px;
    bottom: 17px;
    left: 17px;
  }

  .proof-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .technical-deep {
    padding: 20px;
  }

  .spec-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
