/* ── ALOLDAL HEADER ─────────────────────────────
   Világos, „windowsos" stílus – lásd css/base.css palettáját. */

.sub-header {
  position: relative;
  z-index: 2;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  text-decoration: none;
  padding: 10px 18px;
  font-family: var(--font-title);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.back-btn:hover {
  background: var(--accent-soft);
  border-color: var(--accent-border);
  color: var(--accent);
}

.sub-header__title {
  font-family: var(--font-title);
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
  color: var(--text);
}

.sub-header__title em {
  color: var(--accent);
  font-style: normal;
}

/* ── ALOLDAL TÖRZS ────────────────────────────── */

.sub-body {
  position: relative;
  z-index: 2;
  padding: 32px 24px 40px;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  flex: 1;
}

.sub-lead {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 30px;
  padding-left: 18px;
  border-left: 3px solid var(--accent);
}

/* ── FEATURE LISTA ────────────────────────────── */

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.feature-item {
  background: linear-gradient(160deg, var(--accent-soft), var(--surface) 65%);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: transform 0.12s, box-shadow 0.15s;
}

.feature-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.feature-item::before {
  content: '✓';
  color: var(--accent);
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}

/* ── CTA DOBOZ ────────────────────────────────── */

.cta-box {
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.cta-box p {
  font-size: 15px;
  color: var(--text-soft);
  margin-bottom: 16px;
  line-height: 1.6;
}

.cta-tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-sm);
  padding: 14px 32px;
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2px;
  transition: background 0.15s, transform 0.12s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(0,103,192,0.25);
}

.cta-tel:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,103,192,0.32);
}

.cta-tel:active {
  transform: scale(0.97);
}

/* ── ELÉRHETŐSÉG KÁRTYÁK ──────────────────────── */

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.contact-card {
  background: linear-gradient(160deg, var(--accent-soft), var(--surface) 65%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.15s;
}

.contact-card:hover {
  box-shadow: var(--shadow);
}

.contact-card__ico {
  font-size: 28px;
  width: 52px;
  height: 52px;
  background: var(--accent-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.contact-card__label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-card__val {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.contact-card__val a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.15s;
}

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

/* ── TECHNOLÓGIA RÉSZLETES LISTA ──────────────── */

.tech-detail {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.tech-detail__item {
  background: linear-gradient(160deg, var(--accent-soft), var(--surface) 65%);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
}

.tech-detail__name {
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 5px;
}

.tech-detail__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ── RESZPONZÍV ────────────────────────────────── */
@media (max-width: 600px) {
  .sub-body { padding: 22px 16px 32px; }
  .sub-lead { font-size: 15px; }
  .feature-item { font-size: 14px; padding: 12px 16px; }
  .cta-tel { font-size: 20px; padding: 12px 24px; }
  .sub-header { padding: 14px 16px; gap: 10px; }
  .back-btn { padding: 8px 14px; font-size: 13px; }
}
