:root {
  --dh-primary: #1f56ff;
  --dh-dark: #0b1023;
  --dh-muted: #6c7391;
  --dh-bg: #f5f7ff;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #20263d;
  background: #fff;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.navbar-brand {
  font-weight: 700;
  letter-spacing: -0.02em;
  padding-top: 8px;
  padding-bottom: 8px;
}

.navbar {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(6px);
  box-shadow: 0 3px 18px rgba(11, 16, 35, 0.05);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}

.dh-brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.dh-logo {
  width: auto;
  max-width: 180px;
  display: block;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #1a2349;
  padding: 9px 14px !important;
  border-radius: 10px;
  line-height: 1.2;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.navbar-nav .nav-link:hover {
  color: #0f1736;
  background: #f1f4ff;
}

.navbar .btn {
  font-size: 14px;
  padding-inline: 18px;
  line-height: 1.2;
}

.nav-contact-btn {
  min-width: 220px;
  text-align: center;
  background: #1556c2 !important;
  border-color: #1556c2 !important;
  color: #fff !important;
}

.nav-contact-btn:hover {
  background: #0e47a5 !important;
  border-color: #0e47a5 !important;
}

.navbar-toggler-line {
  background: #1c2448 !important;
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
}

.navbar-toggler {
  border: 1px solid #d9dff1;
  border-radius: 10px;
  padding: 6px 8px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(31, 86, 255, 0.2);
}

h2,
h3,
h4 {
  color: #121937;
  letter-spacing: -0.01em;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(80, 132, 255, 0.55), transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(0, 206, 255, 0.28), transparent 35%),
    linear-gradient(135deg, #1229a2 0%, #0b1023 68%);
  color: #fff;
  padding: 120px 0 90px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, #000 45%, transparent 90%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -140px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.02));
  filter: blur(1px);
  pointer-events: none;
}

.hero h1,
.hero h2 {
  color: #fff;
  max-width: 920px;
  line-height: 1.07;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: clamp(2rem, 6.2vw, 4.45rem);
  text-wrap: balance;
}

.hero-title {
  white-space: normal;
  text-wrap: balance;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.35rem;
  line-height: 1.45;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
}

.ie-hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ie-hero-link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 4px;
}

.ie-hero-link:hover {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.7);
}

.ie-proof-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ie-proof-chips span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  line-height: 1.2;
}

.hero-metrics {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  padding: 20px;
  backdrop-filter: blur(5px);
}

.hero-metrics .metric-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding: 12px 0;
}

.hero-metrics .metric-item:last-child {
  border-bottom: 0;
}

.hero-metrics .metric-k {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}

.hero-metrics .metric-t {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
}

.section-soft {
  background: var(--dh-bg);
  position: relative;
}

.section-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 90% 20%, rgba(31, 86, 255, 0.08), transparent 36%);
}

.section-soft p {
  color: #455078;
}

.section-soft p strong,
.section-soft strong {
  color: #1a2349;
}

.card {
  border: 1px solid #e7ebf7;
  border-radius: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(16, 29, 88, 0.08);
}

.kpi {
  padding: 24px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e7ebf7;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.kpi::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(31, 86, 255, 0.08);
}

.kpi h3 {
  margin: 0;
  color: var(--dh-dark);
}

.price-card {
  height: 100%;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}

.price-card .icon-bullet {
  margin-bottom: 18px !important;
}

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

.price-card .price {
  margin-bottom: 10px;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: var(--dh-dark);
}

.badge-local {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer {
  background: #0d1227;
  color: #d8dcee;
}

.footer a,
.footer p {
  color: #d8dcee;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 6px 10px;
}

.footer .footer-brand .dh-logo {
  filter: none;
  opacity: 1;
}

.graphics-board {
  background: #0a0a0c;
  color: #fff;
  border-radius: 20px;
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.graphics-board::before {
  content: "";
  position: absolute;
  left: -60px;
  top: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.35), transparent 70%);
}

.graphics-title {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.score-strip {
  background: #cf1111;
  color: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}

.live-box {
  border: 1px solid #dfe4f4;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.live-top {
  background: #111827;
  color: #fff;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
}

.mini-standings th,
.mini-standings td {
  text-align: center;
  padding: 10px 8px;
  border: 1px solid #d8dce9;
}

.mini-standings th:first-child,
.mini-standings td:first-child,
.mini-standings th:nth-child(2),
.mini-standings td:nth-child(2) {
  text-align: left;
}

.trend-wrap {
  border: 1px solid #d8dce9;
  border-radius: 16px;
  padding: 14px;
  background: #fff;
}

.trend-chart {
  height: 160px;
  width: 100%;
}

.pricing-bench-section {
  background: #e6e8f1;
}

.pricing-bench-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: #1f2847;
  letter-spacing: -0.02em;
}

.pricing-bench-card {
  background: #f6f6f7;
  border: 1px solid #d7dcea;
  border-radius: 24px;
  padding: 26px 24px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-bench-card h4 {
  font-size: clamp(28px, 2.6vw, 50px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;
  color: #2a2f39;
}

.pricing-bench-price {
  font-size: clamp(32px, 2.8vw, 58px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #0f1636;
}

.pricing-bench-note {
  font-size: clamp(18px, 1.25vw, 28px);
  color: #2c3248;
}

.split-offer {
  border: 1px solid #e2e7f7;
  border-radius: 18px;
  background: #fff;
  padding: 24px;
  height: 100%;
}

.split-offer h3 {
  color: var(--dh-dark);
  margin-bottom: 12px;
}

.nav-link.active {
  color: var(--dh-primary) !important;
  font-weight: 600;
}

.icon-bullet i {
  color: var(--dh-primary);
  margin-right: 8px;
}

.ie-scenario-meta {
  margin-top: 12px;
  color: #2f3d69;
  font-size: 14px;
  font-weight: 600;
}

.section-h-icon {
  color: #de7a00;
}

.card-icon {
  color: #de7a00;
}

@media (max-width: 991px) {
  .hero {
    padding: 100px 0 70px;
  }

  .ie-hero-actions .btn {
    width: 100%;
  }


  .graphics-title {
    font-size: 28px;
  }

  .footer .container {
    gap: 12px;
  }

  .pricing-bench-card {
    min-height: 190px;
    border-radius: 18px;
  }

  .pricing-bench-card h4 {
    font-size: clamp(30px, 7vw, 44px);
  }

  .pricing-bench-price {
    font-size: clamp(34px, 9vw, 50px);
  }
}

.section-dark {
  background: linear-gradient(135deg, #0c1430 0%, #14264a 50%, #1f2840 100%);
}

.text-gray-light {
  color: rgba(255, 255, 255, 0.9);
}

.section-mark {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #f6a800;
}

.section-mark.dark {
  color: #d96b00;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.hero-thumb {
  min-height: 110px;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  padding: 10px;
  overflow: hidden;
}

.hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  min-height: 110px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 22px;
}

.ie-page .hero.ie-hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(118, 158, 255, 0.58), transparent 40%),
    radial-gradient(circle at 94% 10%, rgba(32, 164, 255, 0.32), transparent 38%),
    linear-gradient(110deg, #2e57de 0%, #17357f 54%, #0f4f87 100%);
  padding: 120px 0 88px;
}

.ie-page .hero.ie-hero .container {
  position: relative;
  z-index: 1;
}

.ie-page .hero.ie-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}

.ie-page .hero.ie-hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 38%, rgba(219, 237, 255, 0.45), rgba(219, 237, 255, 0.06) 46%, rgba(219, 237, 255, 0) 72%);
  filter: blur(0.5px);
  z-index: 0;
  pointer-events: none;
}

