.page-home {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.page-home .home-hero {
  position: relative;
  padding: calc(var(--header-height) + 24px) 0 48px;
  background: var(--bg-primary);
  overflow: hidden;
}

.page-home .home-hero__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.page-home .home-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

.page-home .home-hero__content {
  flex: 0 0 auto;
  max-width: 640px;
  position: relative;
  z-index: 2;
}

.page-home .home-hero__context {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--rock-gray);
  margin: 0 0 16px;
  font-family: var(--font-heading);
  text-transform: uppercase;
}

.page-home .home-hero__context a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 215, 0, 0.4);
  transition: border-color 0.2s ease;
}

.page-home .home-hero__context a:hover {
  border-bottom-color: var(--accent);
}

.page-home .home-hero__divider {
  margin: 0 10px;
  color: var(--rock-gray);
}

.page-home .home-hero__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px;
  color: var(--text-primary);
  max-width: 640px;
}

.page-home .home-hero__lead {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(245, 240, 230, 0.85);
  margin: 0 0 28px;
  max-width: 580px;
}

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

.page-home .home-hero__cta {
  box-shadow: 0 0 24px rgba(57, 255, 20, 0.35);
}

.page-home .home-hero__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 0.875rem;
  text-decoration: none;
  margin-top: 8px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.page-home .home-hero__more:hover {
  border-bottom-color: var(--accent);
}

.page-home .home-hero__more-arrow {
  transition: transform 0.2s ease;
}

.page-home .home-hero__more:hover .home-hero__more-arrow {
  transform: translateY(3px);
}

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

.page-home .home-hero__stat {
  background: rgba(16, 42, 86, 0.7);
  border: 1px solid rgba(255, 215, 0, 0.22);
  border-radius: 4px;
  padding: 14px 18px;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .home-hero__stat-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
}

.page-home .home-hero__stat-label {
  font-size: 0.75rem;
  color: var(--rock-gray);
  letter-spacing: 0.04em;
}

.page-home .home-hero__visual {
  position: relative;
  width: 100%;
  max-width: 640px;
  min-height: 280px;
}

.page-home .home-hero__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.18);
  object-fit: cover;
}

.page-home .home-hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.page-home .home-hero__orb--gold {
  width: 320px;
  height: 320px;
  top: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, rgba(255, 215, 0, 0.1) 30%, transparent 70%);
  animation: home-orb-drift 16s ease-in-out infinite alternate;
}

.page-home .home-hero__orb--green {
  width: 200px;
  height: 200px;
  bottom: -60px;
  left: -50px;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.18) 0%, transparent 68%);
  animation: home-orb-drift-reverse 12s ease-in-out infinite alternate;
}

.page-home .home-hero__beam {
  position: absolute;
  height: 2px;
  width: 520px;
  max-width: 120%;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: rotate(-24deg);
  top: 38%;
  left: 10%;
  z-index: 0;
  opacity: 0.45;
  animation: home-beam-pulse 4s ease-in-out infinite;
}

.page-home .home-hero__beam--second {
  background: linear-gradient(90deg, transparent, var(--cta), transparent);
  width: 420px;
  top: 68%;
  transform: rotate(-38deg);
  opacity: 0.3;
  animation-delay: 1.2s;
}

@keyframes home-orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-20px, 24px) scale(1.06); }
}

@keyframes home-orb-drift-reverse {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(16px, -20px) scale(0.94); }
}

@keyframes home-beam-pulse {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.6; }
}

.page-home .home-section {
  padding: 56px 0;
  position: relative;
}

.page-home .home-section .site-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.page-home .home-tablet {
  background: var(--bg-primary);
}

.page-home .home-tablet__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-top: 32px;
}

.page-home .home-tablet__content {
  display: flex;
  flex-direction: column;
}

.page-home .home-tablet__desc {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(245, 240, 230, 0.85);
  margin: 0 0 24px;
}

.page-home .home-tablet__features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-home .home-tablet__feature {
  background: rgba(16, 42, 86, 0.5);
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
  padding: 16px 18px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.page-home .home-tablet__feature:hover {
  transform: translateX(6px);
  background: rgba(16, 42, 86, 0.8);
}

.page-home .home-tablet__feature-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--accent);
}

.page-home .home-tablet__feature-text {
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0;
  color: rgba(245, 240, 230, 0.75);
}

.page-home .home-tablet__note {
  font-size: 0.875rem;
  color: var(--rock-gray);
  margin: 0 0 24px;
  padding: 12px 16px;
  background: rgba(255, 215, 0, 0.06);
  border-radius: 4px;
  border: 1px solid rgba(255, 215, 0, 0.12);
}

.page-home .home-tablet__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .home-tablet__figure {
  margin: 0;
  width: 100%;
  max-width: 600px;
}

.page-home .home-tablet__figure img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.page-home .home-tablet__caption,
.page-home .home-legacy__caption,
.page-home .home-fix__caption {
  font-size: 0.8125rem;
  color: var(--rock-gray);
  margin-top: 12px;
  text-align: center;
  letter-spacing: 0.02em;
}

.page-home .home-legacy {
  background: linear-gradient(120deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.page-home .home-legacy::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, rgba(57, 255, 20, 0.04) 0%, transparent 40%);
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 62% 100%, 38% 70%, 0 45%, 0 0);
  pointer-events: none;
}

.page-home .home-legacy__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-top: 32px;
  align-items: center;
}

.page-home .home-legacy__media {
  display: flex;
  justify-content: center;
  order: 2;
}

