a { color: inherit; }

.page-section { padding: 100px 0; }

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}
.split-grid .text-block { max-width: 620px; }
.split-grid .text-block h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 24px; }
.split-grid .text-block p { color: var(--white-soft); font-size: 17px; line-height: 1.9; margin-bottom: 24px; }

.feature-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-border);
}

.feature-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow-soft);
  border: 1px solid rgba(253, 184, 30, 0.35);
  color: var(--yellow);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1;
}

.feature-item div {
  flex: 1;
  min-width: 0;
  color: var(--white-soft);
  font-size: 16px;
  line-height: 1.55;
}

.feature-item strong {
  color: var(--white);
  font-weight: 600;
}

.split-grid .text-block .hero-btns {
  justify-content: flex-start !important;
}

.contact-item strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 12px;
}

.contact-item p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 6px;
}

.contact-item p:last-child {
  margin-bottom: 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.cards-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.info-card {
  background: var(--card-bg);
  border: 1px solid var(--gray-border);
  padding: 32px 28px;
  text-decoration: none;
  display: block;
  transition: all .3s;
}
.info-card:hover { border-color: var(--yellow); transform: translateY(-4px); }
.info-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.info-card p { font-size: 14px; color: var(--gray); line-height: 1.8; }

.contact-panel {
  background: var(--card-bg);
  border: 1px solid var(--gray-border);
  padding: 52px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.hero--subpage { min-height: 88vh; height: auto; }

.hero--subpage .hero-bg::before {
  background:
    linear-gradient(135deg, rgba(10,10,10,.72) 0%, rgba(253,184,30,.08) 45%, rgba(0,0,0,.82) 100%),
    linear-gradient(180deg, rgba(0,0,0,.55) 10%, rgba(0,0,0,.68) 45%, rgba(0,0,0,.82) 100%);
}

@media (max-width: 1100px) {
  .split-grid, .contact-panel { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .cards-grid { grid-template-columns: 1fr; }
  .contact-panel { padding: 32px 24px; }
  .hero--subpage { min-height: 72vh; }
}
