:root {
  --white: #ffffff;
  --off-white: #faf9f7;
  --cream: #f5f0eb;
  --pearl: #ede8e0;
  --text-primary: #0f0c0a;
  --text-secondary: #4a4540;
  --text-muted: #9a9390;

  /* New brand palette */
  --fuchsia: #d6006e;
  --fuchsia-light: #f0338a;
  --fuchsia-pale: #fce8f3;
  --amaranth: #c0003e;
  --amaranth-dark: #8e0030;
  --yellow: #f5c800;
  --yellow-pale: #fffadb;
  --black: #0f0c0a;

  /* Pastel section backgrounds */
  --bg-pink: #fdf0f6;
  --bg-yellow: #fffcf0;
  --bg-lavender: #f5f0ff;
  --bg-mint: #f7f7f7;

  --border: rgba(0,0,0,0.08);
  --border-pink: rgba(214,0,110,0.15);
  --shadow-sm: 0 2px 20px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 60px rgba(0,0,0,0.10);
  --shadow-lg: 0 24px 80px rgba(0,0,0,0.14);
  --shadow-pink: 0 8px 40px rgba(214,0,110,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-optical-sizing: none;
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--fuchsia);
  color: var(--white);
  padding: 10px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 500;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.top-bar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: opacity 0.2s;
}
.top-bar-phone:hover { opacity: 0.8; }
.top-bar-phone svg { flex-shrink: 0; }
.top-bar-consult {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s;
}
.top-bar-consult:hover { background: rgba(255,255,255,0.28); }
.top-bar-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  opacity: 0.9;
}
.top-bar-dot {
  width: 7px; height: 7px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 2px solid var(--fuchsia-pale);
  transition: all 0.3s ease;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.nav-logo-main {
  font-family: 'Fraunces', serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1;
}
.nav-logo-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fuchsia); }
.nav-cta {
  background: var(--fuchsia) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: all 0.2s !important;
  box-shadow: 0 4px 16px rgba(214,0,110,0.3);
}
.nav-cta:hover { background: var(--amaranth) !important; transform: scale(1.03); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none;
  cursor: pointer; padding: 4px; z-index: 200;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-primary); border-radius: 2px;
  transition: all 0.3s ease; transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  border-bottom: 2px solid var(--fuchsia-pale);
  z-index: 99;
  padding: 20px 24px 32px;
  flex-direction: column; gap: 4px;
  opacity: 0; transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.nav-mobile-menu.open { display: flex; opacity: 1; transform: translateY(0); }
.nav-mobile-menu a {
  display: block; padding: 14px 16px;
  font-size: 16px; color: var(--text-secondary);
  text-decoration: none; border-radius: 12px;
  transition: background 0.2s, color 0.2s; font-weight: 500;
}
.nav-mobile-menu a:hover { background: var(--fuchsia-pale); color: var(--fuchsia); }
.nav-mobile-cta {
  margin-top: 12px;
  background: var(--fuchsia) !important;
  color: var(--white) !important;
  text-align: center;
  border-radius: 100px !important;
  font-weight: 700 !important;
}

/* ── HERO ── */
#hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--off-white);
  overflow: hidden;
  position: relative;
}
#hero::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(214,0,110,0.06), transparent 60%);
  pointer-events: none;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--fuchsia-pale);
  color: var(--fuchsia);
  border: 1px solid var(--border-pink);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 28px; width: fit-content;
  animation: fadeInUp 0.8s ease both;
}
h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.1s ease both;
}
h1 em { font-style: italic; color: var(--fuchsia); font-weight: 700; }
h1 span { display: block; }
.hero-sub {
  font-size: 17px; font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.65; max-width: 420px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s 0.2s ease both;
}
.hero-actions {
  display: flex; align-items: center; gap: 16px;
  animation: fadeInUp 0.8s 0.3s ease both;
}
.btn-primary {
  background: var(--fuchsia);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 15px; font-weight: 700;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-pink);
}
.btn-primary:hover {
  background: var(--amaranth);
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 16px 48px rgba(192,0,62,0.4);
}
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  color: var(--text-secondary);
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.2s;
  border: 1.5px solid var(--border);
  padding: 14px 24px; border-radius: 100px;
}
.btn-ghost:hover { color: var(--fuchsia); border-color: var(--fuchsia-pale); }

.hero-trust {
  display: flex; align-items: center; gap: 16px;
  margin-top: 48px; padding-top: 36px;
  border-top: 1px solid var(--border);
  animation: fadeInUp 0.8s 0.4s ease both;
  flex-wrap: wrap;
}
.stars { color: var(--yellow); letter-spacing: -2px; font-size: 18px; }
.trust-text strong { font-size: 20px; font-weight: 800; }
.trust-text span { font-size: 12px; color: var(--text-muted); display: block; }

/* Invisalign® provider badge */
.provider-badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--yellow-pale);
  border: 1.5px solid rgba(245,200,0,0.4);
  border-radius: 14px;
  padding: 10px 16px;
}
.provider-badge-icon {
  width: 36px; height: 36px;
  background: var(--yellow);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: var(--black);
  font-family: 'Fraunces', serif; letter-spacing: -0.04em;
}
.provider-badge-text { font-size: 11px; font-weight: 700; line-height: 1.4; color: var(--text-primary); }
.provider-badge-text span { color: var(--text-muted); font-weight: 400; display: block; font-size: 10px; }

