.page-home {
  --home-hero-slant: 8deg;
  --home-accent-glow: rgba(0, 255, 136, 0.16);
  --home-zest-glow: rgba(255, 107, 53, 0.14);
  overflow: hidden;
  background: var(--c-bg);
  color: var(--c-text);
}

.page-home .home-hero {
  position: relative;
  display: flex;
  min-height: 640px;
  background: linear-gradient(135deg, #0D1B2A 0%, #10263d 58%, #142e4f 100%);
  isolation: isolate;
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 78% 30%, var(--home-accent-glow), transparent 34%),
    radial-gradient(circle at 90% 76%, var(--home-zest-glow), transparent 38%);
  pointer-events: none;
}

.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page-home .home-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.42;
}

.page-home .home-hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 58, 95, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 58, 95, 0.5) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.8), transparent 78%);
}

.page-home .home-hero__slant {
  position: absolute;
  top: 0;
  right: -12%;
  width: 34%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,255,136,0.06), rgba(0,255,136,0.015) 58%, transparent);
  transform: skewX(-10deg);
  border-left: 1px solid rgba(0,255,136,0.3);
  z-index: 0;
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 60px;
  max-width: var(--w-content);
  margin-inline: auto;
}

.page-home .home-hero__breadcrumb {
  display: inline-flex;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--c-mute);
}

.page-home .home-hero__title {
  max-width: 780px;
  font-size: clamp(40px, 7vw, 78px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
  color: var(--c-text);
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
}

.page-home .home-hero__title-accent {
  display: block;
  color: var(--c-neon);
  font-size: clamp(26px, 4.2vw, 52px);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.page-home .home-hero__lead {
  max-width: 600px;
  font-size: 17px;
  line-height: 1.85;
  color: var(--c-text);
  opacity: 0.88;
  margin-bottom: 34px;
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.page-home .home-hero__cta {
  min-width: 132px;
}

.page-home .home-hero__secondary {
  min-width: 182px;
}

.page-home .home-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .home-hero__right {
  position: absolute;
  right: 40px;
  bottom: 32px;
  text-align: right;
  z-index: 2;
}

.page-home .home-hero__tag {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--c-neon);
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: var(--r-pill);
  padding: 6px 16px;
  display: inline-block;
  margin-bottom: 8px;
}

.page-home .home-hero__tip {
  font-size: 13px;
  color: var(--c-mute);
  letter-spacing: 0.06em;
}

.page-home .home-direct {
  position: relative;
  padding: 80px 0;
  background: var(--c-bg);
}

.page-home .home-direct::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,27,42,0.85), rgba(27,38,59,0.55));
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  z-index: 0;
}

.page-home .home-direct .content-wrap {
  position: relative;
  z-index: 1;
}

.page-home .home-direct__heading {
  font-size: clamp(26px, 3.4vw, 34px);
  line-height: 1.2;
  font-weight: 900;
}

.page-home .home-direct__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin: 28px 0 40px;
}

.page-home .home-direct__copy {
  font-size: 16.5px;
  line-height: 1.9;
  margin: 0 0 16px;
  color: var(--c-text);
}

.page-home .home-direct__subcopy {
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-mute);
  margin: 0;
}

.page-home .home-direct__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .home-direct__points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-text);
  background: rgba(27, 38, 59, 0.62);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 18px;
}

.page-home .home-direct__points span {
  color: var(--c-zest);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.page-home .home-direct__visual {
  margin: 0;
}

.page-home .home-catalog {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(180deg, var(--c-surface) 0%, var(--c-bg) 100%);
}

.page-home .home-catalog__shape {
  position: absolute;
  right: -80px;
  top: 6%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at center, rgba(0,255,136,0.14), transparent 62%);
  border-radius: 50%;
  pointer-events: none;
}

.page-home .home-catalog__heading {
  font-size: clamp(26px, 3.4vw, 34px);
  line-height: 1.2;
  font-weight: 900;
}

.page-home .home-catalog__intro {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--c-mute);
  max-width: 720px;
  margin: 8px 0 30px;
}

.page-home .home-catalog__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-home .home-catalog__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.page-home .catalog-card {
  background: rgba(13, 27, 42, 0.72);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  position: relative;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease);
}

.page-home .catalog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 136, 0.55);
}

.page-home .catalog-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 800;
}

.page-home .catalog-card p {
  margin: 0 0 16px;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--c-mute);
}

.page-home .catalog-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-neon);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.page-home .catalog-card__arrow {
  transition: transform 0.35s var(--ease);
}

.page-home .catalog-card a:hover .catalog-card__arrow {
  transform: translateX(6px);
}

.page-home .catalog-card--accent {
  border-color: rgba(255, 107, 53, 0.4);
}

.page-home .catalog-card--accent a {
  color: var(--c-zest);
}

.page-home .home-catalog__visual {
  margin: 0;
}

.page-home .home-updates {
  padding: 84px 0;
  background: linear-gradient(180deg, var(--c-bg) 0%, #101e33 100%);
  position: relative;
}

.page-home .home-updates::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-neon), transparent);
  opacity: 0.5;
}

.page-home .home-updates__heading {
  font-size: clamp(26px, 3.4vw, 34px);
  line-height: 1.2;
  font-weight: 900;
}

.page-home .home-updates__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  margin-top: 30px;
}

.page-home .home-updates__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-home .home-updates__info > p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--c-text);
  margin: 0;
}

.page-home .home-updates__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .home-updates__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--c-text);
  background: rgba(27, 38, 59, 0.5);
  border-radius: var(--r-pill);
  padding: 12px 16px;
}