.ie-page .ie-btn-ghost {
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: rgba(255, 255, 255, 0.92) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.ie-page .ie-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16) !important;
}

.ie-page .ie-section {
  background: #eef0f6;
}

.ie-page .ie-section .container {
  position: relative;
  z-index: 1;
}

.ie-page .ie-section-head p {
  max-width: 980px;
  margin-inline: auto;
  font-size: clamp(1.1rem, 1.65vw, 1.45rem);
  color: #47557a;
}

.ie-page .ie-feature-card {
  border-radius: 24px;
  border: 1px solid #d8deec;
  box-shadow: 0 6px 20px rgba(20, 36, 90, 0.06);
  padding: 34px !important;
}

.ie-page .ie-feature-icon {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 28px;
}

.ie-page .ie-icon-blue {
  color: #235df4;
  background: #dce8ff;
}

.ie-page .ie-icon-green {
  color: #12a750;
  background: #d7f0e3;
}

.ie-page .ie-icon-violet {
  color: #8f35ff;
  background: #e9defb;
}

.ie-page .ie-feature-card h4,
.ie-page .ie-scenario-card h4 {
  font-size: clamp(1.7rem, 2vw, 2.2rem);
  margin-bottom: 14px;
}

.ie-page .ie-feature-card p,
.ie-page .ie-scenario-card p {
  color: #435275;
  font-size: clamp(1.1rem, 1.3vw, 1.55rem);
  line-height: 1.45;
}

.ie-page .ie-loss-box {
  background: linear-gradient(160deg, #13265a 0%, #102150 52%, #0d1a3e 100%);
  color: #e9efff;
  border-radius: 28px;
  padding: 36px 36px;
  border: 1px solid rgba(140, 170, 255, 0.34);
  box-shadow: 0 24px 44px rgba(9, 24, 76, 0.3);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ie-page .ie-loss-box::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(94, 135, 255, 0.42), transparent 70%);
  pointer-events: none;
}

.ie-page .ie-loss-list-card {
  border-radius: 28px;
  padding: 40px 42px !important;
  min-height: 100%;
  border: 1px solid #d3daeb;
  box-shadow: 0 14px 30px rgba(20, 36, 90, 0.06);
  position: relative;
}

.ie-page .ie-loss-list-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  bottom: 26px;
  width: 4px;
  border-radius: 10px;
  background: linear-gradient(180deg, #1f56ff, #5a7aff);
}

.ie-page .ie-loss-list-card ul li {
  padding: 8px 0;
  font-size: 1.18rem;
  border-bottom: 1px dashed #d6deef;
}

.ie-page .ie-loss-list-card ul li:last-child {
  border-bottom: 0;
}

.ie-page .ie-loss-title {
  font-size: 1.08rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(222, 234, 255, 0.86);
  max-width: none;
}

.ie-page .ie-loss-value {
  line-height: 0.96;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px !important;
  margin-top: 8px;
}

.ie-page .ie-loss-amount {
  display: block;
  white-space: nowrap;
  font-size: clamp(2.35rem, 3.05vw, 3.75rem);
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.16);
}

.ie-page .ie-loss-period {
  display: block;
  font-size: clamp(2rem, 2.5vw, 3.05rem);
  line-height: 0.95;
  color: #ffffff;
  opacity: 0.95;
}

.ie-page .ie-loss-box p:last-child {
  color: rgba(229, 237, 255, 0.92);
  font-size: 1.32rem;
  line-height: 1.38;
  max-width: none;
}

.ie-page .ie-loss-box::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 88px;
  height: 1px;
  background: linear-gradient(90deg, rgba(160, 186, 255, 0), rgba(160, 186, 255, 0.36), rgba(160, 186, 255, 0));
}

.ie-page .ie-loss-section .row {
  align-items: stretch !important;
}

.ie-page .ie-loss-section .col-lg-8,
.ie-page .ie-loss-section .col-lg-4 {
  display: flex;
}

.ie-page .ie-loss-section .ie-feature-card,
.ie-page .ie-loss-section .ie-loss-box {
  width: 100%;
}

.ie-page .ie-compare-card {
  background: linear-gradient(180deg, #fcfdff 0%, #f7f9ff 100%);
  border: 1px solid #d5deef;
  border-radius: 26px;
  padding: 34px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(21, 38, 96, 0.08);
  min-height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ie-page .ie-compare-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: linear-gradient(90deg, #4e67b7 0%, #7d8ec8 100%);
}

.ie-page .ie-compare-card::after {
  content: "Было";
  position: absolute;
  right: 18px;
  top: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #c24a69;
  background: #ffe9ef;
  border: 1px solid #f6c4d2;
  border-radius: 999px;
  padding: 4px 10px;
}

.ie-page .ie-compare-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(21, 38, 96, 0.12);
}

.ie-page .ie-compare-card h4 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 2.6vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
}

.ie-page .ie-compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #45557c;
  font-size: 1.2rem;
  line-height: 1.34;
  padding: 12px 0;
  border-bottom: 1px dashed #d3ddef;
}

.ie-page .ie-compare-list li::before {
  content: "✕";
  font-family: inherit;
  font-weight: 700;
  color: #c53d5f;
  font-size: 13px;
  line-height: 1;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: #ffe7ed;
  border: 1px solid #f4bfd0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-top: 0;
}

.ie-page .ie-compare-card li:last-child {
  border-bottom: 0;
}

.ie-page .ie-compare-good {
  background: linear-gradient(180deg, #f5fcf8 0%, #eef8f2 100%);
  border-color: #c1e2d0;
}

.ie-page .ie-compare-good::before {
  background: linear-gradient(90deg, #24b36a 0%, #5dcb8f 100%);
}

.ie-page .ie-compare-good::after {
  content: "Стало";
  color: #137e45;
  background: #def6e9;
  border-color: #b7e4ca;
}

.ie-page .ie-compare-good .ie-compare-list li {
  color: #3f5f4e;
  border-bottom-color: #cbe5d5;
}

.ie-page .ie-compare-good .ie-compare-list li::before {
  content: "✔";
  color: #127f46;
  background: #dcf7e8;
  border-color: #b6e9cc;
  font-size: 13px;
  line-height: 1;
}

.ie-page .ie-price-banner {
  border-radius: 40px;
  padding: 56px 70px;
  background: linear-gradient(135deg, #1f56ff 0%, #4537d6 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 20px 42px rgba(26, 45, 126, 0.18);
}

.ie-page .ie-price-banner h2,
.ie-page .ie-price-banner p,
.ie-page .ie-price-value {
  color: #fff;
}

.ie-page .ie-price-banner h2 {
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  line-height: 1.06;
}

.ie-page .ie-price-banner p {
  font-size: clamp(1.2rem, 1.8vw, 2rem);
  opacity: 0.95;
}

.ie-page .ie-price-value {
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 700;
  line-height: 0.95;
}

.ie-page .ie-checklist-card {
  background: #f8f9fc;
  border: 1px solid #d8deec;
  border-radius: 26px;
  padding: 28px 34px;
  box-shadow: 0 8px 24px rgba(22, 35, 86, 0.05);
  max-width: 1220px;
  margin-inline: auto;
}

.ie-page .ie-checklist-card li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  font-size: clamp(1.06rem, 1.2vw, 1.8rem);
  color: #3d4b6c;
  line-height: 1.3;
  padding: 14px 0;
  border-bottom: 1px dashed #d7deef;
}

.ie-page .ie-checklist-card li:last-child {
  border-bottom: 0;
}

.ie-page .ie-checklist-card li i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e6f7eb;
  color: #08a94b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex: 0 0 auto;
}

.ie-page .ie-scope-box {
  background: #fff;
  border: 1px solid #d8deec;
  border-radius: 20px;
  padding: 22px 24px;
  box-shadow: 0 8px 20px rgba(21, 35, 86, 0.05);
  position: relative;
  overflow: hidden;
}

.ie-page .ie-scope-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1f56ff, #4a62ff);
}

