/*
  Spectrom3D – Gewichtsdecken-Vergleich
  Static editorial showcase template for Germany.
  No external fonts, trackers or libraries.
*/
:root {
  --ink: #12304d;
  --ink-soft: #4e647a;
  --brand: #096ab4;
  --brand-dark: #07518b;
  --brand-2: #2f8ccf;
  --sky: #e9f4ff;
  --sky-2: #d9ecff;
  --sky-3: #f5faff;
  --white: #fff;
  --accent: #ffab2e;
  --accent-dark: #e78900;
  --teal: #36a8c6;
  --line: #d4e6f4;
  --success: #0f8b67;
  --warning-bg: #fff5df;
  --warning-line: #ffd28a;
  --shadow: 0 18px 48px rgba(16, 60, 95, .09);
  --shadow-sm: 0 5px 18px rgba(16, 60, 95, .07);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 15px;
  --container: 1380px;
  --content: 1000px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--brand-dark);
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

[id] {
  scroll-margin-top: 92px;
}

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 20px;
  z-index: 1000;
  background: var(--ink);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 0 0 10px 10px;
}

.skip-link:focus {
  top: 0;
  color: #fff;
}

/* Utility */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: var(--brand);
  font-size: .78rem;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
}

.section-title {
  margin: 0 0 16px;
  color: var(--brand-dark);
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -.035em;
}

.section-lead {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.muted {
  color: var(--ink-soft);
}

.text-accent {
  color: var(--accent-dark);
}

/* Notice/Header */
.notice-bar {
  background: var(--brand-dark);
  color: rgba(255, 255, 255, .92);
  font-size: .83rem;
}

.notice-bar__inner {
  min-height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding-block: 7px;
}

.notice-bar strong {
  display: inline-flex;
  background: rgba(255, 255, 255, .17);
  color: #fff;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: .06em;
  font-size: .72rem;
}

.site-header {
  height: 76px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .97);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -.04em;
  font-size: 1.18rem;
}

.brand img {
  width: 42px;
  height: 42px;
}

.brand small {
  display: block;
  color: var(--ink-soft);
  letter-spacing: .09em;
  font-size: .58rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: .95rem;
  font-weight: 700;
  transition: color .2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--brand);
}

.site-nav .nav-cta {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--brand);
  transition: background .2s ease, transform .2s ease;
}

.site-nav .nav-cta:hover {
  background: var(--brand-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  place-items: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  content: "";
  position: relative;
  transition: .2s ease;
}

.nav-toggle span::before {
  position: absolute;
  top: -7px;
}

.nav-toggle span::after {
  position: absolute;
  top: 7px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--sky);
  padding: 50px 0 76px;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 50px;
  background: var(--white);
  clip-path: ellipse(57% 58% at 51% 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.02fr .88fr;
  align-items: center;
  gap: 42px;
}

.hero h1 {
  margin: 0 0 14px;
  color: var(--brand-dark);
  font-size: clamp(2.1rem, 4.2vw, 3.25rem);
  letter-spacing: -.065em;
  line-height: 1.05;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-size: .89rem;
  margin-bottom: 22px;
}

.hero__author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--ink);
}

.hero__author-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--brand);
  font-weight: 800;
}

.hero__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #9fb3c5;
}

.hero__intro {
  margin: 0 0 23px;
  font-size: 1.04rem;
  color: var(--ink);
  max-width: 51ch;
}

.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__points li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #d5e7f6;
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--ink);
  font-weight: 700;
  font-size: .83rem;
}

.hero__points svg {
  color: var(--teal);
}

.hero__art {
  position: relative;
  padding: 18px 0 0;
}

.hero__art img {
  width: min(100%, 475px);
  margin-left: auto;
}

/* Demo warning + summary */
.editor-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px auto 0;
  padding: 14px 17px;
  border: 1px solid var(--warning-line);
  background: var(--warning-bg);
  border-radius: var(--radius-md);
  color: #684a17;
  font-size: .9rem;
}

.editor-note svg {
  flex: 0 0 auto;
  margin-top: 2px;
}

.overview {
  position: relative;
  z-index: 2;
  margin: -14px auto 46px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 30px 34px;
}

.overview h2 {
  margin: 0 0 17px;
  color: var(--brand-dark);
  text-align: center;
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  line-height: 1.2;
}

.overview__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 26px;
  color: var(--ink-soft);
}

.overview__items span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .92rem;
}

.overview__items svg {
  color: var(--teal);
}

/* Product cards */
.compare {
  padding: 0 0 58px;
}

.compare__head {
  margin: 0 auto 29px;
  text-align: center;
}

.products {
  display: grid;
  gap: 28px;
}

.product-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.product-card__feature {
  position: relative;
  background: var(--sky);
  padding: 29px 34px 42px;
  display: grid;
  grid-template-columns: 1fr 228px;
  align-items: center;
  gap: 24px;
}

.product-card__feature::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 35px;
  background: #fff;
  clip-path: ellipse(58% 72% at 48% 100%);
}

.product-rank {
  position: absolute;
  top: 0;
  left: 22px;
  display: inline-flex;
  align-items: center;
  height: 29px;
  padding: 0 23px 0 15px;
  border-radius: 0 0 18px 18px;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
  font-size: .79rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.product-rank::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 0;
  border-top: 29px solid var(--teal);
  border-right: 15px solid transparent;
}

.product-card__name {
  margin: 16px 0 4px;
  color: var(--brand-dark);
  font-size: 1.55rem;
  line-height: 1.18;
  letter-spacing: -.04em;
}

.product-card__tag {
  margin: 0 0 10px;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: .9rem;
}

.rating-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 15px;
}

.score {
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -.04em;
}

.stars {
  color: var(--accent);
  letter-spacing: 1px;
  font-size: .96rem;
}

.product-quick {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 5px;
  color: var(--ink);
  font-size: .93rem;
}

.product-quick li {
  display: flex;
  gap: 8px;
}

.product-quick li::before {
  content: "✓";
  color: var(--success);
  font-weight: 800;
}

.product-image {
  width: 100%;
  height: 170px;
  object-fit: contain;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  border: 0;
  padding: 12px 22px;
  text-decoration: none;
  font-weight: 800;
  font-size: .92rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn--accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 9px 15px rgba(237, 144, 5, .2);
}

.btn--accent:hover {
  background: #f39a13;
  color: #fff;
  transform: translateY(-1px);
}

.btn--outline {
  border: 1px solid var(--line);
  color: var(--brand);
  background: #fff;
}

.btn--outline:hover {
  color: var(--brand-dark);
  background: var(--sky-3);
}

.product-card__actions {
  display: flex;
  gap: 10px;
  margin-top: 17px;
}

.product-card__details {
  padding: 37px 34px 29px;
}

.product-card__details h3 {
  color: var(--brand);
  font-size: 1.15rem;
  line-height: 1.3;
  margin: 0 0 10px;
}

.product-card__details p {
  margin: 0 0 17px;
}

.product-highlight {
  margin: 22px 0;
  border-left: 4px solid var(--accent);
  padding: 13px 16px;
  color: var(--ink);
  font-weight: 700;
  background: #fffbf3;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  background: var(--sky-3);
  border-radius: var(--radius-md);
  padding: 17px 18px;
  margin: 18px 0;
}

.spec-grid dt {
  font-size: .79rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 700;
}

.spec-grid dd {
  margin: 2px 0 0;
  color: var(--ink);
  font-weight: 700;
  font-size: .95rem;
}

.procon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 20px 0 4px;
}

.procon h4 {
  margin: 0 0 9px;
  color: var(--brand);
  font-size: .98rem;
}

.procon ul {
  margin: 0;
  padding-left: 19px;
  color: var(--ink-soft);
  font-size: .92rem;
}

.product-card__footer {
  padding: 16px 34px 22px;
  background: var(--sky);
  text-align: center;
}

.product-card__footer .btn {
  min-width: 235px;
}

/* Editorial segments */
.wave-section {
  position: relative;
  background: var(--sky);
  padding: 84px 0 80px;
  margin-top: 18px;
}

.wave-section::before,
.wave-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 44px;
  background: #fff;
}

.wave-section::before {
  top: -1px;
  clip-path: ellipse(60% 66% at 53% 0);
}

