/*
 * style.css — Hop Na Top — Celestial Elegance
 * Styl: ciemny granat + złote akcenty
 * Czcionki: Playfair Display (nagłówki), Source Sans 3 (tekst), Montserrat (CTA/labels)
 *
 * KOLORY DO EDYCJI:
 *   --gold: #c9a84c        — złoty akcent (przyciski, linie, ikony)
 *   --gold-light: #dfc06a  — jaśniejszy złoty (hover)
 *   --navy: #0f1729         — ciemny granat (tło)
 *   --navy-light: #1a2340   — jaśniejszy granat (karty, sekcje)
 *   --text-main: #e8e6e3    — kolor tekstu głównego
 *   --text-muted: #8a8d95   — kolor tekstu drugorzędnego
 */

/* ═══════════════ RESET & ZMIENNE ═══════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #c9a84c;
  --gold-light: #dfc06a;
  --gold-dark: #a68a30;
  --navy: #0f1729;
  --navy-light: #1a2340;
  --navy-lighter: #243055;
  --text-main: #e8e6e3;
  --text-muted: #8a8d95;
  --border-color: #2a3050;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', system-ui, sans-serif;
  --font-accent: 'Montserrat', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ═══════════════ DOSTĘPNOŚĆ ═══════════════ */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  z-index: 1000;
  transition: top 0.3s;
}

.skip-to-content:focus {
  top: 6px;
}

/* ═══════════════ NAGŁÓWKI ═══════════════ */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); line-height: 1.15; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* ═══════════════ KONTENER ═══════════════ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ═══════════════ NAWIGACJA ═══════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.5s, box-shadow 0.5s;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(15, 23, 41, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 24px;
  gap: 32px;
}
@media (min-width: 1024px) { .navbar .container { height: 80px; padding: 0 32px;} }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s;
}
.nav-brand:hover { transform: scale(1.03); }
.nav-brand img {
  width: 40px; height: 40px;
  object-fit: contain;
  border-radius: 8px;
}
@media (min-width: 1024px) { .nav-brand img { width: 48px; height: 48px; } }
.nav-brand span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.nav-brand .gold { color: var(--gold); }

.nav-links {
  display: none;
  align-items: center;
  gap: 2px;
  margin-left: 24px;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-links a {
  padding: 8px 8px;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(232,230,227,0.7);
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  margin-left: 16px;
  padding: 6px 16px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  border:  1px solid rgba(212,168,67,0.4);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}
.nav-cta:hover {
   background: rgba(212,168,67,0.1); 
   border-color: var(--gold);
   color: var(--gold-light);
}

/* Hamburger */
.hamburger {
  display: flex;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 8px;
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger svg { width: 24px; height: 24px; }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(15, 23, 41, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  padding: 16px;
  z-index: 99;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(232,230,227,0.8);
  border-radius: 4px;
  transition: color 0.3s, background 0.3s;
}
.mobile-menu a:hover { color: var(--gold); background: rgba(255,255,255,0.05); }
.mobile-menu .nav-cta {
  display: block;
  text-align: center;
  margin: 8px 0 0;
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(15,23,41,0.6), rgba(15,23,41,0.4), var(--navy)),
    linear-gradient(to right, rgba(15,23,41,0.8), transparent, transparent);
}
.hero .container { position: relative; z-index: 2; padding-top: 96px; padding-bottom: 64px; }
.hero-content { max-width: 720px; }
.hero-label {
  font-family: var(--font-accent);
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.hero h1 .gold { color: var(--gold); font-style: italic; }
@media (min-width: 640px) { .hero h1 { font-size: 3.2rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 4.5rem; } }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(232,230,227,0.7);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}
@media (min-width: 1024px) { .hero-desc { font-size: 1.25rem; } }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; }
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 0 20px rgba(201,168,76,0.3), 0 0 40px rgba(201,168,76,0.1);
}
.btn-gold:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--text-main);
  font-family: var(--font-accent);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(232,230,227,0.2);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--gold); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s 1.5s both;
}
.scroll-indicator span {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  color: rgba(232,230,227,0.4);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.scroll-indicator .line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.5), transparent);
}

/* ═══════════════ SEKCJE ═══════════════ */
.section { padding: 80px 0; }
@media (min-width: 1024px) { .section { padding: 120px 0; } }
.section-dark { background: var(--navy-light); }

