/* LIDER-T cumulative stylesheet — v1.0.4 About / Trust Upgrade */
/* LIDER-T Performance Foundation v1.0.1
   Small local Bootstrap-compatible subset for the classes used on this page.
   Purpose: preserve the current layout while removing the full Bootstrap CSS/JS payload. */

:root {
  --lider-primary: #0d6efd;
  --lider-primary-hover: #0b5ed7;
  --lider-dark: #212529;
  --lider-light: #f8f9fa;
  --lider-border: #dee2e6;
  --lider-text: #212529;
  --lider-link: #0d6efd;
  --lider-focus: rgba(13, 110, 253, .25);
  --lider-radius: .375rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--lider-text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  background: #fff;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h5 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2rem); }
h5 { font-size: 1.25rem; }

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  color: var(--lider-link);
  text-decoration: underline;
}

a:hover {
  color: #0a58ca;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

button,
input,
textarea {
  margin: 0;
  font: inherit;
}

button {
  border-radius: 0;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: .75rem;
  padding-left: .75rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -.75rem;
  margin-left: -.75rem;
}

.row > * {
  width: 100%;
  max-width: 100%;
  padding-right: .75rem;
  padding-left: .75rem;
}

.d-flex { display: flex !important; }
.d-inline-block { display: inline-block !important; }
.align-items-center { align-items: center !important; }
.justify-content-center { justify-content: center !important; }
.align-text-top { vertical-align: text-top !important; }
.text-center { text-align: center !important; }
.text-white { color: #fff !important; }
.bg-dark { background-color: var(--lider-dark) !important; }
.bg-light { background-color: var(--lider-light) !important; }
.h-100 { height: 100% !important; }
.ms-auto { margin-left: auto !important; }
.mb-2 { margin-bottom: .5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.navbar > .container {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  padding-top: .3125rem;
  padding-bottom: .3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.navbar-brand img {
  display: block;
  width: auto;
  height: 50px;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.collapse:not(.show) {
  display: none;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin: .5rem 0 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: .5rem 0;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color .15s ease-in-out;
}

.nav-link:hover,
.nav-link:focus {
  color: #fff;
}

.navbar-toggler {
  padding: .25rem .75rem;
  font-size: 1.25rem;
  line-height: 1;
  color: rgba(255,255,255,.55);
  background: transparent;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--lider-radius);
  cursor: pointer;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28255,255,255,0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.btn {
  display: inline-block;
  padding: .375rem .75rem;
  border: 1px solid transparent;
  border-radius: var(--lider-radius);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn-primary {
  color: #fff;
  background-color: var(--lider-primary);
  border-color: var(--lider-primary);
}

.btn-primary:hover {
  color: #fff;
  background-color: var(--lider-primary-hover);
  border-color: #0a58ca;
}

.btn:disabled {
  pointer-events: none;
  opacity: .65;
}

.hero {
  background-color: #3b4147;
  background-image: url('/bin/img/pole.webp');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 60vh;
  min-height: 420px;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, .7);
}

.section {
  padding: 60px 0;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  color: var(--lider-text);
  overflow-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0,0,0,.175);
  border-radius: var(--lider-radius);
}

.card-img-top {
  width: 100%;
  border-top-left-radius: calc(var(--lider-radius) - 1px);
  border-top-right-radius: calc(var(--lider-radius) - 1px);
}

.card-body {
  flex: 1 1 auto;
  padding: 1rem;
}

.card-title {
  margin-bottom: .5rem;
}

.card-text:last-child {
  margin-bottom: 0;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.form-label {
  display: inline-block;
  margin-bottom: .5rem;
}

.form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  color: var(--lider-text);
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  appearance: none;
  border-radius: var(--lider-radius);
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

textarea.form-control {
  min-height: calc(1.5em + .75rem + 2px);
  resize: vertical;
}

.form-control:focus {
  color: var(--lider-text);
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 .25rem var(--lider-focus);
}

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

.small-text {
  font-size: 10px;
}

.form-status {
  min-height: 1.5rem;
}

.form-status.is-success,
.form-status.is-error {
  font-weight: 600;
}

/* v1.0.2.1: SEO-critical sections are always rendered.
   content-visibility:auto was intentionally removed because full-page
   capture/renderers could reserve intrinsic space without painting content. */
#about,
#contact {
  content-visibility: visible;
  contain: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--lider-primary);
  outline-offset: 2px;
}

@media (min-width: 576px) {
  .container { max-width: 540px; }
}

@media (min-width: 768px) {
  .container { max-width: 720px; }
  .col-md-6 { flex: 0 0 auto; width: 50%; }
}

@media (min-width: 992px) {
  .container { max-width: 960px; }
  .col-lg-6 { flex: 0 0 auto; width: 50%; }
  .navbar-expand-lg { flex-wrap: nowrap; justify-content: flex-start; }
  .navbar-expand-lg .navbar-toggler { display: none; }
  .navbar-expand-lg .navbar-collapse { display: flex !important; flex-basis: auto; }
  .navbar-expand-lg .navbar-nav { flex-direction: row; margin-top: 0; }
  .navbar-expand-lg .nav-link { padding: .5rem; }
}

@media (min-width: 1200px) {
  .container { max-width: 1140px; }
}

@media (min-width: 1400px) {
  .container { max-width: 1320px; }
}

@media (max-width: 767.98px) {
  .hero {
    min-height: 480px;
    height: auto;
    padding: 64px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* =========================================================
   LIDER-T v1.0.2 — Hero Upgrade
   No external fonts, images or UI libraries in the hero.
   ========================================================= */

:root {
  --hero-bg: #111820;
  --hero-bg-2: #18232f;
  --hero-ink: #ffffff;
  --hero-muted: #c8d2dd;
  --hero-line: rgba(255,255,255,.10);
  --hero-accent: #1f7aff;
  --hero-accent-2: #4aa3ff;
}

.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}

.brand-name {
  color: #fff;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: .06em;
}

.brand-subtitle {
  margin-top: .28rem;
  color: rgba(255,255,255,.62);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .015em;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(13,110,253,.18);
}

.nav-phone-label {
  padding: .16rem .38rem;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  font-size: .68rem;
  line-height: 1;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 560px;
  height: auto;
  padding: clamp(72px, 9vw, 118px) 0;
  color: var(--hero-ink);
  background-color: var(--hero-bg);
  background-image:
    radial-gradient(circle at 14% 10%, rgba(31,122,255,.20), transparent 30%),
    radial-gradient(circle at 88% 70%, rgba(74,163,255,.12), transparent 28%),
    linear-gradient(110deg, rgba(10,18,28,.91) 0%, rgba(13,25,38,.82) 47%, rgba(10,20,31,.88) 100%),
    url('/bin/img/pole.webp');
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: center, center, center, center 46%;
  background-size: auto, auto, cover, cover;
  text-shadow: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -8%;
  right: -8%;
  bottom: -78px;
  height: 160px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.035), transparent);
  transform: rotate(-2deg);
}

.hero-grid {
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: .25;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 88%);
}

.hero-glow {
  position: absolute;
  z-index: -2;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .15;
  pointer-events: none;
}

.hero-glow-one {
  top: -250px;
  right: 8%;
  background: #2582ff;
}

.hero-glow-two {
  bottom: -310px;
  left: 20%;
  background: #68b5ff;
}

.hero-container {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, .72fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.hero-copy {
  max-width: 780px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .52rem;
  margin-bottom: 1.15rem;
  padding: .42rem .72rem;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: #dce9f7;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  backdrop-filter: blur(8px);
}

.status-dot {
  width: .52rem;
  height: .52rem;
  border-radius: 50%;
  background: #5ee58c;
  box-shadow: 0 0 0 5px rgba(94,229,140,.10);
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 1.15rem;
  color: #fff;
  font-size: clamp(2.35rem, 5.2vw, 4.8rem);
  font-weight: 800;
  line-height: .99;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: .75rem;
  color: var(--hero-muted);
  font-size: clamp(1.03rem, 1.7vw, 1.22rem);
  line-height: 1.55;
}

.hero-legacy-copy {
  max-width: 720px;
  margin-bottom: 1.65rem;
  color: #94a3b2;
  font-size: .92rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  align-items: stretch;
  margin-bottom: 1.55rem;
}

.hero-call {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
  min-height: 58px;
  padding: .62rem 1rem;
  border-color: var(--hero-accent);
  border-radius: 12px;
  background: linear-gradient(135deg, var(--hero-accent), #0d66dd);
  color: #fff;
  box-shadow: 0 14px 34px rgba(31,122,255,.24);
}

.hero-call:hover,
.hero-call:focus {
  color: #fff;
  background: linear-gradient(135deg, #3388ff, #126be1);
}

.hero-call-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,.13);
  font-size: 1.05rem;
}

.hero-call span:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.18;
}

.hero-call small {
  margin-bottom: .16rem;
  color: rgba(255,255,255,.76);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero-call strong {
  font-size: 1rem;
  letter-spacing: .01em;
}

.hero-secondary {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: .75rem 1.12rem;
  border-color: rgba(255,255,255,.15);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.hero-secondary:hover,
.hero-secondary:focus {
  color: #fff;
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.10);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .6rem;
  max-width: 720px;
}

.hero-proof > span {
  min-width: 0;
  padding: .72rem .78rem;
  border-top: 1px solid rgba(255,255,255,.10);
  color: #fff;
}

.hero-proof strong,
.hero-proof small {
  display: block;
}

.hero-proof strong {
  margin-bottom: .12rem;
  font-size: .94rem;
  font-weight: 800;
}

.hero-proof small {
  color: #90a0af;
  font-size: .72rem;
  line-height: 1.25;
}

.hero-panel {
  position: relative;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: 0 26px 80px rgba(0,0,0,.24);
  backdrop-filter: blur(13px);
}

.hero-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74,163,255,.78), transparent);
}