.hero-visual {
  position: relative; overflow: hidden; background: var(--cream);
}
.hero-visual img, .hero-visual-placeholder {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.hero-visual-placeholder {
  background: linear-gradient(145deg, #f5d0e8 0%, #fce8f3 40%, #ffe4b2 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(214,0,110,0.4); font-weight: 600;
}
.hero-float-card {
  position: absolute; bottom: 40px; left: -20px;
  background: var(--white); border-radius: 20px;
  padding: 18px 28px; box-shadow: var(--shadow-md);
  animation: floatCard 4s ease-in-out infinite; z-index: 3;
  border-left: 4px solid var(--fuchsia);
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-card-label { font-size: 10px; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; font-weight: 600; }
.float-card-price { font-size: 26px; font-weight: 800; letter-spacing: -0.03em; color: var(--fuchsia); }
.float-card-price span { font-size: 13px; font-weight: 400; color: var(--text-muted); }

.hero-float-pill {
  position: absolute; top: 40px; left: -16px;
  background: var(--yellow); color: var(--black);
  border-radius: 100px; padding: 10px 22px;
  font-size: 13px; font-weight: 800;
  box-shadow: 0 4px 24px rgba(245,200,0,0.5);
  animation: floatCard 4s 1s ease-in-out infinite; z-index: 3;
}

/* Provider pill top-right on hero */
.hero-provider-pill {
  position: absolute; top: 28px; right: 28px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-radius: 14px; padding: 10px 16px;
  border: 1.5px solid rgba(245,200,0,0.5);
  z-index: 3; text-align: center;
}
.hero-provider-pill .pill-label { font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); font-weight: 600; margin-bottom: 2px; }

.hero-provider-pill .pill-placeholder {
  font-size: 13px; font-weight: 900;
  color: var(--fuchsia); letter-spacing: -0.02em;
  font-family: 'Fraunces', serif;
}

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

/* ── CONSULT STRIP ── */
.consult-strip {
  background: linear-gradient(135deg, var(--fuchsia) 0%, var(--amaranth) 100%);
  padding: 28px 80px;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.consult-strip-title {
  font-family: 'Fraunces', serif;
  font-size: 24px; font-weight: 300; color: var(--white);
  letter-spacing: -0.02em;
}
.consult-strip-title strong { font-weight: 800; }
.consult-includes {
  display: flex; gap: 20px; flex-wrap: wrap;
}
.consult-chip {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px; padding: 8px 16px;
  font-size: 13px; font-weight: 600; color: var(--white);
}
.consult-chip-check {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--white); color: var(--fuchsia);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; flex-shrink: 0; font-weight: 900;
}
.consult-strip-cta {
  background: var(--white); color: var(--fuchsia);
  padding: 14px 28px; border-radius: 100px;
  font-size: 14px; font-weight: 800;
  text-decoration: none; flex-shrink: 0;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.consult-strip-cta:hover { transform: scale(1.04); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.consult-price-tag {
  display: flex; flex-direction: column; align-items: center;
  color: var(--white);
}
.consult-price-tag .price { font-size: 36px; font-weight: 900; line-height: 1; }
.consult-price-tag .price-label { font-size: 11px; opacity: 0.7; letter-spacing: 0.06em; text-transform: uppercase; }

/* ── MARQUEE ── */
.marquee-track {
  background: var(--black); color: var(--white);
  padding: 14px 0; overflow: hidden; white-space: nowrap;
}
.marquee-inner {
  display: inline-flex;
  animation: marquee 28s linear infinite; gap: 0;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 0 36px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.marquee-item b { color: var(--yellow); }
.marquee-dot { width: 5px; height: 5px; background: var(--fuchsia); border-radius: 50%; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── COMMON SECTION ── */
section { padding: 100px 80px; }
.section-label {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fuchsia); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: ''; display: block; width: 28px; height: 2px;
  background: var(--fuchsia); border-radius: 2px;
}
h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 300; line-height: 1.1;
  letter-spacing: -0.03em; color: var(--text-primary);
  margin-bottom: 18px;
}
h2 em { font-style: italic; color: var(--fuchsia); font-weight: 700; }
h2 strong { font-weight: 800; color: var(--text-primary); }
.section-intro {
  font-size: 17px; color: var(--text-secondary);
  line-height: 1.7; font-weight: 400; max-width: 540px;
}

/* ── BENEFITS ── */
#korzysci { background: var(--bg-pink); }
.benefits-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start; margin-bottom: 56px;
}
.benefits-grid {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 1px; background: var(--border-pink);
  border: 2px solid var(--border-pink);
  margin-top:75px;
  border-radius: 24px; overflow: hidden;
  margin-bottom: 60px;
}
.benefit-item {
  background: var(--white); padding: 32px 24px;
  transition: background 0.3s; cursor: default;
}
.benefit-item:hover { background: var(--fuchsia-pale); }
.benefit-icon {
  width: 48px; height: 48px;
  background: var(--fuchsia-pale);
  border-radius: 14px; display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 22px;
  transition: transform 0.3s;
}
.benefit-item:hover .benefit-icon { transform: scale(1.12) rotate(4deg); }
.benefit-item h3 { font-size: 14px; font-weight: 800; margin-bottom: 8px; }
.benefit-item p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; font-weight: 400; }

/* Benefits image trio */
.benefits-images {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 20px; align-items: end;
}
.benefits-img {
  border-radius: 20px; overflow: hidden;
  border: 2px solid var(--border-pink);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.benefits-img:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.benefits-img:nth-child(2) { transform: translateY(-20px); }
.benefits-img:nth-child(2):hover { transform: translateY(-28px); }
.benefits-img-placeholder {
  aspect-ratio: 3/4; width: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(214,0,110,0.35); font-weight: 700;
}
.benefits-img:nth-child(1) .benefits-img-placeholder { background: linear-gradient(145deg, #fce8f3, #f5d0e8); }
.benefits-img:nth-child(2) .benefits-img-placeholder { background: linear-gradient(145deg, #fffadb, #ffe4b2); }
.benefits-img:nth-child(3) .benefits-img-placeholder { background: linear-gradient(145deg, #fce8f3, #f5d0e8); }

/* Invisalign® provider banner */
.provider-banner {
  background: linear-gradient(135deg, var(--yellow-pale) 0%, #fff8cc 100%);
  border: 2px solid rgba(245,200,0,0.4);
  border-radius: 24px; padding: 28px 40px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 32px;
  margin-top: 40px;
}
.provider-banner-left { display: flex; align-items: center; gap: 20px; }

.provider-logo-placeholder {
  width: 128px; height: 72px;
  background: var(--yellow);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 11px; font-weight: 900; color: var(--black);
  text-align: center; line-height: 1.2;
  letter-spacing: -0.02em;
}
.provider-banner-text strong { font-size: 16px; font-weight: 800; display: block; margin-bottom: 4px; }
.provider-banner-text span { font-size: 13px; color: var(--text-secondary); }
.provider-stars { color: var(--yellow); font-size: 20px; letter-spacing: -2px; }

/* ── PARALLAX ── */
#baner {
  position: relative; height: 580px;
  overflow: hidden; display: flex;
  align-items: center; justify-content: center;
}
#parallax-bg {
  position: absolute; inset: -20% 0;
  background-image: linear-gradient(135deg, #c0003e 0%, #d6006e 40%, #f5c800 100%);
  background-size: cover; background-position: center;
  will-change: transform;
}
.parallax-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5), rgba(0,0,0,0.2));
}
.parallax-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px;
}
.parallax-content h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 200; letter-spacing: -0.03em;
  color: var(--white); margin: 0;
  text-shadow: 0 4px 32px rgba(0,0,0,0.4), 0 1px 4px rgba(0,0,0,0.3);
}
.parallax-content h2 em { color: var(--yellow); font-style: italic; font-weight: 700; }
.parallax-cta {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 32px; padding: 16px 36px;
  background: var(--white); color: var(--fuchsia);
  border-radius: 100px; font-size: 15px; font-weight: 800;
  text-decoration: none; letter-spacing: -0.01em;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}
.parallax-cta:hover { transform: scale(1.05) translateY(-2px); box-shadow: 0 16px 60px rgba(0,0,0,0.3); }

/* ── PRICING ── */
#cennik { background: var(--bg-yellow); }
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-header .section-label { justify-content: center; }
.pricing-header .section-label::before { display: none; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 16px; max-width: 1500px; margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  border-radius: 28px; padding: 28px 20px;
  border: 2px solid var(--border);
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  position: relative; overflow: hidden;
}
.pricing-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--border); transition: background 0.3s;
}
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg); border-color: var(--fuchsia-pale);
}
.pricing-card:hover::before { background: var(--fuchsia); }
.pricing-card.featured {
  background: linear-gradient(145deg, #d6006e 0%, #a0004e 100%);
  color: var(--white); border-color: transparent;
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(214,0,110,0.4);
}
.pricing-card.featured::before { background: var(--yellow); height: 4px; }
.pricing-card.featured:hover { transform: scale(1.03) translateY(-10px); }

.pricing-tier { font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.pricing-card.featured .pricing-tier { color: rgba(255,255,255,0.6); }
.pricing-name { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 300; letter-spacing: -0.02em; margin-bottom: 20px; }
.pricing-amount-wrap { margin-bottom: 6px; }
.pricing-amount { font-size: 36px; font-weight: 900; letter-spacing: -0.04em; color: var(--fuchsia); }
.pricing-card.featured .pricing-amount { color: var(--yellow); }
.pricing-period { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.6); }
.pricing-duration {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--fuchsia-pale); color: var(--fuchsia);
  border-radius: 100px; padding: 4px 12px;
  font-size: 11px; font-weight: 700; margin-bottom: 20px;
}
.pricing-card.featured .pricing-duration { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.pricing-divider { height: 1px; background: var(--border); margin-bottom: 20px; }
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.15); }
.pricing-desc { font-size: 13px; line-height: 1.65; color: var(--text-secondary); font-weight: 400; margin-bottom: 24px; }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.75); }
.btn-outline {
  display: block; text-align: center; padding: 13px;
  border-radius: 100px; font-size: 13px; font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--fuchsia); color: var(--fuchsia);
  transition: all 0.3s;
}
.btn-outline:hover { background: var(--fuchsia); color: var(--white); }
.btn-outline-white {
  display: block; text-align: center; padding: 13px;
  border-radius: 100px; font-size: 13px; font-weight: 700;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5); color: var(--white);
  transition: all 0.3s;
}
.btn-outline-white:hover { background: var(--white); color: var(--fuchsia); border-color: var(--white); }