.page-home .home-legacy__figure {
  margin: 0;
  width: 100%;
  max-width: 400px;
  position: relative;
}

.page-home .home-legacy__figure img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

.page-home .home-legacy__content {
  order: 1;
  display: flex;
  flex-direction: column;
}

.page-home .home-legacy__desc {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(245, 240, 230, 0.85);
  margin: 0 0 24px;
}

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

.page-home .home-legacy__stat {
  background: rgba(10, 31, 68, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.16);
  border-radius: 4px;
  padding: 14px 18px;
  min-width: 110px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .home-legacy__stat-num {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--neon-green);
  line-height: 1.1;
}

.page-home .home-legacy__stat-label {
  font-size: 0.75rem;
  color: var(--rock-gray);
}

.page-home .home-fix {
  background: var(--bg-primary);
}

.page-home .home-fix__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-top: 32px;
}

.page-home .home-fix__lead {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(245, 240, 230, 0.85);
  margin: 0 0 24px;
}

.page-home .home-fix__steps {
  list-style: none;
  counter-reset: fix-step;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .home-fix__step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(16, 42, 86, 0.45);
  border: 1px solid rgba(255, 215, 0, 0.14);
  border-radius: 6px;
  padding: 16px 18px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.page-home .home-fix__step:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 215, 0, 0.5);
}

.page-home .home-fix__step-num {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-primary);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .home-fix__step-body {
  flex: 1 1 auto;
}

.page-home .home-fix__step-title {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--text-primary);
}

.page-home .home-fix__step-text {
  font-size: 0.8125rem;
  line-height: 1.6;
  margin: 0;
  color: rgba(245, 240, 230, 0.7);
}

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

.page-home .home-fix__figure {
  margin: 0;
  width: 100%;
}

.page-home .home-fix__figure img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.16);
}

.page-home .home-fix__tip {
  background: rgba(57, 255, 20, 0.07);
  border: 1px solid rgba(57, 255, 20, 0.2);
  border-radius: 6px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .home-fix__tip-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neon-green);
}

.page-home .home-fix__tip-text {
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0;
  color: rgba(245, 240, 230, 0.85);
}

.page-home .home-news {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.page-home .home-news__lead {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(245, 240, 230, 0.8);
  margin: 0 0 28px;
  max-width: 640px;
}

.page-home .home-news__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 32px;
}

.page-home .home-news__item {
  background: rgba(10, 31, 68, 0.7);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-home .home-news__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 215, 0, 0.3);
}

.page-home .home-news__tag {
  margin-bottom: 10px;
}

.page-home .home-news__title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text-primary);
  line-height: 1.4;
}

.page-home .home-news__desc {
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0;
  color: rgba(245, 240, 230, 0.7);
}

.page-home .home-news__more {
  display: inline-block;
}

.page-home .home-support {
  background: var(--bg-primary);
  padding-bottom: 72px;
}

.page-home .home-support__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

.page-home .home-support__card {
  background: rgba(16, 42, 86, 0.55);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.page-home .home-support__heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--gold);
  position: relative;
  padding-bottom: 12px;
}

.page-home .home-support__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

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

.page-home .home-support__item {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(245, 240, 230, 0.8);
  padding-left: 16px;
  position: relative;
}

.page-home .home-support__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.7;
}

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

.page-home .home-support__contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-home .home-support__label {
  font-size: 0.75rem;
  color: var(--rock-gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

.page-home .home-support__value {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-primary);
  word-break: break-word;
}

.page-home .home-support__card .btn {
  margin-top: auto;
  align-self: flex-start;
}

@media (min-width: 768px) {
  .page-home .home-hero {
    padding: calc(var(--header-height) + 32px) 0 72px;
  }

  .page-home .home-hero__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
  }

  .page-home .home-hero__content {
    flex: 0 1 55%;
    max-width: 560px;
  }

  .page-home .home-hero__visual {
    flex: 0 1 42%;
    max-width: 480px;
    min-height: 360px;
  }

  .page-home .home-hero__title {
    font-size: 2.4rem;
  }

  .page-home .home-tablet__grid,
  .page-home .home-legacy__grid,
  .page-home .home-fix__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .page-home .home-legacy__media {
    order: 1;
  }

  .page-home .home-legacy__content {
    order: 2;
  }

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

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

  .page-home .home-support__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .page-home .home-hero__stat {
    min-width: 130px;
  }
}

@media (min-width: 1024px) {
  .page-home .home-section {
    padding: 80px 0;
  }

  .page-home .home-hero__title {
    font-size: 2.75rem;
    line-height: 1.15;
  }

  .page-home .home-hero__lead {
    font-size: 1rem;
  }

  .page-home .home-hero__visual {
    max-width: 520px;
    min-height: 420px;
  }

  .page-home .home-hero__orb--gold {
    width: 420px;
    height: 420px;
    top: -120px;
    right: -100px;
  }

  .page-home .home-tablet__grid,
  .page-home .home-legacy__grid,
  .page-home .home-fix__grid {
    gap: 64px;
  }

  .page-home .home-tablet__desc,
  .page-home .home-legacy__desc,
  .page-home .home-fix__lead {
    font-size: 1rem;
  }

  .page-home .home-news__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .home-fix__media {
    flex-direction: row;
    align-items: center;
  }

  .page-home .home-fix__tip {
    flex: 0 0 38%;
  }

  .page-home .home-support__card {
    padding: 36px 30px;
  }
}