.hero-panel-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: .32rem .55rem;
  border-radius: 7px;
  background: rgba(31,122,255,.14);
  color: #8dc1ff;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.hero-panel-title {
  margin-bottom: .65rem;
  color: #fff;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.02em;
}

.hero-panel p {
  margin-bottom: 1rem;
  color: #aebcca;
  font-size: .92rem;
  line-height: 1.55;
}

.hero-panel ul {
  display: grid;
  gap: .48rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  position: relative;
  padding-left: 1.25rem;
  color: #dbe5ee;
  font-size: .88rem;
}

.hero-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #65a9ff;
  font-weight: 900;
}

.hero-panel-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: #7eb8ff;
  font-size: .88rem;
  font-weight: 800;
  text-decoration: none;
}

.hero-panel-link:hover {
  color: #b5d7ff;
}

/* Broken / unavailable photo assets should not render ugly alt-text blocks. */
img.is-unavailable {
  display: none !important;
}

.card.has-unavailable-image .card-body {
  padding-top: 1.35rem;
}

@media (max-width: 991.98px) {
  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-panel {
    max-width: 680px;
  }
}

@media (max-width: 767.98px) {
  .navbar > .container {
    gap: .55rem;
  }

  .brand-subtitle {
    display: none;
  }

  .nav-phone {
    margin-left: auto;
    padding: .42rem .58rem;
    font-size: .78rem;
  }

  .nav-phone-label {
    display: none;
  }

  .hero {
    min-height: 0;
    padding: 62px 0 68px;
    background-image:
      radial-gradient(circle at 18% 8%, rgba(31,122,255,.18), transparent 28%),
      radial-gradient(circle at 88% 72%, rgba(74,163,255,.09), transparent 25%),
      linear-gradient(110deg, rgba(9,17,27,.94) 0%, rgba(12,24,37,.90) 55%, rgba(9,18,28,.94) 100%),
      url('/bin/img/pole.webp');
    background-position: center, center, center, center center;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 10vw, 3.35rem);
    line-height: 1.02;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-call,
  .hero-secondary {
    width: 100%;
    justify-content: center;
  }

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

  .hero-panel {
    border-radius: 17px;
  }
}

@media (max-width: 420px) {
  .nav-phone {
    font-size: .72rem;
  }

  .hero-eyebrow {
    font-size: .75rem;
  }

  .hero-proof > span {
    padding-left: .25rem;
    padding-right: .25rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .status-dot {
    animation: lider-status-pulse 2.4s ease-out infinite;
  }
}

@keyframes lider-status-pulse {
  0%, 60%, 100% { box-shadow: 0 0 0 5px rgba(94,229,140,.10); }
  30% { box-shadow: 0 0 0 9px rgba(94,229,140,0); }
}

/* =========================================================
   LIDER-T v1.0.3 — Services Upgrade
   Modern service presentation without external dependencies.
   ========================================================= */

.services-section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 108px) 0;
  background:
    radial-gradient(circle at 90% 8%, rgba(31,122,255,.07), transparent 24%),
    linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17,24,32,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,24,32,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 82%);
}

.services-section > .container {
  position: relative;
}

.services-heading {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(300px, 1.15fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(30px, 5vw, 52px);
}

.section-eyebrow {
  margin-bottom: .6rem;
  color: #146ee8;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.services-heading h2 {
  margin: 0;
  color: #111820;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.035em;
}

.services-heading > p {
  max-width: 720px;
  margin: 0;
  color: #5e6b78;
  font-size: clamp(1rem, 1.5vw, 1.13rem);
  line-height: 1.65;
}

.services-featured {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 22px;
}

.service-feature-card {
  overflow: hidden;
  border: 1px solid #e1e7ee;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(17,24,32,.07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-feature-card:hover {
  transform: translateY(-3px);
  border-color: #cfdae6;
  box-shadow: 0 24px 56px rgba(17,24,32,.10);
}

.service-feature-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 8.6;
  background: #e9eef4;
}

.service-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.service-feature-card:hover .service-feature-media img {
  transform: scale(1.025);
}

.service-feature-label {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: .38rem .62rem;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(17,24,32,.78);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  backdrop-filter: blur(8px);
}