/* ── PROCESS ── */
#jak-dzialamy { background: var(--white); }
.process-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start; margin-bottom: 64px;
}
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  position: relative; gap: 0;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 28px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--fuchsia-pale) 20%, var(--fuchsia-pale) 80%, transparent);
}
.process-step { padding: 0 16px; text-align: center; position: relative; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--fuchsia-pale);
  border: 2px solid var(--border-pink);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; letter-spacing: -0.02em;
  margin: 0 auto 20px; position: relative; z-index: 1;
  transition: all 0.3s; color: var(--fuchsia);
}
.process-step:hover .step-num {
  background: var(--fuchsia); color: var(--white);
  border-color: transparent; transform: scale(1.12);
  box-shadow: var(--shadow-pink);
}
.step-img {
  width: 100%; aspect-ratio: 1;
  border-radius: 20px; overflow: hidden;
  margin-bottom: 18px;
  transition: transform 0.3s;
  border: 2px solid var(--fuchsia-pale);
}
.process-step:hover .step-img { transform: scale(1.04); }
.step-img-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(214,0,110,0.35); font-weight: 700;
}
.step-img:nth-child(1) .step-img-inner { background: linear-gradient(145deg,#fce8f3,#f5d0e8); }
.step-title { font-size: 14px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.01em; }
.step-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.6; font-weight: 400; }

/* ── STATS ── */
#wyniki {
  background: var(--black); color: var(--white);
  padding: 80px 80px; position: relative; overflow: hidden;
}
#wyniki::before {
  content: ''; position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(214,0,110,0.2), transparent 60%);
}
#wyniki::after {
  content: ''; position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,200,0,0.12), transparent 60%);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 28px; overflow: hidden; position: relative; z-index: 1;
}
.stat-item {
  padding: 44px 36px; background: rgba(255,255,255,0.02);
  transition: background 0.3s; border-right: 1px solid rgba(255,255,255,0.06);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.06); }
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 56px; font-weight: 200;
  letter-spacing: -0.04em; line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 400; line-height: 1.5; }

