@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --cream: #FAF7F2;
  --white: #FFFFFF;
  --black: #0D0D0D;
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --gold-dark: #9A6F2E;
  --gray: #6B6B6B;
  --gray-light: #F0EDE8;
  --blue-laser: #00B4D8;
  --blue-laser-dark: #0077A8;
  --text: #1A1A1A;
  --border: #E0D8CC;
  --shadow: 0 4px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 700; }
p { font-size: 1rem; color: var(--gray); line-height: 1.8; }

a { text-decoration: none; color: inherit; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 900;
  color: var(--black);
}

.nav-logo span { color: var(--gold); }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--gray);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
              radial-gradient(ellipse 50% 50% at 20% 80%, rgba(0,180,216,0.05) 0%, transparent 60%);
}

.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold-light); color: var(--gold-dark);
  padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase; letter-spacing: 0.08em;
}

.hero h1 { margin-bottom: 1.5rem; color: var(--black); }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p.lead {
  font-size: 1.1rem; color: var(--gray); margin-bottom: 2rem; max-width: 500px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.4); }

.btn-secondary {
  background: transparent;
  color: var(--black);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--border);
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.hero-visual {
  display: flex; flex-direction: column; gap: 1rem;
}

.hero-card {
  background: var(--white);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero-card.main-card {
  position: relative;
  overflow: hidden;
}

.hero-card.main-card::after {
  content: '✦';
  position: absolute; top: 1rem; right: 1rem;
  font-size: 1.5rem; color: var(--gold); opacity: 0.4;
}

.hero-stat {
  display: flex; gap: 1rem; align-items: center;
}
.hero-stat-icon {
  width: 50px; height: 50px;
  background: var(--gold-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 900; color: var(--black);
  line-height: 1;
}
.hero-stat-label { font-size: 0.8rem; color: var(--gray); }

.mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.mini-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.2rem;
  text-align: center;
}
.mini-card-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.mini-card-title { font-size: 0.85rem; font-weight: 600; color: var(--black); }
.mini-card-sub { font-size: 0.75rem; color: var(--gray); }

/* ── SECTIONS ── */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-header { margin-bottom: 3rem; }
.section-header p { max-width: 600px; margin-top: 1rem; font-size: 1.05rem; }

/* ── CITIES GRID ── */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.city-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.city-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.city-card-emoji { font-size: 2rem; margin-bottom: 0.75rem; }
.city-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--black);
  margin-bottom: 0.25rem;
}
.city-card-count { font-size: 0.8rem; color: var(--gray); }

/* ── HOW IT WORKS ── */
.how-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem;
}
.how-step {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 900;
  color: var(--gold-light);
  line-height: 1; margin-bottom: 1rem;
}
.how-step h3 { margin-bottom: 0.5rem; }

/* ── PRICING ── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.pricing-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, #FDF9F0, var(--white));
}
.pricing-card.featured::before {
  content: 'NAJPOPULARNIEJSZY';
  position: absolute; top: 1.2rem; right: -2rem;
  background: var(--gold); color: white;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  padding: 0.3rem 3rem;
  transform: rotate(35deg);
}
.pricing-tier { font-size: 0.8rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 900; color: var(--black);
  margin-bottom: 0.25rem; line-height: 1;
}
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--gray); }
.pricing-desc { font-size: 0.9rem; color: var(--gray); margin-bottom: 1.5rem; }
.pricing-features { list-style: none; }
.pricing-features li {
  display: flex; gap: 0.75rem; align-items: flex-start;
  font-size: 0.9rem; color: var(--text);
  padding: 0.5rem 0;
  border-top: 1px solid var(--gray-light);
}
.pricing-features li:first-child { border-top: none; }
.pricing-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 0.1rem; }

/* ── FAQ ── */
.faq-list { max-width: 800px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 0.75rem;
  background: var(--white);
  overflow: hidden;
}
.faq-q {
  padding: 1.25rem 1.5rem;
  font-weight: 600; font-size: 1rem;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
.faq-q:hover { color: var(--gold); }
.faq-q .faq-icon { font-size: 1.2rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem; color: var(--gray); line-height: 1.8;
}
.faq-item.open .faq-a { display: block; }

/* ── FIRMS TABLE ── */
.firms-grid {
  display: grid; gap: 1.5rem;
}
.firm-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: start;
}
.firm-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; margin-bottom: 0.25rem;
}
.firm-address { font-size: 0.85rem; color: var(--gray); margin-bottom: 0.75rem; }
.firm-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.firm-tag {
  background: var(--gray-light); color: var(--gray);
  font-size: 0.75rem; padding: 0.2rem 0.7rem; border-radius: 50px;
}
.firm-rating { text-align: center; }
.firm-stars { color: var(--gold); font-size: 1.1rem; }
.firm-score { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900; }
.firm-reviews { font-size: 0.75rem; color: var(--gray); }

/* ── DISCLAIMER ── */
.disclaimer {
  background: var(--gray-light); border-radius: 12px;
  padding: 1rem 1.5rem; margin-top: 2rem;
  font-size: 0.8rem; color: var(--gray);
  border-left: 3px solid var(--gold);
}

/* ── FOOTER ── */
footer {
  background: var(--black); color: rgba(255,255,255,0.6);
  padding: 3rem 2rem 2rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: white; margin-bottom: 0.75rem; }
.footer-brand span { color: var(--gold); }
.footer-col h4 { color: white; font-size: 0.9rem; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.85rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { font-size: 0.8rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex; gap: 0.5rem; align-items: center;
  font-size: 0.85rem; color: var(--gray);
  padding: 5.5rem 2rem 0;
  max-width: 1200px; margin: 0 auto;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { opacity: 0.4; }

/* ── CITY HERO ── */
.city-hero {
  padding: 2rem 2rem 4rem;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start;
}
.city-hero-text h1 { margin-bottom: 1rem; }
.city-hero-text h1 em { color: var(--gold); font-style: normal; }
.city-hero-text .lead { font-size: 1.1rem; margin-bottom: 2rem; }

.city-stats-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
}
.city-stats-box h3 { margin-bottom: 1.5rem; font-size: 1rem; }
.cstat { display: flex; justify-content: space-between; align-items: center; padding: 0.75rem 0; border-top: 1px solid var(--gray-light); }
.cstat:first-of-type { border-top: none; }
.cstat-label { font-size: 0.85rem; color: var(--gray); }
.cstat-val { font-weight: 700; color: var(--black); font-size: 1rem; }

/* ── TABLE OF CONTENTS ── */
.toc {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.5rem;
  margin-bottom: 2rem;
}
.toc h4 { margin-bottom: 1rem; font-size: 0.95rem; }
.toc ol { padding-left: 1.2rem; }
.toc li { font-size: 0.9rem; margin-bottom: 0.4rem; }
.toc a { color: var(--gold); }
.toc a:hover { text-decoration: underline; }

/* ── REVIEW WIDGET ── */
.review-note {
  background: #FFF8E8; border: 1px solid var(--gold-light);
  border-radius: 12px; padding: 1rem 1.5rem;
  font-size: 0.85rem; color: var(--gold-dark); margin-bottom: 2rem;
  display: flex; gap: 0.75rem; align-items: center;
}

/* ── SCHEMA ── */

/* ── MOBILE ── */
@media (max-width: 768px) {
  .hero-inner, .city-hero { grid-template-columns: 1fr; gap: 2rem; }
  .mini-cards { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .firm-card { grid-template-columns: 1fr; }
}