.service-feature-body {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  padding: 24px;
  text-align: left;
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: #eef5ff;
  color: #1473ee;
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.service-feature-body h3,
.service-item h3 {
  margin: 0;
  color: #18212b;
  font-weight: 800;
  letter-spacing: -.018em;
}

.service-feature-body h3 {
  margin-bottom: .42rem;
  font-size: 1.18rem;
}

.service-feature-body p {
  margin: 0;
  color: #687583;
  font-size: .94rem;
  line-height: 1.55;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid #e1e7ee;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(17,24,32,.045);
}

.service-item {
  position: relative;
  min-height: 180px;
  padding: 26px 26px 24px;
  border-right: 1px solid #e7ecf1;
  border-bottom: 1px solid #e7ecf1;
  transition: background-color .2s ease;
}

.service-item:nth-child(3n) {
  border-right: 0;
}

.service-item:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.service-item:hover {
  background: #f8fbff;
}

.service-number {
  display: inline-block;
  margin-bottom: 1.15rem;
  color: #1f7aff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.service-item h3 {
  margin-bottom: .55rem;
  font-size: 1.05rem;
  line-height: 1.25;
}

.service-item p {
  margin: 0;
  color: #6a7784;
  font-size: .9rem;
  line-height: 1.55;
}

.services-cta {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 26px 28px;
  border: 1px solid #d8e2ed;
  border-radius: 20px;
  background: linear-gradient(120deg, #111820, #1a2632);
  box-shadow: 0 16px 42px rgba(17,24,32,.12);
}

.services-cta-copy {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.services-cta-kicker {
  color: #7fb8ff;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.services-cta-copy strong {
  max-width: 620px;
  color: #fff;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.35;
}

.services-cta-actions {
  display: flex;
  flex: 0 0 auto;
  gap: .65rem;
}

.services-call,
.services-calc {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .68rem .95rem;
  border-radius: 11px;
  font-weight: 800;
}

.services-call {
  border-color: #1f7aff;
  background: #1f7aff;
  color: #fff;
}

.services-call:hover,
.services-call:focus {
  border-color: #3388ff;
  background: #3388ff;
  color: #fff;
}

.services-calc {
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.065);
  color: #fff;
}

.services-calc:hover,
.services-calc:focus {
  border-color: rgba(255,255,255,.26);
  background: rgba(255,255,255,.11);
  color: #fff;
}

@media (max-width: 991.98px) {
  .services-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .service-item,
  .service-item:nth-child(3n),
  .service-item:nth-last-child(-n + 3) {
    border-right: 1px solid #e7ecf1;
    border-bottom: 1px solid #e7ecf1;
  }

  .service-item:nth-child(2n) {
    border-right: 0;
  }

  .service-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .services-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .services-section {
    padding: 62px 0;
  }

  .services-featured,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-feature-card {
    border-radius: 18px;
  }

  .service-feature-media {
    aspect-ratio: 16 / 9;
  }

  .service-feature-body {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 20px;
  }

  .service-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .service-item,
  .service-item:nth-child(2n),
  .service-item:nth-child(3n),
  .service-item:nth-last-child(-n + 2),
  .service-item:nth-last-child(-n + 3) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #e7ecf1;
  }

  .service-item:last-child {
    border-bottom: 0;
  }

  .services-cta {
    padding: 22px;
    border-radius: 17px;
  }

  .services-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .services-call,
  .services-calc {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-feature-card,
  .service-feature-media img,
  .service-item {
    transition: none !important;
  }
}

/* =========================================================
   LIDER-T v1.0.4 — About / Trust Upgrade + Services polish
   ========================================================= */

/* Services polish */
.service-feature-body > div:last-child {
  min-width: 0;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .42rem;
  margin-top: .9rem;
}

.service-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: .26rem .55rem;
  border: 1px solid #dce7f3;
  border-radius: 999px;
  background: #f7faff;
  color: #4f6275;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1;
}

.service-feature-card.has-unavailable-image .service-feature-media {
  display: grid;
  min-height: 220px;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(31,122,255,.12), transparent 30%),
    linear-gradient(135deg, #eaf1f8, #f7f9fc);
}

.service-feature-card.has-unavailable-image .service-feature-media::after {
  content: "LIDER-T • Черкаси • 24/7";
  color: #567086;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.service-feature-card.has-unavailable-image .service-feature-label {
  z-index: 1;
}

/* About / Trust */
.about-section {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 9vw, 118px) 0;
  background: #fff;
}

.about-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -260px;
  left: -250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,122,255,.075), transparent 68%);
  pointer-events: none;
}

.about-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, .97fr);
  gap: clamp(46px, 7vw, 92px);
  align-items: center;
}

.about-copy h2 {
  max-width: 690px;
  margin: 0 0 1.15rem;
  color: #111820;
  font-size: clamp(2.15rem, 4.2vw, 3.7rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.042em;
  text-wrap: balance;
}

.about-lead {
  max-width: 720px;
  margin-bottom: 1.3rem;
  color: #4f5f6f;
  font-size: clamp(1.03rem, 1.5vw, 1.16rem);
  line-height: 1.68;
}

.about-text {
  max-width: 720px;
  color: #667482;
}

.about-text p {
  margin-bottom: .82rem;
  font-size: .94rem;
  line-height: 1.72;
}

.trust-list {
  display: grid;
  gap: .78rem;
  margin-top: 1.7rem;
}

.trust-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: .85rem;
  align-items: start;
  padding: .92rem 1rem;
  border: 1px solid #e5ebf1;
  border-radius: 15px;
  background: #fbfcfe;
}