/* ── REVIEWS ── */
#opinie { background: var(--bg-pink); overflow: hidden; }
.reviews-header {
  margin-bottom: 48px; display: flex;
  align-items: flex-end; justify-content: space-between;
}
.reviews-wrapper {
  overflow: hidden; padding-bottom: 24px;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.reviews-track {
  display: flex; gap: 20px;
  animation: reviewsScroll 30s linear infinite;
  width: max-content;
}
@keyframes reviewsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.review-card {
  background: var(--white); border-radius: 24px;
  padding: 28px 32px; width: 340px; flex-shrink: 0;
  border: 2px solid var(--fuchsia-pale);
  transition: box-shadow 0.3s, transform 0.3s;
}
.review-card:hover {
  box-shadow: var(--shadow-pink);
  transform: translateY(-4px);
}
.review-stars { color: var(--yellow); margin-bottom: 14px; font-size: 16px; letter-spacing: -1px; }
.review-text { font-size: 14px; line-height: 1.65; color: var(--text-secondary); font-weight: 400; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--fuchsia-pale), var(--fuchsia));
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 800; }
.author-info { font-size: 12px; color: var(--text-muted); }

/* ── PATIENTS ── */
#pacjenci { overflow: hidden; background: var(--white); }
.patients-header { margin-bottom: 48px; padding: 0 80px; }
.patient-track-wrap {
  overflow: hidden; padding: 0 80px 24px;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
#pacjenciTrack {
  display: flex; gap: 20px;
  animation: patientsScroll 32s linear infinite;
  width: max-content;
}
@keyframes patientsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.patient-card {
  width: 300px; flex-shrink: 0; border-radius: 24px;
  overflow: hidden; border: 2px solid var(--fuchsia-pale);
  background: var(--white);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s;
}
.patient-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-pink); }
.patient-card img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; object-position: center top; display: block;
}
.patient-img-placeholder {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(145deg, #fce8f3, #f5d0e8);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(214,0,110,0.4); font-weight: 700;
}
.patient-info { padding: 16px 20px 20px; }
.patient-name { font-size: 14px; font-weight: 800; margin-bottom: 3px; }
.patient-plan { font-size: 12px; color: var(--text-muted); font-weight: 400; }

/* ── DOCTORS ── */
#lekarze { background: var(--bg-lavender); }
.doctors-header { margin-bottom: 56px; }
.doctors-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 32px;
}
.doctor-card {
  border-radius: 28px; overflow: hidden;
  border: 2px solid rgba(150,100,220,0.15);
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  background: var(--white);
  display: flex; flex-direction: column;
}
.doctor-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-md);
  border-color: var(--fuchsia-pale);
}
.doctor-img {
  background: linear-gradient(145deg, #fce8f3, #f5d0e8);
  display: flex; align-items: flex-end; padding: 16px;
  position: relative; overflow: hidden;
  aspect-ratio: 16/9; width: 100%;
}
.doctor-img::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(214,0,110,0.15));
}
.doctor-ph {
  font-size: 9px; color: rgba(214,0,110,0.4); letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 700; position: relative; z-index: 1;
}
.doctor-info { padding: 24px 28px; display: flex; flex-direction: column; justify-content: flex-start; flex: 1; }
.doctor-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--fuchsia-pale); color: var(--fuchsia);
  border-radius: 100px; padding: 4px 12px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 12px; width: fit-content;
}
.doctor-title { font-size: 11px; color: var(--text-muted); letter-spacing: 0.04em; margin-bottom: 4px; font-weight: 600; }
.doctor-name { font-size: 18px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.02em; }
.doctor-spec { font-size: 13px; color: var(--text-secondary); line-height: 1.5; font-weight: 400; }