.ie-page .ie-scope-box h5 {
  margin-bottom: 12px;
  color: #1a2349;
  font-size: clamp(1.38rem, 1.7vw, 2.1rem);
}

.ie-page .ie-scope-list li {
  position: relative;
  color: #4c5a7d;
  padding: 7px 0 7px 22px;
  font-size: 1.08rem;
}

.ie-page .ie-scope-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1f56ff;
}

.ie-page .ie-package-section .row.mt-2 {
  margin-top: 16px !important;
}

.ie-page .ie-scenario-card {
  border-radius: 24px;
  border: 1px solid #d8deec;
  box-shadow: 0 6px 20px rgba(20, 36, 90, 0.06);
  padding: 34px !important;
}

.ie-page .ie-case-card h4 {
  margin-bottom: 16px;
  font-size: clamp(1.95rem, 2.45vw, 3rem);
  line-height: 1.08;
}

.ie-page .ie-case-card p {
  color: #435275;
  margin-bottom: 12px;
  font-size: 1.12rem;
  line-height: 1.38;
}

.ie-page .ie-case-card {
  border-radius: 22px;
  border: 1px solid #d5ddef;
  box-shadow: 0 10px 24px rgba(20, 36, 90, 0.06);
  padding: 32px !important;
  min-height: 100%;
}

.ie-page .ie-case-card hr {
  margin: 14px 0 12px;
  border-color: #d7deef;
  opacity: 1;
}

.ie-page .ie-case-label {
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 700;
  font-size: 0.86rem;
}

.ie-page .ie-case-label.was {
  color: #7d889f;
}

.ie-page .ie-case-label.done {
  color: #1f56ff;
}

.ie-page .ie-case-label.result {
  color: #10a24f;
}

.ie-page .ie-case-grid + .text-center p {
  color: #4d5d82;
  font-size: 1.2rem;
}

.ie-page .ie-case-card p {
  max-width: 95%;
}

.ie-page .ie-flow-state {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1a2349;
}

.ie-page .ie-state-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.ie-page .ie-state-badge.bad {
  background: #ffe9ee;
  color: #c63d5f;
}

.ie-page .ie-state-badge.good {
  background: #ddf8e8;
  color: #108c4d;
}

.ie-page .ie-flow-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.ie-page .ie-flow-card {
  background: #fff;
  border: 2px solid #d7dff2;
  border-radius: 16px;
  padding: 18px 16px 14px;
  text-align: center;
  box-shadow: 0 10px 18px rgba(16, 32, 88, 0.06);
}

.ie-page .ie-flow-card h5 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.ie-page .ie-flow-card p {
  color: #4f5e81;
  font-size: 0.92rem;
  margin: 0;
}

.ie-page .ie-flow-card.supplier {
  border-color: #ff8d25;
}

.ie-page .ie-flow-card.csv {
  border-color: #efc84f;
}

.ie-page .ie-flow-card.shop {
  border-color: #4f8dff;
}

.ie-page .ie-flow-card.plugin {
  border-color: #1ebf67;
  background: linear-gradient(165deg, #0fc26a 0%, #0fa95d 100%);
  color: #fff;
}

.ie-page .ie-flow-card.plugin h5,
.ie-page .ie-flow-card.plugin p {
  color: #fff;
}

.ie-page .ie-flow-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin: 0 auto 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: #e6edff;
  color: #245ef7;
}

.ie-page .ie-flow-card.supplier .ie-flow-icon {
  background: #fff0df;
  color: #ff6f00;
}

.ie-page .ie-flow-card.csv .ie-flow-icon {
  background: #fff7db;
  color: #c59a00;
}

.ie-page .ie-flow-card.plugin .ie-flow-icon {
  background: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.ie-page .ie-flow-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ff6565;
  font-size: 34px;
  line-height: 1;
}

.ie-page .ie-flow-arrow.good {
  color: #17aa59;
}

.ie-page .ie-flow-arrow small {
  font-size: 0.72rem;
  color: #d44a5f;
  margin-top: 4px;
  background: #ffeef1;
  border-radius: 999px;
  padding: 2px 8px;
}

.ie-page .ie-flow-panel {
  border-radius: 14px;
  padding: 16px 18px;
  margin-top: 14px;
}

.ie-page .ie-flow-panel h6 {
  margin-bottom: 8px;
  font-size: 0.96rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ie-page .ie-flow-panel ul {
  padding-left: 18px;
}

.ie-page .ie-flow-panel li {
  margin: 4px 0;
  font-size: 0.95rem;
}

.ie-page .ie-flow-panel.problems {
  background: #fff4f4;
  border: 1px solid #ffc9cc;
  color: #9f1d2c;
}

.ie-page .ie-flow-panel.results {
  background: #ecf9f1;
  border: 1px solid #b8e6c8;
  color: #11683b;
}

.ie-page .ie-flow-divider {
  text-align: center;
  margin: 14px 0 16px;
  color: #1d2750;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ie-page .ie-flow-divider-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  margin: 0 auto 6px;
  background: linear-gradient(135deg, #2b57ff 0%, #4d43df 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ie-page .ie-guarantee-card {
  border-radius: 22px;
  border: 1px solid #d4dcef;
  padding: 30px !important;
}

.ie-page .ie-guarantee-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #e3ebff;
  color: #1f56ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 14px;
}

.ie-page .ie-guarantee-card h4 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 2vw, 2.5rem);
  line-height: 1.1;
}

.ie-page .ie-guarantee-card p {
  color: #48577c;
  font-size: 1.15rem;
}

.ie-page .ie-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  position: relative;
  margin-top: 28px;
}

.ie-page .ie-steps::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: #d4ddf4;
}

.ie-page .ie-step {
  text-align: center;
  position: relative;
}

.ie-page .ie-step-icon {
  width: 126px;
  height: 126px;
  border-radius: 30px;
  margin: 0 auto 26px;
  background: linear-gradient(135deg, #1f56ff 0%, #4537d6 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  position: relative;
  box-shadow: 0 14px 28px rgba(34, 55, 149, 0.22);
}

.ie-page .ie-step-num {
  position: absolute;
  right: -14px;
  top: -14px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  color: #235df4;
  font-size: 30px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(12, 26, 82, 0.15);
}

.ie-page .ie-step h4 {
  font-size: clamp(1.8rem, 2.1vw, 2.7rem);
  margin-bottom: 8px;
}

.ie-page .ie-step p {
  color: #4d5d82;
  font-size: clamp(1.06rem, 1.3vw, 1.48rem);
  margin-bottom: 0;
}

.ie-page .ie-final-cta {
  background: #111b35;
}

.ie-page .ie-final-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 34px 20px;
}