.page-home .home-updates__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-neon);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
}

.page-home .home-updates__cta {
  align-self: flex-start;
}

.page-home .home-updates__visual {
  margin: 0;
}

.page-home .home-updates__history {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.page-home .history-card {
  background: rgba(27, 38, 59, 0.7);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 20px 14px;
  text-align: center;
}

.page-home .history-card__num {
  display: block;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  color: var(--c-neon);
  margin-bottom: 4px;
}

.page-home .history-card p {
  margin: 0;
  font-size: 13px;
  color: var(--c-mute);
}

.page-home .home-compare {
  padding: 84px 0;
  position: relative;
  overflow: hidden;
}

.page-home .home-compare__band {
  position: absolute;
  top: -34px;
  left: -20%;
  width: 140%;
  height: 130%;
  background: linear-gradient(112deg, transparent 30%, rgba(255, 107, 53, 0.06) 30%, rgba(255, 107, 53, 0.06) 33%, transparent 33%, transparent 76%, rgba(0, 255, 136, 0.05) 76%, transparent 80%);
  pointer-events: none;
  transform: rotate(-2deg);
}

.page-home .home-compare .content-wrap {
  position: relative;
  z-index: 1;
}

.page-home .home-compare__heading {
  font-size: clamp(26px, 3.4vw, 34px);
  line-height: 1.2;
  font-weight: 900;
}

.page-home .home-compare__intro {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--c-mute);
  max-width: 760px;
  margin: 8px 0 26px;
}

.page-home .home-compare__table-wrap {
  overflow-x: auto;
  margin-bottom: 20px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  background: rgba(13, 27, 42, 0.7);
}

.page-home .home-compare__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

.page-home .home-compare__table th,
.page-home .home-compare__table td {
  padding: 16px 18px;
  text-align: left;
  font-size: 14px;
  line-height: 1.6;
}

.page-home .home-compare__table thead th {
  background: var(--c-surface);
  color: var(--c-text);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--c-neon);
}

.page-home .home-compare__table tbody th {
  color: var(--c-text);
  font-weight: 700;
  background: rgba(27, 38, 59, 0.6);
  white-space: nowrap;
}

.page-home .home-compare__table tbody td {
  color: var(--c-mute);
}

.page-home .home-compare__table tbody td:last-child {
  color: var(--c-neon);
  font-weight: 600;
}

.page-home .home-compare__table tbody tr:nth-child(even) td {
  background: rgba(27, 38, 59, 0.3);
}

.page-home .home-compare__link {
  margin-top: 4px;
}

.page-home .home-locator {
  position: relative;
  padding: 88px 0;
  background: linear-gradient(120deg, var(--c-surface) 0%, var(--c-bg) 70%);
  border-top: 1px solid rgba(0, 255, 136, 0.24);
}

.page-home .home-locator::before {
  content: "";
  position: absolute;
  right: 6%;
  top: 50%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.14), transparent 64%);
  transform: translateY(-50%);
  pointer-events: none;
}

.page-home .home-locator__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.page-home .home-locator__heading {
  font-size: clamp(26px, 3.4vw, 34px);
  line-height: 1.2;
  font-weight: 900;
  margin-top: 6px;
}

.page-home .home-locator__copy > p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--c-mute);
  margin-bottom: 20px;
}

.page-home .home-locator__steps {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  counter-reset: locator-steps;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .home-locator__steps li {
  counter-increment: locator-steps;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-text);
  background: rgba(13, 27, 42, 0.55);
  border-radius: var(--r-md);
  padding: 14px 16px;
}

.page-home .home-locator__steps li::before {
  content: counter(locator-steps, decimal-leading-zero);
  font-weight: 900;
  font-size: 14px;
  color: var(--c-neon);
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: var(--r-pill);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.page-home .home-locator__action {
  min-width: 200px;
}

.page-home .home-locator__note {
  border-left: 3px solid var(--c-zest);
  background: rgba(255, 107, 53, 0.08);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 20px 22px;
  align-self: center;
}

.page-home .home-locator__note p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--c-text);
}

@media (min-width: 768px) {
  .page-home .home-direct__grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }

  .page-home .home-catalog__layout {
    grid-template-columns: 1fr 0.9fr;
    align-items: start;
  }

  .page-home .home-catalog__list {
    grid-template-columns: 1fr;
  }

  .page-home .home-updates__grid {
    grid-template-columns: 1fr 0.85fr;
    align-items: start;
  }

  .page-home .home-updates__history {
    grid-column: 1 / -1;
  }

  .page-home .home-locator__inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero {
    min-height: 640px;
  }

  .page-home .home-direct {
    padding: 110px 0;
  }

  .page-home .home-catalog {
    padding: 110px 0;
  }

  .page-home .home-catalog__layout {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .page-home .home-catalog__list {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .catalog-card--accent {
    grid-column: 1 / -1;
  }

  .page-home .home-updates__grid {
    grid-template-columns: 1fr 0.8fr 0.7fr;
    align-items: start;
  }

  .page-home .home-updates__history {
    grid-column: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .page-home .home-compare {
    padding: 110px 0;
  }

  .page-home .home-locator {
    padding: 112px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-hero__title {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  }

  .page-home .home-catalog__shape,
  .page-home .home-compare__band {
    display: none;
  }

  .page-home .catalog-card {
    transition: none;
  }

  .page-home .catalog-card__arrow {
    transition: none;
  }
}