.wave-section::after {
  bottom: -1px;
  clip-path: ellipse(60% 66% at 47% 100%);
}

.article-panel {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  padding: clamp(27px, 4.8vw, 43px);
}

.article-panel p {
  margin: 0 0 16px;
}

.article-panel h3 {
  margin: 29px 0 10px;
  color: var(--brand);
  font-size: 1.29rem;
  letter-spacing: -.03em;
  line-height: 1.27;
}

.editorial-figure {
  margin: 27px auto;
}

.editorial-figure img {
  width: 100%;
  max-height: 555px;
  object-fit: contain;
}

.editorial-figure figcaption {
  font-size: .79rem;
  color: var(--ink-soft);
  margin-top: 9px;
}

.takeaway {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin: 26px 0;
}

.takeaway__item {
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--sky-3);
  border: 1px solid var(--line);
}

.takeaway__item strong {
  display: block;
  color: var(--brand-dark);
  font-size: .92rem;
  margin-bottom: 4px;
}

.takeaway__item span {
  font-size: .86rem;
  color: var(--ink-soft);
}

/* Guide and calculator */
.guide {
  padding: 72px 0 58px;
}

.guide__grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 42px;
  align-items: center;
}

.guide__copy h2 {
  margin-bottom: 15px;
}

.guide__list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}

.guide__list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
}

.guide__icon {
  display: grid;
  place-items: center;
  height: 40px;
  border-radius: 13px;
  background: var(--sky);
  color: var(--brand);
}

.guide__list strong {
  display: block;
  line-height: 1.3;
  margin-bottom: 3px;
}

.guide__list span {
  display: block;
  color: var(--ink-soft);
  font-size: .91rem;
}

.calculator {
  background: var(--sky);
  border-radius: var(--radius-lg);
  padding: 31px;
  border: 1px solid var(--line);
}

.calculator h3 {
  margin: 0 0 8px;
  color: var(--brand-dark);
  font-size: 1.38rem;
  line-height: 1.25;
}

.calculator p {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: .92rem;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: .87rem;
  font-weight: 700;
}

.field-row {
  display: flex;
  gap: 10px;
}

.field input {
  width: 100%;
  border: 1px solid #b9d4e8;
  border-radius: 12px;
  background: #fff;
  padding: 12px 13px;
  outline: none;
}

.field input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(9, 106, 180, .12);
}

.calc-result {
  margin-top: 18px;
  border-radius: var(--radius-md);
  padding: 17px;
  background: #fff;
  border: 1px solid var(--line);
  min-height: 74px;
}

.calc-result strong {
  color: var(--brand-dark);
  font-size: 1.2rem;
}

.calc-result small {
  display: block;
  margin-top: 5px;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* Feature tiles */
.criteria {
  padding: 22px 0 70px;
}

.criteria__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.criteria__card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 19px;
  background: #fff;
}

.criteria__card .guide__icon {
  margin-bottom: 14px;
}

.criteria__card h3 {
  margin: 0 0 6px;
  color: var(--brand-dark);
  font-size: 1.05rem;
}

.criteria__card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .9rem;
}

/* FAQ / accordion */
.faq {
  background: var(--sky);
  padding: 76px 0 88px;
  position: relative;
}

.faq__head {
  text-align: center;
  margin-bottom: 30px;
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion__item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d4e7f6;
  background: #fff;
}

.accordion__trigger {
  width: 100%;
  border: 0;
  background: #fff;
  color: var(--ink);
  padding: 16px 19px;
  display: flex;
  gap: 17px;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-weight: 700;
}

.accordion__trigger span:last-child {
  flex: 0 0 auto;
  color: var(--brand);
  font-size: 1.24rem;
  transition: transform .2s ease;
}

.accordion__trigger[aria-expanded="true"] span:last-child {
  transform: rotate(45deg);
}

.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .22s ease;
}

.accordion__panel>div {
  overflow: hidden;
}

.accordion__panel p {
  margin: 0;
  padding: 0 19px 18px;
  color: var(--ink-soft);
  font-size: .94rem;
}

.accordion__item[data-open="true"] .accordion__panel {
  grid-template-rows: 1fr;
}

/* Footer */
.site-footer {
  background: #072d4d;
  color: rgba(255, 255, 255, .74);
  padding: 44px 0 24px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr .9fr .9fr;
  gap: 44px;
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.site-footer .brand {
  color: #fff;
  margin-bottom: 14px;
}

.site-footer .brand small {
  color: rgba(255, 255, 255, .58);
}

.site-footer p {
  margin: 0;
  font-size: .9rem;
  max-width: 46ch;
}

.footer-title {
  color: #fff;
  margin: 0 0 12px;
  font-size: .95rem;
}

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

.footer-links a,
.privacy-link {
  display: inline-flex;
  width: fit-content;
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  font-size: .91rem;
  background: transparent;
  border: 0;
  padding: 0;
}

.footer-links a:hover,
.privacy-link:hover {
  color: #fff;
}

.site-footer__bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: .82rem;
}

/* Legal / content pages */
.page-hero {
  background: var(--sky);
  padding: 55px 0 65px;
  text-align: center;
}

.page-hero h1 {
  margin: 0 0 9px;
  color: var(--brand-dark);
  font-size: clamp(2rem, 3.5vw, 2.65rem);
  letter-spacing: -.055em;
  line-height: 1.1;
}

.page-hero p {
  margin: 0;
  color: var(--ink-soft);
}

.legal {
  padding: 48px 0 70px;
}

.legal__card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: clamp(25px, 4.8vw, 46px);
}

.legal__card h2 {
  margin: 31px 0 10px;
  color: var(--brand-dark);
  font-size: 1.28rem;
  line-height: 1.27;
}

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

.legal__card h3 {
  margin: 20px 0 7px;
  color: var(--brand);
  font-size: 1.03rem;
}

.legal__card p,
.legal__card ul {
  margin: 0 0 13px;
}

.legal__card ul {
  padding-left: 21px;
}

.legal__card li+li {
  margin-top: 5px;
}

.legal-note {
  padding: 14px 16px;
  margin: 0 0 24px;
  border-radius: 12px;
  background: var(--warning-bg);
  border: 1px solid var(--warning-line);
  color: #684a17;
  font-size: .91rem;
}

.required-placeholder {
  display: inline-block;
  background: #fff1d2;
  border-radius: 5px;
  padding: 0 5px;
  color: #855300;
  font-weight: 700;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 17px 0 20px;
}

.info-table th,
.info-table td {
  border-bottom: 1px solid var(--line);
  padding: 11px 0;
  vertical-align: top;
  text-align: left;
}

.info-table th {
  width: 35%;
  padding-right: 16px;
  color: var(--ink-soft);
  font-size: .88rem;
}

.info-table td {
  font-weight: 700;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 25px;
}

.contact-card {
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--sky-3);
  border: 1px solid var(--line);
}

.contact-card h3 {
  margin-top: 0;
}

/* Privacy dialog */
dialog.privacy-dialog {
  width: min(520px, calc(100% - 34px));
  border: 0;
  border-radius: var(--radius-lg);
  padding: 0;
  color: var(--ink);
  box-shadow: 0 18px 65px rgba(4, 28, 49, .25);
}

dialog.privacy-dialog::backdrop {
  background: rgba(4, 28, 49, .52);
}

.privacy-dialog__content {
  padding: 28px;
}

.privacy-dialog h2 {
  margin: 0 0 10px;
  color: var(--brand-dark);
  font-size: 1.35rem;
}

.privacy-dialog p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: .93rem;
}

.privacy-dialog__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 22px;
}