.ie-page .ie-final-icon {
  width: 92px;
  height: 92px;
  border-radius: 28px;
  margin: 0 auto 24px;
  background: #1f56ff;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
}

.ie-page .ie-final-card p {
  max-width: 860px;
  margin-inline: auto;
  font-size: clamp(1.15rem, 1.6vw, 2rem);
  line-height: 1.4;
}

.ie-page .ie-mini-form {
  max-width: 1100px;
}

.ie-page .ie-mini-form .form-control {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 12px 14px;
}

.ie-page .ie-mini-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1199px) {
  .ie-page .ie-price-banner {
    border-radius: 28px;
    padding: 42px 34px;
  }
}

@media (max-width: 991px) {
  .ie-page .ie-steps {
    grid-template-columns: 1fr 1fr;
  }

  .ie-page .ie-steps::before {
    display: none;
  }

  .ie-page .ie-price-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .ie-page .ie-flow-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ie-page .ie-flow-arrow {
    font-size: 18px;
  }

  .ie-page .ie-flow-arrow i {
    transform: rotate(90deg);
  }

  .ie-page .ie-flow-arrow small {
    margin-top: 2px;
  }
}

@media (max-width: 767px) {
  .ie-page .hero.ie-hero {
    padding: 90px 0 68px;
  }

  .ie-page .ie-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ie-page .ie-feature-card,
  .ie-page .ie-scenario-card {
    padding: 26px !important;
    border-radius: 18px;
  }

  .ie-page .ie-checklist-card {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .ie-page .ie-checklist-card li {
    gap: 12px;
    font-size: 1.08rem;
    line-height: 1.35;
  }

  .ie-page .ie-scope-box {
    border-radius: 16px;
    padding: 18px 16px;
  }

  .ie-page .ie-loss-list-card {
    padding: 24px !important;
    box-shadow: none;
  }

  .ie-page .ie-loss-box {
    padding: 24px;
    border-radius: 20px;
  }

  .ie-page .ie-loss-section .col-lg-8,
  .ie-page .ie-loss-section .col-lg-4 {
    display: block;
  }

  .ie-page .ie-loss-title {
    font-size: 0.9rem;
  }

  .ie-page .ie-loss-value {
    margin-bottom: 10px !important;
  }

  .ie-page .ie-loss-amount {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  .ie-page .ie-loss-period {
    font-size: clamp(1.65rem, 8vw, 2.5rem);
  }

  .ie-page .ie-compare-card {
    padding: 22px 20px;
    border-radius: 18px;
  }

  .ie-page .ie-compare-card h4 {
    font-size: 2rem;
  }

  .ie-page .ie-step-icon {
    width: 98px;
    height: 98px;
    border-radius: 22px;
    font-size: 40px;
  }

  .ie-page .ie-step-num {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .ie-page .ie-case-card {
    padding: 22px !important;
    border-radius: 16px;
  }

  .ie-page .ie-case-card h4 {
    font-size: 2rem;
  }
}

.hero-stat span {
  display: block;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: #ffbf1f;
}

.hero-stat small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.dark-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px;
  height: 100%;
}

.dark-card h4 {
  color: #fff;
}

.dark-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.orange-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f08a00 0%, #dd7400 52%, #cb6600 100%);
  color: #fff;
  padding: 38px 46px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 40px rgba(7, 19, 55, 0.35);
}

.orange-banner::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -30px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.orange-banner::after {
  content: "";
  position: absolute;
  left: -90px;
  bottom: -100px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 182, 77, 0.38) 0%, rgba(255, 182, 77, 0) 72%);
  pointer-events: none;
}

.orange-banner-label {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.orange-banner-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 34px;
  align-items: end;
}

.orange-banner-main p {
  position: relative;
  margin: 0;
  font-size: clamp(1.65rem, 2.1vw, 2.55rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.orange-banner-side {
  justify-self: end;
  align-self: end;
  width: 100%;
  max-width: 560px;
  padding: 8px 4px;
}

.orange-banner-side p {
  margin: 0;
  font-size: clamp(1rem, 1.05vw, 1.25rem);
  line-height: 1.45;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

.broadcast-box {
  min-height: 240px;
  border-radius: 16px;
  border: 1px solid #dde2f2;
  background: #f7f9ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #26335a;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  padding: 20px;
}

.media-stage {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 360px;
  justify-content: flex-start;
}

.media-stage-video {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
  filter: saturate(0.96) contrast(1.03);
}

.media-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.44) 100%);
  pointer-events: none;
}

.metrics-panel {
  background: linear-gradient(135deg, #121f3e 0%, #1a2a4d 100%);
  border-radius: 20px;
  padding: 28px;
}

.metric-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  height: 100%;
  padding: 20px;
  text-align: center;
}

.metric-card h4 {
  color: #fff;
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 1.45vw, 1.9rem);
  line-height: 1.1;
  white-space: nowrap;
  letter-spacing: 0;
  min-height: 42px;
}

