/* ==========================================================================
   ViVeSec – NYITÓOLDAL (2026-09, ökoszisztéma-redesign)
   Csak a nyitóoldalon töltődik be (HomeController → pageStyles).
   Mobile-first. Minden szelektor .hp előtagú, más oldalakat nem érint.

   Vizuális nyelv: két eszköz, egy zárt rendszer. A ViVeSec Box színe a
   --hp-box (kék), az AI Box-é a --hp-ai (violet); a kettőt összekötő,
   titkosított kapcsolat a --hp-safe (türkiz) szaggatott vonal.
   ========================================================================== */

.hp {
  --hp-safe: #2fe3c8;
  --hp-safe-soft: rgba(47, 227, 200, .12);
  --hp-box: #5aa9ff;
  --hp-ai: #8b7bff;
  --hp-surface: rgba(255, 255, 255, .025);
  --hp-surface-2: rgba(255, 255, 255, .045);
  --hp-border: rgba(255, 255, 255, .09);
  --hp-border-2: rgba(255, 255, 255, .16);
  --hp-section-y: clamp(4rem, 9vw, 7.5rem);
  --hp-radius: 22px;
  --hp-ease: cubic-bezier(.2, .7, .2, 1);
  position: relative;
}

/* A globális main.css pszeudo-véletlen gradiens-címsorait itt kikapcsoljuk:
   a hangsúlyt a méret és a .hp-grad kiemelés adja. */
.hp .hp-s :is(h1, h2, h3, h4, .display):not(.hp-grad) {
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  color: var(--ink);
  text-shadow: none;
}
.hp .hp-grad {
  background: linear-gradient(95deg, #fff 0%, #bfe9ff 40%, var(--hp-safe) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hp-s {
  position: relative;
  padding: var(--hp-section-y) 0;
  scroll-margin-top: 88px; /* horgonyos ugrásnál a sticky fejléc ne takarja a címet */
}
.hp-s + .hp-s::before {
  content: "";
  position: absolute; top: 0; left: 50%;
  width: min(1100px, 88%); height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--hp-border), transparent);
}