.section-label {
  font-family: var(--font-accent);
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 16px;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.section-title .gold { color: var(--gold); font-style: italic; }
@media (min-width: 1024px) { .section-title { font-size: 3.2rem; } }

.section-desc {
  color: rgba(232,230,227,0.6);
  line-height: 1.7;
  max-width: 640px;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Gold divider */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.gold-divider.center { justify-content: center; }
.gold-divider .line {
  height: 1px; width: 60px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.gold-divider .diamond {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}
.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ═══════════════ STATS BAR ═══════════════ */
.stats-bar {
  padding: 48px 0;
  background: rgba(26,35,64,0.5);
  border-top: 1px solid rgba(201,168,76,0.05);
  border-bottom: 1px solid rgba(201,168,76,0.05);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; }
.stat-icon { color: var(--gold); margin-bottom: 12px; font-size: 1.75rem; }
.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}
@media (min-width: 1024px) { .stat-value { font-size: 2.5rem; } }
.stat-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* ═══════════════ GRID LAYOUTS ═══════════════ */
.grid-2 { display: grid; gap: 48px; }
@media (min-width: 1024px) { .grid-2 { grid-template-columns: 1fr 1fr; gap: 80px; } }
.grid-2.items-center { align-items: center; }

.grid-3 { display: grid; gap: 24px; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.grid-4 { display: grid; gap: 20px; }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ═══════════════ KARTY ═══════════════ */
.card {
  padding: 32px;
  background: rgba(15,23,41,0.5);
  border: 1px solid var(--border-color);
  transition: border-color 0.5s, box-shadow 0.4s;
}
.card:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 0 20px rgba(201,168,76,0.15);
}
.card-icon {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 20px;
}
.card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════ INDUSTRY TILES ═══════════════ */
.industry-tile {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(42,48,80,0.3);
  display: block;
  transition: border-color 0.5s, box-shadow 0.4s;
}
.industry-tile:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 0 20px rgba(201,168,76,0.15);
}
.industry-tile .tile-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.industry-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.industry-tile:hover img { transform: scale(1.1); }
.industry-tile .tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--navy), rgba(15,23,41,0.6), transparent);
}
.industry-tile .tile-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
}
.tile-icon { font-size: 1.5rem; margin-bottom: 8px; }
.tile-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.tile-content .tagline {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.tile-content .tile-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: gap 0.3s;
}
.industry-tile:hover .tile-link { gap: 8px; }

/* ═══════════════ ABOUT IMAGE ═══════════════ */
.about-img-wrap {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(201,168,76,0.1);
}
.about-img-wrap img { aspect-ratio: 4/3; object-fit: cover; }
.about-img-wrap .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,41,0.4), transparent);
}
.about-badge {
  position: absolute;
  bottom: -24px; left: -24px;
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-badge .badge-icon { color: var(--gold); font-size: 2rem; }
.about-badge .badge-title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; }
.about-badge .badge-sub { font-size: 0.75rem; color: var(--text-muted); }

/* ═══════════════ CHECKMARKS ═══════════════ */
.check-list { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(232,230,227,0.8);
}
.check-item .icon { color: var(--gold); font-size: 1rem; }

/* ═══════════════ PROCESS STEPS ═══════════════ */
.process-card {
  position: relative;
  padding: 32px;
  background: rgba(15,23,41,0.5);
  border: 1px solid rgba(42,48,80,0.3);
  transition: border-color 0.5s;
}
.process-card:hover { border-color: rgba(201,168,76,0.2); }
.process-num {
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201,168,76,0.1);
}
.process-card .card-icon { margin-bottom: 16px; }
.process-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.process-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ═══════════════ TESTIMONIALS ═══════════════ */
.testimonial-card {
  padding: 32px;
  background: rgba(15,23,41,0.5);
  border: 1px solid var(--border-color);
}
.stars { display: flex; gap: 4px; margin-bottom: 16px; color: var(--gold); }
.testimonial-card blockquote {
  font-style: italic;
  color: rgba(232,230,227,0.7);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-card .author-name { font-family: var(--font-display); font-weight: 700; }
.testimonial-card .author-role { font-size: 0.75rem; color: var(--text-muted); }

/* ═══════════════ CASE STUDY METRICS ═══════════════ */
.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}
.metric-label { font-size: 0.9rem; color: var(--text-muted); }
.metric-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
}

