/* ==========================================================================
   1. Reset & Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

:root {
  --purpura-900: #2c1726;
  --purpura-700: #3d1133;
  --purpura-500: #5c1f4a;
  --purpura-300: #8b4a72;
  --roz-100: #fbe9ec;
  --roz-200: #f9dde2;
  --roz-300: #f5cfd6;
  --roz-500: #d9889a;
  --roz-700: #b85d72;
  --zloto-500: #c9a96e;
  --zloto-300: #e0c997;
  --kremowy: #fdfbf9;
  --bialy: #ffffff;
  --tekst-glowny: #2c1726;
  --tekst-pomocniczy: #6b5563;
  --ramka: #ebdfe3;
  --cien-soft: 0 4px 20px rgba(61, 17, 51, 0.06);
  --cien-medium: 0 10px 30px rgba(61, 17, 51, 0.12);
  --cien-strong: 0 20px 50px rgba(61, 17, 51, 0.18);

  --grad-hero: linear-gradient(135deg, #fbe9ec 0%, #f5cfd6 50%, #e8b8c8 100%);
  --grad-purpura: linear-gradient(135deg, #3d1133 0%, #5c1f4a 100%);
  --grad-zloto: linear-gradient(135deg, #c9a96e 0%, #e0c997 100%);
  --grad-akcent: linear-gradient(135deg, #5c1f4a 0%, #b85d72 100%);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --t-fast: 0.2s ease;
  --t-base: 0.3s ease;
  --t-slow: 0.6s ease;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--tekst-glowny);
  background: var(--kremowy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--purpura-500); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--roz-700); }

ul, ol { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ==========================================================================
   2. Typografia
   ========================================================================== */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--purpura-700);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); margin-bottom: 0.6rem; }
h4 { font-size: 1.15rem; margin-bottom: 0.4rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--tekst-pomocniczy);
  max-width: 60ch;
}

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--zloto-500);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 32px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 1px;
  background: var(--zloto-500);
}

.section-title {
  text-align: center;
  margin-bottom: 0.6rem;
}
.section-subtitle {
  text-align: center;
  color: var(--tekst-pomocniczy);
  max-width: 60ch;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

/* ==========================================================================
   3. Kontener / Layout
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

.section-light { background: var(--kremowy); }
.section-cream { background: var(--roz-100); }
.section-rose { background: var(--roz-200); }
.section-dark { background: var(--purpura-700); color: var(--roz-100); }
.section-dark h2, .section-dark h3 { color: var(--bialy); }

/* ==========================================================================
   4. Przyciski
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--t-base), transform var(--t-fast), box-shadow var(--t-base);
  text-align: center;
  border: 2px solid transparent;
  font-family: inherit;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-akcent);
  color: var(--bialy);
  box-shadow: 0 8px 22px rgba(184, 93, 114, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(184, 93, 114, 0.45);
  color: var(--bialy);
}

.btn-secondary {
  background: var(--bialy);
  color: var(--purpura-700);
  border-color: var(--purpura-700);
}
.btn-secondary:hover {
  background: var(--purpura-700);
  color: var(--bialy);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--purpura-700);
  border-color: var(--ramka);
}
.btn-ghost:hover {
  border-color: var(--purpura-700);
  background: var(--purpura-700);
  color: var(--bialy);
}

.btn-small { padding: 0.55rem 1.2rem; font-size: 0.9rem; }
.btn-large { padding: 1.1rem 2.4rem; font-size: 1.1rem; }

.btn-nav {
  padding: 0.55rem 1.3rem !important;
  font-size: 0.95rem;
  background: var(--grad-akcent);
  color: var(--bialy) !important;
  box-shadow: 0 4px 15px rgba(184, 93, 114, 0.3);
}
.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(184, 93, 114, 0.4);
}

.btn-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ==========================================================================
   5. Header & Nawigacja
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 251, 249, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--t-base), background var(--t-base), border-color var(--t-base);
}
.site-header.scrolled {
  box-shadow: var(--cien-soft);
  background: rgba(253, 251, 249, 0.95);
  border-color: var(--ramka);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 24px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-akcent);
  color: var(--bialy);
  display: grid;
  place-items: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(92, 31, 74, 0.3);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--purpura-700);
}
.logo-sub {
  font-size: 0.75rem;
  color: var(--tekst-pomocniczy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.site-nav a {
  display: inline-block;
  padding: 0.6rem 1rem;
  color: var(--purpura-700);
  font-weight: 500;
  font-size: 0.97rem;
  border-radius: 999px;
  position: relative;
  transition: color var(--t-fast), background var(--t-fast);
}
.site-nav a:not(.btn-nav):hover {
  color: var(--roz-700);
  background: var(--roz-100);
}
.site-nav a.active:not(.btn-nav) {
  color: var(--purpura-700);
  background: var(--roz-200);
}
.site-nav a.featured {
  color: var(--purpura-700);
  font-weight: 600;
  position: relative;
}
.site-nav a.featured::after {
  content: "★";
  font-size: 0.6rem;
  color: var(--zloto-500);
  position: absolute;
  top: 4px;
  right: 8px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--purpura-700);
  transition: transform var(--t-base), opacity var(--t-base);
  border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   6. Hero Section
   ========================================================================== */
.hero {
  position: relative;
  padding: 5rem 0 6rem;
  background: var(--grad-hero);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(217, 136, 154, 0.35), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -300px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.25), transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
}
.hero-content h1 .accent {
  font-style: italic;
  color: var(--purpura-500);
  position: relative;
  display: inline-block;
}
.hero-content h1 .accent::after {
  content: "";
  position: absolute;
  bottom: 0.1em;
  left: 0;
  right: 0;
  height: 0.35em;
  background: rgba(201, 169, 110, 0.4);
  z-index: -1;
  border-radius: 4px;
}
.hero-lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--tekst-pomocniczy);
  max-width: 56ch;
  margin-bottom: 2rem;
}