/* Responsive */
@media (max-width: 850px) {
  .site-header {
    height: 69px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 69px;
    left: 0;
    right: 0;
    padding: 18px 20px 22px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-sm);
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav a {
    padding: 7px 4px;
  }

  .site-nav .nav-cta {
    justify-content: center;
  }

  .hero {
    padding-top: 38px;
  }

  .hero__grid,
  .guide__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero__art {
    order: -1;
    padding: 0;
  }

  .hero__art img {
    max-width: 430px;
    margin-inline: auto;
  }

  .product-card__feature {
    grid-template-columns: 1fr;
    padding: 35px 24px 42px;
  }

  .product-image {
    height: 160px;
    order: -1;
    margin-top: 4px;
  }

  .product-card__details {
    padding: 34px 24px 25px;
  }

  .product-card__footer {
    padding-inline: 24px;
  }

  .criteria__grid,
  .takeaway {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {

  .container,
  .content-width {
    width: min(100% - 28px, var(--container));
  }

  .notice-bar__inner {
    flex-direction: column;
    gap: 4px;
    padding-block: 9px;
  }

  .hero {
    padding-bottom: 64px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .overview {
    padding: 24px 18px;
    margin-bottom: 36px;
  }

  .overview__items {
    justify-content: flex-start;
    gap: 10px;
  }

  .product-card__feature {
    padding-inline: 19px;
  }

  .product-card__details {
    padding-inline: 19px;
  }

  .product-card__name {
    font-size: 1.38rem;
  }

  .product-card__actions {
    flex-direction: column;
  }

  .spec-grid,
  .procon-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .article-panel {
    padding-inline: 20px;
  }

  .wave-section {
    padding-block: 67px;
  }

  .guide {
    padding-top: 52px;
  }

  .calculator {
    padding: 22px 19px;
  }

  .field-row {
    flex-direction: column;
  }

  .criteria {
    padding-bottom: 55px;
  }

  .faq {
    padding: 57px 0 65px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .info-table th,
  .info-table td {
    display: block;
    width: auto;
    padding: 6px 0;
  }

  .info-table th {
    border-bottom: 0;
    padding-top: 13px;
  }

  .info-table td {
    padding-top: 0;
  }
}

/* Avatar im Autorenblock */
.hero__author .hero__author-icon {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(18, 73, 120, .14);
}

/* =========================================================
   TOP-3 Produktvergleich — statische HTML-Karten / Accordion
   Die Klassen sind isoliert und überschreiben vorhandene
   .product-card-Stile nicht.
   ========================================================= */
.top3 {
  padding: 0 0 64px;
}

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

.top3__heading {
  width: min(790px, 100%);
  margin: 0 auto 32px;
  text-align: center;
}

.top3__list {
  display: grid;
  gap: 28px;
}

.top3-card {
  position: relative;
  overflow: hidden;
  border-radius: 29px;
  background: #e8f3ff;
  box-shadow: 0 7px 22px rgba(16, 60, 95, .10);
}

.top3-card__summary {
  position: relative;
  background: #e8f3ff;
  color: var(--ink, #12304d);
}

.top3-card__badge {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  min-width: 218px;
  height: 49px;
  padding: 0 44px 0 22px;
  border-radius: 29px 0 42px 0;
  background: #6db9d4;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.top3-card__summary-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 112px minmax(330px, 416px);
  grid-template-areas:
    "identity logo visual"
    "actions actions actions";
  align-items: start;
  column-gap: 30px;
  row-gap: 24px;
  min-height: 528px;
  padding: 72px 58px 84px;
}

.top3-card.is-open .top3-card__summary::after {
  content: "";
  position: absolute;
  right: -3%;
  bottom: -1px;
  left: -3%;
  height: 57px;
  background: #fff;
  clip-path: ellipse(54% 68% at 49% 100%);
}

.top3-card__identity {
  grid-area: identity;
}

.top3-card__rank {
  display: none;
  margin: 0 0 3px;
  color: #0073bf;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.top3-card__title {
  margin: 0 0 16px;
  color: #006db5;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
}

.top3-card__title strong {
  font-weight: 800;
}

.top3-card__title span {
  display: block;
  font-weight: 400;
}

.top3-card__intro {
  margin: 0 0 16px;
  color: #64717c;
  font-size: 18px;
  font-style: italic;
  line-height: 1.58;
}

.top3-card__bullets {
  margin: 0;
  padding-left: 22px;
  color: #586572;
  font-size: 17px;
  line-height: 1.62;
}

.top3-card__logo {
  grid-area: logo;
  justify-self: center;
  margin-top: 4px;
  color: #315a79;
  text-align: center;
  line-height: .94;
  font-size: 10px;
  letter-spacing: -.03em;
}

.top3-card__logo strong {
  display: block;
  font-size: 16px;
  letter-spacing: -.08em;
}

.top3-card__logo--brand strong {
  color: #ff941b;
  font-size: 27px;
  letter-spacing: -.08em;
}

.top3-card__logo--muted strong {
  color: #596570;
  font-size: 17px;
  letter-spacing: .02em;
}

.top3-card__visual {
  grid-area: visual;
  position: relative;
  height: 312px;
  margin: 0;
  overflow: hidden;
  background: #fff;
}

.top3-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}

.top3-card__seal {
  position: absolute;
  top: 24px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 5px solid #0074bc;
  border-radius: 50%;
  background: #fff;
  color: #f59418;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  transform: rotate(-7deg);
}

.top3-card__actions {
  grid-area: actions;
  justify-self: center;
  display: flex;
  align-items: center;
  margin-top: 12px;
}

.top3-card__price {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  height: 40px;
  margin-right: -8px;
  padding: 0 15px 0 10px;
  border: 1px solid #ffb23f;
  border-radius: 2px 0 0 2px;
  background: #fff;
  color: #5d6871;
  font-size: 14px;
  white-space: nowrap;
}

.top3-card__price::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 9px;
  right: -12px;
  width: 21px;
  height: 21px;
  border-top: 1px solid #ffb23f;
  border-right: 1px solid #ffb23f;
  background: #fff;
  transform: rotate(45deg);
}

.top3-card__price::before {
  content: "";
  position: absolute;
  z-index: 2;
  right: -5px;
  top: 17px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffb23f;
}

.top3-button {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  min-height: 52px;
  padding: 10px 50px;
  border: 0;
  border-radius: 999px;
  background: #ffa329;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.08;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 5px 11px rgba(231, 136, 0, .21);
}

.top3-button:hover {
  background: #f29514;
  transform: translateY(-1px);
}

.top3-button:focus-visible,
.top3-card__chevron:focus-visible {
  outline: 3px solid rgba(5, 102, 181, .28);
  outline-offset: 3px;
}

.top3-card__chevron {
  display: none;
  border: 0;
  background: transparent;
  color: #0072bd;
}

.top3-card__panel {
  background: #fff;
}

.top3-card__panel[hidden] {
  display: none;
}

.top3-card__body {
  padding: 28px 52px 38px;
  color: #586572;
  font-size: 17px;
  line-height: 1.72;
}

.top3-card__body p {
  margin: 0 0 21px;
}

.top3-card__body h4 {
  margin: 30px 0 18px;
  color: #0072bd;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
}

.top3-card__highlight {
  margin: 33px 20px !important;
  color: #f08000;
  font-size: 17px;
}

.top3-card__subhead {
  margin-top: 29px !important;
  color: #4e5c69;
  text-decoration: underline;
}

.top3-card__text-list {
  margin: -10px 0 24px;
  padding-left: 39px;
}

.top3-procon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 52px;
  padding: 12px 14px 18px;
}

.top3-procon__column h4 {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 16px;
  color: #006db5;
  font-weight: 700;
}

.top3-procon__column ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.top3-procon__column li {
  position: relative;
  padding-left: 18px;
}

.top3-procon__column li::before {
  position: absolute;
  left: 0;
  color: #f08a00;
}

.top3-procon__column--positive li::before {
  content: "+";
}

.top3-procon__column--note li::before {
  content: "–";
}

.top3-card__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 111px;
  padding: 20px;
  background: #e8f3ff;
}

/* Свернутая карточка: компактная строка, как Emma/Cura на примере */
.top3-card:not(.is-open) {
  border-radius: 33px;
  box-shadow: none;
}

.top3-card:not(.is-open) .top3-card__badge,
.top3-card:not(.is-open) .top3-card__intro,
.top3-card:not(.is-open) .top3-card__bullets,
.top3-card:not(.is-open) .top3-card__visual {
  display: none;
}

.top3-card:not(.is-open) .top3-card__summary-grid {
  grid-template-columns: minmax(220px, 1fr) 150px auto 34px;
  grid-template-areas: "identity logo actions chevron";
  align-items: center;
  gap: 30px;
  min-height: 100px;
  padding: 18px 30px 18px 40px;
}

.top3-card:not(.is-open) .top3-card__rank {
  display: none;
}

.top3-card:not(.is-open) .top3-card__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.45;
}