/* ═══════════════ CONTACT FORM ═══════════════ */
.contact-form {
  padding: 32px;
  background: rgba(15,23,41,0.5);
  border: 1px solid var(--border-color);
}
.contact-form h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-form .form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(15,23,41,0.5);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,168,76,0.5);
}
.form-group textarea { resize: none; }
.form-group select option { background: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 639px) { .form-row { grid-template-columns: 1fr; } }

/* Honeypot — ukryte pole antyspamowe */
.hp-field { position: absolute; left: -9999px; opacity: 0; }

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-submit:hover { background: var(--gold-light); }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.form-success {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gold);
  margin-top: 12px;
}
.form-error {
  text-align: center;
  font-size: 0.9rem;
  color: #e74c3c;
  margin-top: 12px;
}

/* ═══════════════ INTAKE ENGINE MODULES ═══════════════ */
.intake-module {
  margin-bottom: 32px;
  padding: 20px;
  background: rgba(15,23,41,0.3);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 8px;
}
.intake-module .module-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.radio-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.radio-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
}
.radio-item input[type="radio"] {
  margin: 0;
}
.ai-brief {
  background: rgba(201,168,76,0.05);
  border-color: rgba(201,168,76,0.2);
}
.ai-explanation {
  font-size: 0.85rem;
  color: var(--text-main);
  line-height: 1.5;
}
.legal-module {
  background: rgba(15,23,41,0.5);
  border-color: rgba(201,168,76,0.15);
}
.legal-links {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
}
.legal-links a {
  color: var(--gold);
  text-decoration: underline;
}
.legal-links a:hover {
  color: var(--gold-light);
}

/* Contact info items */
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(232,230,227,0.8);
  transition: color 0.3s;
  margin-bottom: 16px;
}
.contact-info-item:hover { color: var(--gold); }
.contact-info-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.contact-info-value { font-weight: 500; }

/* Free quote box */
.quote-box {
  padding: 24px;
  background: rgba(15,23,41,0.5);
  border: 1px solid rgba(201,168,76,0.1);
  margin-top: 32px;
}
.quote-box h4 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 8px;
}
.quote-box h4 .icon { color: var(--gold); }
.quote-box p { font-size: 0.9rem; color: var(--text-muted); }

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer p, .footer a { font-size: 0.9rem; color: var(--text-muted); }
.footer a:hover { color: var(--gold); }
.footer ul { display: flex; flex-direction: column; gap: 8px; }
.footer ul a { font-size: 0.9rem; color: var(--text-muted); transition: color 0.3s; }
.footer-bottom {
  margin-top: 48px;
  padding: 24px 0;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.footer-socials { display: flex; gap: 16px; }
.footer-socials a { transition: color 0.3s; }
.footer-socials a:hover { color: var(--gold); }

/* ═══════════════ SCROLL TO TOP ═══════════════ */
.scroll-top {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  cursor: pointer;
  background: none;
  border: none;
}
.scroll-top.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.scroll-top .logo-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(201,168,76,0.4);
  box-shadow: 0 4px 20px rgba(201,168,76,0.2);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.scroll-top:hover .logo-circle {
  border-color: var(--gold);
  box-shadow: 0 4px 30px rgba(201,168,76,0.4);
  transform: scale(1.1);
}
.scroll-top .logo-circle img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 4px;
}
.scroll-top .arrow {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(201,168,76,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -12px;
  color: var(--navy);
  font-size: 0.75rem;
  transition: background 0.3s;
}
.scroll-top:hover .arrow { background: var(--gold); }

/* ═══════════════ STARS BACKGROUND ═══════════════ */
.stars-container {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.star {
  position: absolute;
  width: 2px; height: 2px;
  background: rgba(201,168,76,0.4);
  border-radius: 50%;
  animation: twinkle var(--duration, 4s) var(--delay, 0s) infinite ease-in-out;
}

/* ═══════════════ SCROLL REVEAL ═══════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════ ANIMATIONS ═══════════════ */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes twinkle { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

.fade-in { animation: fadeIn 0.8s ease both; }
.fade-in-up { animation: fadeInUp 0.8s ease both; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

/* ═══════════════ INDUSTRY SUBPAGE ═══════════════ */
.industry-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
}
.industry-hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.industry-hero .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,23,41,0.7), var(--navy));
}
.industry-hero .container { position: relative; z-index: 2; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--gold); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold-light); }

