/* ═══════════════════════════════════════════════════
   AllCorr.eu — index-new.css
   Uzupełnienie do style.css dla nowej strony głównej
   AI-friendly · Schema-ready · Mobile-first
   ═══════════════════════════════════════════════════ */

/* ── 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 60% 40%, rgba(212,168,67,.08) 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-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;
}

.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;
  letter-spacing: .03em;
  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); }

.hero-note {
  font-size: .8rem;
  color: var(--text-muted);
}

/* ── 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;
}

/* ── TILES (usługi) ───────────────────────────────── */
.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);
  letter-spacing: .04em;
  text-decoration: none;
}
.tile-cta:hover { color: var(--gold-light); }

/* ── STEPS (jak działa) ───────────────────────────── */
.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;
}

/* ── PROFILES (dla kogo) ──────────────────────────── */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.profile {
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.75rem;
}

.profile-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: .75rem;
}

.profile h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: .5rem;
}

.profile p {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.7;
}

/* ── 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);
}

/* ── TOOLS GRID ───────────────────────────────────── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.tool {
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 1.4rem 1.5rem;
  transition: border-color .2s;
}
.tool:hover { border-color: rgba(212,168,67,.3); }

.tool h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .4rem;
}
.tool h3 a { color: var(--gold); }
.tool h3 a:hover { color: var(--gold-light); }

.tool p {
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.65;
}

/* ── 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;
  cursor: default;
}

.faq-item dd {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.75;
  margin-left: 0;
}

/* ── 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-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;
}

/* ── REVEAL ANIMATION ─────────────────────────────── */
.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; }
  .btn-primary, .btn-secondary { text-align: center; }
  .step { grid-template-columns: 40px 1fr; gap: 1rem; }
  .step-num { font-size: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .cta-box { padding: 2rem 1.25rem; }
}