.hero-image-wrap {
  position: relative;
  display: grid;
  place-items: center;
}
.hero-image {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/5;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  overflow: hidden;
  box-shadow: var(--cien-strong);
  z-index: 2;
  background: linear-gradient(160deg, #ffffff 0%, #fdfbf9 60%, #fbe9ec 100%);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transition: transform 0.8s ease;
}
.hero-image:hover img { transform: scale(1.04); }

.hero-deco {
  position: absolute;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/5;
  border: 2px solid var(--zloto-500);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  top: 30px;
  right: -20px;
  z-index: 1;
}

.hero-badge {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: var(--bialy);
  padding: 1rem 1.3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--cien-medium);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
}
.hero-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--grad-zloto);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: var(--purpura-700);
}
.hero-badge-text { line-height: 1.3; }
.hero-badge-text strong {
  display: block;
  color: var(--purpura-700);
  font-size: 0.95rem;
}
.hero-badge-text span {
  font-size: 0.8rem;
  color: var(--tekst-pomocniczy);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(92, 31, 74, 0.15);
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--purpura-700);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero-stat-label {
  font-size: 0.85rem;
  color: var(--tekst-pomocniczy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ==========================================================================
   7. Page Header (subpages) + Breadcrumbs
   ========================================================================== */
.page-header {
  background: var(--grad-hero);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-header::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.25), transparent 70%);
  border-radius: 50%;
}
.page-header-inner {
  position: relative;
  z-index: 1;
}
.page-header h1 { margin-bottom: 1rem; }
.page-header p {
  max-width: 60ch;
  margin: 0 auto;
  color: var(--tekst-pomocniczy);
  font-size: 1.15rem;
}
.breadcrumbs {
  font-size: 0.9rem;
  color: var(--tekst-pomocniczy);
  margin-bottom: 1.5rem;
}
.breadcrumbs a { color: var(--purpura-500); }
.breadcrumbs span { margin: 0 0.5rem; opacity: 0.6; }