.metric-card p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0;
  font-size: 0.96rem;
  line-height: 1.4;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-shell {
  border: 1px solid #dfe3ef;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.portfolio-grid {
  background: #f3f5fb;
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.portfolio-thumb {
  border-radius: 12px;
  border: 1px solid #d9dff0;
  background: #fff;
  min-height: 120px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  color: #2b365b;
  padding: 10px;
  overflow: hidden;
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.portfolio-copy {
  padding: 28px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.portfolio-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.portfolio-social-title {
  margin-top: 4px;
  font-weight: 600;
  color: #1d2b5c;
  font-size: 14px;
}

.footer-social-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-social-links a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #edf2ff;
  color: #1a48a8;
  border: 1px solid #d7e2fb;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.footer-social-links a:hover {
  transform: translateY(-2px);
  background: #1c58c8;
  color: #fff;
}

.footer-social-links svg {
  display: block;
  fill: currentColor;
}

.price-card.featured {
  background: linear-gradient(180deg, #e77b00 0%, #d96b00 100%);
  color: #fff;
  border: 1px solid #d96b00;
}

.price-card.featured h4,
.price-card.featured p,
.price-card.featured .price,
.price-card.featured .icon-bullet i,
.price-card.featured .icon-bullet li {
  color: #fff !important;
}

.price-card.featured-dark {
  background: linear-gradient(135deg, #121f3e 0%, #1a2a4d 100%);
  color: #fff;
  border: 1px solid #1a2a4d;
}

.price-card.featured-dark h4,
.price-card.featured-dark p,
.price-card.featured-dark .price {
  color: #fff !important;
}

.price-card.featured .card-icon,
.price-card.featured-dark .card-icon {
  color: #fff;
}

.dark-card .card-icon,
.metric-card .card-icon,
.why-item .card-icon {
  color: #ffbf1f;
}

.why-item {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  padding: 24px;
  height: 100%;
}

.why-item h4 {
  color: #fff;
  font-size: clamp(1.55rem, 1.45vw, 1.9rem);
  line-height: 1.15;
  white-space: nowrap;
  letter-spacing: 0;
  min-height: 44px;
}

.why-item p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  font-size: 0.96rem;
  line-height: 1.45;
  min-height: 84px;
}

.cta-final {
  background: linear-gradient(180deg, #e77b00 0%, #c95f00 100%);
}

.footer .border-top {
  border-color: rgba(255, 255, 255, 0.14) !important;
}

.footer ul li {
  margin-bottom: 6px;
}

.footer small {
  color: #bfc6df;
}

@media (max-width: 991px) {
  .navbar .container {
    min-height: 78px;
  }

  .nav-contact-btn {
    min-width: 160px;
  }

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

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .orange-banner {
    padding: 28px 20px;
    border-radius: 18px;
  }

  .orange-banner-label {
    margin-bottom: 12px;
    font-size: 0.72rem;
    padding: 6px 12px;
  }

  .orange-banner-content {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }

  .orange-banner-main p {
    font-size: clamp(1.3rem, 6.2vw, 2rem);
    line-height: 1.2;
  }

  .orange-banner-side {
    justify-self: stretch;
    max-width: none;
    padding: 14px 14px;
    text-align: left;
  }

  .orange-banner-side p {
    font-size: 1rem;
  }

  .portfolio-shell {
    grid-template-columns: 1fr;
  }

  .hero-title {
    white-space: normal;
  }

  .metric-card h4,
  .why-item h4 {
    font-size: 2rem;
    white-space: normal;
  }

  .media-stage,
  .media-stage-video {
    min-height: 280px;
  }
}

/* Modern Design Pass */
:root {
  --dh-bg: #eef2ff;
  --dh-surface: #ffffff;
  --dh-surface-soft: #f8faff;
  --dh-text-1: #0f1b46;
  --dh-text-2: #47547f;
  --dh-accent: #1456c8;
  --dh-accent-2: #f18800;
  --dh-radius-1: 14px;
  --dh-radius-2: 22px;
  --dh-shadow-1: 0 8px 26px rgba(13, 27, 84, 0.08);
  --dh-shadow-2: 0 18px 44px rgba(8, 20, 72, 0.14);
}

body {
  background: var(--dh-bg);
  color: var(--dh-text-1);
}

h1,
h2,
h3,
h4 {
  font-family: inherit;
  color: var(--dh-text-1);
}

h1 {
  font-size: clamp(2.2rem, 5.6vw, 5.2rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 4rem);
  line-height: 1.06;
}

p {
  color: var(--dh-text-2);
}

.navbar {
  background: rgba(255, 255, 255, 0.88) !important;
  border-bottom: 1px solid rgba(18, 35, 88, 0.08);
  backdrop-filter: saturate(170%) blur(10px);
  transition: min-height 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.nav-scrolled .navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 10px 34px rgba(8, 18, 58, 0.11);
}

.nav-scrolled .navbar .container {
  min-height: 74px;
}

.nav-contact-btn {
  border-radius: 999px !important;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 18px rgba(20, 86, 200, 0.28);
}

.hero {
  background:
    radial-gradient(circle at 8% 18%, rgba(76, 120, 255, 0.6), transparent 44%),
    radial-gradient(circle at 92% 12%, rgba(0, 173, 255, 0.32), transparent 38%),
    linear-gradient(125deg, #1d3fb3 0%, #10245d 48%, #0e3658 100%);
  position: relative;
}

.hero::before {
  opacity: 0.62;
}

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

.hero p,
.hero .lead {
  max-width: 720px;
}

.hero .btn {
  border-radius: 999px !important;
  font-weight: 600;
}

.hero .btn.btn-white {
  color: #0d1d49 !important;
}

.hero .btn.btn-transparent-white-light {
  border-color: rgba(255, 255, 255, 0.38) !important;
}

.section-soft {
  background: linear-gradient(180deg, #eef2ff 0%, #f5f7ff 100%);
}

.section-dark {
  background: linear-gradient(135deg, #0f1e49 0%, #172d61 50%, #1a3564 100%);
}

.card,
.dark-card,
.metric-card,
.why-item,
.portfolio-shell,
.orange-banner,
.media-stage {
  border-radius: var(--dh-radius-2);
}

.card {
  background: var(--dh-surface);
  border: 1px solid #dfe6fa;
  box-shadow: var(--dh-shadow-1);
}

.card:hover,
.portfolio-shell:hover {
  transform: translateY(-3px);
  box-shadow: var(--dh-shadow-2);
}

.dark-card,
.metric-card,
.why-item {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.metric-card h4,
.why-item h4 {
  overflow: hidden;
  text-overflow: ellipsis;
}

.portfolio-copy h3 {
  font-size: clamp(2rem, 3vw, 4.2rem);
  line-height: 1.08;
}

.price-card {
  padding: 30px 26px !important;
}

.price-card h4 {
  min-height: 54px;
}

.price-card p {
  min-height: 58px;
}

.price-card .price {
  font-size: clamp(2.2rem, 2.7vw, 3.5rem);
}

.price-card .btn {
  border-radius: 999px !important;
  font-weight: 600;
}

.price-card.featured,
.price-card.featured-dark {
  box-shadow: var(--dh-shadow-2);
}

.cta-final {
  background: linear-gradient(180deg, #f18800 0%, #cc6500 100%);
}

.cta-final .btn {
  border-radius: 999px !important;
  font-weight: 600;
}

.footer {
  background: linear-gradient(180deg, #0b173b 0%, #0b1532 100%);
}

.reveal-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

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

@media (max-width: 1200px) {
  .metric-card h4,
  .why-item h4 {
    white-space: normal;
    min-height: 0;
  }
}

@media (max-width: 991px) {
  h2 {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }

  .hero {
    padding: 88px 0 62px;
  }

  .price-card {
    padding: 24px 20px !important;
  }
}

/* Final readability + navigation overrides */
.hero-title {
  white-space: nowrap;
  text-wrap: nowrap;
}

.orange-banner p {
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.14);
}

.metrics-panel .text-gray-light {
  color: rgba(255, 255, 255, 0.82) !important;
}

#solutions .card h4 {
  font-size: clamp(1.5rem, 1.4vw, 1.85rem);
  line-height: 1.12;
  white-space: nowrap;
  margin-bottom: 14px;
}

.nav-main-links .nav-link {
  font-weight: 600;
  color: #1c2b64;
}

.nav-main-links .nav-link:hover {
  color: #0f266b;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #eef3ff;
  border: 1px solid #d8e2fd;
  border-radius: 999px;
  padding: 4px;
}

.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 34px;
  color: #2a3b75;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0;
  border-radius: 999px;
  padding: 5px 9px;
  line-height: 1;
  white-space: nowrap;
  word-break: normal;
}

.lang-link:hover {
  color: #123584;
  background: #dfe9ff;
}

.lang-link.active {
  color: #fff;
  background: #1456c8;
}

@media (max-width: 1200px) {
  #solutions .card h4 {
    white-space: normal;
  }
}

@media (max-width: 991px) {
  .hero-title {
    white-space: normal;
    text-wrap: balance;
  }

  #navMain {
    margin-top: 10px;
    border: 1px solid #e3e8f6;
    border-radius: 14px;
    background: #fff;
    padding: 10px;
  }

  #navMain .navbar-nav {
    align-items: stretch !important;
    gap: 4px;
  }

  .lang-switch {
    width: fit-content;
  }
}

/* RU landing additions */
.social-proof-card {
  background: #fff;
  border: 1px solid #dfe6fa;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--dh-shadow-1);
  height: 100%;
}

.social-proof-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: top center;
}

.connect-price {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
  color: #0f1b46;
}

.investor-banner {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  padding: 32px;
}

.investor-banner p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.vip-block .vip-card {
  border-radius: 16px;
}

.vip-block .vip-card h4 {
  font-size: 1.3rem;
  line-height: 1.2;
  min-height: 52px;
}

.vip-block .vip-card .price {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

@media (max-width: 991px) {
  .social-proof-card img {
    min-height: 240px;
  }

  .investor-banner {
    padding: 22px 18px;
  }

  .vip-block .vip-card h4 {
    min-height: 0;
  }
}

/* Header and services menu fixes */
.nav-main-links .nav-link {
  color: #1c2b64 !important;
  opacity: 1 !important;
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.98rem;
}

.nav-main-links .nav-link:hover,
.nav-main-links .nav-link:focus {
  color: #11306e !important;
}

.nav-main-links {
  column-gap: 2px;
}

/* Social screenshots */
#social-proof .social-proof-card {
  min-height: 420px;
}

#social-proof .social-proof-card img {
  min-height: 420px;
  object-fit: cover;
}

/* Premium investor block with growth graphics */
.investor-banner {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    radial-gradient(circle at 15% 20%, rgba(76, 126, 255, 0.25), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(0, 176, 255, 0.2), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.06));
}

.investor-growth-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(130deg, transparent 55%, rgba(255, 191, 31, 0.25) 56%, rgba(255, 191, 31, 0.55) 58%, transparent 59%),
    linear-gradient(132deg, transparent 65%, rgba(255, 191, 31, 0.2) 66%, rgba(255, 191, 31, 0.4) 68%, transparent 69%);
  background-size: 44px 44px, 44px 44px, cover, cover;
}

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

