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

.page-home .breadcrumbs {
  position: relative;
  z-index: 2;
  padding-top: 18px;
  padding-bottom: 0;
  font-size: 13px;
  color: var(--c-ink-dim);
}

.page-home .breadcrumbs a {
  color: var(--c-ink-dim);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s var(--ease-out), border-color .2s var(--ease-out);
}

.page-home .breadcrumbs a:hover {
  color: var(--c-green);
  border-color: var(--c-green);
}

.page-home .breadcrumbs__current {
  color: var(--c-ink);
}

.page-home .home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--c-bg);
  color: var(--c-ink);
  padding-top: 28px;
  padding-bottom: 40px;
}

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

.page-home .home-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .22;
}

.page-home .home-hero__cut {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, var(--c-wine) 0%, var(--c-indigo) 85%);
  clip-path: polygon(0 0, 72% 0, 42% 100%, 0 100%);
  opacity: .55;
}

.page-home .home-hero__grid {
  display: grid;
  gap: 32px;
  padding-top: 32px;
  padding-bottom: 32px;
  align-items: center;
}

.page-home .home-hero__copy {
  max-width: 640px;
}

.page-home .home-hero__copy .section-eyebrow {
  margin-bottom: 0;
}

.page-home .home-hero__copy h1 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: .02em;
  margin: 14px 0 0;
  color: var(--c-ink);
  text-transform: uppercase;
}

.page-home .home-hero__lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--c-ink-dim);
  margin: 20px 0 28px;
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .home-hero__data {
  display: grid;
  gap: 16px;
}

.page-home .hero-card {
  position: relative;
  padding: 20px 24px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  background: var(--c-panel);
  box-shadow: var(--shadow-panel);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform .3s var(--ease-out), border-color .3s var(--ease-out);
}

.page-home .hero-card:hover {
  transform: translateY(-4px);
  border-color: rgba(57, 255, 20, .25);
}

.page-home .hero-card--primary {
  border-left: 3px solid var(--c-green);
}

.page-home .hero-card--accent {
  border-left: 3px solid var(--c-orange);
  margin-left: 8px;
  animation: pageHomeFloat 5s ease-in-out infinite;
}

.page-home .hero-card--outline {
  border-left: 3px solid var(--c-indigo);
  margin-left: 16px;
}

.page-home .hero-card__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-ink-dim);
  margin-bottom: 8px;
}

.page-home .hero-card__value {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .02em;
  color: var(--c-ink);
}

.page-home .hero-card--primary .hero-card__value {
  color: var(--c-green);
}

.page-home .hero-card--accent .hero-card__value {
  color: var(--c-orange);
}

.page-home .hero-card__sub {
  display: block;
  font-size: 13px;
  color: var(--c-ink-dim);
  margin-top: 6px;
}

@keyframes pageHomeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.page-home .home-services {
  padding: 64px 0 72px;
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-dark) 30%, var(--c-bg) 100%);
}

.page-home .section-header {
  max-width: 720px;
  margin-bottom: 32px;
}

.page-home .section-header h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--c-ink);
  margin: 12px 0 12px;
}

.page-home .section-header p:not(.section-eyebrow) {
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-ink-dim);
  margin: 0;
}

.page-home .service-block {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--c-line);
}

.page-home .service-block__media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--c-dark);
}

.page-home .service-block__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius-md);
  pointer-events: none;
}

.page-home .service-block__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}

.page-home .service-block__media:hover img {
  transform: scale(1.03);
}

.page-home .service-block--square .service-block__media img {
  aspect-ratio: 1 / 1;
}

.page-home .service-block__copy {
  max-width: 540px;
}

.page-home .service-block__index {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--c-green);
  margin-bottom: 8px;
}

.page-home .service-block__copy h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 12px;
}

.page-home .service-block__copy p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-ink-dim);
  margin-bottom: 16px;
}

.page-home .service-block__list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.page-home .service-block__list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-ink);
}

.page-home .service-block__list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 5px;
  height: 5px;
  background: var(--c-green);
  transform: rotate(45deg);
}

.page-home .home-trouble {
  position: relative;
  padding: 64px 0 72px;
  background: var(--c-dark);
}

.page-home .home-trouble::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-green), var(--c-orange), transparent);
}

.page-home .trouble-grid {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}

.page-home .trouble-card {
  position: relative;
  display: block;
  padding: 24px 26px 28px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  background: var(--c-panel);
  color: var(--c-ink);
  text-decoration: none;
  overflow: hidden;
  transition: transform .3s var(--ease-out), border-color .3s var(--ease-out), box-shadow .3s var(--ease-out);
}

.page-home .trouble-card::after {
  content: "→";
  position: absolute;
  right: 18px;
  bottom: 14px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-bg);
  background: var(--c-green);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
}

.page-home .trouble-card:hover,
.page-home .trouble-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(57, 255, 20, .4);
  box-shadow: var(--shadow-md);
}

.page-home .trouble-card:hover::after,
.page-home .trouble-card:focus-within::after {
  opacity: 1;
  transform: translateX(0);
}

.page-home .trouble-card--green {
  border-left: 3px solid var(--c-green);
}

.page-home .trouble-card--orange {
  border-left: 3px solid var(--c-orange);
}

.page-home .trouble-card--wine {
  border-left: 3px solid var(--c-wine);
}

.page-home .trouble-card--indigo {
  border-left: 3px solid var(--c-indigo);
}

.page-home .trouble-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  color: var(--c-green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  font-family: var(--font-display);
  margin-bottom: 14px;
}

.page-home .trouble-card h3 {
  font-size: 17px;
  line-height: 1.4;
  margin-bottom: 8px;
  color: var(--c-ink);
  font-weight: 700;
}