.top3-card:not(.is-open) .top3-card__title span {
  color: #52606c;
  font-size: 17px;
}

.top3-card:not(.is-open) .top3-card__logo {
  margin: 0;
  justify-self: center;
}

.top3-card:not(.is-open) .top3-card__actions {
  margin: 0;
  justify-self: end;
}

.top3-card:not(.is-open) .top3-button {
  min-width: 285px;
  min-height: 50px;
}

.top3-card:not(.is-open) .top3-card__chevron {
  grid-area: chevron;
  display: inline-grid;
  place-items: center;
  justify-self: end;
  width: 34px;
  height: 44px;
  padding: 0;
}

.top3__disclaimer {
  width: min(900px, 100%);
  margin: 26px auto 0;
  color: #607485;
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .top3-card__summary-grid {
    grid-template-columns: 1fr 118px;
    grid-template-areas:
      "identity logo"
      "visual visual"
      "actions actions";
    min-height: 0;
    padding: 68px 30px 64px;
  }

  .top3-card__visual {
    width: min(100%, 520px);
    height: auto;
    aspect-ratio: 1.45;
    margin: 0 auto;
  }

  .top3-card:not(.is-open) .top3-card__summary-grid {
    grid-template-columns: minmax(180px, 1fr) auto 34px;
    grid-template-areas:
      "identity logo chevron"
      "actions actions actions";
    gap: 14px 24px;
    padding: 20px 23px;
  }

  .top3-card:not(.is-open) .top3-card__actions {
    justify-self: stretch;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .top3__container {
    width: min(100% - 28px, 1000px);
  }

  .top3__list {
    gap: 18px;
  }

  .top3-card {
    border-radius: 22px;
  }

  .top3-card__badge {
    height: 42px;
    min-width: 160px;
    padding-left: 16px;
    font-size: 13px;
  }

  .top3-card__summary-grid {
    display: flex;
    flex-direction: column;
    gap: 19px;
    padding: 61px 18px 47px;
  }

  .top3-card__identity {
    width: 100%;
  }

  .top3-card__title {
    font-size: 21px;
  }

  .top3-card__intro,
  .top3-card__bullets,
  .top3-card__body {
    font-size: 15px;
  }

  .top3-card__logo {
    order: -1;
    align-self: flex-end;
    margin: -24px 5px -4px 0;
  }

  .top3-card__visual {
    width: 100%;
    height: auto;
    aspect-ratio: 1.4;
  }

  .top3-card__actions,
  .top3-card__footer {
    width: 100%;
  }

  .top3-card__actions {
    justify-content: center;
  }

  .top3-card__price {
    height: 36px;
    font-size: 12px;
  }

  .top3-card__price::after {
    top: 8px;
    width: 19px;
    height: 19px;
  }

  .top3-button {
    min-width: 216px;
    min-height: 49px;
    padding-inline: 31px;
    font-size: 13px;
  }

  .top3-card__body {
    padding: 24px 18px 30px;
  }

  .top3-card__body h4 {
    font-size: 18px;
  }

  .top3-card__highlight {
    margin: 25px 0 !important;
  }

  .top3-procon {
    grid-template-columns: 1fr;
    gap: 29px;
    margin-top: 36px;
    padding-inline: 0;
  }

  .top3-card__footer {
    min-height: 92px;
    padding: 16px 12px;
  }

  .top3-card:not(.is-open) .top3-card__summary-grid {
    display: grid;
    grid-template-columns: 1fr 32px;
    grid-template-areas:
      "identity chevron"
      "actions actions";
    padding: 19px 17px;
    gap: 14px;
  }

  .top3-card:not(.is-open) .top3-card__logo {
    display: none;
  }

  .top3-card:not(.is-open) .top3-card__title {
    font-size: 19px;
  }

  .top3-card:not(.is-open) .top3-card__title span {
    font-size: 15px;
  }

  .top3-card:not(.is-open) .top3-card__actions {
    justify-content: flex-start;
  }

  .top3-card:not(.is-open) .top3-button {
    min-width: 212px;
  }
}
/* =====================================================
   SUITABILITY / FÜR WEN EIGNEN SICH GEWICHTSDECKEN
===================================================== */

.suitability {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: 78px 0 118px;
  background: #ffffff;
}

/* Верхнюю волну убираем, так как переход уже есть у секции выше */
.suitability::before {
  display: none;
}

.suitability::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: -5%;
  width: 110%;
  height: 72px;
  background: var(--sky);
  clip-path: ellipse(60% 74% at 50% 100%);
}

.suitability__inner {
  position: relative;
  z-index: 1;
}

.suitability__header {
  text-align: center;
  margin-bottom: 40px;
}

.suitability__header .eyebrow {
  justify-content: center;
}

.suitability__header .section-title {
  margin-bottom: 27px;
}

.suitability__header p {
  max-width: 700px;
  margin: 0 auto 17px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
  text-align: left;
}

.suitability__figure {
  margin: 42px auto;
  text-align: center;
}

.suitability__figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

.suitability__figure--main {
  width: min(760px, 100%);
  margin-top: 46px;
  margin-bottom: 44px;
}

.suitability__figure--bottom {
  width: min(730px, 100%);
  margin-top: 62px;
  margin-bottom: 20px;
}

.suitability__figure figcaption {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 13px;
  background: #f1f7fe;
  color: #5d7286;
  font-size: 0.8rem;
  line-height: 1.45;
}

.suitability__article {
  margin-bottom: 36px;
}

.suitability__article p,
.suitability__notice p,
.suitability__contra p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 1.01rem;
  line-height: 1.7;
}

.suitability__list {
  margin: 18px 0 0;
  padding-left: 25px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.suitability__list li::marker {
  color: var(--brand);
}

/* Accordion */

.suitability-accordion {
  display: grid;
  gap: 10px;
  margin: 36px 0 43px;
}

.suitability-accordion__item {
  overflow: hidden;
  background: #e5f1fd;
  border-radius: 3px 3px 31px 3px;
  transition: background-color 0.2s ease;
}

.suitability-accordion__item[data-open="true"] {
  background: #dfedf9;
}

.suitability-accordion__button {
  width: 100%;
  min-height: 60px;
  border: 0;
  padding: 15px 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: transparent;
  color: #19334c;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.suitability-accordion__button:hover {
  background: rgba(255, 255, 255, 0.28);
}

.suitability-accordion__button:focus-visible {
  outline: 3px solid rgba(9, 106, 180, 0.24);
  outline-offset: -3px;
}

.suitability-accordion__title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}

.suitability-accordion__emoji {
  flex-shrink: 0;
  font-size: 1.05rem;
}

.suitability-accordion__plus {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.suitability-accordion__plus::before,
.suitability-accordion__plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #4d667e;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.suitability-accordion__plus::before {
  width: 14px;
  height: 1px;
}

.suitability-accordion__plus::after {
  width: 1px;
  height: 14px;
}

.suitability-accordion__button[aria-expanded="true"]
.suitability-accordion__plus::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.suitability-accordion__panel {
  background: #f6faff;
}

.suitability-accordion__content {
  padding: 0 23px 20px 52px;
}

.suitability-accordion__content p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.7;
}

/* Notice */

.suitability__notice {
  margin: 47px 0 42px;
}

.suitability__notice strong {
  color: var(--ink);
}

.suitability__warning {
  margin: 25px 0 0;
  padding: 17px 24px;
  border-left: 5px solid #7bb8d4;
  background: #ffffff;
  color: #576e82;
  font-size: 0.97rem;
  font-style: italic;
  line-height: 1.65;
}

.suitability__warning strong {
  color: var(--ink);
}

.suitability__contra {
  margin-top: 44px;
}