.trust-check {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: #eaf3ff;
  color: #1675f2;
  font-weight: 900;
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item strong {
  margin-bottom: .2rem;
  color: #17212b;
  font-size: .94rem;
}

.trust-item small {
  color: #6c7986;
  font-size: .82rem;
  line-height: 1.5;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1.55rem;
}

.about-call {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: .72rem 1rem;
  border-color: #1f7aff;
  border-radius: 11px;
  background: #1f7aff;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(31,122,255,.18);
}

.about-call:hover,
.about-call:focus {
  border-color: #3388ff;
  background: #3388ff;
  color: #fff;
}

.about-text-link {
  display: inline-flex;
  gap: .42rem;
  align-items: center;
  color: #176fdf;
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
}

.about-text-link:hover {
  color: #0d5fc9;
}

.about-visual {
  min-width: 0;
}

.about-photo-frame {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border: 1px solid #dfe6ed;
  border-radius: 26px;
  background:
    radial-gradient(circle at 20% 10%, rgba(31,122,255,.12), transparent 26%),
    linear-gradient(145deg, #e9eff5, #f7f9fb);
  box-shadow: 0 26px 70px rgba(17,24,32,.12);
}

.about-photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center;
}

.about-photo-frame.has-unavailable-image {
  display: grid;
  place-items: center;
}

.about-photo-frame.has-unavailable-image::before {
  content: "LIDER-T";
  color: #203447;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: .05em;
}

.about-photo-frame.has-unavailable-image::after {
  content: "Евакуатор • Маніпулятор • Черкаси";
  position: absolute;
  top: calc(50% + 42px);
  color: #6b7f90;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.about-photo-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  min-width: 150px;
  padding: .8rem .95rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 14px;
  background: rgba(17,24,32,.82);
  color: #fff;
  backdrop-filter: blur(10px);
}

.about-photo-badge strong {
  font-size: 1.05rem;
}

.about-photo-badge span {
  color: rgba(255,255,255,.72);
  font-size: .73rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .6rem;
  margin-top: .75rem;
}

.about-stat {
  min-width: 0;
  padding: .82rem .72rem;
  border: 1px solid #e2e8ee;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 9px 26px rgba(17,24,32,.045);
}

.about-stat strong,
.about-stat span {
  display: block;
}

.about-stat strong {
  margin-bottom: .18rem;
  color: #15202a;
  font-size: .92rem;
  font-weight: 900;
}

.about-stat span {
  color: #768391;
  font-size: .68rem;
  line-height: 1.32;
}

@media (max-width: 991.98px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-copy,
  .about-lead,
  .about-text {
    max-width: none;
  }

  .about-visual {
    max-width: 760px;
  }
}

@media (max-width: 767.98px) {
  .about-section {
    padding: 64px 0;
  }

  .about-photo-frame,
  .about-photo-frame img {
    min-height: 300px;
  }

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

@media (max-width: 480px) {
  .trust-item {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: .82rem;
  }

  .trust-check {
    width: 34px;
    height: 34px;
  }

  .about-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .about-call,
  .about-text-link {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-call,
  .service-tags span {
    transition: none !important;
  }
}

/* =========================================================
   LIDER-T v1.0.5 — Contact / Conversion Upgrade
   ========================================================= */
.contact-section {
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
  background:
    radial-gradient(circle at 92% 12%, rgba(31,122,255,.12), transparent 28%),
    linear-gradient(180deg, #f4f7fa 0%, #eef3f7 100%);
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  background-image:
    linear-gradient(rgba(20,33,45,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,33,45,.035) 1px, transparent 1px);
  background-size: 48px 48px;
}

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

.contact-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .75fr);
  gap: 2.5rem;
  align-items: end;
  margin-bottom: 2rem;
}

.contact-heading h2 {
  max-width: 720px;
  margin: .38rem 0 0;
  color: #131e28;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: .98;
  letter-spacing: -.045em;
}

.contact-heading > p {
  max-width: 520px;
  margin: 0;
  color: #667482;
  font-size: .96rem;
  line-height: 1.68;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
  gap: 1rem;
  align-items: stretch;
}

.contact-info-card,
.contact-form-card {
  border-radius: 26px;
}

.contact-info-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 90% 5%, rgba(31,122,255,.22), transparent 30%),
    linear-gradient(145deg, #152330, #0f1a24 68%);
  color: #fff;
  box-shadow: 0 24px 70px rgba(17,27,38,.16);
}

.contact-info-card::after {
  content: "LIDER-T";
  position: absolute;
  right: -18px;
  bottom: -22px;
  color: rgba(255,255,255,.028);
  font-size: 5.5rem;
  font-weight: 900;
  letter-spacing: -.06em;
  pointer-events: none;
}

.contact-live {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  padding: .42rem .68rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: #dbe7f1;
  font-size: .73rem;
  font-weight: 800;
}

.contact-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #49d58f;
  box-shadow: 0 0 0 4px rgba(73,213,143,.11);
}

.contact-info-card h3 {
  max-width: 430px;
  margin: 1.2rem 0 .7rem;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.03;
  letter-spacing: -.04em;
}

.contact-info-lead {
  max-width: 450px;
  margin: 0 0 1.35rem;
  color: rgba(255,255,255,.64);
  font-size: .92rem;
  line-height: 1.65;
}

.contact-phone {
  display: flex;
  gap: .8rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(88,161,255,.26);
  border-radius: 16px;
  background: rgba(31,122,255,.12);
  color: #fff;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.contact-phone:hover,
.contact-phone:focus {
  transform: translateY(-2px);
  border-color: rgba(88,161,255,.55);
  background: rgba(31,122,255,.18);
  color: #fff;
}

.contact-phone-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 13px;
  background: #1f7aff;
  font-size: 1.15rem;
}

.contact-phone small,
.contact-phone strong {
  display: block;
}

.contact-phone small {
  margin-bottom: .15rem;
  color: #97b9dc;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.contact-phone strong {
  font-size: clamp(1.05rem, 2.2vw, 1.42rem);
  letter-spacing: -.02em;
}

.contact-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .55rem;
  margin: 1rem 0;
}

.contact-facts div {
  min-width: 0;
  padding: .78rem .72rem;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 13px;
  background: rgba(255,255,255,.035);
}

.contact-facts strong,
.contact-facts span {
  display: block;
}

.contact-facts strong {
  margin-bottom: .16rem;
  color: #fff;
  font-size: .9rem;
}

.contact-facts span {
  color: rgba(255,255,255,.48);
  font-size: .65rem;
  line-height: 1.35;
}

.contact-dispatcher-note {
  position: relative;
  z-index: 1;
  margin-top: 1.15rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 15px;
  background: rgba(255,255,255,.035);
}

.contact-dispatcher-note strong {
  color: #fff;
  font-size: .82rem;
}

.contact-dispatcher-note ul {
  margin: .6rem 0 0;
  padding-left: 1.1rem;
  color: rgba(255,255,255,.58);
  font-size: .76rem;
  line-height: 1.6;
}

.contact-address {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  margin-top: 1.15rem;
}