/* ── BLOG ── */
#blog { background: var(--bg-mint); }
.blog-header { margin-bottom: 48px; }
.blog-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 28px;
}
.blog-card {
  border-radius: 24px; overflow: hidden;
  background: var(--white); border: 2px solid rgba(0,150,100,0.1);
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  text-decoration: none; color: inherit; display: block;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--fuchsia-pale); }
.blog-img {
  aspect-ratio: 16/7; width: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(0,150,100,0.4); font-weight: 700;
  position: relative; overflow: hidden;
}
.blog-card:nth-child(1) .blog-img { background: linear-gradient(145deg, #e8f5f1, #d0f0e4); }
.blog-card:nth-child(2) .blog-img { background: linear-gradient(145deg, #fce8f3, #f5d0e8); }
.blog-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--fuchsia); color: var(--white);
  border-radius: 100px; padding: 4px 12px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
}
.blog-body { padding: 28px 32px; }
.blog-meta { font-size: 11px; color: var(--text-muted); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; }
.blog-title { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700; line-height: 1.25; letter-spacing: -0.02em; margin-bottom: 12px; }
.blog-excerpt { font-size: 14px; color: var(--text-secondary); line-height: 1.65; font-weight: 400; margin-bottom: 20px; }
.blog-read-more { font-size: 13px; font-weight: 800; color: var(--fuchsia); display: inline-flex; align-items: center; gap: 6px; }
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 48px 80px 0;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-secondary);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.blog-pagination .page-numbers.prev,
.blog-pagination .page-numbers.next {
  border-radius: 100px;
  padding: 0 20px;
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: var(--fuchsia);
  color: var(--white);
  border-color: var(--fuchsia);
}
.blog-pagination .page-numbers.dots {
  border-color: transparent;
  pointer-events: none;
  min-width: 24px;
  padding: 0;
}

/* ── FAQ ── */
#faq { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.faq-sticky { position: sticky; top: 88px; }
.faq-list { display: flex; flex-direction: column; gap: 6px; }
.faq-item {
  background: var(--off-white); border-radius: 16px;
  overflow: hidden; border: 2px solid var(--border);
  transition: border-color 0.3s;
}
.faq-item.open { border-color: var(--fuchsia); background: var(--fuchsia-pale); }
.faq-q {
  width: 100%; background: none; border: none;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  text-align: left; cursor: pointer;
  font-size: 15px; font-weight: 700; color: var(--text-primary);
  letter-spacing: -0.01em; font-family: 'DM Sans', sans-serif; gap: 16px;
}
.faq-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--border); display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 20px; color: var(--text-muted);
  transition: all 0.3s; font-weight: 300;
}
.faq-item.open .faq-icon { background: var(--fuchsia); color: var(--white); transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 14px; color: var(--text-secondary);
  line-height: 1.7; font-weight: 400;
}
.faq-item.open .faq-a { max-height: 250px; padding: 0 24px 20px; }

/* ── LOCATION ── */
#kontakt { background: var(--bg-pink); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-items { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 48px; margin-top: 0; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 13px;
  background: var(--fuchsia-pale); border: 1.5px solid var(--border-pink);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.contact-label { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.contact-value { font-size: 15px; font-weight: 600; color: var(--text-primary); line-height: 1.7; }
.contact-value a { color: inherit; text-decoration: none; transition: color 0.2s; }
.contact-value a:hover { color: var(--fuchsia); }

/* ── CONSULT FORM ── */
#konsultacja { background: var(--black); padding: 100px 80px; }
.consult-inner {
  background: linear-gradient(135deg, #1a0a12 0%, #0f0c0a 100%);
  border-radius: 40px; padding: 72px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
  position: relative; overflow: hidden;
  border: 1px solid rgba(214,0,110,0.2);
}
.consult-inner::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(214,0,110,0.2), transparent 60%);
}
.consult-inner::after {
  content: ''; position: absolute;
  bottom: -80px; left: 20%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,200,0,0.1), transparent 60%);
}
.consult-text { position: relative; z-index: 1; }
.consult-text .section-label { color: var(--fuchsia-light); }
.consult-text .section-label::before { background: var(--fuchsia-light); }
.consult-text h2 { color: var(--white); }
.consult-text p { color: rgba(255,255,255,0.6); margin-top: 14px; font-size: 15px; line-height: 1.7; }
.consult-list { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.consult-list-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.8); font-weight: 500;
}
.consult-check {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(214,0,110,0.2); border: 1px solid rgba(214,0,110,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--fuchsia-light); font-size: 11px; flex-shrink: 0; font-weight: 900;
}
.consult-price-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--fuchsia); color: var(--white);
  border-radius: 100px; padding: 10px 22px;
  font-size: 14px; font-weight: 800; margin-top: 28px;
}
.consult-form { position: relative; z-index: 1; }
.form-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px; padding: 36px;
  backdrop-filter: blur(20px);
}
.form-title { font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 4px; letter-spacing: -0.02em; }
.form-subtitle { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 28px; }
.form-group { margin-bottom: 12px; }
.form-input {
  width: 100%; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 14px;
  padding: 14px 18px; font-size: 14px; color: var(--white);
  font-family: 'DM Sans', sans-serif; outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-input::placeholder { color: rgba(255,255,255,0.3); }
.form-input:focus { border-color: var(--fuchsia-light); background: rgba(255,255,255,0.1); }
.form-submit {
  width: 100%; background: var(--fuchsia); color: var(--white);
  border: none; border-radius: 14px; padding: 16px;
  font-size: 15px; font-weight: 800; cursor: pointer;
  font-family: 'DM Sans', sans-serif; letter-spacing: -0.01em;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1); margin-top: 8px;
  box-shadow: 0 4px 24px rgba(214,0,110,0.4);
}
.form-submit:hover { background: var(--amaranth); transform: scale(1.02) translateY(-1px); box-shadow: 0 8px 40px rgba(214,0,110,0.5); }
.form-note { font-size: 11px; color: rgba(255,255,255,0.25); text-align: center; margin-top: 14px; line-height: 1.6; }