.investor-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto 20px;
  max-width: 980px;
}

.investor-kpi {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  padding: 12px;
}

.investor-kpi span {
  display: block;
  color: #fff;
  font-weight: 700;
  margin-bottom: 2px;
}

.investor-kpi small {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.3;
}

/* Pricing visual polish */
#pricing .price-card {
  border-radius: 20px;
  border-width: 1px;
  min-height: 100%;
}

#pricing .price-card h4 {
  font-size: clamp(1.55rem, 2vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  min-height: 92px;
}

#pricing .price-card .price {
  font-size: clamp(2.35rem, 3.4vw, 3.35rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

#pricing .price-card .icon-bullet li {
  font-size: 1.02rem;
  line-height: 1.45;
  margin-bottom: 4px;
}

#pricing .price-card p {
  min-height: 72px;
}

#pricing .price-card.featured {
  position: relative;
  background: linear-gradient(180deg, #f18800 0%, #d96b00 100%);
}

#pricing .price-card.featured::before {
  content: "Рекомендуем";
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #0f1b46;
  background: #fff;
  border-radius: 999px;
  padding: 5px 10px;
}

#pricing .price-card.featured-league {
  position: relative;
  background: linear-gradient(135deg, #183879 0%, #2553a5 100%);
  border: 1px solid #2d5fbb;
  color: #fff;
}

#pricing .price-card.featured-league h4,
#pricing .price-card.featured-league p,
#pricing .price-card.featured-league .price,
#pricing .price-card.featured-league .icon-bullet li,
#pricing .price-card.featured-league .icon-bullet i,
#pricing .price-card.featured-league strong {
  color: #fff !important;
}

#pricing .price-card.featured-league::before {
  content: "Рекомендуем";
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #14397d;
  background: #fff;
  border-radius: 999px;
  padding: 5px 10px;
}

#pricing .price-card.featured-league .btn.btn-white {
  color: #113675 !important;
}

#pricing .price-card.league-pro {
  background: linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
  border: 1px solid #d0dcfb;
}

/* VIP cards polish */
.vip-block .vip-card {
  border-radius: 18px;
  border: 1px solid #d9e1f7;
  box-shadow: 0 8px 22px rgba(10, 25, 80, 0.07);
}

.vip-block .vip-card h4 {
  font-size: clamp(1.35rem, 1.5vw, 1.75rem);
  line-height: 1.12;
}

.vip-block .vip-card .price {
  font-size: clamp(2rem, 2.2vw, 2.75rem);
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .nav-main-links {
    gap: 0;
  }

  .investor-kpis {
    grid-template-columns: 1fr;
  }

  #social-proof .social-proof-card,
  #social-proof .social-proof-card img {
    min-height: 260px;
  }

  #pricing .price-card h4 {
    min-height: 0;
  }
}

/* Header final alignment */
.navbar-brand {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  display: inline-flex;
  align-items: center;
}

.navbar .container {
  min-height: 102px;
}

.dh-brand {
  height: 72px;
  align-items: center;
}

.navbar .navbar-collapse {
  align-items: center !important;
  justify-content: flex-end;
  gap: 14px;
}

.nav-main-links,
.navbar-nav {
  align-items: center !important;
  margin-bottom: 0;
}

.nav-main-links .nav-link {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  margin: 0;
}

.lang-switch {
  min-height: 44px;
  align-items: center;
  align-self: center;
  margin-top: 0 !important;
  padding: 3px;
  gap: 3px;
}

.lang-link {
  height: 34px;
  min-width: 34px;
  font-size: 14px;
  padding: 4px 8px;
}

.nav-contact-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: 0 !important;
  line-height: 1;
  padding-inline: 26px !important;
  white-space: nowrap;
  text-align: center;
}

@media (max-width: 991px) {
  .navbar .container {
    min-height: 84px;
  }

  .dh-brand {
    height: auto;
  }


  .nav-main-links .nav-link {
    min-height: 50px;
  }
}

/* Final premium tuning */
#investors {
  background:
    radial-gradient(circle at 12% 18%, rgba(71, 120, 255, 0.25), transparent 38%),
    radial-gradient(circle at 88% 82%, rgba(0, 190, 255, 0.18), transparent 40%),
    linear-gradient(135deg, #071338 0%, #0e275f 52%, #0d2f66 100%);
}

#investors .investor-banner {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05)),
    radial-gradient(circle at 20% 15%, rgba(255, 209, 122, 0.2), transparent 35%);
  box-shadow: 0 24px 56px rgba(2, 10, 34, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  padding: 44px 40px;
}

#investors .investor-growth-bg {
  opacity: 0.45;
}

#investors h2 {
  font-size: clamp(2.4rem, 4.4vw, 4.6rem);
  letter-spacing: -0.02em;
}

#investors .investor-kpi {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

#investors .btn.btn-white {
  background: linear-gradient(180deg, #fff8ea 0%, #f4e6cb 100%) !important;
  color: #223464 !important;
  border: 1px solid rgba(210, 175, 110, 0.8);
  box-shadow: 0 10px 24px rgba(4, 18, 58, 0.3);
}

#pricing .price-card.featured::before,
#pricing .price-card.featured-league::before {
  content: none !important;
}

#pricing .price-card {
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(8, 22, 62, 0.08);
}

#pricing .price-card h4 {
  font-size: clamp(1.45rem, 1.7vw, 2.05rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-transform: none;
}

#pricing .price-card.featured-league {
  background: linear-gradient(160deg, #102a68 0%, #1d4aa0 100%);
  border: 1px solid #2f63bf;
}

#pricing .price-card.league-pro {
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  border-color: #d7e2fb;
}

