.hero {
  height: 85vh;
  background: linear-gradient(var(--hero-overlay), var(--hero-overlay)), url("../images/onas.webp");
  background-size: cover;
  background-position: center 70%;
  display: flex;
  align-items: center;
  text-align: center;
  padding-top: 80px;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero h1 {
  color: var(--hero-text);
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.1;
}

.highlight {
  color: var(--primary);
}

.hero p {
  font-size: 1.15rem;
  color: var(--hero-muted);
  margin-bottom: 36px;
}

.btn-primary,
.btn-secondary {
  padding: 15px 35px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  display: inline-block;
  margin: 8px;
  transition: 0.3s;
}

.btn-primary {
  background: var(--primary);
  color: var(--hero-text);
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-secondary {
  border: 2px solid var(--hero-text);
  color: var(--hero-text);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.hero-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
}

/* ── Stats ── */
.stats-section {
  padding: 0;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--border-xfaint);
  gap: 1px;
}

.stat-item {
  background: var(--bg-soft);
  padding: 48px 32px;
  text-align: center;
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: .82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ── Section header ── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-header p {
  color: var(--text-ghost);
  font-size: .9rem;
}

/* ── About ── */
.about-section {
  padding: 100px 0;
  background: var(--bg);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

.about-text p {
  font-size: .97rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

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

.about-text strong {
  color: var(--text);
}

.about-aside {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--border-xfaint);
  border: 1px solid var(--border-xfaint);
  border-radius: 4px;
  overflow: hidden;
}

.aside-block {
  background: var(--bg-soft);
  padding: 36px 32px;
}

.aside-tag {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: .7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 2px;
  padding: 3px 10px;
  margin-bottom: 16px;
}

.aside-block p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── Values ── */
.values-section {
  padding: 100px 0;
  background: var(--bg-soft);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-xfaint);
  border: 1px solid var(--border-xfaint);
  border-radius: 4px;
  overflow: hidden;
}

.value-card {
  background: var(--bg);
  padding: 48px 40px;
}

.value-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
}

.value-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--primary);
}

.value-tag {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: .7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 2px;
  padding: 3px 10px;
  margin-bottom: 18px;
}

.value-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  letter-spacing: .5px;
  margin-bottom: 16px;
  color: var(--text);
}

.value-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── Offer ── */
.offer-section {
  padding: 100px 0;
  background: var(--bg);
}

.offer-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

.offer-text p {
  font-size: .97rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

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

.offer-text strong {
  color: var(--text);
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.feature-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ── Specs grid ── */
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border-xfaint);
  border: 1px solid var(--border-xfaint);
  border-radius: 4px;
  overflow: hidden;
}

.spec-table {
  background: var(--bg-soft);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
}

.spec-table h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.spec-table table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table td {
  padding: 9px 8px;
  border-bottom: 1px solid var(--border-xfaint);
  font-size: .82rem;
  vertical-align: top;
  line-height: 1.5;
}

.spec-table tr:last-child td {
  border-bottom: none;
}

.spec-table td:first-child {
  width: 45%;
  color: var(--text-muted);
  padding-right: 16px;
}

.spec-table td:last-child {
  color: var(--text);
}

/* ── Contact highlight ── */
.contact-highlight {
  background: var(--highlight-bg);
  border: 1px solid var(--primary);
  border-radius: 4px;
  padding: 28px 32px;
  max-width: 860px;
  margin: 0 auto 60px;
}

.contact-highlight p {
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 12px;
}

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

.contact-highlight strong {
  color: var(--text-white);
}

.contact-highlight a {
  color: var(--link);
  text-decoration: none;
  font-weight: 600;
}

.contact-highlight a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

.contact-info {
  font-size: 1rem !important;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .offer-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .specs-grid {
    grid-template-columns: 1fr;
    background: none;
    border: none;
    gap: 12px;
  }

  .spec-table {
    border: 1px solid var(--border);
    border-radius: 4px;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

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

  .about-section {
    padding: 60px 0;
  }

  .values-section {
    padding: 60px 0;
  }

  .offer-section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .value-card {
    padding: 32px 24px;
  }

  .stat-item {
    padding: 32px 16px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .contact-highlight {
    padding: 24px 20px;
  }
}

@media (max-width: 400px) {
  .hero h1 {
    font-size: 1.9rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 22px;
    font-size: .9rem;
  }

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