/* ── FOOTER ── */
footer {
  background: #f2f2f2; padding: 48px 80px;
  border-top: 1px solid #e0e0e0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.footer-logo { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 700; color: var(--fuchsia); text-decoration: none; }
.footer-links { display: flex; gap: 28px; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--fuchsia); }
.footer-note { font-size: 12px; color: var(--text-muted); }

/* ── CTA PULSE ANIMATION ── */
@keyframes btnGlow {
  0%, 100% { box-shadow: 0 8px 40px rgba(214,0,110,0.28); }
  50% { box-shadow: 0 8px 64px rgba(214,0,110,0.65), 0 0 0 8px rgba(214,0,110,0.13); }
}
.btn-primary { animation: btnGlow 2.4s ease-in-out infinite; }
.btn-primary:hover { animation: none; }
.consult-strip-cta { animation: btnGlow 2.4s 0.4s ease-in-out infinite; }
.consult-strip-cta:hover { animation: none; }
.nav-cta { animation: btnGlow 2.4s 0.8s ease-in-out infinite !important; }
.nav-cta:hover { animation: none !important; }

/* ── PRICING INSTALLMENTS ── */
.pricing-installment { font-size: 44px; font-weight: 900; letter-spacing: -0.04em; color: var(--fuchsia); line-height: 1; }
.pricing-installment-sub { font-size: 17px; font-weight: 500; color: var(--text-muted); }
.pricing-installment-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin: 4px 0 10px; }
.pricing-full-price { font-size: 13px; color: var(--text-muted); font-weight: 400; margin-bottom: 8px; }
.pricing-card.featured .pricing-installment { color: var(--yellow); }
.pricing-card.featured .pricing-installment-sub { color: rgba(255,255,255,0.5); }
.pricing-card.featured .pricing-installment-label { color: rgba(255,255,255,0.5); }
.pricing-card.featured .pricing-full-price { color: rgba(255,255,255,0.45); }

/* ── MODAL ── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: linear-gradient(135deg, #1a0a12 0%, #0f0c0a 100%);
  border: 1px solid rgba(214,0,110,0.25);
  border-radius: 28px; padding: 44px 40px;
  max-width: 480px; width: 100%; position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  animation: modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.08); border: none;
  color: rgba(255,255,255,0.7); width: 34px; height: 34px;
  border-radius: 50%; cursor: pointer; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1; transition: background 0.2s; font-family: sans-serif;
}
.modal-close:hover { background: rgba(255,255,255,0.18); color: #fff; }
@media (max-width: 768px) {
  .modal-box { padding: 36px 24px; }
}

/* ── ADDITIONAL PRICES ── */
.additional-prices-table {
  max-width: 680px; margin: 28px auto 0;
  border: 2px solid var(--border); border-radius: 20px; overflow: hidden;
}
.additional-price-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 24px; border-bottom: 1px solid var(--border);
  background: var(--white);
}
.additional-price-row:last-child { border-bottom: none; }
.additional-price-row:nth-child(even) { background: var(--off-white); }
.additional-price-name { font-size: 14px; font-weight: 500; color: var(--text-primary); text-align: left; }
.additional-price-value { font-size: 14px; font-weight: 700; color: var(--fuchsia); text-align: right; white-space: nowrap; padding-left: 24px; }