.vip-block .vip-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  border: 1px solid #cfdbf8;
  border-radius: 22px;
  box-shadow: 0 10px 26px rgba(14, 33, 84, 0.08);
  padding: 26px 22px !important;
}

.vip-block .vip-card h4 {
  min-height: 64px;
}

.vip-block .vip-card .price {
  color: #0d1d49;
  margin-bottom: 14px;
}

.vip-block .icon-bullet li {
  line-height: 1.42;
  margin-bottom: 2px;
}

@media (max-width: 991px) {
  #investors .investor-banner {
    border-radius: 20px;
    padding: 26px 18px;
  }

  .vip-block .vip-card h4 {
    min-height: 0;
  }
}

/* Solutions block refresh */
#solutions {
  position: relative;
  overflow: hidden;
}

#solutions::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -140px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(36, 81, 202, 0.14) 0%, rgba(36, 81, 202, 0) 72%);
  pointer-events: none;
}

#solutions .about-company-shell {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  max-width: 1080px;
  margin: 0 auto;
}

#solutions .about-intro {
  max-width: 980px;
  margin: 0 auto 24px;
  padding: 20px 16px 10px;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

#solutions .about-intro h2 {
  margin-bottom: 16px !important;
}

#solutions .about-intro p {
  font-size: 1.08rem;
  line-height: 1.58;
  color: #34497e;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

#solutions .about-intro p strong {
  color: #162c66;
}

#solutions .about-intro-points {
  margin-left: 0;
  margin-right: 0;
}

#solutions .about-intro-point {
  border: 1px solid rgba(36, 81, 202, 0.16);
  border-radius: 16px;
  background: #fff;
  padding: 16px 16px 14px;
  box-shadow: 0 10px 24px rgba(23, 42, 96, 0.06);
}

#solutions .about-intro-point h4 {
  margin-bottom: 9px;
  font-size: 1.02rem;
  line-height: 1.32;
  color: #183066;
}

#solutions .about-intro-point h4 i {
  color: #e08200;
}

#solutions .about-intro-point p {
  font-size: 0.93rem;
  line-height: 1.5;
  color: #42557f;
}

#solutions .solutions-divider {
  width: min(680px, 92%);
  height: 1px;
  margin: 0 auto 46px;
  background: linear-gradient(90deg, rgba(24, 51, 124, 0), rgba(24, 51, 124, 0.35), rgba(24, 51, 124, 0));
}

#solutions > .container > h3 {
  margin-bottom: 40px !important;
}

#solutions .about-subtitle {
  color: #172f69;
  margin-top: 8px;
  margin-bottom: 34px !important;
  font-size: clamp(2rem, 2.8vw + 0.8rem, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

#solutions .section-h-icon {
  color: #e08200;
}

#solutions .solution-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 22px !important;
  border-radius: 24px;
  border: 1px solid rgba(33, 68, 158, 0.14);
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow: 0 12px 30px rgba(21, 40, 96, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

#solutions .solution-card::before {
  content: none;
}

#solutions .solution-card h4 {
  margin-bottom: 0;
  font-size: clamp(1.15rem, 0.5vw + 0.9rem, 1.45rem);
  line-height: 1.22;
  color: #182e68;
  min-height: 0;
}

#solutions .solution-card .card-icon {
  color: #e08200;
}

#solutions .solution-card p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #3d5184;
  min-height: 0;
  margin-top: 0;
}

#solutions .solution-card:hover {
  transform: translateY(-4px);
  border-color: rgba(33, 68, 158, 0.26);
  box-shadow: 0 18px 36px rgba(21, 40, 96, 0.12);
}

@media (max-width: 991px) {
  #solutions .about-company-shell {
    border-radius: 0;
    padding: 0;
  }

  #solutions .about-intro {
    padding: 12px 6px 4px;
    border-radius: 0;
  }

  #solutions .about-intro-point {
    padding: 14px;
    border-radius: 14px;
  }

  #solutions .about-intro-point h4 {
    font-size: 1rem;
  }

  #solutions .solution-card {
    border-radius: 18px;
    padding: 18px !important;
  }

  #solutions .solution-card h4 {
    font-size: 1.32rem;
    min-height: 0;
  }

  #solutions .solution-card p,
  #solutions .about-intro p {
    font-size: 0.98rem;
    min-height: 0;
  }
}

/* About person block */
#solutions .about-person {
  border: 1px solid rgba(33, 68, 158, 0.16);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 16px 36px rgba(20, 39, 96, 0.08);
  margin-bottom: 28px !important;
}

#solutions .about-person-photo {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
}

#solutions .about-person-title {
  font-size: clamp(1.85rem, 0.9vw + 1.2rem, 2.35rem);
  line-height: 1.16;
  color: #162c66;
  margin-bottom: 8px;
}

#solutions .about-person-title .name-linkedin-icon {
  color: #2f67c8;
  font-size: 0.72em;
  vertical-align: 0.08em;
  margin-left: 6px;
}

#solutions .about-person-title .name-linkedin-link {
  text-decoration: none;
}

#solutions .about-person-title .name-linkedin-link:hover .name-linkedin-icon {
  color: #1f4fa5;
}

#solutions .about-person-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

#solutions .about-person-tags span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #274381;
  border: 1px solid rgba(39, 67, 129, 0.22);
  background: rgba(36, 81, 202, 0.08);
  border-radius: 999px;
  padding: 6px 10px;
}

#solutions .about-person-role {
  font-size: 1.12rem;
  font-weight: 700;
  color: #1f376f;
}

#solutions .about-person-note {
  font-size: 1rem;
  color: #415787;
  line-height: 1.55;
}

#solutions .about-person-linkedin {
  text-decoration: none;
  color: #2451ca;
  font-weight: 700;
  border: 1px solid rgba(36, 81, 202, 0.25);
  background: rgba(36, 81, 202, 0.08);
  border-radius: 999px;
  padding: 8px 14px;
}

#solutions .about-person-linkedin:hover {
  background: rgba(36, 81, 202, 0.14);
  color: #1d3fa3;
}

#solutions .about-person p {
  color: #354b82;
}

#solutions .about-person .icon-bullet li {
  color: #233969;
  margin-bottom: 8px;
  line-height: 1.45;
}

/* Solutions card text safety */
#solutions .solution-card h4 {
  white-space: normal;
}

@media (max-width: 991px) {
  #solutions .about-person {
    border-radius: 18px;
  }

  #solutions .about-person-photo {
    min-height: 300px;
  }

  #solutions .about-person-title {
    font-size: 2rem;
  }

  #solutions .about-person-tags span {
    font-size: 0.74rem;
    padding: 5px 9px;
  }
}