.suitability__contra h3 {
  margin: 0 0 19px;
  color: var(--brand);
  font-size: clamp(1.4rem, 3vw, 1.72rem);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.suitability-accordion--contra {
  margin-top: 30px;
}

/* Responsive */

@media (max-width: 820px) {
  .suitability {
    margin-top: 0;
    padding-top: 64px;
    padding-bottom: 98px;
  }

  .suitability__header {
    margin-bottom: 32px;
  }

  .suitability__header p {
    text-align: left;
  }

  .suitability__figure--main {
    margin-top: 30px;
    margin-bottom: 34px;
  }
}

@media (max-width: 600px) {
  .suitability {
    margin-top: 0;
    padding-top: 48px;
    padding-bottom: 82px;
  }

  .suitability::after {
    height: 45px;
  }

  .suitability__header .section-title {
    margin-bottom: 19px;
  }

  .suitability__header p,
  .suitability__article p,
  .suitability__notice p,
  .suitability__contra p {
    font-size: 0.94rem;
  }

  .suitability__list {
    font-size: 0.94rem;
    padding-left: 21px;
  }

  .suitability-accordion {
    margin: 29px 0 36px;
    gap: 8px;
  }

  .suitability-accordion__button {
    min-height: 56px;
    padding: 14px 15px;
    gap: 12px;
    font-size: 0.91rem;
  }

  .suitability-accordion__title {
    gap: 6px;
  }

  .suitability-accordion__content {
    padding: 0 15px 17px 38px;
  }

  .suitability-accordion__content p {
    font-size: 0.89rem;
  }

  .suitability__warning {
    padding: 14px 16px;
    font-size: 0.9rem;
  }

  .suitability__figure--bottom {
    margin-top: 45px;
  }
}
/* =====================================================
   ARTICLE TIP / РЕДАКЦИОННЫЙ ИНФОРМАЦИОННЫЙ БЛОК
===================================================== */

.article-tip {
  position: relative;
  width: 100%;
  margin: 32px 0;
  padding: 18px 28px 18px 25px;
  background: #ffffff;
  border-left: 5px solid #83bfd8;
  border-radius: 0 0 22px 0;
  box-sizing: border-box;
}

.article-tip__text {
  margin: 0;
  color: #5c6771;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.75;
}

.article-tip__title {
  color: #56616c;
  font-weight: 700;
}

.article-tip__link {
  color: #0b72d0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-tip__link:hover {
  color: #075ca9;
  text-decoration: underline;
}

.article-tip__link:focus-visible {
  outline: 2px solid rgba(11, 114, 208, 0.3);
  outline-offset: 2px;
  border-radius: 2px;
}

@media (max-width: 600px) {
  .article-tip {
    margin: 25px 0;
    padding: 15px 16px 15px 17px;
    border-left-width: 4px;
    border-radius: 0 0 17px 0;
  }

  .article-tip__text {
    font-size: 0.92rem;
    line-height: 1.65;
  }
}
/* =====================================================
   WEIGHT CALCULATOR
===================================================== */

.weight-calc {
  width: 100%;
  margin: 42px 0;
  padding: 34px 36px 30px;
  background: #eaf4ff;
  border: 1px solid #cfe3f5;
  border-radius: 22px;
  box-sizing: border-box;
}

.weight-calc__header {
  margin-bottom: 27px;
}

.weight-calc__title {
  margin: 0 0 9px;
  color: #075f9e;
  font-size: clamp(1.36rem, 2.2vw, 1.62rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.weight-calc__description {
  max-width: 630px;
  margin: 0;
  color: #436079;
  font-size: 0.98rem;
  line-height: 1.65;
}

.weight-calc__controls {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 22px;
}

.weight-calc__field {
  flex: 1 1 auto;
  min-width: 0;
}

.weight-calc__label {
  display: block;
  margin-bottom: 9px;
  color: #163d5e;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.weight-calc__input-wrap {
  position: relative;
  width: 100%;
}

.weight-calc__input {
  display: block;
  width: 100%;
  height: 56px;
  padding: 0 58px 0 18px;
  border: 1px solid #bdd9ef;
  border-radius: 14px;
  background: #ffffff;
  color: #18364e;
  font: inherit;
  font-size: 1rem;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.weight-calc__input::placeholder {
  color: #8799a9;
}

.weight-calc__input:hover {
  border-color: #9cc6e6;
}

.weight-calc__input:focus {
  outline: none;
  border-color: #147bc1;
  box-shadow: 0 0 0 4px rgba(20, 123, 193, 0.12);
}

.weight-calc__input.is-error {
  border-color: #d84949;
  box-shadow: 0 0 0 4px rgba(216, 73, 73, 0.1);
}

.weight-calc__unit {
  position: absolute;
  top: 50%;
  right: 18px;
  color: #63809a;
  font-size: 0.93rem;
  font-weight: 600;
  transform: translateY(-50%);
  pointer-events: none;
}

.weight-calc__help {
  display: block;
  margin-top: 8px;
  color: #607b92;
  font-size: 0.82rem;
  line-height: 1.4;
}

.weight-calc__error {
  display: none;
  margin-top: 7px;
  color: #bc3131;
  font-size: 0.84rem;
  line-height: 1.4;
}

.weight-calc__error.is-visible {
  display: block;
}

.weight-calc__button {
  flex: 0 0 auto;
  min-width: 145px;
  height: 56px;
  padding: 0 25px;
  border: 0;
  border-radius: 999px;
  background: #ffab2e;
  color: #ffffff;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 9px 17px rgba(241, 150, 31, 0.2);
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.weight-calc__button:hover {
  background: #f59b17;
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(241, 150, 31, 0.26);
}

.weight-calc__button:active {
  transform: translateY(0);
}

.weight-calc__button:focus-visible {
  outline: 3px solid rgba(255, 171, 46, 0.34);
  outline-offset: 3px;
}

.weight-calc__result {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  min-height: 76px;
  padding: 17px 19px;
  background: #ffffff;
  border: 1px solid #d5e7f6;
  border-radius: 15px;
  box-sizing: border-box;
}

.weight-calc__result.is-calculated {
  border-color: #acd1ea;
  background: #ffffff;
}

.weight-calc__result-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  margin-top: 1px;
  border-radius: 50%;
  background: #dceeff;
  color: #0872b9;
  font-size: 0.9rem;
  font-weight: 700;
}

.weight-calc__result.is-calculated .weight-calc__result-icon {
  background: #ffab2e;
  color: #ffffff;
}

.weight-calc__result-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.weight-calc__result-title {
  display: block;
  color: #075f9e;
  font-size: 1.06rem;
  line-height: 1.35;
}

.weight-calc__result-text {
  display: block;
  color: #547086;
  font-size: 0.91rem;
  line-height: 1.55;
}

.weight-calc__disclaimer {
  margin: 17px 0 0;
  color: #657e93;
  font-size: 0.81rem;
  line-height: 1.55;
}

/* Tablet */

@media (max-width: 720px) {
  .weight-calc {
    padding: 28px 24px 25px;
  }

  .weight-calc__controls {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .weight-calc__button {
    width: 100%;
  }
}

/* Smartphone */

@media (max-width: 520px) {
  .weight-calc {
    margin: 30px 0;
    padding: 23px 17px 20px;
    border-radius: 18px;
  }

  .weight-calc__header {
    margin-bottom: 21px;
  }

  .weight-calc__title {
    font-size: 1.28rem;
  }

  .weight-calc__description {
    font-size: 0.91rem;
    line-height: 1.58;
  }

  .weight-calc__input,
  .weight-calc__button {
    height: 52px;
  }

  .weight-calc__result {
    min-height: 0;
    padding: 14px;
    gap: 11px;
  }

  .weight-calc__result-title {
    font-size: 0.97rem;
  }

  .weight-calc__result-text {
    font-size: 0.85rem;
  }
}
/* =====================================================
   COMPARE MATRIX / GEWICHTSDECKEN IM VERGLEICH
===================================================== */

.compare-matrix {
  position: relative;
  overflow: hidden;
  padding: 118px 0 108px;
  background: #ffffff;
}

.compare-matrix::before {
  content: "";
  position: absolute;
  top: 0;
  left: -5%;
  width: 110%;
  height: 88px;
  background: #dfeefa;
  clip-path: ellipse(58% 82% at 50% 0%);
}

.compare-matrix::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: -5%;
  width: 110%;
  height: 78px;
  background: #dfeefa;
  clip-path: ellipse(60% 74% at 50% 100%);
}

.compare-matrix__inner {
  position: relative;
  z-index: 1;
}

.compare-matrix__header {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.compare-matrix__header .section-title {
  margin-bottom: 28px;
}

.compare-matrix__header p {
  max-width: 820px;
  margin: 0 auto 18px;
  color: #556b7d;
  font-size: 1.02rem;
  line-height: 1.72;
  text-align: left;
}

.compare-matrix__desktop {
  display: block;
}

.compare-matrix__mobile {
  display: none;
}

/* ===== Mobile cards ===== */

.compare-mobile-card {
  padding: 18px;
  background: #ffffff;
  border: 2px solid #1d72d8;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(27, 85, 146, 0.06);
}

.compare-mobile-card + .compare-mobile-card {
  margin-top: 18px;
}

.compare-mobile-card__title {
  margin: 0 0 14px;
  color: #156fd1;
  font-size: 1.08rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}

.compare-mobile-card__image {
  width: 100%;
  max-width: 260px;
  margin: 0 auto 16px;
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
  border-radius: 12px;
  background: #edf4fb;
}

.compare-mobile-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.compare-mobile-card__rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.compare-mobile-card__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 11px 0;
  border-bottom: 1px solid #dce8f4;
}

.compare-mobile-card__row:last-child {
  border-bottom: 0;
}

.compare-mobile-card__row span {
  color: #0f71cf;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
}

.compare-mobile-card__row strong {
  color: #3b5061;
  font-size: 0.91rem;
  font-weight: 500;
  line-height: 1.6;
}

/* ===== Responsive ===== */

@media (max-width: 920px) {
  .compare-matrix {
    padding: 98px 0 92px;
  }

  .compare-matrix::before {
    height: 68px;
  }

  .compare-matrix::after {
    height: 58px;
  }

  .compare-matrix__desktop {
    display: none;
  }

  .compare-matrix__mobile {
    display: block;
    margin-top: 18px;
  }
}

@media (max-width: 640px) {
  .compare-matrix {
    padding: 76px 0 74px;
  }

  .compare-matrix::before {
    height: 46px;
  }

  .compare-matrix::after {
    height: 42px;
  }

  .compare-matrix__header {
    margin-bottom: 28px;
  }

  .compare-matrix__header .section-title {
    margin-bottom: 20px;
  }

  .compare-matrix__header p {
    font-size: 0.94rem;
    line-height: 1.65;
    margin-bottom: 14px;
  }

  .compare-mobile-card {
    padding: 15px;
    border-radius: 16px;
  }

  .compare-mobile-card__title {
    font-size: 1rem;
  }

  .compare-mobile-card__row span {
    font-size: 0.81rem;
  }

  .compare-mobile-card__row strong {
    font-size: 0.88rem;
  }
}
/* =====================================================
   COMPARE MATRIX SECTION
===================================================== */

.compare-matrix {
  position: relative;
  overflow: hidden;
  padding: 108px 0 112px;
  background: #ffffff;
}

.compare-matrix::before {
  content: "";
  position: absolute;
  top: 0;
  left: -5%;
  width: 110%;
  height: 72px;
  background: #e4f1fc;
  clip-path: ellipse(58% 82% at 50% 0%);
}

.compare-matrix::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: -5%;
  width: 110%;
  height: 72px;
  background: #e4f1fc;
  clip-path: ellipse(58% 78% at 50% 100%);
}

.compare-matrix__container {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.compare-matrix__header {
  max-width: 900px;
  margin: 0 auto 42px;
}

.compare-matrix__header .section-title {
  margin: 0 0 28px;
  color: #075f9e;
  font-size: clamp(2rem, 3.1vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -0.045em;
  text-align: center;
}

.compare-matrix__header p {
  margin: 0 0 18px;
  color: #536a7d;
  font-size: 1rem;
  line-height: 1.7;
}

.compare-matrix__header strong {
  color: #354d62;
}

.weight-table__mobile-hint {
  display: none;
}

/* =====================================================
   ACTUAL TABLE
===================================================== */

.weight-table-scroll {
  width: 100%;
  overflow: hidden;
  border: 2px solid #1374dd;
  border-radius: 22px;
  background: #ffffff;
  box-sizing: border-box;
}

.weight-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  background: #ffffff;
}

.weight-table__col-label {
  width: 17%;
}

.weight-table__col-product {
  width: 20.75%;
}

.weight-table th,
.weight-table td {
  padding: 18px 15px;
  border-right: 1px solid #cfe1f4;
  border-bottom: 1px solid #cfe1f4;
  box-sizing: border-box;
  vertical-align: middle;
}

.weight-table tr > *:last-child {
  border-right: 0;
}

.weight-table tbody tr:last-child > * {
  border-bottom: 0;
}

/* Header */

.weight-table thead th {
  height: 236px;
  padding: 18px 13px;
  background: #ffffff;
  border-bottom: 2px solid #1374dd;
  vertical-align: top;
}

.weight-table__corner {
  color: #0c6dcc;
  background: #e6f1fc !important;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  vertical-align: middle !important;
}

.weight-table__product {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 15px;
}

.weight-table__product h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  margin: 0;
  color: #076ccd;
  font-size: 0.97rem;
  line-height: 1.45;
  font-weight: 700;
  text-align: center;
}

.weight-table__image {
  width: 100%;
  height: 128px;
  margin-top: auto;
  overflow: hidden;
  border-radius: 2px;
  background: #e9f2fb;
}

.weight-table__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Body */

.weight-table tbody th {
  color: #086bc9;
  background: #e6f1fc;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.weight-table tbody td {
  color: #324a5d;
  background: #ffffff;
  font-size: 0.88rem;
  line-height: 1.62;
  text-align: center;
}

.weight-table tbody tr:nth-child(even) td {
  background: #f8fbff;
}

.weight-table__stack {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
}

.weight-table__stack--text {
  gap: 8px;
}

.weight-table__no {
  color: #ff4e78;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
}

/* Screen reader helper */

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
}

/* =====================================================
   TABLET: всё ещё цельная таблица, появляется скролл
===================================================== */

@media (max-width: 1080px) {
  .compare-matrix__container {
    width: min(100% - 34px, 1240px);
  }

  .weight-table__mobile-hint {
    display: block;
    margin: 0 0 12px;
    color: #5f7890;
    font-size: 0.84rem;
    text-align: right;
  }

  .weight-table-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .weight-table {
    width: 1040px;
    min-width: 1040px;
  }

  .weight-table thead th:first-child,
  .weight-table tbody th {
    position: sticky;
    left: 0;
    z-index: 2;
    box-shadow: 1px 0 0 #cfe1f4;
  }

  .weight-table thead th:first-child {
    z-index: 3;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 640px) {
  .compare-matrix {
    padding: 74px 0 78px;
  }

  .compare-matrix::before {
    height: 44px;
  }

  .compare-matrix::after {
    height: 44px;
  }

  .compare-matrix__container {
    width: calc(100% - 24px);
  }

  .compare-matrix__header {
    margin-bottom: 30px;
  }

  .compare-matrix__header .section-title {
    margin-bottom: 19px;
    font-size: 1.72rem;
  }

  .compare-matrix__header p {
    margin-bottom: 13px;
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .weight-table-scroll {
    border-radius: 16px;
  }

  .weight-table {
    width: 910px;
    min-width: 910px;
  }

  .weight-table__col-label {
    width: 138px;
  }

  .weight-table__col-product {
    width: 193px;
  }

  .weight-table th,
  .weight-table td {
    padding: 14px 10px;
  }

  .weight-table thead th {
    height: 198px;
  }

  .weight-table__product h3 {
    min-height: 54px;
    font-size: 0.86rem;
  }

  .weight-table__image {
    height: 104px;
  }

  .weight-table tbody th {
    font-size: 0.83rem;
  }

  .weight-table tbody td {
    font-size: 0.8rem;
  }
}
/* =====================================================
   FAQ SOURCES LIST
===================================================== */

.accordion__panel--sources {
  padding: 0;
  background: #e8f3fe;
}

.sources-panel {
  padding: 25px 31px 28px;
  background: #e8f3fe;
}

.sources-list {
  display: flex;
  flex-direction: column;
  gap: 21px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: sources-counter;
}

.sources-list__item {
  position: relative;
  margin: 0;
  padding-left: 27px;
  counter-increment: sources-counter;
  color: #1475dc;
  font-size: 1rem;
  line-height: 1.65;
}

/* маленькая стрелка слева */
.sources-list__item::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 2px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #83b7d2;
  transform: translateY(-50%);
}

/* номер источника */
.sources-list__link::before {
  content: counter(sources-counter);
  position: relative;
  top: -0.38em;
  margin-right: 5px;
  color: #1475dc;
  font-size: 0.7em;
  line-height: 0;
}

.sources-list__link {
  color: #1475dc;
  font-weight: 400;
  text-decoration: none;
  word-break: break-word;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.sources-list__link:hover {
  color: #075bb8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sources-list__link:focus-visible {
  outline: 2px solid rgba(20, 117, 220, 0.28);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Tablet */

@media (max-width: 760px) {
  .sources-panel {
    padding: 22px 21px 24px;
  }

  .sources-list {
    gap: 17px;
  }

  .sources-list__item {
    padding-left: 23px;
    font-size: 0.94rem;
  }
}

/* Smartphone */

@media (max-width: 520px) {
  .sources-panel {
    padding: 18px 15px 20px;
  }

  .sources-list {
    gap: 15px;
  }

  .sources-list__item {
    padding-left: 19px;
    font-size: 0.88rem;
    line-height: 1.58;
  }

  .sources-list__item::before {
    left: 0;
    border-top-width: 3px;
    border-bottom-width: 3px;
    border-left-width: 5px;
  }
}
/* =====================================================
   CONSULTATION / CALLBACK REQUEST
===================================================== */

.consultation {
  position: relative;
  padding: 82px 0 88px;
  background: #eaf4ff;
}

.consultation__container {
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: 44px;
  align-items: start;
}

.consultation__eyebrow {
  display: inline-flex;
  margin: 0 0 17px;
  padding: 7px 15px;
  border-radius: 999px;
  background: #d3eafe;
  color: #0670bd;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.consultation__title {
  margin: 0 0 20px;
  color: #075f9e;
  font-size: clamp(2rem, 3vw, 2.44rem);
  line-height: 1.16;
  letter-spacing: -0.045em;
}

.consultation__lead {
  margin: 0 0 31px;
  color: #49657b;
  font-size: 1rem;
  line-height: 1.75;
}

.consultation__benefits {
  display: grid;
  gap: 15px;
}

.consultation-benefit {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid #d4e7f7;
  border-radius: 16px;
}

.consultation-benefit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #e5f3ff;
  color: #0873c3;
}

.consultation-benefit__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.consultation-benefit strong {
  display: block;
  margin: 1px 0 5px;
  color: #123e61;
  font-size: 0.98rem;
}

.consultation-benefit p {
  margin: 0;
  color: #5a7488;
  font-size: 0.89rem;
  line-height: 1.55;
}

.consultation__note {
  margin: 24px 0 0;
  padding: 16px 18px;
  border-left: 4px solid #83bfd8;
  background: rgba(255, 255, 255, 0.65);
  color: #587185;
  font-size: 0.87rem;
  line-height: 1.6;
}

/* Form */

.consultation-form {
  padding: 34px 34px 30px;
  background: #ffffff;
  border: 1px solid #d3e7f7;
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(18, 70, 111, 0.07);
}

.consultation-form__header {
  margin-bottom: 27px;
}

.consultation-form__header h3 {
  margin: 0 0 8px;
  color: #075f9e;
  font-size: 1.55rem;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.consultation-form__header p {
  margin: 0;
  color: #557084;
  font-size: 0.92rem;
  line-height: 1.62;
}

.consultation-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 19px 16px;
  margin-bottom: 25px;
}

.consultation-field {
  min-width: 0;
}

.consultation-field__label {
  display: block;
  margin-bottom: 8px;
  color: #153c5b;
  font-size: 0.89rem;
  font-weight: 700;
  line-height: 1.35;
}

.consultation-field__label span,
.consultation-checkbox__text > span {
  color: #e07d22;
}

.consultation-field__input {
  display: block;
  width: 100%;
  height: 53px;
  padding: 0 15px;
  border: 1px solid #c7dff1;
  border-radius: 12px;
  background: #ffffff;
  color: #17364d;
  font: inherit;
  font-size: 0.95rem;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.consultation-field__input::placeholder {
  color: #8a9cab;
}

.consultation-field__input:hover {
  border-color: #a8cce8;
}

.consultation-field__input:focus {
  outline: none;
  border-color: #0c73c2;
  box-shadow: 0 0 0 4px rgba(12, 115, 194, 0.11);
}

.consultation-field__input.is-error {
  border-color: #d64646;
  box-shadow: 0 0 0 4px rgba(214, 70, 70, 0.1);
}

.consultation-field__error {
  display: none;
  margin-top: 7px;
  color: #c33434;
  font-size: 0.78rem;
  line-height: 1.4;
}

.consultation-field__error.is-visible {
  display: block;
}

.consultation-consents {
  margin: 0 0 19px;
  padding: 0;
  border: 0;
}

.consultation-checkbox {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 0 0 14px;
  cursor: pointer;
}

.consultation-checkbox__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.consultation-checkbox__control {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  margin-top: 2px;
  border: 1px solid #b7d5ea;
  border-radius: 6px;
  background: #ffffff;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.consultation-checkbox__control::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 7px;
  width: 5px;
  height: 9px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  opacity: 0;
  transform: rotate(45deg);
}

.consultation-checkbox__input:checked + .consultation-checkbox__control {
  border-color: #0a74c5;
  background: #0a74c5;
}

.consultation-checkbox__input:checked + .consultation-checkbox__control::after {
  opacity: 1;
}

.consultation-checkbox__input:focus-visible + .consultation-checkbox__control {
  outline: 3px solid rgba(10, 116, 197, 0.2);
  outline-offset: 2px;
}

.consultation-checkbox__input.is-error + .consultation-checkbox__control {
  border-color: #d64646;
  box-shadow: 0 0 0 3px rgba(214, 70, 70, 0.08);
}

.consultation-checkbox__text {
  color: #566f83;
  font-size: 0.84rem;
  line-height: 1.62;
}

.consultation-checkbox__text a {
  color: #0873c3;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consultation-checkbox__text a:hover {
  color: #075b98;
}

.consultation-form__required {
  margin: 0 0 19px;
  color: #677f93;
  font-size: 0.78rem;
}

.consultation-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: 100%;
  height: 57px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: #ffab2e;
  color: #ffffff;
  font: inherit;
  font-size: 0.97rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 11px 20px rgba(245, 157, 28, 0.21);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.consultation-form__submit svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.consultation-form__submit:hover {
  background: #f59a14;
  transform: translateY(-1px);
  box-shadow: 0 14px 23px rgba(245, 157, 28, 0.29);
}

.consultation-form__submit:focus-visible {
  outline: 3px solid rgba(255, 171, 46, 0.33);
  outline-offset: 3px;
}

.consultation-form__disclaimer {
  margin: 18px 0 0;
  color: #718799;
  font-size: 0.77rem;
  line-height: 1.55;
  text-align: center;
}

/* =====================================================
   PROCESSING MODAL
===================================================== */

body.is-processing {
  overflow: hidden;
}

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

.processing-modal {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.processing-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 34, 57, 0.62);
  backdrop-filter: blur(4px);
}

.processing-modal__dialog {
  position: relative;
  width: min(470px, 100%);
  padding: 37px 34px 34px;
  border-radius: 25px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 28px 70px rgba(7, 32, 55, 0.24);
}

.processing-animation {
  width: 102px;
  margin: 0 auto 23px;
}

.processing-animation__blanket {
  position: relative;
  height: 56px;
}

.processing-animation__blanket span {
  position: absolute;
  left: 50%;
  display: block;
  width: 67px;
  height: 18px;
  border-radius: 8px;
  background: #65b8d6;
  transform: translateX(-50%);
  animation: blanketFloat 1.55s ease-in-out infinite;
}

.processing-animation__blanket span:nth-child(1) {
  top: 0;
  width: 59px;
  background: #7bc9e1;
}

.processing-animation__blanket span:nth-child(2) {
  top: 16px;
  animation-delay: 0.08s;
}

.processing-animation__blanket span:nth-child(3) {
  top: 32px;
  width: 75px;
  background: #267cce;
  animation-delay: 0.16s;
}

.processing-animation__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.processing-animation__dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0a70bf;
  animation: processingDot 1s ease-in-out infinite;
}

.processing-animation__dots span:nth-child(2) {
  animation-delay: 0.16s;
}

.processing-animation__dots span:nth-child(3) {
  animation-delay: 0.32s;
}

.processing-modal__eyebrow {
  margin: 0 0 10px;
  color: #1680c5;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.processing-modal__title {
  margin: 0 0 11px;
  color: #075f9e;
  font-size: 1.52rem;
  line-height: 1.28;
  letter-spacing: -0.035em;
}

.processing-modal__text {
  min-height: 25px;
  margin: 0 0 24px;
  color: #597386;
  font-size: 0.93rem;
  line-height: 1.6;
}

.processing-progress {
  width: 100%;
  height: 7px;
  margin-bottom: 26px;
  overflow: hidden;
  border-radius: 999px;
  background: #e4eef7;
}

.processing-progress__bar {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #ffab2e;
  animation: processingProgress 5s linear forwards;
}

.processing-steps {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.processing-steps li {
  position: relative;
  padding-left: 29px;
  color: #8a9cab;
  font-size: 0.86rem;
  line-height: 1.45;
  transition: color 0.25s ease;
}

.processing-steps li::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #c4d9eb;
  border-radius: 50%;
  background: #ffffff;
}

.processing-steps li.is-active {
  color: #194668;
  font-weight: 600;
}

.processing-steps li.is-active::before {
  border-color: #0a74c5;
  background: #0a74c5;
  box-shadow: inset 0 0 0 4px #ffffff;
}

.processing-steps li.is-complete {
  color: #527087;
}

.processing-steps li.is-complete::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: #0a74c5;
  background: #0a74c5;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
}

@keyframes blanketFloat {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-3px);
  }
}