.problem-card, .solution-card {
  padding: 24px;
  background: rgba(15,23,41,0.5);
  border: 1px solid var(--border-color);
  transition: border-color 0.5s;
}
.problem-card:hover, .solution-card:hover { border-color: rgba(201,168,76,0.3); }
.problem-card h4, .solution-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.problem-card h4 .icon { color: #e74c3c; }
.solution-card h4 .icon { color: var(--gold); }
.problem-card p, .solution-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* Elegant variant for wine page */
.elegant .section-title .gold { font-style: italic; }
.elegant .card { border-color: rgba(201,168,76,0.15); }

/* ═══════════════ OTHER INDUSTRIES GRID ═══════════════ */
.other-biz-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.other-biz-item {
  padding: 16px;
  background: rgba(15,23,41,0.5);
  border: 1px solid rgba(42,48,80,0.3);
  text-align: center;
  font-size: 0.9rem;
  color: rgba(232,230,227,0.7);
  transition: border-color 0.3s, color 0.3s;
}
.other-biz-item:hover { border-color: rgba(201,168,76,0.2); color: var(--gold); }

/* ═══════════════ UTILITIES ═══════════════ */
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-16 { margin-bottom: 64px; }
.mt-8 { margin-top: 32px; }
.gap-4 { gap: 16px; }
.relative { position: relative; }
.z-10 { z-index: 10; }

/* ═══════════════ CENNIK DYNAMICZNY ═══════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: center; /* wyrównanie do środka — karta Pro jest wyższa */
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; gap: 20px; }
  .pricing-card--featured { order: -1; } /* Pro zawsze na górze na mobile */
}
.pricing-skeleton {
  background: linear-gradient(90deg, rgba(21,27,66,0.8) 25%, rgba(30,38,80,0.8) 50%, rgba(21,27,66,0.8) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: 16px;
  height: 380px;
  border: 1px solid rgba(212,168,67,0.1);
}
@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.pricing-card {
  position: relative;
  background: #111738;
  border: 1px solid rgba(212,168,67,0.15);
  border-radius: 16px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
@media (max-width: 900px) {
  .pricing-card { padding: 28px 24px 24px; }
}
.pricing-card:hover {
  border-color: rgba(212,168,67,0.4);
  box-shadow: 0 8px 40px rgba(212,168,67,0.12);
  transform: translateY(-4px);
}
.pricing-card--featured {
  border: 2px solid #d4a843;
  background: linear-gradient(160deg, #151b42 0%, #111738 100%);
  box-shadow: 0 20px 60px rgba(212,168,67,0.2);
  transform: scale(1.05);
  z-index: 1;
}
.pricing-card--featured:hover {
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 24px 72px rgba(212,168,67,0.28);
}
@media (max-width: 900px) {
  .pricing-card--featured { transform: none; border: 2px solid #d4a843; }
  .pricing-card--featured:hover { transform: translateY(-4px); }
}
.pricing-popular {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #d4a843, #b8922e);
  color: #0a0e27;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 16px; border-radius: 20px;
  white-space: nowrap;
}
.pricing-badge {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem; /* 28px — nazwa pakietu duża */
  font-weight: 700;
  color: #e2e0dc;
  align-self: flex-start;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  border: none;
  padding: 0;
  border-radius: 0;
}
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-top: -4px; }
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; /* 32px — cena jako największy element */
  font-weight: 700;
  color: #d4a843; /* złota cena — punkt zaczepienia oka */
  line-height: 1;
}
.price-period { font-size: 0.85rem; color: #9a98a6; font-family: 'Source Sans 3', sans-serif; }
.pricing-desc { font-size: 0.9rem; color: #9a98a6; line-height: 1.6; font-family: 'Source Sans 3', sans-serif; }
.pricing-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pricing-feature { font-size: 0.88rem; color: #e2e0dc; font-family: 'Source Sans 3', sans-serif; display: flex; align-items: flex-start; gap: 8px; }
.pricing-check { color: #d4a843; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-cta {
  display: block;
  width: 100%; /* pełna szerokość */
  text-align: center;
  padding: 15px 20px; border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(212,168,67,0.4);
  color: #d4a843; background: transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  margin-top: auto;
  box-sizing: border-box;
}
.pricing-cta:hover { background: rgba(212,168,67,0.1); border-color: #d4a843; color: #e8c96a; }
.pricing-cta--featured { background: linear-gradient(135deg, #d4a843, #b8922e); color: #0a0e27; border-color: transparent; }
.pricing-cta--featured:hover { background: linear-gradient(135deg, #e8c96a, #d4a843); color: #0a0e27; border-color: transparent; }


/* ═══════════════ WYSZUKIWARKA GLOBALNA (NAV) ═══════════════ */
.nav-search {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,168,67,0.25);
  border-radius: 24px;
  padding: 4px 4px 4px 14px;
  transition: border-color 0.2s;
}
.nav-search:focus-within {
  border-color: var(--gold);
  background: rgba(212,168,67,0.08);
}
.nav-search-input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.85rem;
  width: 140px;
  transition: width 0.3s;
}
.nav-search-input::placeholder { color: var(--text-muted); }
.nav-search-input:focus { width: 180px; }
.nav-search-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  padding: 4px 8px;
  color: var(--gold);
  line-height: 1;
  transition: transform 0.15s;
}
.nav-search-btn:hover { transform: scale(1.15); }
.mobile-search {
  width: 100%;
  border-radius: 12px;
  padding: 8px 8px 8px 16px;
  margin: 8px 0;
}
.mobile-search .nav-search-input {
  width: 100%;
  font-size: 0.95rem;
}

/* ═══════════════ HERO NOTE ═══════════════ */
.hero-note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}

@media (max-width: 1023px) {
  .nav-search { display: none; }
  .mobile-search { display: flex; }
}


/* ═══════════════ JAK TO DZIAŁA — step-link ═══════════════ */
.step-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  text-decoration: none;
  transition: color 0.2s;
}
.step-link:hover { color: var(--gold); }
.step-link .gold { color: var(--gold); }

/* ═══════════════ DLACZEGO WARTO ═══════════════ */
.why-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,168,67,0.1);
  border-radius: 12px;
  border: 1px solid rgba(212,168,67,0.2);
}
.why-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-main);
}
.why-item p {
  font-size: 0.92rem;
  color: rgba(232,230,227,0.65);
  line-height: 1.65;
}
.why-cta-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-cta-inner {
  background: rgba(212,168,67,0.06);
  border: 1px solid rgba(212,168,67,0.25);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  max-width: 420px;
}
.why-cta-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.why-cta-inner h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
}
.why-cta-inner p {
  font-size: 0.92rem;
  color: rgba(232,230,227,0.65);
  line-height: 1.65;
}

