/* ═══════════════════════════════════════════════════
   HopNaTop — hopnatop-new.css
   Uzupełnienie do style.css (wspólny Galaxy Theme)
   ═══════════════════════════════════════════════════ */

/* ── HERO ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 55% 35%, rgba(212,168,67,.09) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { max-width: 780px; position: relative; z-index: 1; }
.hero-eyebrow {
  font-family: var(--font-accent);
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-light);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.2rem; }
.hero-note { font-size: .8rem; color: var(--text-muted); }

/* ── BUTTONS ──────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--navy-dark);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: .9rem;
  padding: .85rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--shadow-gold);
  color: var(--navy-dark);
}
.btn-primary.btn-large { font-size: 1rem; padding: 1rem 2.2rem; }
.btn-secondary {
  display: inline-block;
  border: 1px solid var(--border-subtle);
  color: var(--text-light);
  font-family: var(--font-accent);
  font-size: .88rem;
  padding: .85rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ── SECTIONS ─────────────────────────────────────── */
section { padding: 80px 0; position: relative; }
section:nth-child(even) { background: rgba(255,255,255,.02); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--white);
  margin-bottom: .9rem;
}
.section-lead { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; }
.section-lead a { color: var(--gold); }

/* ── TILES ────────────────────────────────────────── */
.tiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.tile {
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  transition: transform .25s, border-color .25s;
}
.tile:hover { transform: translateY(-4px); border-color: rgba(212,168,67,.35); }
.tile-icon { font-size: 2rem; display: block; margin-bottom: .9rem; }
.tile h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--white); margin-bottom: .6rem; }
.tile p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; margin-bottom: 1.2rem; }
.tile-cta { font-family: var(--font-accent); font-size: .8rem; font-weight: 700; color: var(--gold); text-decoration: none; }
.tile-cta:hover { color: var(--gold-light); }

/* ── BRANŻE ───────────────────────────────────────── */
.branze-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}
.branza-card {
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  text-decoration: none;
  transition: transform .25s, border-color .25s;
  display: block;
}
.branza-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,168,67,.4);
}
.branza-card span { font-size: 2rem; display: block; margin-bottom: .75rem; }
.branza-card h3 { font-family: var(--font-display); font-size: 1rem; color: var(--white); margin-bottom: .3rem; }
.branza-card p { font-size: .82rem; color: var(--text-muted); }
.branza-other { border-style: dashed; border-color: rgba(212,168,67,.25); }
.branza-other:hover { border-style: solid; }

/* ── STEPS ────────────────────────────────────────── */
.steps-list { list-style: none; max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 2rem; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 1.5rem; align-items: start; }
.step-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold); opacity: .35; line-height: 1; padding-top: .15rem; }
.step-content h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--white); margin-bottom: .45rem; }
.step-content p { color: var(--text-muted); font-size: .95rem; line-height: 1.75; }

/* ── CTA SECTION ──────────────────────────────────── */
.cta-section { background: radial-gradient(ellipse at center, rgba(212,168,67,.07) 0%, transparent 70%); }
.cta-box {
  text-align: center; max-width: 640px; margin: 0 auto;
  padding: 3rem 2rem; background: var(--navy-card);
  border: 1px solid var(--border-subtle); border-radius: 16px;
}
.cta-box h2 { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2rem); color: var(--white); margin-bottom: .8rem; }
.cta-box p { color: var(--text-muted); margin-bottom: 1.8rem; line-height: 1.8; }
.cta-features { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem 1.5rem; margin-top: 1.4rem; font-size: .85rem; color: var(--text-muted); }

/* ── FAQ ──────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-subtle); padding: 1.4rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item dt { font-family: var(--font-accent); font-size: .95rem; font-weight: 600; color: var(--white); margin-bottom: .6rem; }
.faq-item dd { color: var(--text-muted); font-size: .9rem; line-height: 1.75; margin-left: 0; }
.faq-item dd a { color: var(--gold); }

/* ── CONTACT ──────────────────────────────────────── */
.contact-grid { display: flex; flex-wrap: wrap; gap: 2rem 3rem; justify-content: center; }
.contact-item { display: flex; align-items: center; gap: .6rem; font-size: 1rem; color: var(--text-light); }
.contact-item a { color: var(--gold); }
.contact-item a:hover { color: var(--gold-light); }

/* ── FOOTER ───────────────────────────────────────── */
footer { background: var(--navy); border-top: 1px solid var(--border-subtle); padding: 3.5rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-logo { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold); margin-bottom: .5rem; }
.footer-brand p { font-size: .85rem; color: var(--text-muted); line-height: 1.7; }
.footer-brand a { color: var(--gold); }
.footer-social { display: flex; gap: .75rem; margin-top: 1rem; font-size: 1.2rem; }
.footer-social a { text-decoration: none; }
footer nav h4 { font-family: var(--font-accent); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
footer nav ul { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
footer nav a { font-size: .85rem; color: var(--text-muted); text-decoration: none; transition: color .2s; }
footer nav a:hover { color: var(--gold); }
.footer-copy { text-align: center; font-size: .78rem; color: var(--text-muted); border-top: 1px solid var(--border-subtle); padding-top: 1.5rem; }
.footer-copy a { color: var(--gold); }

/* ── REVEAL ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero { padding: 100px 0 60px; }
  .hero-actions { flex-direction: column; }
  .step { grid-template-columns: 40px 1fr; gap: 1rem; }
  .step-num { font-size: 1.6rem; }
  .branze-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .cta-box { padding: 2rem 1.25rem; }
}