.page-home .trouble-card p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--c-ink-dim);
  margin: 0;
}

.page-home .trouble-more {
  margin-top: 32px;
  text-align: right;
}

.page-home .trouble-more a {
  color: var(--c-green);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border-bottom: 1px solid rgba(57, 255, 20, .3);
  padding-bottom: 2px;
  transition: border-color .2s var(--ease-out);
}

.page-home .trouble-more a:hover {
  border-bottom-color: var(--c-green);
}

.page-home .home-news {
  padding: 64px 0 72px;
  background: var(--c-bg);
}

.page-home .home-news__inner {
  display: grid;
  gap: 36px;
}

.page-home .news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px;
}

.page-home .news-item {
  position: relative;
  padding-left: 24px;
  padding-bottom: 20px;
  border-left: 1px solid var(--c-line);
  margin-left: 4px;
}

.page-home .news-item:last-child {
  padding-bottom: 0;
}

.page-home .news-item::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 12px rgba(57, 255, 20, .5);
}

.page-home .news-item__no {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-green);
  margin-right: 8px;
}

.page-home .news-item__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-orange);
}

.page-home .news-item h3 {
  font-size: 17px;
  line-height: 1.45;
  margin-bottom: 8px;
  font-weight: 700;
}

.page-home .news-item h3 a {
  color: var(--c-ink);
  text-decoration: none;
  transition: color .2s var(--ease-out);
}

.page-home .news-item h3 a:hover {
  color: var(--c-green);
}

.page-home .news-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-ink-dim);
  margin: 0;
}

.page-home .home-trust {
  position: relative;
  padding: 72px 0;
  background: linear-gradient(125deg, var(--c-wine) 0%, var(--c-indigo) 100%);
  overflow: hidden;
}

.page-home .home-trust::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(57, 255, 20, .1);
}

.page-home .home-trust::after {
  content: "";
  position: absolute;
  left: -60px;
  bottom: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 107, 53, .1);
}

.page-home .home-trust__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
  align-items: center;
}

.page-home .home-trust__media {
  max-width: 320px;
  margin: 0 auto;
}

.page-home .home-trust__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
}

.page-home .home-trust__copy h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin: 12px 0 16px;
}

.page-home .home-trust__copy > p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 24px;
}

.page-home .home-trust__copy .section-eyebrow {
  color: var(--c-green);
}

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

.page-home .trust-facts li {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .05);
}

.page-home .trust-facts strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-green);
  margin-bottom: 4px;
}

.page-home .trust-facts span {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .85);
}

.page-home .home-trust__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .home-support {
  padding: 64px 0 72px;
  background: var(--c-bg);
}

.page-home .home-support__inner {
  display: grid;
  gap: 36px;
}

.page-home .home-support__copy h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--c-ink);
  margin: 12px 0 14px;
}

.page-home .home-support__copy > p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-ink-dim);
  margin-bottom: 24px;
}

.page-home .support-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--c-line);
}

.page-home .support-contact__item {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-line);
}

.page-home .support-contact__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-ink-dim);
}

.page-home .support-contact__value {
  font-size: 16px;
  line-height: 1.5;
  color: var(--c-ink);
  text-decoration: none;
  word-break: break-all;
}

.page-home .support-contact__value:hover {
  color: var(--c-green);
}

@media (min-width: 720px) {
  .page-home .trouble-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

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

@media (min-width: 960px) {
  .page-home .home-hero {
    padding-top: 24px;
    padding-bottom: 56px;
  }

  .page-home .home-hero__bg {
    inset: 0 0 0 auto;
    width: 56%;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  }

  .page-home .home-hero__bg img {
    opacity: .5;
  }

  .page-home .home-hero__cut {
    background: linear-gradient(135deg, var(--c-wine) 0%, transparent 68%);
    clip-path: polygon(0 0, 58% 0, 34% 100%, 0 100%);
    opacity: .9;
  }

  .page-home .home-hero__grid {
    grid-template-columns: 1.15fr .85fr;
    gap: 48px;
    min-height: 620px;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .page-home .home-hero__copy h1 {
    font-size: 58px;
  }

  .page-home .home-hero__lead {
    font-size: 17px;
  }

  .page-home .home-hero__data {
    justify-self: end;
    width: 100%;
    max-width: 420px;
  }

  .page-home .hero-card--accent {
    margin-left: 24px;
  }

  .page-home .hero-card--outline {
    margin-left: 48px;
  }

  .page-home .home-services {
    padding: 88px 0 96px;
  }

  .page-home .home-services .section-header {
    margin-bottom: 44px;
  }

  .page-home .section-header h2 {
    font-size: 38px;
  }

  .page-home .service-block {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    padding: 48px 0;
  }

  .page-home .service-block__copy h3 {
    font-size: 26px;
  }

  .page-home .home-trouble {
    padding: 88px 0 96px;
  }

  .page-home .home-news {
    padding: 88px 0 96px;
  }

  .page-home .home-news__inner {
    grid-template-columns: 320px 1fr;
    gap: 64px;
  }

  .page-home .news-item h3 {
    font-size: 18px;
  }

  .page-home .home-trust {
    padding: 96px 0;
  }

  .page-home .home-trust__inner {
    grid-template-columns: .8fr 1.2fr;
    gap: 72px;
  }

  .page-home .home-trust__copy h2 {
    font-size: 38px;
  }

  .page-home .home-support {
    padding: 88px 0 96px;
  }

  .page-home .home-support__inner {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .hero-card--accent {
    animation: none;
  }

  .page-home .service-block__media img,
  .page-home .trouble-card,
  .page-home .hero-card {
    transition: none;
  }
}