@keyframes processingDot {
  0%, 100% {
    opacity: 0.3;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

@keyframes processingProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 920px) {
  .consultation {
    padding: 68px 0 72px;
  }

  .consultation__container {
    grid-template-columns: 1fr;
    gap: 33px;
    max-width: 670px;
  }
}

@media (max-width: 620px) {
  .consultation {
    padding: 51px 0 56px;
  }

  .consultation__container {
    width: calc(100% - 26px);
  }

  .consultation__title {
    font-size: 1.75rem;
  }

  .consultation__lead {
    font-size: 0.93rem;
  }

  .consultation-form {
    padding: 25px 17px 22px;
    border-radius: 18px;
  }

  .consultation-form__header h3 {
    font-size: 1.35rem;
  }

  .consultation-form__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .consultation-field__input {
    height: 51px;
  }

  .processing-modal__dialog {
    padding: 30px 19px 25px;
    border-radius: 20px;
  }

  .processing-modal__title {
    font-size: 1.3rem;
  }
}
/* =====================================================
   SITE FOOTER / EXTENDED LEGAL DISCLAIMER
===================================================== */

.site-footer__grid--extended {
  display: grid;
  grid-template-columns: minmax(255px, 1.5fr) repeat(3, minmax(145px, 0.78fr));
  gap: 38px;
  align-items: start;
}

.site-footer__brand-text {
  max-width: 350px;
  margin: 19px 0 22px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.9rem;
  line-height: 1.7;
}

.site-footer__address {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  font-style: normal;
  line-height: 1.7;
}

.site-footer__address strong {
  display: inline-block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 700;
}

.site-footer__column {
  min-width: 0;
}

.site-footer__disclaimer {
  margin: 46px 0 33px;
  padding: 31px 32px 28px;
  border: 1px solid rgba(166, 211, 244, 0.22);
  border-radius: 20px;
  background: rgba(225, 241, 255, 0.065);
}

.site-footer__disclaimer-title {
  margin: 0 0 26px;
  color: #ffffff;
  font-size: 1.19rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.site-footer__disclaimer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px 34px;
}

.site-footer__disclaimer-item h3 {
  margin: 0 0 9px;
  color: #d8ecfd;
  font-size: 0.91rem;
  line-height: 1.4;
  font-weight: 700;
}

.site-footer__disclaimer-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.72;
}