/* ── EKSPANDER WIDE CARD ── */
.pricing-card-wide {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 32px !important;
  background: linear-gradient(135deg, var(--fuchsia-pale) 0%, #fff 100%) !important;
  border-color: var(--border-pink) !important;
}
.pricing-card-wide::before { background: var(--fuchsia) !important; }
.pricing-card-wide-left { flex: 1; min-width: 0; }
.pricing-card-wide-meta { display: flex; align-items: center; gap: 16px; }
.pricing-card-wide-price { text-align: center; }
@media (max-width: 768px) {
  .pricing-card-wide { flex-direction: column; align-items: flex-start; gap: 14px; padding: 22px 20px !important; }
  .pricing-card-wide-price { text-align: left; }
}

/* ── BOTTOM FORM — light gradient (spójny z modalem) ── */
.form-card {
  background: linear-gradient(145deg, var(--fuchsia) 0%, #f0a8cc 45%, #fff8fb 80%, #fff 100%) !important;
  border: none !important;
  box-shadow: 0 8px 40px rgba(214,0,110,0.2);
}
.form-card .form-title { color: var(--black) !important; }
.form-card .form-subtitle { color: rgba(0,0,0,0.55) !important; }
.form-card .form-input {
  background: rgba(255,255,255,0.88) !important;
  border-color: rgba(214,0,110,0.22) !important;
  color: var(--black) !important;
}
.form-card .form-input::placeholder { color: rgba(0,0,0,0.38) !important; }
.form-card .form-input:focus { background: #fff !important; border-color: var(--fuchsia) !important; }
.form-card .form-note { color: rgba(0,0,0,0.4) !important; }

/* ── BRAND STRIP ── */
.brand-strip {
  background: var(--white);
  border-bottom: 2px solid var(--pearl);
  text-align: center;
  padding: 10px 24px;
}
.brand-strip-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(19px, 3vw, 43px);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .brand-strip-text { font-size: clamp(13px, 4vw, 23px); white-space: normal; line-height: 1.2; }
}

/* ── PRICING FIRST PAYMENT ── */
.pricing-first-payment {
  font-size: 12px; font-weight: 700;
  color: var(--text-secondary); margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.pricing-card.featured .pricing-first-payment { color: rgba(255,255,255,0.65); }

/* ── MODAL LIGHT THEME ── */
.modal-box {
  background: linear-gradient(145deg, var(--fuchsia) 0%, #f0a8cc 45%, #fff8fb 80%, #fff 100%) !important;
  border: none !important;
  box-shadow: 0 32px 80px rgba(214,0,110,0.3) !important;
}
.modal-box .form-title { color: var(--black) !important; }
.modal-box .form-subtitle { color: rgba(0,0,0,0.55) !important; }
.modal-box .form-input {
  background: rgba(255,255,255,0.88) !important;
  border-color: rgba(214,0,110,0.22) !important;
  color: var(--black) !important;
}
.modal-box .form-input::placeholder { color: rgba(0,0,0,0.38) !important; }
.modal-box .form-input:focus { background: #fff !important; border-color: var(--fuchsia) !important; }
.modal-box .form-note { color: rgba(0,0,0,0.38) !important; }
.modal-box .modal-close { background: rgba(0,0,0,0.08) !important; color: rgba(0,0,0,0.5) !important; }
.modal-box .modal-close:hover { background: rgba(0,0,0,0.15) !important; color: var(--black) !important; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ════════════════════
   RESPONSIVE ≤1024px
════════════════════ */
@media (max-width: 1024px) {
  .top-bar { padding: 10px 24px; }
  nav { padding: 0 24px; }
  #hero { grid-template-columns: 1fr; }
  .hero-visual { height: 60vw; max-height: 440px; order: -1; }
  .hero-content { padding: 48px 24px 48px; }
  .consult-strip { padding: 28px 32px; flex-wrap: wrap; gap: 20px; }
  section { padding: 72px 32px; }
  #konsultacja { padding: 72px 32px; }
  .benefits-header { grid-template-columns: 1fr; gap: 24px; }
  .benefits-grid { grid-template-columns: repeat(3,1fr); }
  .benefits-images { grid-template-columns: repeat(3,1fr); }
  .pricing-grid { grid-template-columns: repeat(3,1fr); }
  .pricing-card.featured { transform: none; }
  .process-header { grid-template-columns: 1fr; gap: 24px; }
  .process-steps { grid-template-columns: repeat(2,1fr); gap: 28px; }
  .process-steps::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .doctors-grid { grid-template-columns: 1fr; max-width: 480px; }
  .doctor-card { grid-template-columns: 140px 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-sticky { position: static; }
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .consult-inner { grid-template-columns: 1fr; gap: 40px; padding: 44px; }
  footer { padding: 40px 32px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ════════════════════
   RESPONSIVE ≤768px
════════════════════ */
@media (max-width: 768px) {
  .top-bar { padding: 8px 16px; font-size: 12px; justify-content: center; }
  .top-bar-left { display: none; }
  .top-bar-badge { display: none; }
  nav { padding: 0 16px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  #hero { grid-template-columns: 1fr; padding-top: 0; }
  .hero-visual { height: 65vw; max-height: 340px; order: -1; }
  .hero-content { padding: 32px 20px; }
  h1 { font-size: clamp(34px, 9vw, 52px); }
  .hero-sub { font-size: 15px; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-primary { padding: 14px 28px; font-size: 14px; width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 16px; margin-top: 28px; padding-top: 24px; }
  .consult-strip { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
  .consult-includes { flex-wrap: wrap; gap: 10px; }
  section { padding: 60px 20px; }
  #wyniki { padding: 60px 20px; }
  #konsultacja { padding: 60px 20px; }
  #pacjenci { padding: 60px 0; }
  .patients-header { padding: 0 20px; }
  .patient-track-wrap { padding: 0 20px 20px; }
  h2 { font-size: clamp(28px, 8vw, 40px); }
  .benefits-header { gap: 16px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid .benefit-item:last-child { grid-column: span 2; }
  .benefit-item { min-width: 0; padding: 22px 16px; }
  .benefit-item h3 { font-size: 13px; }
  .benefit-item p { font-size: 12px; overflow-wrap: break-word; }
  .benefits-images { grid-template-columns: 1fr 1fr; }
  .benefits-img:nth-child(2) { transform: none; grid-row: 1; }
  .benefits-img:last-child { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
  .pricing-card.featured { transform: none; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 28px 20px; }
  .stat-num { font-size: 40px; }
  .reviews-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .review-card { width: 280px; padding: 22px 24px; }
  .patient-card { width: 240px; }
  .doctors-grid { grid-template-columns: 1fr; }
  .doctor-card { grid-template-columns: 1fr; }
  .doctor-img { min-height: 200px; }
  .faq-sticky .btn-primary { display: none; }
  .faq-q { font-size: 14px; padding: 16px 18px; }
  .contact-items { grid-template-columns: 1fr; gap: 28px; }
  .consult-inner { padding: 28px 20px; border-radius: 24px; }
  .form-card { padding: 24px 18px; }
  footer { padding: 36px 20px; }
  .provider-banner { flex-direction: column; gap: 16px; padding: 24px 20px; }
  .provider-banner-left { flex-direction: column; align-items: flex-start; }
  .provider-banner-left img { width: 160px; }
  #baner { height: 380px; }
}

@media (max-width: 420px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-grid .benefit-item:last-child { grid-column: span 1; }
  .benefit-item { padding: 24px 20px; }
  .stats-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}

/* ── IMAGE OVERLAYS — działają po odkomentowaniu img src ── */

/* Hero */
.hero-visual { position: relative; }
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top; display: block;
}
.hero-visual::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(
    160deg,
    rgba(214,0,110,0.10) 0%,
    rgba(245,200,0,0.06) 50%,
    rgba(0,0,0,0.18) 100%
  );
}

/* Benefits images */
.benefits-img { position: relative; }
.benefits-img img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; display: block;
}
.benefits-img::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  border-radius: 18px;
  background: linear-gradient(
    to bottom,
    rgba(214,0,110,0.06) 0%,
    rgba(0,0,0,0.22) 100%
  );
}

/* Process steps */
.step-img { position: relative; }
.step-img img {
  width: 100%; aspect-ratio: 1;
  object-fit: cover; display: block; border-radius: 18px;
}
.step-img::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(214,0,110,0.08) 0%,
    rgba(245,200,0,0.05) 50%,
    rgba(0,0,0,0.15) 100%
  );
}

/* Doctor images */
.doctor-img { position: relative; overflow: hidden; }
.doctor-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top; display: block;
}
.doctor-img::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(214,0,110,0.04) 0%,
    transparent 40%,
    rgba(192,0,62,0.20) 100%
  );
}

/* Blog images */
.blog-img { position: relative; overflow: hidden; }
.blog-img img {
  width: 100%; aspect-ratio: 16/7;
  object-fit: cover; display: block;
}
.blog-img::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.04) 0%,
    rgba(214,0,110,0.10) 60%,
    rgba(0,0,0,0.30) 100%
  );
}

/* Patient cards */
.patient-card { position: relative; }
.patient-card img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; object-position: center top; display: block;
}
.patient-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60%; pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(214,0,110,0.06) 0%,
    transparent 100%
  );
}