/* ═══════════════ FAQ ═══════════════ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border: 1px solid rgba(212,168,67,0.15);
  border-radius: 12px;
  overflow: hidden;
  background: #111738;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover { border-color: rgba(212,168,67,0.4); box-shadow: 0 4px 20px rgba(212,168,67,0.08); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-question[aria-expanded="true"] { color: var(--gold); }
.faq-arrow {
  font-size: 0.7rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-question[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  background: #0d1230;
}
.faq-answer.open { display: block; }
.faq-answer p {
  font-size: 0.92rem;
  color: rgba(232,230,227,0.65);
  line-height: 1.7;
}

/* ═══════════════ POZNAJ NAS LEPIEJ ═══════════════ */
.poznaj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.poznaj-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,168,67,0.15);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-main);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.poznaj-card:hover {
  border-color: rgba(212,168,67,0.5);
  background: rgba(212,168,67,0.05);
  transform: translateY(-4px);
}
.poznaj-card--featured {
  border-color: rgba(212,168,67,0.4);
  background: rgba(212,168,67,0.07);
}
.poznaj-icon { font-size: 2.2rem; }
.poznaj-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}
.poznaj-card p {
  font-size: 0.88rem;
  color: rgba(232,230,227,0.6);
  line-height: 1.6;
  flex: 1;
}
.poznaj-link {
  font-family: var(--font-nav, var(--font-accent));
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.poznaj-card:hover .poznaj-link { color: var(--gold); }
.poznaj-link.gold { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   INTAKE WIZARD 2.3 — Style
   Dodać do css/style.css (na końcu pliku)
   ═══════════════════════════════════════════════════════════════ */

/* Kontener wizarda */
.wizard-container {
  background: var(--card-bg, rgba(255,255,255,0.04));
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: 16px;
  padding: 32px;
}

/* Nagłówek */
.wizard-header {
  margin-bottom: 28px;
}

.wizard-header h3 {
  color: var(--gold, #d4a843);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 4px;
}

/* Pasek postępu */
.wizard-steps-bar {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.wizard-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.wizard-step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(212,168,67,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted, #9a98a6);
  transition: all 0.3s ease;
  background: transparent;
}

.wizard-step-item.active .wizard-step-circle {
  border-color: var(--gold, #d4a843);
  background: var(--gold, #d4a843);
  color: #0a0e27;
}

.wizard-step-item.completed .wizard-step-circle {
  border-color: var(--gold, #d4a843);
  background: rgba(212,168,67,0.15);
  color: var(--gold, #d4a843);
}

.wizard-step-item.completed .wizard-step-circle::before {
  content: '✓';
}

.wizard-step-item.completed .wizard-step-circle {
  font-size: 0;
}

.wizard-step-item.completed .wizard-step-circle::before {
  font-size: 0.9rem;
}

.wizard-step-label {
  font-size: 0.72rem;
  color: var(--text-muted, #9a98a6);
  text-align: center;
  white-space: nowrap;
}

.wizard-step-item.active .wizard-step-label {
  color: var(--gold, #d4a843);
  font-weight: 600;
}

.wizard-step-line {
  flex: 1;
  height: 2px;
  background: rgba(212,168,67,0.2);
  margin: 0 8px;
  margin-bottom: 22px;
}

/* Treść kroku */
.wizard-step-content {
  animation: fadeInStep 0.3s ease;
}

@keyframes fadeInStep {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.wizard-step-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212,168,67,0.15);
}

.wizard-step-icon {
  font-size: 1.4rem;
}

.wizard-step-title h4 {
  color: var(--text-primary, #e2e0dc);
  font-size: 1.05rem;
  margin: 0;
}

/* Pola formularza */
.field-error {
  display: none;
  color: #f87171;
  font-size: 0.8rem;
  margin-top: 4px;
}

.field-hint {
  display: block;
  color: var(--text-muted, #9a98a6);
  font-size: 0.78rem;
  margin-top: 4px;
}

/* Karty radio — cel kampanii */
.radio-group--cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.radio-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 10px;
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.radio-card input[type="radio"] {
  display: none;
}

.radio-card-icon {
  font-size: 1.5rem;
}

.radio-card-label {
  font-size: 0.82rem;
  color: var(--text-muted, #9a98a6);
}

.radio-card:has(input:checked) {
  border-color: var(--gold, #d4a843);
  background: rgba(212,168,67,0.08);
}

.radio-card:has(input:checked) .radio-card-label {
  color: var(--gold, #d4a843);
  font-weight: 600;
}

/* Budżet radio */
.radio-group--budget,
.radio-group--timeline {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.radio-budget-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(212,168,67,0.15);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.88rem;
  color: var(--text-muted, #9a98a6);
}

.radio-budget-item:has(input:checked) {
  border-color: var(--gold, #d4a843);
  background: rgba(212,168,67,0.07);
  color: var(--gold, #d4a843);
  font-weight: 600;
}

.radio-budget-item input[type="radio"] {
  accent-color: var(--gold, #d4a843);
  flex-shrink: 0;
}

/* Checkboxy platform */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Nawigacja */
.wizard-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(212,168,67,0.15);
  gap: 12px;
}

.btn-wizard-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid rgba(212,168,67,0.3);
  border-radius: 8px;
  color: var(--text-muted, #9a98a6);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-wizard-back:hover {
  border-color: var(--gold, #d4a843);
  color: var(--gold, #d4a843);
}

.btn-wizard-next {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #d4a843, #b8922e);
  border: none;
  border-radius: 8px;
  color: #0a0e27;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  margin-left: auto;
  transition: all 0.2s ease;
}

.btn-wizard-next:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212,168,67,0.3);
}

/* Podsumowanie */
.wizard-summary {
  background: rgba(212,168,67,0.06);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 20px;
}

.wizard-summary h5 {
  color: var(--gold, #d4a843);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.wizard-summary p {
  color: var(--text-muted, #9a98a6);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Sukces */
.wizard-success {
  text-align: center;
  padding: 48px 24px;
}

.wizard-success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.wizard-success h3 {
  color: var(--gold, #d4a843);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.wizard-success p {
  color: var(--text-muted, #9a98a6);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsywność */
@media (max-width: 600px) {
  .wizard-container {
    padding: 20px 16px;
  }

  .radio-group--cards {
    grid-template-columns: 1fr 1fr;
  }

  .wizard-step-label {
    display: none;
  }
}