.contact-address span {
  color: #7f9bb4;
  font-size: .67rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-address strong {
  color: rgba(255,255,255,.82);
  font-size: .82rem;
  line-height: 1.5;
}

.contact-form-card {
  padding: 2rem;
  border: 1px solid #e0e7ee;
  background: rgba(255,255,255,.96);
  box-shadow: 0 24px 70px rgba(29,45,60,.095);
}

.contact-form-head {
  margin-bottom: 1rem;
}

.contact-form-kicker {
  color: #1772e8;
  font-size: .69rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.contact-form-head h3 {
  margin: .35rem 0 .38rem;
  color: #16212b;
  font-size: clamp(1.45rem, 2.7vw, 2rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.contact-form-head p {
  margin: 0;
  color: #7a8793;
  font-size: .78rem;
}

.service-choice {
  min-width: 0;
  margin: 0 0 1.3rem;
  padding: 0;
  border: 0;
}

.service-choice legend {
  margin-bottom: .55rem;
  color: #3e4b57;
  font-size: .78rem;
  font-weight: 800;
}

.service-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .48rem;
}

.service-choice label {
  position: relative;
  cursor: pointer;
}

.service-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.service-choice span {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: .55rem .65rem;
  border: 1px solid #dfe6ed;
  border-radius: 11px;
  background: #f8fafc;
  color: #52606d;
  font-size: .75rem;
  font-weight: 800;
  text-align: center;
  transition: border-color .16s ease, background .16s ease, color .16s ease, box-shadow .16s ease;
}

.service-choice input:checked + span {
  border-color: #93beff;
  background: #edf5ff;
  color: #1269d8;
  box-shadow: inset 0 0 0 1px rgba(31,122,255,.11);
}

.service-choice input:focus-visible + span {
  outline: 3px solid var(--lider-primary);
  outline-offset: 2px;
}

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

.field-group {
  min-width: 0;
  margin-bottom: .9rem;
}

.contact-form-card .form-label {
  margin-bottom: .38rem;
  color: #3b4854;
  font-size: .76rem;
  font-weight: 800;
}

.contact-form-card .form-control {
  min-height: 48px;
  padding: .72rem .82rem;
  border-color: #d9e1e8;
  border-radius: 11px;
  background: #fbfcfd;
  font-size: .88rem;
}

.contact-form-card textarea.form-control {
  min-height: 92px;
}

.contact-form-card .form-control::placeholder {
  color: #a1acb6;
}

.contact-form-card .form-control:focus {
  border-color: #79adf6;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(31,122,255,.095);
}

.contact-submit-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: .2rem;
}

.contact-submit {
  display: inline-flex;
  min-height: 50px;
  gap: .7rem;
  align-items: center;
  justify-content: center;
  padding: .72rem 1.05rem;
  border: 1px solid #1f7aff;
  border-radius: 11px;
  background: #1f7aff;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(31,122,255,.2);
}

.contact-submit:hover,
.contact-submit:focus {
  border-color: #3287ff;
  background: #3287ff;
  color: #fff;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: .68;
}

.contact-submit-row small {
  max-width: 270px;
  color: #7b8792;
  font-size: .7rem;
  line-height: 1.45;
}

.contact-form-status {
  display: none;
  margin-top: 1rem;
  padding: .8rem .9rem;
  border-radius: 11px;
  font-size: .8rem;
  line-height: 1.5;
}

.contact-form-status.is-success,
.contact-form-status.is-error {
  display: block;
}

.contact-form-status.is-success {
  border: 1px solid #b9e6ce;
  background: #eefaf4;
  color: #1c6841;
}

.contact-form-status.is-error {
  border: 1px solid #f0c6c6;
  background: #fff4f4;
  color: #9b3131;
}

.mobile-conversion-bar {
  display: none;
}

@media (max-width: 991.98px) {
  .contact-heading {
    grid-template-columns: 1fr;
    gap: .85rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .contact-section {
    padding: 64px 0 86px;
  }

  .contact-heading h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

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

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

  .contact-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-submit,
  .contact-submit-row small {
    width: 100%;
    max-width: none;
  }

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

  body {
    padding-bottom: 70px;
  }

  .mobile-conversion-bar {
    position: fixed;
    z-index: 1000;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 10px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: .45rem;
    padding: .45rem;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 15px;
    background: rgba(15,26,36,.94);
    box-shadow: 0 18px 50px rgba(6,15,24,.28);
    backdrop-filter: blur(14px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }

  .mobile-conversion-bar.is-hidden {
    visibility: hidden;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
  }

  .mobile-conversion-bar a {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    font-size: .78rem;
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-call {
    gap: .38rem;
    background: #1f7aff;
    color: #fff;
  }

  .mobile-call:hover,
  .mobile-call:focus {
    color: #fff;
  }

  .mobile-calc {
    border: 1px solid rgba(255,255,255,.13);
    background: rgba(255,255,255,.06);
    color: #fff;
  }

  .mobile-calc:hover,
  .mobile-calc:focus {
    color: #fff;
  }
}

@media (max-width: 480px) {
  .contact-info-card,
  .contact-form-card {
    padding: 1.15rem;
    border-radius: 20px;
  }

  .contact-facts {
    grid-template-columns: 1fr;
  }

  .service-choice-grid {
    gap: .4rem;
  }

  .service-choice span {
    min-height: 42px;
    padding: .5rem;
    font-size: .7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-phone,
  .mobile-conversion-bar,
  .service-choice span {
    transition: none !important;
  }
}


/* v1.0.9 — FAQ + Local SEO */
.local-faq-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e9eef4;
  border-bottom: 1px solid #e9eef4;
  background:
    radial-gradient(circle at 12% 8%, rgba(31,122,255,.08), transparent 29%),
    linear-gradient(180deg, #f8fbff 0%, #f4f8fc 100%);
}

.local-faq-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 2.4rem;
  align-items: end;
  margin-bottom: 2rem;
}

.local-faq-heading h2 {
  max-width: 780px;
  margin: .38rem 0 0;
  color: #101922;
  font-size: clamp(2.35rem, 4.2vw, 4.15rem);
  font-weight: 950;
  letter-spacing: -.055em;
  line-height: .98;
}

.local-faq-heading > p {
  max-width: 520px;
  margin: 0 0 .2rem auto;
  color: #677481;
  font-size: .9rem;
  line-height: 1.65;
}

.local-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: 1.1rem;
  align-items: start;
}

.coverage-card,
.faq-card {
  border-radius: 24px;
}

.coverage-card {
  position: sticky;
  top: 1.25rem;
  overflow: hidden;
  padding: 1.65rem;
  border: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 85% 0%, rgba(43,128,255,.22), transparent 34%),
    linear-gradient(145deg, #102334 0%, #0e1b27 72%, #0b151e 100%);
  color: #fff;
  box-shadow: 0 22px 56px rgba(17,37,54,.13);
}

.coverage-card::after {
  position: absolute;
  right: -70px;
  bottom: -92px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(105,171,255,.12);
  border-radius: 50%;
  content: '';
  box-shadow: 0 0 0 32px rgba(105,171,255,.025), 0 0 0 64px rgba(105,171,255,.018);
  pointer-events: none;
}

.coverage-kicker,
.faq-kicker {
  display: inline-flex;
  gap: .45rem;
  align-items: center;
  color: #70adff;
  font-size: .67rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.coverage-kicker span {
  color: #64d59a;
  font-size: .62rem;
}

.coverage-card h3 {
  max-width: 420px;
  margin: .7rem 0 .75rem;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  font-weight: 950;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.coverage-card > p {
  max-width: 540px;
  margin: 0;
  color: #b9c5d0;
  font-size: .82rem;
  line-height: 1.65;
}

.coverage-levels {
  display: grid;
  gap: .6rem;
  margin: 1.35rem 0;
}

.coverage-level {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: .75rem;
  align-items: center;
  padding: .78rem;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 14px;
  background: rgba(255,255,255,.045);
}

.coverage-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(112,173,255,.22);
  border-radius: 11px;
  background: rgba(31,122,255,.12);
  color: #78b3ff;
  font-size: .62rem;
  font-weight: 950;
}

.coverage-level strong,
.coverage-level small {
  display: block;
}

.coverage-level strong {
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
}

.coverage-level small {
  margin-top: .16rem;
  color: #93a4b4;
  font-size: .67rem;
  line-height: 1.4;
}

.coverage-cities {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.25rem;
}

.coverage-cities span {
  padding: .36rem .52rem;
  border: 1px solid rgba(255,255,255,.085);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: #b6c6d5;
  font-size: .64rem;
  line-height: 1;
}

.coverage-call {
  position: relative;
  z-index: 1;
  display: flex;
  gap: .72rem;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: .65rem .9rem;
  border-radius: 14px;
  background: #1f7aff;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(31,122,255,.24);
  transition: transform .16s ease, background .16s ease;
}

.coverage-call:hover,
.coverage-call:focus {
  transform: translateY(-1px);
  background: #3488ff;
  color: #fff;
}

.coverage-call > span:first-child {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,.12);
}

.coverage-call small,
.coverage-call strong {
  display: block;
}

.coverage-call small {
  margin-bottom: .08rem;
  color: #d5e7ff;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .065em;
  text-transform: uppercase;
}

.coverage-call strong {
  font-size: .82rem;
  font-weight: 950;
}

.faq-card {
  padding: 1.65rem;
  border: 1px solid #e5ebf1;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 50px rgba(29,54,76,.075);
}

.faq-card-head {
  padding: .15rem .2rem 1rem;
}

.faq-card-head h3 {
  margin: .5rem 0 .4rem;
  color: #111b24;
  font-size: clamp(1.65rem, 2.8vw, 2.55rem);
  font-weight: 950;
  letter-spacing: -.045em;
  line-height: 1.04;
}

.faq-card-head p {
  max-width: 620px;
  margin: 0;
  color: #798590;
  font-size: .78rem;
  line-height: 1.55;
}

.faq-list {
  display: grid;
  gap: .55rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid #e4ebf2;
  border-radius: 14px;
  background: #fbfdff;
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

.faq-item[open] {
  border-color: #cfe0f5;
  background: #fff;
  box-shadow: 0 8px 22px rgba(27,59,87,.055);
}

.faq-item summary {
  position: relative;
  display: flex;
  min-height: 58px;
  cursor: pointer;
  list-style: none;
  align-items: center;
  padding: .9rem 3rem .9rem 1rem;
  color: #17222c;
  font-size: .82rem;
  font-weight: 900;
  line-height: 1.4;
}

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

.faq-item summary::after {
  position: absolute;
  right: 1rem;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #dce6ef;
  border-radius: 9px;
  background: #f3f7fb;
  color: #1f7aff;
  content: '+';
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  transition: transform .16s ease;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-answer {
  padding: 0 1rem 1rem;
}

.faq-answer p {
  margin: 0;
  padding-top: .1rem;
  color: #667581;
  font-size: .76rem;
  line-height: 1.65;
}

.footer-service-line {
  margin: .4rem 0 0;
  color: #9ea8b1;
  font-size: .66rem;
  letter-spacing: .01em;
}

@media (max-width: 991.98px) {
  .local-faq-heading,
  .local-faq-layout {
    grid-template-columns: 1fr;
  }

  .local-faq-heading {
    gap: .8rem;
  }

  .local-faq-heading > p {
    max-width: 760px;
    margin-left: 0;
  }

  .coverage-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 767.98px) {
  .local-faq-section {
    padding: 64px 0;
  }

  .local-faq-heading h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .coverage-card,
  .faq-card {
    padding: 1.15rem;
    border-radius: 20px;
  }

  .faq-item summary {
    min-height: 54px;
    padding-left: .85rem;
    font-size: .76rem;
  }

  .faq-answer {
    padding: 0 .85rem .9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .coverage-call,
  .faq-item,
  .faq-item summary::after {
    transition: none !important;
  }
}

/* v1.0.9.1 — Brand & Typography Polish
   Restores the original LIDER-T image logo and reduces visual density.
   SEO copy and heading hierarchy remain unchanged. */

/* Original brand asset from the pre-upgrade site. */
.brand-logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  padding-top: .2rem;
  padding-bottom: .2rem;
}

.brand-logo img {
  display: block;
  width: auto;
  height: 38px;
  max-width: 190px;
  object-fit: contain;
}

/* Calmer overall editorial hierarchy. */
.hero {
  min-height: 510px;
  padding: clamp(66px, 7vw, 92px) 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.2rem, 4.25vw, 3.8rem);
  font-weight: 700;
  line-height: 1.035;
  letter-spacing: -.032em;
}

.hero-eyebrow,
.hero-panel-badge,
.section-eyebrow,
.services-cta-kicker,
.coverage-kicker,
.faq-kicker,
.contact-form-kicker,
.contact-live {
  font-weight: 700;
}

.hero-panel-title {
  font-weight: 700;
  letter-spacing: -.02em;
}

.hero-proof strong,
.nav-phone,
.hero-secondary,
.hero-panel-link {
  font-weight: 700;
}

.services-section {
  padding: clamp(66px, 6.8vw, 88px) 0;
}

.services-heading h2 {
  font-size: clamp(1.9rem, 3.1vw, 2.65rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.03em;
}

.service-feature-body h3,
.service-item h3,
.services-cta-copy strong,
.services-call,
.services-calc,
.service-feature-label,
.service-number {
  font-weight: 700;
}

.about-section {
  padding: clamp(68px, 7vw, 92px) 0;
}

.about-copy h2 {
  font-size: clamp(2rem, 3.35vw, 2.85rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.032em;
}

.about-call,
.about-text-link,
.about-photo-badge strong {
  font-weight: 700;
}

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

.local-faq-heading h2 {
  max-width: 720px;
  font-size: clamp(2rem, 3.45vw, 3rem);
  font-weight: 700;
  line-height: 1.035;
  letter-spacing: -.035em;
}

.coverage-card h3 {
  font-size: clamp(1.55rem, 2.35vw, 2.15rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.03em;
}

.coverage-level strong,
.coverage-icon,
.coverage-call strong {
  font-weight: 700;
}

.faq-card-head h3 {
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.03em;
}

.faq-item summary {
  font-weight: 700;
}

.contact-section {
  padding: 74px 0 82px;
}

.contact-heading h2 {
  max-width: 650px;
  font-size: clamp(1.9rem, 3.15vw, 2.7rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.032em;
}

.contact-info-card h3 {
  font-size: clamp(1.55rem, 2.45vw, 2.15rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.025em;
}

.contact-form-head h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -.025em;
}

.contact-submit,
.service-choice span,
.contact-form-card .form-label,
.contact-dispatcher-note strong {
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .brand-logo img {
    height: 32px;
    max-width: 155px;
  }

  .hero {
    min-height: auto;
    padding: 54px 0 60px;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 1.04;
  }

  .services-section,
  .about-section,
  .local-faq-section,
  .contact-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .services-heading h2,
  .about-copy h2,
  .local-faq-heading h2,
  .contact-heading h2 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
    line-height: 1.06;
  }
}

/* v1.0.10 — Unified Typography + Footer Upgrade
   One calmer editorial hierarchy across all page sections. */
:root {
  --lider-heading: #16202a;
  --lider-body-muted: #667581;
  --lider-heading-weight: 600;
  --lider-card-heading-weight: 600;
}

/* One consistent title system. Hero remains the only intentionally stronger headline. */
.hero h1 {
  font-size: clamp(2.15rem, 4vw, 3.55rem);
  font-weight: 700;
  line-height: 1.045;
  letter-spacing: -.03em;
}

.services-heading h2,
.about-copy h2,
.local-faq-heading h2,
.contact-heading h2 {
  max-width: 720px;
  color: var(--lider-heading);
  font-size: clamp(1.85rem, 3vw, 2.45rem);
  font-weight: var(--lider-heading-weight);
  line-height: 1.08;
  letter-spacing: -.026em;
}

.hero-panel-title,
.service-feature-body h3,
.service-item h3,
.about-visual h3,
.coverage-card h3,
.faq-card-head h3,
.contact-info-card h3,
.contact-form-head h3 {
  font-weight: var(--lider-card-heading-weight);
  letter-spacing: -.018em;
}

.service-feature-body h3,
.service-item h3 {
  color: var(--lider-heading);
}

.coverage-card h3 {
  font-size: clamp(1.4rem, 2.1vw, 1.9rem);
  line-height: 1.1;
}

.faq-card-head h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.12;
}

.contact-info-card h3 {
  font-size: clamp(1.45rem, 2.15vw, 1.9rem);
}

.contact-form-head h3 {
  font-size: clamp(1.25rem, 1.9vw, 1.6rem);
}

.section-eyebrow,
.hero-eyebrow,
.hero-panel-badge,
.services-cta-kicker,
.coverage-kicker,
.faq-kicker,
.contact-form-kicker,
.contact-live,
.service-feature-label,
.service-number,
.contact-form-card .form-label,
.contact-dispatcher-note strong,
.contact-address span,
.contact-phone small,
.faq-item summary,
.coverage-level strong,
.coverage-call strong,
.services-cta-copy strong,
.trust-item strong,
.about-photo-badge strong,
.about-stat strong,
.contact-facts strong {
  font-weight: 600;
}

.faq-item summary {
  color: #26323d;
}

.about-lead,
.services-heading > p,
.local-faq-heading > p,
.contact-heading > p {
  color: var(--lider-body-muted);
  font-weight: 400;
}

/* Footer — v1.0.10.1 polish */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 52px 0 22px;
  color: #cbd4dc;
  background:
    radial-gradient(circle at 18% 0%, rgba(31,122,255,.075), transparent 34%),
    #151c22;
  border-top: 1px solid rgba(255,255,255,.06);
}

.site-footer::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1180px, 90vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(31,122,255,.5), transparent);
  content: '';
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(150px, .62fr) minmax(235px, .95fr);
  gap: clamp(2.5rem, 5.5vw, 5.5rem);
  align-items: start;
}

.footer-brand-block {
  max-width: 460px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  margin-bottom: 1rem;
}

.footer-logo img {
  display: block;
  width: auto;
  height: 56px;
  max-width: 240px;
  object-fit: contain;
}

.footer-brand-block > p {
  max-width: 440px;
  margin: 0 0 1.25rem;
  color: #a8b3bd;
  font-size: .95rem;
  line-height: 1.65;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: .78rem;
  min-height: 52px;
  padding: .72rem .95rem;
  color: #fff;
  text-decoration: none;
  background: #1f7aff;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(31,122,255,.18);
}

.footer-phone:hover,
.footer-phone:focus {
  color: #fff;
  background: #176de8;
}

.footer-phone > span:first-child {
  font-size: 1.08rem;
}

.footer-phone small,
.footer-phone strong {
  display: block;
}

.footer-phone small {
  margin-bottom: .06rem;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .055em;
  text-transform: uppercase;
  opacity: .82;
}

.footer-phone strong {
  font-size: .98rem;
  font-weight: 600;
  line-height: 1.2;
}

.footer-heading {
  margin: .3rem 0 1.05rem;
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .085em;
  text-transform: uppercase;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: .72rem;
  padding-top: .25rem;
}

.footer-column a {
  width: fit-content;
  color: #b7c1ca;
  font-size: .92rem;
  line-height: 1.45;
  text-decoration: none;
  transition: color .15s ease;
}

.footer-column a:hover,
.footer-column a:focus {
  color: #fff;
}

.footer-contact-column address {
  margin: .12rem 0 .45rem;
  color: #9da9b4;
  font-size: .87rem;
  font-style: normal;
  line-height: 1.62;
}

.footer-hours {
  display: flex;
  align-items: center;
  gap: .48rem;
  margin: .4rem 0 0;
  color: #b7c1ca;
  font-size: .84rem;
  line-height: 1.45;
}

.footer-status-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #37d67a;
  box-shadow: 0 0 0 4px rgba(55,214,122,.08);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.075);
}

.footer-bottom p {
  margin: 0;
  color: #87939e;
  font-size: .76rem;
  line-height: 1.55;
}

.footer-bottom p:last-child {
  text-align: right;
}

@media (max-width: 767.98px) {
  .services-heading h2,
  .about-copy h2,
  .local-faq-heading h2,
  .contact-heading h2 {
    font-size: clamp(1.75rem, 7.5vw, 2.15rem);
    line-height: 1.1;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 8.7vw, 2.6rem);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.15rem;
  }

  .site-footer {
    padding-top: 42px;
    padding-bottom: 82px;
  }

  .footer-brand-block {
    max-width: none;
  }

  .footer-logo img {
    height: 50px;
    max-width: 220px;
  }

  .footer-brand-block > p {
    max-width: 34rem;
    font-size: .93rem;
  }

  .footer-column {
    padding-top: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: .35rem;
    margin-top: 30px;
    padding-top: 18px;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }
}


/* v1.0.11.2 — Fleet Density Polish */
.fleet-section {
  background:
    radial-gradient(circle at 82% 14%, rgba(31,122,255,.07), transparent 28rem),
    #f8fafc;
}

.fleet-heading,
.cases-heading {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: 2rem;
}

.fleet-heading h2 {
  margin: .35rem 0 0;
  color: #111923;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.fleet-heading > div:last-child > p,
.cases-heading > p {
  max-width: 650px;
  margin: 0;
  color: #66727e;
  font-size: .96rem;
  line-height: 1.7;
}

.fleet-proof {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: .65rem;
  color: #2877d8;
  font-size: .73rem;
  font-weight: 600;
}

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

.fleet-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e4e9ef;
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(17,32,48,.055);
}

.fleet-media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: linear-gradient(135deg, #dce7f2, #eef4f9);
}

.fleet-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.fleet-card:hover .fleet-media img {
  transform: scale(1.018);
}

.fleet-media-badge {
  position: absolute;
  top: .8rem;
  right: .8rem;
  z-index: 2;
  padding: .38rem .62rem;
  color: #fff;
  font-size: .67rem;
  font-weight: 600;
  line-height: 1;
  background: rgba(13,28,43,.78);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.fleet-body {
  padding: 1.2rem 1.25rem 1.3rem;
}

.fleet-index,
.cases-kicker {
  display: block;
  margin-bottom: .5rem;
  color: #1478ff;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.fleet-body h3,
.cases-heading h3,
.case-photo-card strong {
  color: #15202b;
  font-weight: 600;
}

.fleet-body h3 {
  margin: 0 0 .45rem;
  font-size: 1.08rem;
  line-height: 1.3;
}

.fleet-body p {
  margin: 0;
  color: #66727e;
  font-size: .88rem;
  line-height: 1.62;
}

.fleet-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .38rem;
  margin-top: .9rem;
}

.fleet-tags span {
  padding: .28rem .52rem;
  color: #4f6071;
  font-size: .66rem;
  line-height: 1;
  background: #f5f8fb;
  border: 1px solid #e4eaf0;
  border-radius: 999px;
}

.cases-block {
  margin-top: clamp(1.8rem, 3.5vw, 2.8rem);
  padding-top: clamp(1.5rem, 3vw, 2.2rem);
  border-top: 1px solid #dde5ec;
}

.cases-heading {
  margin-bottom: 1.35rem;
}

.cases-heading h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.14;
  letter-spacing: -.025em;
}

.cases-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
}

