/* ── FŐOLDAL: MIT FEJLESZTEK / MEGRENDELÉS MENETE / REFERENCIA ──
   VILÁGOS („windowsos") stílus – ez a fájl KIZÁRÓLAG az index.html-en
   fut, ezért közvetlenül a világos-téma tokeneket használja
   (css/base.css html.theme-light blokkja), dark-fallback nélkül. */

/* Közös szekció-keret + fejléc */
.home-section {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  padding: 8px 20px 44px;
}

.home-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 30px;
}

.home-head__eyebrow {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.home-head__title {
  font-family: var(--font-title);
  font-size: clamp(24px, 4.4vw, 34px);
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
}

.home-head__lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-soft);
}

/* ── MIT FEJLESZTEK — KÁRTYARÁCS ─────────────────── */
.build-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.build-card {
  background: linear-gradient(160deg, var(--accent-soft), var(--surface) 60%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
}

.build-card__ico {
  font-size: 28px;
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}

.build-card__title {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 8px;
}

.build-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

.build-note {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-faint);
}

/* ── MEGRENDELÉS MENETE — LÉPÉSEK ────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-step {
  background: linear-gradient(160deg, var(--accent-soft), var(--surface) 60%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.process-step__num {
  display: block;
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 10px;
}

.process-step__title {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 8px;
}

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

/* ── REFERENCIA KÁRTYA ───────────────────────────── */
.reference-section {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0 20px 44px;
}

.reference-card {
  width: 100%;
  max-width: 720px;
  background: linear-gradient(160deg, var(--accent-soft), var(--surface) 60%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 32px 30px;
  text-align: center;
  box-shadow: var(--shadow);
}

.reference-card__badge {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 16px;
}

.reference-card__title {
  font-family: var(--font-title);
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
}

.reference-card__desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 auto 24px;
}

.reference-card__desc strong {
  color: var(--text);
  font-weight: 600;
}

/* ── DIGITÁLIS ASSZISZTENS — KIEMELT SZEKCIÓ ─────── */
.assistant-section {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
  padding: 20px 20px 52px;
}

.assistant-card {
  background: linear-gradient(160deg, var(--accent-soft), var(--surface) 60%);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
  padding: 40px 40px 36px;
  position: relative;
  /* NINCS overflow:hidden – a css/glow-border.css keret-fénye 1px-t túlnyúlik */
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.assistant-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 18px;
}

.assistant-title {
  font-family: var(--font-title);
  font-size: clamp(26px, 4.2vw, 36px);
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}

.assistant-title__highlight {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.assistant-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 22px;
}

.assistant-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.assistant-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
}

.assistant-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 15px;
}

/* ── CHAT-DEMO ─────────────────────────────────── */
.assistant-demo {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-bubble {
  max-width: 92%;
  padding: 10px 15px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.45;
}

.chat-bubble--user {
  align-self: flex-end;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  border-bottom-right-radius: 4px;
}

.chat-bubble--ai {
  align-self: flex-start;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border-bottom-left-radius: 4px;
  box-shadow: 0 4px 14px rgba(0,103,192,0.25);
}

/* ── HERO FŐ ÜZENET áthelyezve a hero.css-be ─────── */

/* ── ALSÓ TECHNOLÓGIA-SÁV (másodlagos, halványabb) ── */
.tech-strip {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  padding: 30px 20px 40px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.tech-strip__label {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 16px;
}

.tech-strip__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}

.tech-strip__badge {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 16px;
}

.tech-strip__link {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s;
}

.tech-strip__link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* ── RESZPONZÍV ──────────────────────────────────── */
@media (max-width: 720px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .build-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .assistant-card {
    grid-template-columns: 1fr;
    padding: 30px 24px 28px;
  }
  .chat-bubble { max-width: 100%; }
}

@media (max-width: 520px) {
  .process-steps { grid-template-columns: 1fr; }
  .reference-card { padding: 26px 22px 24px; }
}