/* ==========================================================================
   8. Karty / Feature Cards
   ========================================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  background: var(--bialy);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--cien-soft);
  transition: transform var(--t-base), box-shadow var(--t-base);
  border: 1px solid var(--ramka);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--cien-medium);
}
.card-featured {
  background: var(--grad-purpura);
  color: var(--roz-100);
  border: none;
  position: relative;
}
.card-featured h3 { color: var(--bialy); }
.card-featured::before {
  content: "Najczęściej wybierane";
  position: absolute;
  top: 1.2rem;
  right: -2.5rem;
  background: var(--zloto-500);
  color: var(--purpura-700);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3rem 3rem;
  transform: rotate(45deg);
  text-transform: uppercase;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--roz-200);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--purpura-700);
  transition: transform var(--t-base);
}
.card:hover .card-icon { transform: scale(1.08) rotate(-3deg); }
.card-featured .card-icon {
  background: rgba(201, 169, 110, 0.25);
  color: var(--zloto-300);
}

.card h3 { margin-bottom: 0.8rem; }
.card p {
  color: var(--tekst-pomocniczy);
  font-size: 0.97rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.card-featured p { color: var(--roz-200); }

.card-list {
  list-style: none;
  margin-bottom: 1.5rem;
}
.card-list li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--tekst-pomocniczy);
}
.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  background: var(--zloto-500);
  border-radius: 50%;
}
.card-featured .card-list li { color: var(--roz-200); }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--purpura-500);
  font-size: 0.95rem;
  transition: gap var(--t-fast);
}
.card-link:hover { gap: 0.8rem; }
.card-featured .card-link { color: var(--zloto-300); }
.card-link::after { content: "→"; font-size: 1.1rem; }

/* ==========================================================================
   9. Sekcje treści - dwukolumnowe, z obrazkiem
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-img-wrap {
  position: relative;
}
.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--cien-medium);
  aspect-ratio: 4/5;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.split-img:hover img { transform: scale(1.03); }

.split-img.split-img-portrait {
  aspect-ratio: 3/5;
  background: linear-gradient(135deg, var(--roz-200), var(--roz-100));
}
.split-img.split-img-portrait img {
  object-fit: contain;
  object-position: center;
}

.split-img-deco {
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--grad-zloto);
  border-radius: 50%;
  z-index: -1;
  top: -30px;
  right: -30px;
  opacity: 0.4;
  filter: blur(20px);
}

.split-content h2 { margin-bottom: 1.5rem; }

.feature-list {
  margin-top: 2rem;
  display: grid;
  gap: 1.2rem;
}
.feature-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--roz-200);
  color: var(--purpura-700);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}
.feature-text h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--purpura-700);
  margin-bottom: 0.3rem;
}
.feature-text p {
  color: var(--tekst-pomocniczy);
  font-size: 0.95rem;
  margin: 0;
}

/* ==========================================================================
   10. Polisa posagowa - sekcja flagowa
   ========================================================================== */
.posag-hero {
  background: var(--grad-purpura);
  color: var(--roz-100);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.posag-hero::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.2), transparent 70%);
  border-radius: 50%;
}
.posag-hero .container { position: relative; z-index: 1; }
.posag-hero h2 { color: var(--bialy); margin-bottom: 1rem; }
.posag-hero h2 em { color: var(--zloto-300); font-style: italic; }
.posag-hero .lead { color: var(--roz-200); margin: 0 auto 2.5rem; text-align: center; }
.posag-hero-content { text-align: center; max-width: 760px; margin: 0 auto; }

.posag-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.posag-pillar {
  text-align: center;
  padding: 1.5rem 1rem;
}
.posag-pillar-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--zloto-300);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.posag-pillar h4 {
  color: var(--bialy);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.posag-pillar p { color: var(--roz-200); font-size: 0.9rem; margin: 0; }

/* ==========================================================================
   11. Process / Steps
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  counter-reset: step;
}
.step {
  text-align: center;
  position: relative;
  counter-increment: step;
}
.step-num {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  background: var(--bialy);
  border: 2px solid var(--purpura-300);
  color: var(--purpura-700);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.6rem;
  position: relative;
  z-index: 2;
  box-shadow: var(--cien-soft);
}
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 32px;
  left: calc(50% + 32px);
  right: calc(-50% + 32px);
  height: 2px;
  background: linear-gradient(90deg, var(--purpura-300), var(--zloto-500));
  z-index: 1;
}
.step h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--purpura-700);
  margin-bottom: 0.5rem;
}
.step p { color: var(--tekst-pomocniczy); font-size: 0.95rem; }

/* ==========================================================================
   12. Wartości / Wyróżniki
   ========================================================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.value {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bialy);
  border: 1px solid var(--ramka);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.value:hover {
  transform: translateY(-5px);
  box-shadow: var(--cien-medium);
}
.value-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  background: var(--grad-hero);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: var(--purpura-700);
}
.value h3 { font-size: 1.3rem; margin-bottom: 0.8rem; }
.value p { color: var(--tekst-pomocniczy); font-size: 0.97rem; }

/* ==========================================================================
   13. Cytat / Testimonial
   ========================================================================== */
.quote-block {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 2rem;
  position: relative;
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--zloto-500);
  line-height: 0.6;
  opacity: 0.4;
  margin-bottom: 0.5rem;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-style: italic;
  color: var(--purpura-700);
  line-height: 1.45;
  margin-bottom: 1.5rem;
}
.quote-author {
  font-size: 0.95rem;
  color: var(--tekst-pomocniczy);
  letter-spacing: 0.05em;
}