.cases-gallery--compact .case-photo-media {
  aspect-ratio: 16 / 10;
}

.case-photo-card {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e1e8ee;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(17,32,48,.045);
}

.case-photo-media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #e8eef4;
}

.case-photo-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.case-photo-card:hover .case-photo-media img {
  transform: scale(1.018);
}

.case-photo-media span {
  position: absolute;
  left: .8rem;
  bottom: .8rem;
  padding: .38rem .62rem;
  color: #fff;
  font-size: .67rem;
  font-weight: 600;
  background: rgba(13,28,43,.82);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.case-photo-card figcaption {
  padding: .78rem .85rem .9rem;
}

.case-photo-card strong {
  display: block;
  margin-bottom: .3rem;
  font-size: .9rem;
  line-height: 1.32;
}

.case-photo-card p {
  margin: 0;
  color: #66727e;
  font-size: .76rem;
  line-height: 1.5;
}

.fleet-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
  padding: 1.05rem 1.15rem;
  color: #fff;
  background: #142331;
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(18,35,51,.12);
}

.fleet-cta span,
.fleet-cta strong {
  display: block;
}

.fleet-cta span {
  margin-bottom: .12rem;
  color: #8fbfff;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.fleet-cta strong {
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.4;
}

.fleet-cta-actions {
  display: flex;
  gap: .55rem;
  flex: 0 0 auto;
}