/* ---------- Tipográfia és közös elemek ---------- */
.hp-head { text-align: center; max-width: 900px; margin: 0 auto clamp(2.5rem, 6vw, 3.75rem); }
.hp-kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  margin: 0 0 1.1rem;
  font-size: .75rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--hp-safe);
}
.hp-h2 {
  font-size: clamp(1.9rem, 4.6vw, 3.3rem);
  line-height: 1.08; letter-spacing: -.025em;
  margin: 0 auto;
  max-width: 22ch;
  text-wrap: balance;
  /* hosszú német összetett szavak keskeny kijelzőn (pl. „…ingenieurskunst”) */
  -webkit-hyphens: auto; hyphens: auto; overflow-wrap: break-word;
}
.hp-h2-wide { max-width: 30ch; }
.hp-line { display: block; } /* mondatonként új sor (pl. „… véd. / … gondolkodik.”) */
.hp-h2-left { margin-left: 0; }
.hp-sub {
  margin: 1.2rem auto 0; max-width: 60ch;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem); line-height: 1.6; color: var(--ink-dim);
  text-wrap: pretty;
}
.hp-fineprint {
  max-width: 72ch; margin: 2rem auto 0; text-align: center;
  font-size: .88rem; line-height: 1.6; color: var(--muted);
}
.hp-mini-title {
  margin: 0 0 1rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
}
.hp-sr {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.hp-ico { width: 1.5rem; height: 1.5rem; flex: none; }
.hp-ico-sm { width: 1.05rem; height: 1.05rem; }
.hp-ico-xs { width: .95rem; height: .95rem; }

/* CTA-k: mobilon egymás alatt, teljes szélességben */
.hp-cta-row { display: flex; flex-direction: column; gap: .8rem; margin-top: 2rem; }
.hp-cta-row .btn { justify-content: center; width: 100%; }
.hp-cta-center { align-items: center; }
@media (min-width: 640px) {
  .hp-cta-row { flex-direction: row; flex-wrap: wrap; }
  .hp-cta-row .btn { width: auto; }
  .hp-cta-center { justify-content: center; }
  .hp-cta-center .hp-link + .hp-link { margin-left: 1.4rem; }
}

.hp-link {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; color: #cfe6ff; text-decoration: none;
  border-bottom: 1px solid rgba(207, 230, 255, .3);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s, gap .2s var(--hp-ease);
}
.hp-link:hover, .hp-link:focus-visible { color: #fff; border-color: var(--hp-safe); gap: .7rem; }

.hp :is(a, button, summary):focus-visible {
  outline: 2px solid var(--hp-safe); outline-offset: 3px; border-radius: 10px;
}

.hp-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.hp-list li { display: flex; gap: .6rem; align-items: flex-start; color: var(--ink); line-height: 1.5; }
.hp-list .hp-ico { color: var(--hp-safe); margin-top: .22rem; }

/* ==========================================================================
   1. HERO
   ========================================================================== */
.hp-hero {
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
  overflow: hidden;
  isolation: isolate;
}
.hp-hero::after {
  /* finom, „zárt rendszer” rácsminta */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 75%);
}
.hp-hero-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.hp-hero-title {
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 700; line-height: 1; letter-spacing: -.035em;
}
.hp-hero-line { display: block; }
.hp-hero-lead {
  margin: 1.5rem 0 0; max-width: 50ch;
  font-size: clamp(1.05rem, 1.45vw, 1.25rem); line-height: 1.6; color: var(--ink-dim);
  text-wrap: pretty;
}
.hp-badges {
  list-style: none; margin: 1.8rem 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.hp-badges li {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .42rem .85rem; border-radius: 999px;
  border: 1px solid var(--hp-border-2); background: var(--hp-surface);
  font-size: .86rem; color: var(--ink);
}
.hp-badges .hp-ico { color: var(--hp-safe); }

.hp-hero-visual { position: relative; margin: 0; }
.hp-hero-media {
  position: relative; overflow: hidden;
  border-radius: 28px; border: 1px solid var(--hp-border);
  background: #05061a;
  box-shadow: 0 50px 90px -45px rgba(40, 110, 255, .55);
}
.hp-hero-media::after {
  /* a render sötét alját a lap hátteréhez simítjuk */
  content: ""; position: absolute; inset: auto 0 0 0; height: 30%;
  background: linear-gradient(180deg, transparent, rgba(5, 6, 26, .65));
  pointer-events: none;
}
.hp-hero-media img { display: block; width: 100%; height: auto; }
.hp-hero-tags {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: .5rem;
  margin: -2.2rem auto 0; width: min(94%, 520px);
}
.hp-hero-tag {
  display: grid; grid-template-columns: auto 1fr; column-gap: .45rem; align-items: center;
  padding: .6rem .8rem; border-radius: 16px;
  background: rgba(10, 12, 38, .88); border: 1px solid var(--hp-border-2);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  line-height: 1.2;
}
.hp-hero-tag .hp-ico { grid-row: span 2; }
.hp-hero-tag strong { font-size: .86rem; color: #fff; }
.hp-hero-tag em { font-style: normal; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.hp-hero-tag-box { border-color: rgba(90, 169, 255, .45); }
.hp-hero-tag-box .hp-ico, .hp-hero-tag-box em { color: var(--hp-box); }
.hp-hero-tag-ai { border-color: rgba(139, 123, 255, .5); }
.hp-hero-tag-ai .hp-ico, .hp-hero-tag-ai em { color: #b3a8ff; }
.hp-hero-link { display: inline-flex; align-items: center; gap: .3rem; color: var(--hp-safe); }
.hp-hero-link-line {
  width: 18px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--hp-safe) 0 4px, transparent 4px 8px);
  background-size: 16px 2px;
  animation: hp-flow-x 1.1s linear infinite;
}
@media (min-width: 960px) {
  .hp-hero-grid { grid-template-columns: 1fr 1fr; }
  .hp-hero .hp-cta-row { flex-wrap: nowrap; }
  .hp-hero .hp-cta-row .btn.lg { padding-left: 1.3rem; padding-right: 1.3rem; }
  .hp-hero { min-height: min(760px, calc(100svh - 110px)); display: flex; align-items: center; }
  .hp-hero > .container { width: 100%; }
}
@keyframes hp-flow-x { to { background-position: 16px 0; } }
@keyframes hp-flow-y { to { background-position: 0 16px; } }

/* ==========================================================================
   2. KPI sor
   ========================================================================== */
.hp-kpi { position: relative; padding: 0 0 clamp(3rem, 7vw, 5rem); }
.hp-kpi-grid {
  margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  border: 1px solid var(--hp-border); border-radius: 24px; overflow: hidden;
  background: var(--hp-border);
}
@media (min-width: 860px) { .hp-kpi-grid { grid-template-columns: repeat(4, 1fr); } }
.hp-kpi-item {
  display: flex; flex-direction: column-reverse; justify-content: flex-end; gap: .45rem;
  padding: clamp(1.3rem, 3vw, 2rem) clamp(1rem, 2.5vw, 1.6rem);
  background: #0a0b24; text-align: center;
}
.hp-kpi-item dd {
  margin: 0;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(1.7rem, 4.2vw, 2.7rem); font-weight: 700; line-height: 1; letter-spacing: -.02em;
  background: linear-gradient(180deg, #fff 35%, #9fd8ff); -webkit-background-clip: text; background-clip: text; color: transparent;
  white-space: nowrap;
}
.hp-kpi-item dt { font-size: clamp(.8rem, 1.3vw, .92rem); color: var(--ink-dim); line-height: 1.35; }

/* ==========================================================================
   3. Ökoszisztéma – két hasáb, összekötve
   ========================================================================== */
.hp-eco-grid { display: grid; max-width: 1180px; margin: 0 auto; }
.hp-eco-col {
  display: flex; flex-direction: column; overflow: hidden;
  border-radius: 26px; border: 1px solid var(--hp-border);
  background: linear-gradient(180deg, var(--hp-surface-2), transparent 70%);
}
.hp-eco-box { border-color: rgba(90, 169, 255, .3); }
.hp-eco-ai  { border-color: rgba(139, 123, 255, .35); }
.hp-eco-media { aspect-ratio: 3 / 2; background: #050616; overflow: hidden; }
.hp-eco-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s var(--hp-ease); }
.hp-eco-col:hover .hp-eco-media img { transform: scale(1.03); }
.hp-eco-body { display: flex; flex-direction: column; flex: 1; padding: clamp(1.4rem, 3.5vw, 2.1rem); }
.hp-eco-tag {
  display: inline-flex; align-items: center; gap: .45rem; margin: 0;
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
}
.hp-eco-box .hp-eco-tag { color: var(--hp-box); }
.hp-eco-ai .hp-eco-tag { color: #b3a8ff; }
.hp-eco-verb {
  margin: .5rem 0 1.2rem;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem); line-height: 1.05; letter-spacing: -.02em;
}
.hp-eco-list { margin-bottom: 1.6rem; }
.hp-eco-body .btn { margin-top: auto; align-self: flex-start; max-width: 100%; white-space: normal; text-align: center; }

/* Titkosított összeköttetés a két hasáb között */
.hp-eco-link { display: flex; flex-direction: column; align-items: center; gap: .5rem; padding: .9rem 0; }
.hp-eco-link-line {
  width: 2px; height: 30px; opacity: .85;
  background: repeating-linear-gradient(180deg, var(--hp-safe) 0 4px, transparent 4px 8px);
  background-size: 2px 16px;
  animation: hp-flow-y 1.1s linear infinite;
}
.hp-eco-link-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem .85rem; border-radius: 999px;
  border: 1px solid rgba(47,227,200,.4); background: rgba(47,227,200,.08);
  font-size: .78rem; font-weight: 600; color: var(--hp-safe); text-align: center; max-width: 100%;
}
@media (min-width: 980px) {
  .hp-eco-grid { grid-template-columns: 1fr auto 1fr; align-items: stretch; }
  .hp-eco-link { flex-direction: row; padding: 0 .9rem; }
  .hp-eco-link-line {
    width: 30px; height: 2px;
    background: repeating-linear-gradient(90deg, var(--hp-safe) 0 4px, transparent 4px 8px);
    background-size: 16px 2px;
    animation-name: hp-flow-x;
  }
  .hp-eco-link-badge { flex-direction: column; text-align: center; white-space: normal; max-width: 8.5rem; border-radius: 16px; padding: .7rem .75rem; }
}
.hp-eco-note {
  display: flex; align-items: flex-start; justify-content: center; gap: .5rem;
  max-width: 64ch; margin: 2rem auto 0; text-align: left;
  font-size: .92rem; line-height: 1.55; color: var(--ink-dim);
}
.hp-eco-note .hp-ico { color: var(--hp-safe); margin-top: .22rem; }
.hp-eco-note strong { color: var(--ink); font-weight: 600; }

/* ==========================================================================
   4. Videó (+ fülváltó, ha az AI Box videó is elkészül)
   ========================================================================== */
.hp-video-stage { max-width: 1000px; margin: 0 auto; }
.hp-tabs {
  display: flex; justify-content: center; gap: .4rem; flex-wrap: wrap;
  width: max-content; max-width: 100%; margin: 0 auto 1.4rem; padding: .3rem;
  border-radius: 999px; border: 1px solid var(--hp-border-2); background: var(--hp-surface);
}
.hp-tab {
  padding: .6rem 1.15rem; border-radius: 999px; border: 0;
  background: transparent; color: var(--ink-dim); font: inherit; font-size: .92rem; font-weight: 600; cursor: pointer;
  transition: background .2s, color .2s;
}
.hp-tab:hover { color: #fff; }
.hp-tab[aria-selected="true"] { background: rgba(47,227,200,.14); color: #fff; box-shadow: inset 0 0 0 1px rgba(47,227,200,.45); }

/* ==========================================================================
   5. Termékportfólió – skálázódó lépcső, felette az AI Box sáv
   ========================================================================== */
.hp-tiers { max-width: 1120px; margin: 0 auto; }
.hp-tiers-band {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  margin-bottom: .9rem; padding: .7rem 1rem; border-radius: 16px;
  border: 1px dashed rgba(139, 123, 255, .55);
  background: linear-gradient(90deg, rgba(139,123,255,.06), rgba(139,123,255,.16), rgba(139,123,255,.06));
  color: #d4ceff; font-weight: 600; font-size: .92rem; letter-spacing: .02em;
}
.hp-tier-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.hp-tier {
  position: relative; display: flex; flex-direction: column;
  padding: clamp(1.4rem, 3vw, 1.9rem);
  border-radius: 22px; border: 1px solid var(--hp-border);
  background: linear-gradient(180deg, var(--hp-surface-2), transparent 85%);
}
.hp-tier-step { display: flex; gap: 3px; align-items: flex-end; height: 22px; margin-bottom: 1rem; }
.hp-tier-step i { display: block; width: 8px; border-radius: 2px; background: var(--hp-box); opacity: .85; }
.hp-tier-step i:nth-child(1) { height: 8px; }
.hp-tier-step i:nth-child(2) { height: 15px; }
.hp-tier-step i:nth-child(3) { height: 22px; }
.hp-tier-name { margin: 0 0 .5rem; font-family: 'Space Grotesk', 'Inter', sans-serif; font-size: 1.35rem; letter-spacing: -.01em; }
.hp-tier-desc { margin: 0 0 1.2rem; color: var(--ink-dim); line-height: 1.6; }
.hp-tier-ai {
  margin: auto 0 0; padding: .8rem .9rem; border-radius: 14px;
  border: 1px solid rgba(139, 123, 255, .35); background: rgba(139, 123, 255, .08);
}
.hp-tier-ai-k { display: block; margin-bottom: .25rem; font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.hp-tier-ai-v { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; color: #d4ceff; font-size: .95rem; }
@media (min-width: 900px) {
  .hp-tier-list { grid-template-columns: repeat(3, 1fr); align-items: end; gap: 1.25rem; }
  /* lépcső: a nagyobb szint magasabb – a skálázhatóság vizuálisan */
  .hp-tier { min-height: calc(19rem + var(--i) * 2.6rem); }
}

/* ==========================================================================
   6. Partnerprogram – a végfelhasználói történettől elkülönülő sáv
   ========================================================================== */
.hp-partner-band {
  position: relative; overflow: hidden;
  display: grid; gap: 2rem;
  padding: clamp(1.8rem, 5vw, 3.5rem);
  border-radius: 30px;
  border: 1px solid rgba(139, 123, 255, .35);
  background: linear-gradient(135deg, #16144a 0%, #0f1236 55%, #0b1a33 100%);
}
.hp-partner-copy { position: relative; z-index: 1; }
.hp-partner-copy .hp-kicker { color: #b9b0ff; }
.hp-partner-copy .hp-h2 { max-width: 16ch; margin: 0; font-size: clamp(2rem, 4.4vw, 3.2rem); }
.hp-partner-sub { margin: 1rem 0 0; max-width: 48ch; color: var(--ink-dim); line-height: 1.6; }
.hp-partner-stats { margin: 1.8rem 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; }
.hp-partner-stat {
  display: flex; flex-direction: column-reverse; justify-content: flex-end; gap: .35rem;
  padding: .9rem .8rem; border-radius: 16px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
}
.hp-partner-stat dd {
  margin: 0; font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(1.6rem, 3.6vw, 2.2rem); font-weight: 700; line-height: 1; color: #fff;
}
.hp-partner-stat.is-text dd { color: var(--hp-safe); }
.hp-partner-stat dt { font-size: .8rem; line-height: 1.35; color: var(--ink-dim); }
.hp-perks { position: relative; z-index: 1; list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.hp-perks li {
  display: flex; gap: .8rem; align-items: flex-start;
  padding: 1rem 1.1rem; border-radius: 16px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
}
.hp-perks .hp-ico { color: var(--hp-safe); margin-top: .15rem; }
.hp-perks strong { display: block; color: #fff; }
.hp-perks span { display: block; margin-top: .15rem; font-size: .9rem; color: var(--ink-dim); line-height: 1.5; }
.hp-perks .hp-perk-ai { border-color: rgba(139, 123, 255, .5); background: rgba(139, 123, 255, .1); }
.hp-perks .hp-perk-ai .hp-ico { color: #b3a8ff; }
@media (min-width: 960px) {
  .hp-partner-band { grid-template-columns: 1.1fr .9fr; align-items: center; gap: 3rem; }
}

/* ==========================================================================
   7. Miért most? – nagy számok
   ========================================================================== */
.hp-whynow-grid { display: grid; gap: 1rem; max-width: 1120px; margin: 0 auto; }
@media (min-width: 860px) { .hp-whynow-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.hp-whynow-stat {
  padding: clamp(1.5rem, 3.5vw, 2.2rem);
  border-radius: 22px; border: 1px solid var(--hp-border); background: var(--hp-surface);
}
.hp-whynow-num {
  margin: 0;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(2.4rem, 4.8vw, 3.6rem); font-weight: 700; line-height: 1; letter-spacing: -.03em;
  white-space: nowrap; /* „41% vs 11%” egy sorban */
  background: linear-gradient(180deg, #fff 30%, #9fb4ff); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hp .hp-s h3.hp-whynow-label { margin: .9rem 0 .5rem; font-size: 1.08rem; color: #fff; }
.hp-whynow-text { margin: 0; color: var(--ink-dim); line-height: 1.6; }

/* ==========================================================================
   8. Megoldás – rövidített; jobb oldalon a klasszikus mentés összevetése
   ========================================================================== */
.hp-sol-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
@media (min-width: 1000px) { .hp-sol-grid { grid-template-columns: 1fr 1fr; } }
.hp-sol-intro { margin: 1.2rem 0 1.4rem; color: var(--ink-dim); line-height: 1.65; max-width: 58ch; }
.hp-sol-list { margin-bottom: 2rem; }
.hp-versus { border-radius: 22px; border: 1px solid var(--hp-border); overflow: hidden; background: var(--hp-surface); }
.hp-versus-head, .hp-versus-row { display: grid; grid-template-columns: 1fr; gap: .25rem; padding: .95rem 1.2rem; }
.hp-versus-head { display: none; }
.hp-versus-row + .hp-versus-row { border-top: 1px solid var(--hp-border); }
.hp-versus-row [role="rowheader"] { font-weight: 700; color: #fff; }
.hp-versus .is-them { color: var(--muted); font-size: .92rem; }
.hp-versus .is-them::before { content: "✕ "; color: #ff8a9c; }
.hp-versus .is-us { display: flex; gap: .4rem; align-items: flex-start; color: var(--ink); font-size: .95rem; }
.hp-versus .is-us .hp-ico { color: var(--hp-safe); margin-top: .2rem; }
@media (min-width: 640px) {
  .hp-versus-head, .hp-versus-row { grid-template-columns: .9fr 1fr 1fr; gap: 1rem; align-items: start; }
  .hp-versus-head {
    display: grid; background: rgba(255,255,255,.04);
    font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
  }
  .hp-versus-head .is-us { color: var(--hp-safe); }
  .hp-versus .is-them::before { content: none; }
}

/* ==========================================================================
   9. Rólunk / csapat / díjak / sajtó
   ========================================================================== */
.hp-team { list-style: none; margin: 0 auto; padding: 0; max-width: 1120px; display: grid; gap: 1rem; }
@media (min-width: 860px) { .hp-team { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.hp-team-card { padding: 1.6rem; border-radius: 20px; border: 1px solid var(--hp-border); background: var(--hp-surface); }
.hp-team-role { font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--hp-safe); }
.hp .hp-s .hp-team-card h3 { margin: .5rem 0 .6rem; font-size: 1.25rem; }
.hp-team-card p { margin: 0; color: var(--ink-dim); line-height: 1.6; }
.hp-about-grid { display: grid; gap: 1.25rem; max-width: 1120px; margin: 1.25rem auto 0; }
.hp-about-block { padding: 1.6rem; border-radius: 20px; border: 1px solid var(--hp-border); }
@media (min-width: 900px) {
  .hp-about-grid:has(.hp-press) { grid-template-columns: 1.1fr .9fr; }
}
.hp-awards { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem clamp(1.2rem, 4vw, 2.8rem); }
.hp-awards a { display: flex; flex-direction: column; align-items: center; gap: .6rem; width: 9rem; text-align: center; text-decoration: none; color: var(--ink-dim); font-size: .82rem; line-height: 1.35; }
.hp-awards small { display: block; color: var(--muted); }
.hp-awards img { width: auto; height: 5rem; object-fit: contain; filter: grayscale(1) brightness(1.3); opacity: .75; transition: filter .3s, opacity .3s; }
.hp-awards a:hover img, .hp-awards a:focus-visible img { filter: none; opacity: 1; }
.hp-awards a:hover { color: var(--ink); }
.hp-press .hp-mini-title + .hp-press-list + .hp-mini-title { margin-top: 1.4rem; }
.hp-press-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.hp-press-list li { display: grid; gap: .15rem; }
.hp-press-meta { font-size: .78rem; color: var(--muted); }
.hp-press-list a { color: var(--ink); text-decoration: none; font-weight: 600; }
.hp-press-list a:hover { color: #fff; text-decoration: underline; text-decoration-color: var(--hp-safe); }

/* ==========================================================================
   10. Záró CTA
   ========================================================================== */
.hp-final { padding-top: calc(var(--hp-section-y) * 1.05); padding-bottom: calc(var(--hp-section-y) * 1.15); }
.hp-final-inner {
  max-width: 980px; margin: 0 auto; text-align: center;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.2rem, 4vw, 3rem);
  border-radius: 32px; border: 1px solid rgba(47,227,200,.25);
  background:
    radial-gradient(70% 90% at 50% 0%, rgba(124, 92, 255, .22), transparent 70%),
    radial-gradient(60% 70% at 50% 100%, rgba(47, 227, 200, .1), transparent 70%),
    rgba(255,255,255,.02);
}
.hp-final-title { max-width: 24ch; }
.hp-final .hp-cta-row { margin-top: 2.2rem; }
.hp-final .btn-primary { box-shadow: 0 18px 50px -14px rgba(124, 92, 255, .8); }
.hp-trust { list-style: none; margin: 1.8rem 0 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 1.6rem; }
.hp-trust li { display: inline-flex; align-items: center; gap: .45rem; color: var(--ink-dim); font-size: .92rem; }
.hp-trust .hp-ico { color: var(--hp-safe); }

/* ==========================================================================
   Csökkentett mozgás – minden átmenet és folyamatos animáció ki
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .hp *, .hp *::before, .hp *::after { animation: none !important; transition: none !important; }
}

/* ---------- Szélső képernyőméretek ---------- */
@media (max-width: 359px) {
  .hp-kicker { letter-spacing: .1em; font-size: .7rem; }
  .hp-partner-stats { grid-template-columns: 1fr; }
}
@media (max-width: 479px) {
  .hp-hero-tags { grid-template-columns: 1fr; width: 88%; margin-top: -1.6rem; }
  .hp-hero-link { display: none; }
}
/* Nagy monitorok: szélesebb konténer és nagyobb tipográfia */
@media (min-width: 1600px) {
  .page-home .container { max-width: 1360px; }
  .hp-hero-title { font-size: 5.8rem; }
  .hp-h2 { font-size: 3.6rem; }
}
@media (min-width: 2200px) {
  .page-home .container { max-width: 1520px; }
  .hp-hero-title { font-size: 6.4rem; }
  .hp-sub { font-size: 1.3rem; }
}