.site-footer__disclaimer-item a {
  color: #8dd0ff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__disclaimer-item a:hover {
  color: #ffffff;
}

.site-footer__disclaimer-item a:focus-visible {
  outline: 2px solid rgba(141, 208, 255, 0.55);
  outline-offset: 3px;
  border-radius: 3px;
}

.site-footer__disclaimer-note {
  margin: 28px 0 0;
  padding: 18px 20px;
  border-left: 4px solid #79bdd9;
  border-radius: 0 12px 12px 0;
  background: rgba(255, 255, 255, 0.065);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.83rem;
  line-height: 1.72;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding-top: 24px;
  border-top: 1px solid rgba(166, 211, 244, 0.18);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.55;
}

/* TABLET */

@media (max-width: 980px) {
  .site-footer__grid--extended {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 26px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__brand-text {
    max-width: 620px;
  }
}

/* MOBILE */

@media (max-width: 680px) {
  .site-footer__grid--extended {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-footer__disclaimer {
    margin-top: 38px;
    padding: 24px 17px 21px;
    border-radius: 16px;
  }

  .site-footer__disclaimer-title {
    margin-bottom: 21px;
    font-size: 1.06rem;
  }

  .site-footer__disclaimer-grid {
    grid-template-columns: 1fr;
    gap: 21px;
  }

  .site-footer__disclaimer-item p {
    font-size: 0.8rem;
  }

  .site-footer__disclaimer-note {
    margin-top: 23px;
    padding: 15px 14px;
    font-size: 0.79rem;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 9px;
  }
}
/* =====================================================
   FOOTER NOTICE / COMPACT DISCLAIMER
===================================================== */

.site-footer__notice {
  margin-top: 34px;
  padding: 18px 21px;
  border: 1px solid rgba(132, 188, 220, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
}

.site-footer__notice p {
  max-width: 1080px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.81rem;
  line-height: 1.72;
}

.site-footer__notice strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.site-footer__notice a {
  color: #91d0f3;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.site-footer__notice a:hover {
  color: #ffffff;
}

.site-footer__notice a:focus-visible {
  outline: 2px solid rgba(145, 208, 243, 0.55);
  outline-offset: 2px;
  border-radius: 2px;
}

.site-footer__bottom {
  margin-top: 23px;
}

/* Smartphone */

@media (max-width: 600px) {
  .site-footer__notice {
    margin-top: 29px;
    padding: 15px 15px;
    border-radius: 10px;
  }

  .site-footer__notice p {
    font-size: 0.77rem;
    line-height: 1.65;
  }
}
/* =====================================================
   PRIVACY DIALOG
===================================================== */

.privacy-dialog {
  width: min(520px, calc(100% - 28px));
  max-width: none;
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: transparent;
  color: #18364e;
  overflow: visible;
}

.privacy-dialog::backdrop {
  background: rgba(11, 33, 53, 0.62);
  backdrop-filter: blur(4px);
}

.privacy-dialog__content {
  padding: 32px 31px 28px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(9, 31, 51, 0.26);
}

.privacy-dialog__content h2 {
  margin: 0 0 16px;
  color: #075f9e;
  font-size: 1.48rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.privacy-dialog__content p {
  margin: 0 0 15px;
  color: #536e82;
  font-size: 0.93rem;
  line-height: 1.67;
}

.privacy-dialog__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 26px;
}

.privacy-dialog__actions .btn {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.91rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.privacy-dialog__actions .btn--outline {
  border: 1px solid #c4ddeb;
  background: #ffffff;
  color: #086db5;
}

.privacy-dialog__actions .btn--accent {
  border: 0;
  background: #ffab2e;
  color: #ffffff;
}

@media (max-width: 520px) {
  .privacy-dialog__content {
    padding: 25px 18px 20px;
    border-radius: 18px;
  }

  .privacy-dialog__actions {
    flex-direction: column-reverse;
  }

  .privacy-dialog__actions .btn {
    width: 100%;
    box-sizing: border-box;
  }
}
/* Company details in footer */

.site-footer__company {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  line-height: 1.7;
}

.site-footer__company a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.site-footer__company a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}