.fleet-call,
.fleet-calc {
  min-height: 42px;
  padding: .66rem .85rem;
  font-size: .78rem;
  font-weight: 600;
  border-radius: 9px;
}

.fleet-call {
  color: #fff;
  background: #1f7aff;
  border: 1px solid #1f7aff;
}

.fleet-calc {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,.22);
}

.fleet-call:hover,
.fleet-call:focus,
.fleet-calc:hover,
.fleet-calc:focus {
  color: #fff;
}

@media (min-width: 1100px) {
  .case-photo-card--wide {
    grid-column: span 1;
  }
}

@media (max-width: 991.98px) {
  .fleet-heading,
  .cases-heading {
    grid-template-columns: 1fr;
    gap: .8rem;
  }

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

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

  .fleet-card {
    display: grid;
    grid-template-columns: minmax(240px, .9fr) 1fr;
  }

  .fleet-media {
    aspect-ratio: auto;
    min-height: 240px;
  }
}

@media (max-width: 767.98px) {
  .fleet-heading h2 {
    font-size: clamp(1.75rem, 7.5vw, 2.15rem);
  }

  .fleet-card {
    display: block;
  }

  .fleet-media,
  .case-photo-media {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .cases-gallery {
    grid-template-columns: 1fr;
  }

  .fleet-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .fleet-cta-actions {
    width: 100%;
  }

  .fleet-cta-actions .btn {
    flex: 1 1 0;
    justify-content: center;
  }
}


/* v1.0.11.3 — Photo Diversity Polish */
.about-visual--trust {
  display: flex;
  align-items: stretch;
}

.about-brand-panel {
  position: relative;
  width: 100%;
  min-height: 390px;
  overflow: hidden;
  padding: clamp(1.45rem, 2.8vw, 2rem);
  color: #dbe7f2;
  background:
    radial-gradient(circle at 82% 12%, rgba(31,122,255,.22), transparent 34%),
    linear-gradient(145deg, #122131 0%, #0d1924 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  box-shadow: 0 24px 58px rgba(17,32,48,.13);
}

.about-brand-panel::after {
  content: "LIDER-T";
  position: absolute;
  right: -1rem;
  bottom: -1.15rem;
  color: rgba(255,255,255,.035);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.05em;
  pointer-events: none;
}

.about-brand-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.about-brand-top img {
  display: block;
  width: auto;
  height: 48px;
  max-width: 138px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .96;
}

.about-brand-top strong {
  display: block;
  color: #fff;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -.015em;
}

.about-brand-kicker {
  display: block;
  margin-bottom: .28rem;
  color: #79b3ff;
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.about-brand-panel > p {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 1.2rem 0 1rem;
  color: #aebdca;
  font-size: .9rem;
  line-height: 1.68;
}

.about-stats--trust {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
  margin-top: 0;
}

.about-stats--trust .about-stat {
  min-height: 92px;
  padding: .85rem .9rem;
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.09);
  box-shadow: none;
}

.about-stats--trust .about-stat strong {
  color: #fff;
  font-size: 1.02rem;
  font-weight: 600;
}

.about-stats--trust .about-stat span {
  color: #9fb0bf;
  font-size: .72rem;
}

.about-brand-note {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: 1rem;
}

.about-brand-note span {
  padding: .34rem .55rem;
  color: #b8c9d7;
  font-size: .68rem;
  line-height: 1;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
}

@media (max-width: 991.98px) {
  .about-visual--trust {
    max-width: none;
  }

  .about-brand-panel {
    min-height: 0;
  }
}

@media (max-width: 575.98px) {
  .about-brand-top {
    grid-template-columns: 1fr;
    gap: .65rem;
  }

  .about-brand-top img {
    height: 42px;
  }

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

  .about-brand-panel {
    padding: 1.25rem;
    border-radius: 18px;
  }
}

/* v1.0.12 — natural internal links inside existing SEO copy */
.seo-inline-link {
  display: inline;
  margin-left: .2rem;
  color: #0d6efd;
  font-weight: 600;
  text-decoration: none;
  text-underline-offset: 3px;
}

.seo-inline-link:hover,
.seo-inline-link:focus-visible {
  text-decoration: underline;
}

/* =========================================================
   LIDER-T v1.0.15.1 — LCP & Mobile Performance Hotfix
   Mobile keeps the same dark visual language without downloading
   the decorative pole.webp hero photo during the critical render.
   Desktop keeps the existing photo and appearance.
   ========================================================= */

.hero {
  contain: paint;
}

@media (max-width: 767.98px) {
  .hero {
    /* The photograph is decorative. Removing it from the mobile
       critical path lets the H1 become the LCP candidate much sooner. */
    background-color: #111820;
    background-image:
      radial-gradient(circle at 18% 8%, rgba(31,122,255,.22), transparent 30%),
      radial-gradient(circle at 88% 72%, rgba(74,163,255,.10), transparent 28%),
      linear-gradient(115deg, #0d1824 0%, #112235 52%, #0c1722 100%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  /* Expensive blurred decorative layers are unnecessary on the
     small viewport and can increase paint/compositing time. */
  .hero-glow,
  .hero::after {
    display: none;
  }

  .hero-grid {
    opacity: .14;
  }
}

@media (prefers-reduced-data: reduce) {
  .hero {
    background-color: #111820;
    background-image:
      radial-gradient(circle at 18% 8%, rgba(31,122,255,.18), transparent 30%),
      linear-gradient(115deg, #0d1824 0%, #112235 52%, #0c1722 100%);
  }
}

/* v1.0.15.2 — responsive AVIF picture wrappers */
.service-feature-media picture,
.fleet-media picture,
.case-photo-media picture {
  display: block;
  width: 100%;
  height: 100%;
}
