:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-2: #eef3fa;
  --text: #0d1b2e;
  --muted: #4c5f79;
  --primary: #0a4ecf;
  --primary-strong: #073b9b;
  --accent: #ff8c1a;
  --line: #cfd8e6;
  --success: #0a8f45;
  --danger: #c72f2f;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 16px rgba(9, 34, 73, 0.08);
  --shadow-md: 0 16px 40px rgba(9, 34, 73, 0.12);
  --shadow-focus: 0 0 0 3px rgba(10, 78, 207, 0.35);
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 10% -20%, #e9f1ff 0%, #f4f7fb 45%, #f4f7fb 100%);
  color: var(--text);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -40px;
  background: var(--primary);
  color: #fff;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  z-index: 999;
}

.skip-link:focus {
  top: 12px;
}

:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
  border-radius: 8px;
}

.top-bar {
  background: #0f2342;
  color: #dce7fa;
  font-size: 0.92rem;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
}

.top-bar__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255, 255, 255, 0.11);
  color: #f7faff;
  border-radius: 999px;
  padding: 0.24rem 0.75rem;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(10px);
  background: rgba(244, 247, 251, 0.88);
  border-bottom: 1px solid rgba(207, 216, 230, 0.7);
}

.header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex: 0 0 auto;
}

.logo__image {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.logo__text {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  min-width: 220px;
  line-height: 1.15;
}

.logo__title {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.logo__subtitle {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav__link {
  text-decoration: none;
  color: #16315a;
  font-weight: 500;
  font-size: 0.93rem;
  padding: 0.6rem 0.78rem;
  border-radius: 10px;
  transition: background-color 0.2s ease;
}

.nav__link:hover {
  background: rgba(10, 78, 207, 0.1);
}

.nav__link[aria-current="page"] {
  background: rgba(10, 78, 207, 0.14);
  color: #0a3b9a;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.72rem 1.15rem;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

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

.btn--primary {
  background: linear-gradient(135deg, var(--primary), #1f68ef);
  color: #fff;
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--primary-strong), #0a4ecf);
}

.btn--ghost {
  border-color: #9fb1ce;
  color: #15335f;
  background: #fff;
}

.btn--ghost:hover {
  background: #edf3ff;
}

.btn--ghost[aria-current="page"] {
  background: rgba(10, 78, 207, 0.14);
  border-color: #0a4ecf;
  color: #0a3b9a;
}

.btn--download {
  border-style: dashed;
  border-color: #90a9d0;
}

.btn--accent {
  background: linear-gradient(135deg, #ff8c1a, #ff9f2e);
  color: #251200;
  border-color: #ffab4d;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #99abca;
  border-radius: 10px;
  background: #fff;
}

.menu-toggle__line {
  display: block;
  width: 20px;
  height: 2px;
  background: #14335f;
  margin: 4px auto;
  border-radius: 2px;
  transition: transform 0.2s ease;
}

.hero {
  padding: 4.2rem 0 2.2rem;
}

.hero__panel {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(135deg, #0e2a57, #0a4ecf 45%, #2393f0 100%);
  color: #f2f7ff;
  padding: clamp(1.4rem, 3vw, 3rem);
  min-height: 460px;
  box-shadow: var(--shadow-md);
}

.hero__panel::before,
.hero__panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero__panel::before {
  width: 340px;
  height: 340px;
  right: -130px;
  top: -90px;
}

.hero__panel::after {
  width: 280px;
  height: 280px;
  left: -120px;
  bottom: -110px;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.6rem;
  align-items: start;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero__lead {
  margin: 1rem 0 1.4rem;
  max-width: 58ch;
  color: #d7e8ff;
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.hero__proof {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  max-width: 56ch;
}

.hero__proof li {
  display: flex;
  align-items: start;
  gap: 0.55rem;
  font-size: 0.95rem;
}

.hero__proof li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.42rem;
  border-radius: 999px;
  background: #8ce3ff;
  flex-shrink: 0;
}

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 22px;
  padding: 1rem;
}

.hero-card h2 {
  margin: 0 0 0.6rem;
  color: #fff;
  font-size: 1.05rem;
}

.hero-card__list {
  margin: 0;
  padding-left: 1rem;
  color: #e9f2ff;
  font-size: 0.92rem;
}

.hero-card__list li + li {
  margin-top: 0.45rem;
}

.metrics {
  margin: 1.8rem 0 1.4rem;
}

.metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.metric {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.metric__value {
  display: block;
  font-size: 1.45rem;
  font-weight: 700;
  color: #0e3f9c;
  line-height: 1.15;
}

.metric__label {
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding: 2.8rem 0;
}

.section--light {
  background: var(--surface);
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.8rem;
  color: #0b4bbf;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section__title {
  margin: 0;
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section__lead {
  margin: 0.8rem 0 0;
  color: var(--muted);
  max-width: 70ch;
}

.segment-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.segment-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 0.7rem;
}

.segment-card h3 {
  margin: 0;
  font-size: 1.02rem;
}

.segment-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.segment-card__list {
  margin: 0;
  padding-left: 1rem;
  color: #273b59;
  font-size: 0.88rem;
}

.segment-card__list li + li {
  margin-top: 0.35rem;
}

.pack-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.pack {
  border: 1px solid #b9c9e1;
  border-radius: 22px;
  background: #fff;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  box-shadow: var(--shadow-sm);
}

.pack--featured {
  border-color: #0a4ecf;
  box-shadow: 0 14px 32px rgba(10, 78, 207, 0.18);
}

.pack__tag {
  align-self: flex-start;
  background: #e9f1ff;
  color: #0a4ecf;
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pack h3 {
  margin: 0;
  font-size: 1.2rem;
}

.pack__subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.pack__price {
  font-size: 1.55rem;
  font-weight: 700;
  color: #052d75;
  line-height: 1.1;
}

.pack__price small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.pack ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #213a5f;
  font-size: 0.88rem;
}

.pack ul li + li {
  margin-top: 0.3rem;
}

.process {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.9rem;
  box-shadow: var(--shadow-sm);
}

.step__num {
  display: inline-grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  background: #e8f1ff;
  color: #0a4ecf;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.step h3 {
  margin: 0;
  font-size: 0.98rem;
}

.step p {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.roi {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, #0c2d67, #0a4ecf);
  color: #eaf2ff;
  border-radius: 24px;
  padding: 1.3rem;
  box-shadow: var(--shadow-md);
}

.roi__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.roi label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  color: #d4e5ff;
}

.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid #9eb4d9;
  border-radius: 12px;
  min-height: 44px;
  padding: 0.62rem 0.72rem;
  font: inherit;
  background: #fff;
  color: #0f2442;
}

.textarea {
  min-height: 110px;
  resize: vertical;
}

.form-note {
  margin: 0.45rem 0 0;
  color: #3f516c;
  font-size: 0.8rem;
}

.error-text {
  color: var(--danger);
  margin-top: 0.25rem;
  font-size: 0.78rem;
}

.input[aria-invalid="true"],
.select[aria-invalid="true"],
.textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

.roi .input,
.roi .select {
  border: none;
}

.roi-result {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  padding: 1rem;
}

.roi-result h3 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
  color: #fff;
}

.roi-result__value {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.1;
}

.roi-result__list {
  margin: 0.5rem 0 0;
  padding-left: 1rem;
  font-size: 0.88rem;
}

.cases {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.case-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.case-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.case-card__meta {
  margin: 0.35rem 0 0;
  color: #0a4ecf;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.case-card p {
  margin: 0.65rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.case-kpi {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.case-kpi span {
  background: #eff5ff;
  color: #0b418f;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.78rem;
}

.guarantees {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.guarantee {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.guarantee h3 {
  margin: 0;
  font-size: 1rem;
}

.guarantee p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq {
  margin-top: 1.3rem;
  display: grid;
  gap: 0.65rem;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.75rem 0.9rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.lead-box {
  margin-top: 1.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.2rem;
  box-shadow: var(--shadow-md);
}

.lead-box__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

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

.checkline {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.82rem;
  color: #4f617e;
}

.checkline a {
  color: #0a4ecf;
}

.checkline input {
  margin-top: 0.2rem;
}

.cta-panel {
  background: linear-gradient(135deg, #0d2f6b, #0b4ec4);
  color: #ecf3ff;
  border-radius: 16px;
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.cta-panel h3 {
  margin: 0;
  font-size: 1.1rem;
}

.cta-panel ul {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.9rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.38rem;
  font-size: 0.88rem;
}

.contact-list a {
  color: #cde0ff;
}

.footer {
  margin-top: 2.8rem;
  background: #0f2342;
  color: #d4e3ff;
  padding: 2rem 0 1.1rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}

.footer h2,
.footer h3 {
  color: #fff;
  margin: 0;
  font-size: 1rem;
}

.footer p {
  margin: 0.55rem 0 0;
  font-size: 0.87rem;
}

.footer ul {
  margin: 0.55rem 0 0;
  padding-left: 1rem;
  font-size: 0.87rem;
}

.footer a {
  display: inline-block;
  padding: 0.14rem 0;
}

.footer__cookie-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
  padding: 0.14rem 0;
}

.footer__bottom {
  margin-top: 1.2rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(220, 231, 250, 0.2);
  font-size: 0.8rem;
  color: #9eb4da;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 130;
  padding: 0.55rem 0.65rem calc(0.55rem + env(safe-area-inset-bottom));
  background: rgba(7, 18, 38, 0.95);
  display: none;
}

.sticky-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.sticky-cta .btn {
  width: 100%;
  font-size: 0.86rem;
  padding: 0.64rem;
}

.page-hero {
  padding: 3rem 0 1.5rem;
}

.page-hero__box {
  background: linear-gradient(135deg, #0e2f68, #0a4ecf);
  color: #eef4ff;
  border-radius: 26px;
  padding: 1.35rem;
}

.page-hero__box h1 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
}

.page-hero__box p {
  margin: 0.7rem 0 0;
  max-width: 64ch;
  color: #d1e2ff;
}

.table-wrap {
  overflow-x: auto;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.table th,
.table td {
  text-align: left;
  padding: 0.78rem 0.72rem;
  border-bottom: 1px solid #e5ecf7;
  font-size: 0.88rem;
}

.table th {
  background: #f1f6ff;
  color: #102d58;
  font-weight: 700;
}

.table tr:last-child td {
  border-bottom: 0;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.notice {
  border-radius: 14px;
  border: 1px solid #ffe0bf;
  background: #fff6eb;
  color: #66360c;
  padding: 0.85rem;
  font-size: 0.86rem;
}

.seo-banner {
  background: linear-gradient(135deg, #0d2e68, #0a4ecf 52%, #1ba2ef);
  border-radius: 28px;
  padding: 1.4rem;
  color: #eaf2ff;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.seo-banner .section__eyebrow {
  color: #b8e3ff;
}

.seo-banner .section__title,
.seo-banner .section__lead {
  color: #f0f6ff;
}

.seo-banner__list {
  margin: 0.9rem 0 1.1rem;
  padding-left: 1.1rem;
}

.seo-banner__list li + li {
  margin-top: 0.45rem;
}

.seo-banner__media {
  justify-self: end;
}

.seo-banner__media img {
  width: min(100%, 540px);
  height: auto;
  border-radius: 20px;
}

.segment-banner {
  border-radius: 28px;
  border: 1px solid rgba(160, 196, 246, 0.35);
  background: linear-gradient(135deg, #0a2e74, #0f4bc2 50%, #1694e5);
  box-shadow: var(--shadow-md);
  color: #edf5ff;
  padding: 1.2rem;
}

.segment-banner__head .section__eyebrow {
  color: #a4d8ff;
}

.segment-banner__head .section__title {
  color: #f4f9ff;
  margin-bottom: 0.5rem;
}

.segment-banner__head .section__lead {
  color: #dcecff;
  margin-bottom: 1rem;
}

.segment-banner__tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.segment-tab {
  border: 1px solid rgba(205, 227, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ecf5ff;
  min-height: 40px;
  padding: 0.5rem 0.7rem;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.segment-tab:hover {
  background: rgba(255, 255, 255, 0.18);
}

.segment-tab.is-active {
  background: #f0f6ff;
  color: #0d3c87;
  border-color: #f0f6ff;
}

.segment-tab:focus-visible {
  outline: 2px solid #8fd7ff;
  outline-offset: 2px;
}

.segment-banner__slides {
  margin-top: 0.9rem;
}

.segment-slide {
  border: 1px solid rgba(182, 217, 255, 0.35);
  border-radius: 22px;
  background: rgba(9, 35, 84, 0.34);
  backdrop-filter: blur(2px);
  padding: 1rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.95rem;
  align-items: center;
}

.segment-slide[hidden] {
  display: none !important;
}

.segment-slide__content h3 {
  margin: 0;
  color: #f3f8ff;
}

.segment-slide__content p {
  margin: 0.6rem 0 0;
  color: #d9eaff;
  max-width: 65ch;
}

.segment-slide__list {
  margin: 0.8rem 0 0;
  padding-left: 1rem;
  color: #eaf3ff;
}

.segment-slide__list li + li {
  margin-top: 0.3rem;
}

.segment-slide__chips {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.segment-slide__chips span {
  border-radius: 999px;
  border: 1px solid rgba(181, 219, 255, 0.5);
  background: rgba(255, 255, 255, 0.13);
  color: #edf6ff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
}

.segment-slide__actions {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.segment-slide__actions .btn {
  min-height: 40px;
}

.segment-slide__media {
  border: 1px solid rgba(192, 224, 255, 0.32);
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03));
  min-height: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem;
}

.segment-slide__media img {
  width: min(100%, 320px);
  max-height: 300px;
  object-fit: contain;
}

.segment-banner__controls {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.segment-arrow {
  border: 1px solid rgba(188, 223, 255, 0.55);
  border-radius: 999px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.16);
  color: #edf6ff;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.segment-arrow:hover {
  background: rgba(255, 255, 255, 0.28);
}

.segment-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
}

.segment-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(199, 225, 255, 0.42);
  cursor: pointer;
}

.segment-dot.is-active {
  width: 24px;
  background: #9dd9ff;
}

.assortment-strip {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.assortment-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 0.85rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.assortment-card img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.assortment-card span {
  font-size: 0.86rem;
  color: #1c3e70;
  font-weight: 600;
}

.about-company {
  margin-top: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-md);
  padding: 1.2rem;
}

.about-company__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.about-company p {
  margin: 0;
  color: #334f74;
}

.about-company__list {
  margin: 0.8rem 0 0;
  padding-left: 1rem;
  color: #213e65;
}

.about-company__list li + li {
  margin-top: 0.35rem;
}

.about-company__panel {
  border-radius: 16px;
  border: 1px solid #d2e0f4;
  background: linear-gradient(145deg, #eff5ff, #f8fbff);
  padding: 0.95rem;
}

.about-company__panel h3 {
  margin: 0;
  color: #0f3f87;
}

.about-company__panel ul {
  margin: 0.65rem 0 0;
  padding-left: 1rem;
  font-size: 0.88rem;
  color: #23476f;
}

.about-company__panel li + li {
  margin-top: 0.26rem;
}

.software-block {
  margin-top: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(130deg, #f4f8ff, #ffffff);
  padding: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.software-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.software-card {
  border: 1px solid #d2e0f4;
  border-radius: 18px;
  background: #fff;
  padding: 0.9rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.software-card__media {
  border-radius: 12px;
  border: 1px solid #d7e5f8;
  background: #f4f8ff;
  min-height: 140px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.software-card__media img {
  width: min(100%, 190px);
  height: auto;
}

.software-card h3 {
  margin: 0;
}

.software-card p {
  margin: 0;
  color: #2f4f7a;
  font-size: 0.9rem;
}

.software-card ul {
  margin: 0;
  padding-left: 1rem;
  color: #234266;
  font-size: 0.85rem;
}

.software-card ul li + li {
  margin-top: 0.24rem;
}

.software-store-links {
  display: grid;
  gap: 0.3rem;
  margin-top: 0.2rem;
}

.software-store-links a {
  color: #0a4ecf;
  font-size: 0.84rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.model-grid {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.model-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.model-card__media {
  border-radius: 14px;
  border: 1px solid #d7e5f8;
  background: #f4f8ff;
  min-height: 210px;
  display: grid;
  place-items: center;
  padding: 0.5rem;
}

.model-card__media img {
  width: min(100%, 220px);
  max-height: 200px;
  object-fit: contain;
}

.model-card h3 {
  margin: 0;
  font-size: 1.03rem;
}

.model-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  min-height: 2.6rem;
}

.model-card__meta {
  margin: 0;
  color: #25456d;
  font-size: 0.84rem;
  display: grid;
  gap: 0.25rem;
  padding-left: 1rem;
}

.model-card .btn {
  margin-top: auto;
}

.equipment-grid {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.product-cards {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: stretch;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
}

.product-gallery {
  position: relative;
  border-radius: 14px;
  border: 1px solid #d7e5f8;
  background: #f4f8ff;
  padding: 0.45rem;
}

.product-gallery__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: #eaf2ff;
}

.product-gallery__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.product-gallery__image.is-active {
  opacity: 1;
}

.product-gallery__nav {
  position: absolute;
  top: calc(50% - 17px);
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(10, 78, 207, 0.88);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 2;
}

.product-gallery__nav--prev {
  left: 0.8rem;
}

.product-gallery__nav--next {
  right: 0.8rem;
}

.product-gallery__dots {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.product-gallery__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: #9bb5dc;
  cursor: pointer;
  padding: 0;
}

.product-gallery__dot.is-active {
  width: 18px;
  background: #0a4ecf;
}

.product-card h3 {
  margin: 0;
  font-size: 1.06rem;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  min-height: 2.7rem;
}

.product-card__specs {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.86rem;
  color: #233f66;
  display: grid;
  gap: 0.26rem;
}

.product-card__specs li + li {
  margin-top: 0;
}

.product-card .btn {
  margin-top: auto;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 14, 30, 0.62);
  backdrop-filter: blur(2px);
}

.modal__dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: min(88vh, 920px);
  overflow-y: auto;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-md);
  padding: 1.2rem;
}

.modal__title {
  margin: 0;
}

.modal__lead {
  margin: 0.55rem 0 1rem;
  color: var(--muted);
}

.modal__close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #c1d2ea;
  background: #f4f8ff;
  color: #0f2f61;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
}

.cookie-modal__dialog {
  width: min(760px, 100%);
}

.cookie-modal__lead {
  margin-bottom: 0.85rem;
}

.cookie-modal__options {
  display: grid;
  gap: 0.62rem;
}

.cookie-option {
  border: 1px solid #cfdcf1;
  border-radius: 14px;
  background: #f8fbff;
  padding: 0.8rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
  align-items: start;
}

.cookie-option h3 {
  margin: 0;
  font-size: 0.96rem;
  color: #153765;
}

.cookie-option p {
  margin: 0.35rem 0 0;
  color: #415b7f;
  font-size: 0.84rem;
}

.cookie-option__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #153765;
  font-size: 0.82rem;
  white-space: nowrap;
}

.cookie-option__toggle--switch {
  position: relative;
  user-select: none;
}

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

.cookie-option__switch {
  width: 46px;
  height: 26px;
  border-radius: 999px;
  background: #c9d7ec;
  border: 1px solid #a4bad8;
  position: relative;
  transition: background-color 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
}

.cookie-option__switch::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(8, 31, 66, 0.22);
  transition: transform 0.26s ease;
}

.cookie-option__toggle-label {
  color: #173b6c;
  font-weight: 600;
}

.cookie-option__toggle--switch input:checked + .cookie-option__switch {
  background: #0a4ecf;
  border-color: #0a4ecf;
  box-shadow: 0 0 0 3px rgba(10, 78, 207, 0.2);
}

.cookie-option__toggle--switch input:checked + .cookie-option__switch::after {
  transform: translateX(20px);
}

.cookie-option__toggle--switch input:focus-visible + .cookie-option__switch {
  box-shadow: 0 0 0 3px rgba(10, 78, 207, 0.35);
}

.cookie-option__always {
  border-radius: 999px;
  border: 1px solid #9cb3d6;
  background: #e8f0ff;
  color: #1b4784;
  font-size: 0.72rem;
  padding: 0.2rem 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cookie-modal__actions {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cookie-modal__actions .btn {
  min-height: 40px;
}

.cookie-modal__note {
  margin: 0.7rem 0 0;
  color: #4d627f;
  font-size: 0.78rem;
}

body.has-modal-open {
  overflow: hidden;
}

@media (max-width: 1060px) {
  .hero__grid,
  .lead-box__grid,
  .seo-banner {
    grid-template-columns: 1fr;
  }

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

  .segment-slide {
    grid-template-columns: 1fr;
  }

  .segment-slide__media {
    min-height: 250px;
  }

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

  .pack-grid,
  .cases,
  .process,
  .product-cards,
  .model-grid,
  .equipment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guarantees,
  .footer__grid,
  .kpi-row {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 780px) {
  .top-bar__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    position: fixed;
    inset: 76px 0 auto 0;
    background: rgba(244, 247, 251, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 0.9rem;
    display: none;
  }

  .nav.is-open {
    display: block;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

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

  .header__actions .btn--ghost {
    display: none;
  }

  .logo__text {
    min-width: 0;
  }

  .logo__subtitle {
    display: none;
  }

  .header__inner {
    gap: 0.45rem;
  }

  .header__actions .btn--primary {
    display: none;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .metrics__grid,
  .segment-grid,
  .pack-grid,
  .cases,
  .process,
  .software-grid,
  .product-cards,
  .model-grid,
  .equipment-grid,
  .about-company__grid,
  .assortment-strip,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .segment-banner {
    padding: 1rem;
  }

  .segment-banner__tabs {
    grid-template-columns: 1fr;
  }

  .segment-tab {
    text-align: left;
  }

  .segment-slide {
    padding: 0.9rem;
  }

  .segment-slide__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .segment-slide__media {
    min-height: 220px;
  }

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

  .cookie-modal__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .sticky-cta {
    display: block;
  }

  body.has-sticky {
    padding-bottom: 78px;
  }

  .product-card p {
    min-height: 0;
  }

  .header__actions .btn--download {
    display: none;
  }
}

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