/* ==========================================================================
   14. FAQ - Accordion
   ========================================================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}
.faq-item {
  background: var(--bialy);
  border: 1px solid var(--ramka);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--t-base), border-color var(--t-base);
}
.faq-item:hover { border-color: var(--roz-500); }
.faq-item[open] { box-shadow: var(--cien-soft); border-color: var(--roz-500); }
.faq-question {
  padding: 1.3rem 1.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--purpura-700);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 1rem;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: "+";
  font-size: 1.8rem;
  color: var(--roz-700);
  font-weight: 300;
  transition: transform var(--t-base);
  flex-shrink: 0;
}
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--tekst-pomocniczy);
  line-height: 1.7;
}

/* ==========================================================================
   15. CTA Banner
   ========================================================================== */
.cta-banner {
  background: var(--grad-akcent);
  color: var(--bialy);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--cien-strong);
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.2), transparent 70%);
  border-radius: 50%;
}
.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.3), transparent 70%);
  border-radius: 50%;
}
.cta-banner h2 {
  color: var(--bialy);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.cta-banner p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 60ch;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}
.cta-banner .btn {
  position: relative;
  z-index: 1;
  background: var(--bialy);
  color: var(--purpura-700);
  border-color: var(--bialy);
}
.cta-banner .btn:hover {
  background: var(--zloto-500);
  color: var(--purpura-700);
  border-color: var(--zloto-500);
}

/* ==========================================================================
   16. Formularz kontaktowy
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info {
  background: var(--grad-purpura);
  color: var(--roz-100);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.25), transparent 70%);
  border-radius: 50%;
}
.contact-info h2 {
  color: var(--bialy);
  margin-bottom: 1rem;
}
.contact-info > p {
  color: var(--roz-200);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.contact-info-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.3rem;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--zloto-300);
  font-size: 1.1rem;
}
.contact-info-item strong {
  display: block;
  color: var(--bialy);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.15rem;
}
.contact-info-item span { color: var(--roz-200); }

.contact-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}
.contact-socials a {
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: var(--roz-100);
  font-size: 0.9rem;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.contact-socials a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--zloto-300);
  color: var(--bialy);
}

.contact-form {
  background: var(--bialy);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--cien-soft);
  border: 1px solid var(--ramka);
}
.form-disabled-notice {
  background: var(--roz-100);
  border-left: 3px solid var(--zloto-500);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: var(--purpura-700);
}
.form-disabled-notice strong { display: block; margin-bottom: 0.2rem; }

.form-grid {
  display: grid;
  gap: 1.2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--purpura-700);
  letter-spacing: 0.03em;
}
.form-field input,
.form-field textarea,
.form-field select {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--ramka);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: var(--kremowy);
  color: var(--tekst-glowny);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--roz-500);
  background: var(--bialy);
}
.form-field input:disabled,
.form-field textarea:disabled,
.form-field select:disabled {
  background: var(--roz-100);
  cursor: not-allowed;
  opacity: 0.7;
}
.form-field textarea { resize: vertical; min-height: 130px; }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--tekst-pomocniczy);
  line-height: 1.5;
}
.form-consent input { margin-top: 0.2rem; }

/* ==========================================================================
   17. Footer
   ========================================================================== */