/* IE page typography balance */
.ie-page .ie-section-head h2 {
  font-size: clamp(2.2rem, 3.6vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.ie-page .ie-section-head p {
  font-size: clamp(1.04rem, 1.1vw, 1.32rem);
  line-height: 1.45;
}

.ie-page .ie-feature-card h4,
.ie-page .ie-scenario-card h4,
.ie-page .ie-compare-card h4,
.ie-page .ie-case-card h4,
.ie-page .ie-guarantee-card h4 {
  font-size: clamp(1.75rem, 1.85vw, 2.45rem);
  line-height: 1.12;
}

.ie-page .ie-feature-card p,
.ie-page .ie-scenario-card p,
.ie-page .ie-compare-list li,
.ie-page .ie-checklist-card li,
.ie-page .ie-guarantee-card p {
  font-size: clamp(1rem, 0.92vw, 1.22rem);
  line-height: 1.42;
}

.ie-page .ie-case-card p {
  font-size: clamp(1rem, 0.9vw, 1.18rem);
  line-height: 1.4;
}

.ie-page .ie-case-label {
  font-size: 0.84rem;
}

.ie-page .ie-loss-title {
  font-size: 0.95rem;
}

.ie-page .ie-loss-box p:last-child {
  font-size: clamp(1rem, 0.95vw, 1.22rem);
}

.ie-page .ie-flow-step h5 {
  font-size: clamp(1.05rem, 1vw, 1.24rem);
}

.ie-page .ie-flow-step p {
  font-size: clamp(0.92rem, 0.78vw, 1.03rem);
}

@media (max-width: 767px) {
  .ie-page .ie-section-head h2 {
    font-size: clamp(1.85rem, 7.6vw, 2.7rem);
  }

  .ie-page .ie-feature-card h4,
  .ie-page .ie-scenario-card h4,
  .ie-page .ie-compare-card h4,
  .ie-page .ie-case-card h4,
  .ie-page .ie-guarantee-card h4 {
    font-size: clamp(1.45rem, 5.5vw, 2rem);
  }
}

/* Contact form GDPR checkbox alignment */
.contact-form-style-03 .dh-gdpr-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-left: 0;
  margin-bottom: 0;
}

.contact-form-style-03 .dh-gdpr-check .form-check-input {
  position: relative;
  float: none;
  margin: 3px 0 0 0;
  width: 18px;
  height: 18px;
  min-width: 18px;
  flex: 0 0 18px;
}

.contact-form-style-03 .dh-gdpr-check .form-check-label {
  display: block;
  margin: 0;
  flex: 1 1 auto;
  text-transform: none;
  line-height: 1.45;
}

.contact-form-style-03 .dh-gdpr-check .form-check-label a {
  text-decoration: underline;
}

/* Force native checkbox rendering for GDPR consent in contact form */
.contact-form-style-03 .dh-gdpr-check input[type="checkbox"] {
  -webkit-appearance: checkbox !important;
  appearance: checkbox !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  flex: 0 0 18px !important;
  margin: 2px 0 0 0 !important;
  padding: 0 !important;
  border: 1px solid #7b82a1 !important;
  border-bottom: 1px solid #7b82a1 !important;
  border-radius: 4px !important;
  background: #fff !important;
  box-shadow: none !important;
  transform: none !important;
  vertical-align: top !important;
}

.contact-form-style-03 .dh-gdpr-check input[type="checkbox"]:focus {
  outline: 2px solid rgba(31, 86, 255, 0.35) !important;
  outline-offset: 1px !important;
}

/* Mobile rescue overrides */
html,
body {
  overflow-x: hidden;
}

img,
video,
iframe,
svg,
canvas {
  max-width: 100%;
}

@media (max-width: 991px) {
  .navbar.sticky-top {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1100;
  }

  body {
    padding-top: 84px;
  }

  table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .navbar .navbar-collapse {
    align-items: stretch !important;
    gap: 10px;
  }

  #navMain {
    max-height: calc(100dvh - 96px) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
  }

  body.navbar-collapse-show #navMain.collapse.show {
    max-height: calc(100dvh - 84px) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
  }

  .nav-main-links .nav-link {
    min-height: 0;
    width: 100%;
    white-space: normal;
    line-height: 1.25;
    padding: 12px 14px !important;
    border-radius: 10px;
  }

  .lang-switch {
    width: 100%;
    justify-content: center;
  }

  .lang-link {
    min-width: 36px;
    font-size: 13px;
  }

  .nav-contact-btn {
    width: 100%;
    min-width: 0;
    white-space: normal;
    padding-inline: 16px !important;
  }

  .hero-title,
  .ie-page .ie-loss-amount,
  #solutions .card h4,
  .metric-card h4,
  .why-item h4 {
    white-space: normal;
    text-wrap: balance;
    overflow: visible;
    text-overflow: clip;
  }

  .hero .btn,
  .ie-page .ie-hero-actions .btn {
    width: 100%;
    margin-right: 0 !important;
  }

  .orange-banner-content {
    text-align: left;
  }

  .orange-banner-side {
    padding: 10px 0;
  }

  .media-stage,
  .media-stage-video {
    min-height: 220px;
  }

  #social-proof .social-proof-card,
  #social-proof .social-proof-card img {
    min-height: 220px;
  }

  .it-page {
    overflow-x: hidden !important;
    overflow-y: visible !important;
  }

  .it-page .it-card h3,
  .it-page .it-card h4,
  .it-page .it-list-item h4,
  .it-page .it-case-card h3,
  .it-page .it-coop h3,
  .it-page .it-section-head h2 {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
    hyphens: auto;
  }

  .it-page .it-card p,
  .it-page .it-list-item p,
  .it-page .it-case-lead,
  .it-page .it-case-list li,
  .it-page .it-case-result,
  .it-page .it-coop li {
    overflow-wrap: anywhere;
    word-break: normal;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: clamp(1.8rem, 8.5vw, 2.4rem);
  }

  h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .hero {
    padding: 76px 0 54px;
  }

  .card,
  .dark-card,
  .metric-card,
  .why-item,
  .split-offer,
  #pricing .price-card,
  .vip-block .vip-card {
    padding: 16px !important;
    border-radius: 16px;
  }

  #solutions .about-person-photo,
  .social-proof-card img {
    min-height: 220px;
  }

  .it-page .it-card,
  .it-page .it-case-card,
  .it-page .it-results,
  .it-page .it-start-check,
  .it-page .it-cta-box {
    padding: 18px !important;
  }

  .it-page .it-card h3,
  .it-page .it-card h4,
  .it-page .it-list-item h4,
  .it-page .it-case-card h3,
  .it-page .it-coop h3 {
    font-size: clamp(1.9rem, 8.6vw, 2.35rem) !important;
    line-height: 1.15 !important;
  }

  .it-page .it-section-head h2 {
    font-size: clamp(2rem, 10vw, 2.9rem) !important;
    line-height: 1.08 !important;
  }

  #solutions .about-intro-point {
    padding: 10px 12px !important;
    border-radius: 12px;
  }

  #solutions .about-intro-point h4 {
    margin-bottom: 6px;
  }

  #solutions .about-intro-point p {
    margin-bottom: 0;
    line-height: 1.42;
  }

  #solutions .solution-card {
    padding: 14px !important;
  }
}

/* Badge spacing + i18n labels */
.badge-local,
.section-mark {
  display: inline-block;
  margin-bottom: 14px;
}

.it-page .it-section-head .it-label {
  margin-bottom: 16px !important;
}

.it-page .it-label + h1,
.it-page .it-label + h2,
.it-page .it-label + .it-title {
  margin-top: 16px !important;
}

.ie-page .ie-case-label {
  margin-bottom: 8px;
}

html[lang="et"] .ie-page .ie-compare-card::after {
  content: "Enne";
}

html[lang="et"] .ie-page .ie-compare-good::after {
  content: "Pärast";
}

html[lang="en"] .ie-page .ie-compare-card::after {
  content: "Before";
}

html[lang="en"] .ie-page .ie-compare-good::after {
  content: "After";
}