/* Parallax bg */
#parallax-bg {
  background-size: cover;
  background-position: center;
}
#parallax-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(214,0,110,0.15) 0%,
    transparent 50%,
    rgba(245,200,0,0.08) 100%
  );
  pointer-events: none;
}

/* ── ARTICLE / SINGLE POST ── */
.article-hero-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.article-hero {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  display: block;
}
.article-hero-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.48) 45%,
    transparent 100%
  );
  padding: 80px 48px 36px;
}
.article-hero-caption-inner {
  max-width: 860px;
  margin: 0 auto;
}
.article-hero-wrap .article-meta {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 14px;
}
.article-hero-wrap .article-meta a {
  color: rgba(255, 255, 255, 0.9);
}
.article-hero-wrap .article-meta a:hover {
  color: #fff;
}
.article-hero-wrap .article-h1 {
  color: #fff;
  margin-bottom: 0;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}
.article-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.article-content--no-hero {
  padding-top: 60px;
  padding-bottom: 0;
}
.article-content--no-hero .article-h1 {
  margin-bottom: 40px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.article-meta a {
  color: var(--fuchsia);
  text-decoration: none;
}
.article-meta a:hover { text-decoration: underline; }
.article-h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .article-hero-caption {
    padding: 60px 24px 28px;
  }
  .article-hero-wrap .article-meta {
    font-size: 11px;
    gap: 10px;
  }
}

/* ── ARCHIVE ── */
.archive-header {
  padding: 80px 80px 48px;
  background: var(--bg-mint);
  border-bottom: 1px solid var(--border);
}
.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  padding: 60px 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.archive-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 80px 80px;
}
.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-secondary);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.archive-pagination .page-numbers.prev,
.archive-pagination .page-numbers.next {
  border-radius: 100px;
  padding: 0 20px;
  letter-spacing: 0.01em;
}
.archive-pagination .page-numbers:hover {
  background: var(--fuchsia);
  color: var(--white);
  border-color: var(--fuchsia);
}
.archive-pagination .page-numbers.current {
  background: var(--fuchsia);
  color: var(--white);
  border-color: var(--fuchsia);
}
.archive-pagination .page-numbers.dots {
  border-color: transparent;
  pointer-events: none;
  min-width: 24px;
  padding: 0;
}
@media (max-width: 1024px) {
  .archive-header { padding: 60px 32px 40px; }
  .archive-grid { padding: 40px 32px; }
  .archive-pagination { padding: 0 32px 60px; }
}
@media (max-width: 768px) {
  .archive-header { padding: 40px 20px 32px; }
  .archive-grid { grid-template-columns: 1fr; padding: 32px 20px; }
  .archive-pagination { padding: 0 20px 48px; }
}