.site-footer {
  background: var(--purpura-900);
  color: var(--roz-200);
  padding: 5rem 0 0;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--bialy);
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-tagline {
  color: var(--roz-200);
  line-height: 1.6;
  font-size: 0.97rem;
  margin-bottom: 1.5rem;
}
.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a {
  padding: 0.45rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: var(--roz-200);
  font-size: 0.85rem;
  transition: all var(--t-fast);
}
.footer-socials a:hover {
  background: var(--zloto-500);
  color: var(--purpura-900);
  border-color: var(--zloto-500);
}

.footer-col h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--bialy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a {
  color: var(--roz-200);
  font-size: 0.95rem;
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--zloto-300); }
.footer-contact li { font-size: 0.95rem; color: var(--roz-200); }
.footer-contact li span { color: var(--roz-300); display: inline-block; min-width: 65px; }
.footer-hours { color: var(--roz-200); font-size: 0.95rem; margin-bottom: 0.75rem; }
.footer-hint { font-size: 0.85rem; color: var(--zloto-300); font-style: italic; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: var(--roz-300);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   18. Cookie Notice
   ========================================================================== */
.cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 580px;
  margin: 0 auto;
  background: var(--bialy);
  border-radius: var(--radius-md);
  box-shadow: var(--cien-strong);
  padding: 1.2rem 1.5rem;
  z-index: 200;
  border: 1px solid var(--ramka);
  animation: slideUp 0.5s ease;
}
.cookie-notice[hidden] { display: none; }
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-inner p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--tekst-pomocniczy);
  flex: 1;
  min-width: 240px;
}

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

/* ==========================================================================
   19. Animacje przy scroll
   ========================================================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   20. Tabela porównawcza
   ========================================================================== */
.compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bialy);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--cien-soft);
  border: 1px solid var(--ramka);
}
.compare th, .compare td {
  padding: 1.2rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--ramka);
}
.compare th {
  background: var(--purpura-700);
  color: var(--bialy);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1rem;
}
.compare td:first-child { font-weight: 600; color: var(--purpura-700); }
.compare tr:last-child td { border-bottom: none; }
.compare tr:hover td { background: var(--roz-100); }
.compare .yes { color: #4a8a4f; font-weight: 600; }
.compare .no  { color: #b5546a; font-weight: 600; }

/* ==========================================================================
   21. Media Queries
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-content .eyebrow { display: inline-block; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-stats { max-width: 500px; margin-left: auto; margin-right: auto; }
  .btn-row { justify-content: center; }
  .hero-image-wrap { order: -1; }

  .split { grid-template-columns: 1fr; gap: 3rem; }
  .split-img-wrap { order: -1; max-width: 500px; margin: 0 auto; }

  .cards-grid-3, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .posag-pillars { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 3rem; }
  .step:not(:last-child)::after { display: none; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .section { padding: 4.5rem 0; }
  .hero { padding: 3rem 0 4.5rem; }

  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 86%;
    max-width: 360px;
    height: 100vh;
    background: var(--bialy);
    padding: 6rem 2rem 2rem;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform var(--t-base);
    z-index: 105;
    will-change: transform;
  }
  .site-nav.open {
    transform: translateX(0);
  }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0.3rem; }
  .site-nav a { padding: 0.9rem 1rem; font-size: 1.05rem; }
  .site-nav a.btn-nav { margin-top: 1rem; text-align: center; }

  .body-no-scroll { overflow: hidden; }

  .hero-image { max-width: 360px; }
  .hero-deco { right: -10px; }
  .hero-badge { left: 0; padding: 0.8rem 1rem; }
  .hero-stats { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }

  .cards-grid-3, .values-grid { grid-template-columns: 1fr; }
  .posag-pillars { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 3rem 1.5rem; }
  .contact-form, .contact-info { padding: 2rem 1.5rem; }

  .compare th, .compare td { padding: 0.9rem 1rem; font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.6rem; }
  .logo-sub { display: none; }
  .logo-name { font-size: 1rem; }
  .hero-content h1 br { display: none; }
  .btn { padding: 0.8rem 1.4rem; font-size: 0.95rem; }
  .btn-large { padding: 0.95rem 1.8rem; font-size: 1.02rem; }
}

/* ==========================================================================
   22. Print
   ========================================================================== */
@media print {
  .site-header, .site-footer, .cookie-notice, .nav-toggle, .btn { display: none; }
  body { color: #000; background: #fff; }
}
