/*
Theme Name: BeSure
Theme URI: https://besure.pl
Author: Dawid Dudziński
Author URI: https://dawidweb.com
Description: Motyw WordPress dla Poradni Zdrowia Psychicznego BeSure.
Version: 1.0.0
Text Domain: besure
*/
/* ===========================
   BeSure - Design System & Styles
   =========================== */

/* --- CSS Variables --- */
:root {
  --brand: #3a8c8c;
  --complementary: #a33550;
  --secondary: #5c3085;
  --neutral1: #000;
  --neutral2: #fff;
  --uc1: #444151;
  --footer-bg: #4a4350;
  --warm: #fdf6f3;
  --text: #333;
  --tl: #666;
  --pink-bg: #f0dcd8;
  --green-accent: #6b9e7a;
  --R: 20px;
  --btn-R: 67px;
  --max-w: 1360px;
  --transition: 0.3s ease;
  /* Aliases used across the site */
  --font-body: 'Lato', sans-serif;
  --font-heading: 'Cormorant Garamond', serif;
  --accent: var(--complementary);
  --dark: var(--uc1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; overflow-x: hidden; max-width: 100vw; }
body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--neutral2);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.2; color: var(--uc1); }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
.section-title { text-align: center; margin-bottom: 1rem; }
.section-subtitle {
  text-align: center;
  color: var(--tl);
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}
.accent-text { color: var(--complementary); }
.brand-text { color: var(--brand); }

/* --- Layout --- */
.inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
section { padding: 80px 0; }
.sec-warm { background: var(--warm); }
.sec-dark { background: var(--uc1); color: var(--neutral2); }
.sec-dark h2, .sec-dark h3, .sec-dark h4 { color: var(--neutral2); }
.sec-pink { background: var(--pink-bg); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--btn-R);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
  gap: 8px;
  border: 2px solid transparent;
}
.btn-brand {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.btn-brand:hover { background: #2d7373; border-color: #2d7373; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(58,140,140,.4); }
.btn-complementary {
  background: var(--complementary);
  color: #fff;
  border-color: var(--complementary);
}
.btn-complementary:hover { background: #8c2d45; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(163,53,80,.35); }
.btn-secondary {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}
.btn-secondary:hover { background: #4a2670; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(92,48,133,.35); }
.btn-ghost {
  background: rgba(255,255,255,.2);
  color: #fff;
  border: 2px solid #fff;
  font-weight: 600;
  backdrop-filter: blur(4px);
  padding: 14px 32px;
  border-radius: var(--R, 12px);
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: background .3s, transform .3s;
}
.btn-ghost:hover { background: rgba(255,255,255,.35); transform: translateY(-2px); border-color: #fff; }
.btn-ghost-light{background:transparent;color:var(--complementary);border:2px solid var(--complementary);font-weight:600}
.btn-ghost-light:hover{background:var(--complementary);color:#fff}
.btn-outline {
  background: transparent;
  border: 2px solid var(--complementary);
  color: var(--complementary);
}
.btn-outline:hover { background: var(--complementary); color: var(--neutral2); transform: translateY(-2px); }
.btn-dark {
  background: var(--uc1);
  color: var(--neutral2);
}
.btn-dark:hover { background: #333040; transform: translateY(-2px); }
.btn-sm { padding: 10px 24px; font-size: 0.85rem; }
.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-full { width: 100%; }

/* --- Topbar --- */
.topbar {
  background: var(--uc1);
  padding: 8px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,.8);
  position: relative;
  z-index: 100;
}
.topbar .inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}
.topbar a { color: rgba(255,255,255,.8); text-decoration: none; }
.topbar a:hover { color: var(--brand); }
.topbar-contact { display: flex; gap: 24px; align-items: center; }
.topbar-contact a { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; }
.topbar-contact svg { width: 13px; height: 13px; flex-shrink: 0; }

/* --- Navbar --- */
.navbar {
  background: rgba(255,255,255,.98);
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  transition: box-shadow var(--transition);
  backdrop-filter: blur(10px);
}
.navbar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.navbar-logo img { height: 50px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  /* Kill WP menu <li> bullets if menu assigned */
  list-style: none;
  padding: 0;
  margin: 0;
}
/* Kill <li> wrapper bullets from wp_nav_menu */
.nav-links li {
  list-style: none;
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--uc1);
  position: relative;
  padding: 6px 0;
  text-decoration: none;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--complementary); }

/* Hide "Kontakt" from WP menu - replaced by CTA button */
.nav-links li.menu-item:last-child { display: none; }
/* Also hide by matching Kontakt link text via href */
.nav-links li.menu-item a[href*="kontakt"] { display: none; }
.nav-links li.menu-item:has(a[href*="kontakt"]) { display: none; }

/* CTA button in nav - stands out */
.nav-cta {
  margin-left: 8px !important;
  padding: 11px 28px !important;
  font-size: .88rem !important;
  font-weight: 600 !important;
  flex-shrink: 0;
  border-radius: var(--btn-R) !important;
  letter-spacing: 0.5px;
  text-transform: none;
  color: #fff !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  color: #fff !important;
  background: #2d7373 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(58,140,140,.4);
}

/* Mobile menu button */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 101;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--uc1);
  transition: all var(--transition);
  border-radius: 2px;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #2a3040;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover !important;
  background-position: center 36% !important;
  filter: none !important;
  opacity: 1 !important;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.62) 100%) !important;
  mix-blend-mode: normal !important;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  max-width: 850px;
}
.hero h1 {
  color: #fff;
  margin-bottom: .75rem;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  text-shadow: 0 2px 12px rgba(0,0,0,0.7), 0 0 40px rgba(0,0,0,0.4);
}
.hero h1 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: #7fd4d4;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7), 0 0 40px rgba(0,0,0,0.4);
}
.hero-subtitle {
  color: #fff;
  font-size: 1.35rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.9), 0 0 30px rgba(0,0,0,0.6);
  margin-bottom: 1rem;
  font-weight: 600;
  background: rgba(0,0,0,.45);
  display: inline-block;
  padding: 8px 24px;
  border-radius: 8px;
  backdrop-filter: blur(6px);
  letter-spacing: 0.3px;
  border: 1px solid rgba(255,255,255,.15);
}
.hero-microcopy {
  color: rgba(255,255,255,.95);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6), 0 0 20px rgba(0,0,0,0.3);
  letter-spacing: 0.3px;
}
.hero p {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: nowrap;
  margin-bottom: 2.5rem;
  align-items: center;
}
.hero-buttons .btn {
  padding: 14px 28px;
  font-size: .9rem;
}
.hero-buttons .btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.7);
}
.hero-buttons .btn-ghost:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-2px);
}
@media (max-width: 900px) {
  .hero-buttons { flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 320px; }
}
.hero-social {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
}
.hero-social a {
  color: rgba(255,255,255,.9);
  transition: color .3s, transform .3s;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5));
}
.hero-social a:hover {
  color: var(--brand);
  transform: scale(1.15);
}
.hero-social svg { width: 22px; height: 22px; }

/* --- Page Hero (subpages) --- */
.page-hero {
  background: var(--uc1);
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(92,48,133,.15);
}
.page-hero h1 { color: var(--neutral2); margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.1rem; max-width: 600px; margin-left: auto; margin-right: auto; word-wrap: break-word; overflow-wrap: break-word; }
.breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
  font-family: 'Lato', sans-serif;
}
.breadcrumb a { color: var(--brand); }
.breadcrumb a:hover { text-decoration: underline; }

/* --- Offer Cards --- */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media(max-width:768px) { .offer-grid { grid-template-columns: 1fr; } }
@media(max-width:480px) { .offer-grid { grid-template-columns: 1fr; } .offer-grid-3 { grid-template-columns: 1fr; } .offer-grid-5 { grid-template-columns: 1fr; } }
.offer-card {
  border-radius: var(--R);
  padding: 2.5rem 2rem;
  color: var(--neutral2);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.offer-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,.15); }
.offer-card h3 { color: #fff; margin-bottom: 0.6rem; font-size: 1.4rem; font-family: 'Cormorant Garamond', serif; }
.offer-card p { font-size: 0.9rem; opacity: .85; margin-bottom: auto; line-height: 1.6; }
.offer-card .btn { align-self: flex-start; }
.offer-card-icon { margin-bottom: 1.2rem; opacity: .7; }
.offer-card-footer { margin-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.offer-card-price { font-size: 1rem; font-weight: 700; }
.offer-card-time { font-weight: 400; opacity: .7; font-size: .85rem; }
.offer-bg-brand { background: linear-gradient(135deg, var(--brand) 0%, #2d7373 100%); }
.offer-bg-complementary { background: linear-gradient(135deg, var(--complementary) 0%, #c44060 100%); }
.offer-bg-secondary { background: linear-gradient(135deg, var(--secondary) 0%, #7840a8 100%); }
.offer-bg-dark { background: linear-gradient(135deg, var(--uc1) 0%, #5a5768 100%); }
.offer-bg-teal { background: linear-gradient(135deg, #2a6b5e 0%, #3a8b7e 100%); }
.offer-bg-wine { background: linear-gradient(135deg, #853175 0%, #a54095 100%); }
.offer-bg-red { background: linear-gradient(135deg, rgb(189,82,68) 0%, rgb(209,102,88) 100%); }
.offer-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.offer-grid-3 .offer-card {
  min-height: 220px;
  padding: 40px 32px;
  text-align: left;
  justify-content: center;
  align-items: flex-start;
}
.offer-grid-3 .offer-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
}
.offer-grid-3 .offer-card .btn {
  font-size: .95rem;
  padding: 10px 22px;
}
.offer-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.offer-grid-5 .offer-card {
  min-height: 180px;
  padding: 30px 20px;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.offer-grid-5 .offer-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* --- Steps Grid --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-video {
  border-radius: var(--R);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}
.about-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.about-text h2 { margin-bottom: 1rem; }
.about-text p { margin-bottom: 1rem; color: rgba(255,255,255,.9); font-size: .95rem; line-height: 1.75; }
.about-text .btn { margin-top: 1rem; }
.about-values {
  margin-top: 1.5rem;
  padding: 0;
}
.about-values li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text, #333);
  font-size: .93rem;
  line-height: 1.6;
}
.about-values li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}

/* --- Besure About Section (redesigned) --- */
.besure-about-section { padding: 70px 0; }
.besure-video-wrap { width: 100%; }
/* O nas - side by side: video + tekst w jednym rzędzie */
.besure-onas-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.besure-onas-row-video { position: sticky; top: 100px; }
.besure-onas-row-text strong { color: var(--uc1); font-weight: 600; }
p.onas-lead {
  font-size: 1.35rem !important;
  color: var(--uc1) !important;
  font-weight: 500;
  line-height: 1.75 !important;
}
.besure-onas-row-text p,
.besure-onas-text p {
  font-size: 1.25rem;
  line-height: 1.85;
  color: var(--tl);
  margin-bottom: 1rem;
}
/* Legacy grid references kept for compatibility */
.besure-onas-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 3rem;
  align-items: start;
}
/* O nas - side-by-side video + text */
.besure-onas-side { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.besure-onas-video { position: sticky; top: 100px; }
.besure-onas-text p { font-size: 1.05rem; line-height: 1.85; color: var(--tl); margin-bottom: 1rem; }
.besure-onas-text strong { color: var(--uc1); font-weight: 600; }
.besure-onas-bottom {
  border-top: 1px solid #e8e8e8;
  margin-top: 2.5rem;
  padding-top: 2rem;
}
@media (max-width: 900px) {
  .besure-onas-side { grid-template-columns: 1fr; }
  .besure-onas-bottom { margin-top: 2rem; padding-top: 1.5rem; }
}

.besure-onas-under {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.besure-onas-under-right {
  padding-left: 1.5rem;
  border-left: 2px solid rgba(58,140,140,.18);
}
.besure-onas-under-left strong,
.besure-onas-under-right strong { color: var(--uc1); font-weight: 600; }
.besure-onas-under-left p,
.besure-onas-under-right p {
  font-size: 1.2rem;
  line-height: 1.85;
  color: var(--tl);
  margin-bottom: 1rem;
}
.besure-onas-highlight {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem !important;
  font-style: italic;
  font-weight: 700;
  color: var(--brand) !important;
  margin: 1.5rem 0 !important;
  line-height: 1.3;
  text-align: left !important;
}
.besure-about-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
}
.besure-about-col p {
  font-family: 'Lato', sans-serif;
  font-size: .93rem;
  line-height: 1.85;
  color: var(--tl);
  margin-bottom: 1rem;
}
.besure-about-lead {
  font-weight: 500;
  color: var(--uc1) !important;
  font-size: .95rem !important;
}
.besure-about-checks {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 30px;
}
.besure-about-checks li {
  padding: .5rem 0 .5rem 30px;
  position: relative;
  font-family: 'Lato', sans-serif;
  font-size: .93rem;
  color: var(--tl);
  line-height: 1.65;
}
.besure-about-checks li span {
  position: absolute;
  left: 0;
  top: .5rem;
  color: var(--brand);
  font-weight: 700;
  font-size: 1.1rem;
}
@media (max-width: 900px) {
  .besure-about-checks { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .besure-about-checks { grid-template-columns: 1fr; gap: 12px; }
}
.besure-about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3rem;
}
.besure-about-card {
  background: var(--warm);
  border-radius: var(--R);
  padding: 2rem 1.8rem;
  text-align: center;
}
.besure-about-card svg {
  margin: 0 auto 1rem;
  display: block;
}
.besure-about-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--uc1);
  margin-bottom: .6rem;
  font-weight: 600;
}
.besure-about-card p {
  font-family: 'Lato', sans-serif;
  font-size: .93rem;
  color: var(--tl);
  line-height: 1.7;
}

/* --- Mission Cards --- */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.mission-card {
  background: var(--neutral2);
  border-radius: var(--R);
  padding: 40px 30px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.mission-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,.08); }
.mission-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: var(--pink-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.mission-card h3 { margin-bottom: 0.75rem; }
.mission-card p { color: var(--tl); font-size: 0.95rem; }

/* --- Bento Grid: Obszary pomocy --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
  grid-template-areas:
    "img1       img2       lekowe"
    "depresyjne img3       lekowe"
    "relacje    img3       kryzys"
    "zawodowy   osobisty   osobisty"
    "img4       psychiczne extra";
}
.bento-item {
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 180px;
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
}
.bento-item:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
a.bento-item { display: flex; flex-direction: column; justify-content: center; padding: 28px 24px; }
a.bento-item h3 { font-family: 'Lato', sans-serif; font-weight: 800; text-transform: uppercase; font-size: 1.2rem; margin-bottom: .6rem; letter-spacing: .02em; }
a.bento-item p { font-size: .85rem; line-height: 1.6; opacity: .9; }
.bento-card-dark { color: #fff; }
.bento-card-dark h3 { color: #fff; }
.bento-card-light { color: var(--uc1); }
.bento-card-light h3 { color: var(--uc1); }

.bento-img1 { grid-area: img1; }
.bento-img2 { grid-area: img2; }
.bento-img3 { grid-area: img3; }
.bento-img4 { grid-area: img4; }
.bento-lekowe { grid-area: lekowe; }
.bento-depresyjne { grid-area: depresyjne; }
.bento-relacje { grid-area: relacje; }
.bento-kryzys { grid-area: kryzys; }
.bento-zawodowy { grid-area: zawodowy; }
.bento-osobisty { grid-area: osobisty; }
.bento-psychiczne { grid-area: psychiczne; }
.bento-extra { grid-area: extra; }

/* --- Legacy help-card (unused, kept for compat) --- */
.help-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.help-card { display: block; background: var(--neutral2); border-radius: var(--R); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.help-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,.08); }
.help-card-img { height: 200px; background-size: cover; background-position: center; }
.help-card-body { padding: 24px; }
.help-card-body h3 { margin-bottom: 0.5rem; font-size: 1.3rem; }
.help-card-body p { color: var(--tl); font-size: 0.9rem; }

/* --- CTA Box --- */
.cta-box {
  border-radius: var(--R);
  position: relative;
  overflow: hidden;
  padding: 60px;
  text-align: center;
  background: var(--warm);
}
.cta-box h2 { color: var(--uc1); margin-bottom: 1rem; }
.cta-box p { color: var(--tl); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-box .btn { border: 2px solid var(--brand); }
.cta-box .btn-brand { border-color: var(--brand); }
.cta-box .btn-ghost { border-color: var(--brand); color: var(--brand); }

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--neutral2);
  border-radius: var(--R);
  padding: 32px;
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-3px); }
.testimonial-stars { color: #f5a623; font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { font-style: italic; color: var(--tl); margin-bottom: 1.5rem; font-size: 0.95rem; line-height: 1.7; }
.testimonial-author { font-weight: 700; color: var(--uc1); }
.testimonial-source { font-size: 0.8rem; color: var(--tl); }

/* Opinie front-page cards */
.opinie-slider { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.opinia-card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(0,0,0,.1); }
@media (max-width: 768px) { .opinie-slider { grid-template-columns: 1fr !important; } }
@media (min-width: 769px) and (max-width: 1024px) { .opinie-slider { grid-template-columns: repeat(2, 1fr) !important; } }

/* Bento pomoc grid - full layout */
.bento-pomoc {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto auto auto;
  gap: 18px;
}
.bp-img1   { grid-column: 1; grid-row: 1 / 3; }
.bp-img2   { grid-column: 2; grid-row: 1 / 3; }
.bp-card0  { grid-column: 3; grid-row: 1; }
.bp-card1  { grid-column: 3; grid-row: 2; }
.bp-card2  { grid-column: 1; grid-row: 3; }
.bp-img3   { grid-column: 2; grid-row: 3; }
.bp-card3  { grid-column: 3; grid-row: 3; }
.bp-card4  { grid-column: 1 / 3; grid-row: 4; }
.bp-card5  { grid-column: 3; grid-row: 4; }
.bp-card6  { grid-column: 1; grid-row: 5; }
.bp-card7  { grid-column: 2 / 4; grid-row: 5; }
.bento-pomoc .bp-img {
  border-radius: var(--R);
  background-size: cover;
  background-position: center;
  min-height: 220px;
}
.bento-pomoc .bp-card {
  border-radius: var(--R);
  padding: 2rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
  transition: transform .4s ease, box-shadow .4s ease, min-height .4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.bento-pomoc .bp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  min-height: auto;
  z-index: 10;
}
.bento-pomoc .bp-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: .8rem;
  color: #fff !important;
  font-style: italic;
  text-shadow: 0 1px 3px rgba(0,0,0,.3);
}
.bento-pomoc .bp-card p {
  font-family: var(--font-body);
  font-size: .85rem;
  line-height: 1.7;
  margin: 0;
  color: #fff !important;
  opacity: .92;
  text-shadow: 0 1px 2px rgba(0,0,0,.15);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all .4s ease;
}
.bento-pomoc .bp-card:hover p,
.bento-pomoc .bp-card.bp-expanded p {
  -webkit-line-clamp: unset;
  display: block;
}
.bento-pomoc .bp-card .bp-read-more {
  display: inline-block;
  margin-top: .6rem;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  opacity: .7;
  transition: opacity .3s;
}
.bento-pomoc .bp-card:hover .bp-read-more,
.bento-pomoc .bp-card.bp-expanded .bp-read-more {
  opacity: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
}
@media (max-width: 900px) {
  .bento-pomoc {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .bento-pomoc > * {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .bp-img1, .bp-img2 { min-height: 180px; }
}

/* W czym pomagamy - Tag card grid (replaces bento) */
.pomoc-tag-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 3rem; }
.pomoc-tag-card { background: #fff; border-radius: var(--R); padding: 2rem 1.8rem; text-decoration: none; color: inherit; border: 1px solid #f0ecec; transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; }
.pomoc-tag-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,.08); }
.pomoc-tag-card p { color: var(--tl); font-size: .9rem; line-height: 1.7; margin: 0; flex: 1; }
.pomoc-tag-more { font-size: .8rem; font-weight: 600; color: var(--brand); margin-top: 1rem; }
.why-tag--secondary { background: rgba(92,48,133,.10); color: var(--secondary); }
@media (max-width: 1024px) { .pomoc-tag-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pomoc-tag-grid { grid-template-columns: 1fr; } }

/* Offer tag cards (replaces gradient cards) */
.offer-tag-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.offer-tag-card { background: #fff; border-radius: var(--R); padding: 2rem 1.8rem; text-decoration: none; color: inherit; border: 1px solid #f0ecec; transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; }
.offer-tag-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,.08); }
.offer-tag-card p { color: var(--tl); font-size: .9rem; line-height: 1.7; margin: 0 0 auto; }
.offer-tag-meta { font-size: .85rem; font-weight: 600; color: var(--uc1); margin-top: 1rem; }
.offer-tag-more { font-size: .8rem; font-weight: 600; color: var(--brand); margin-top: .8rem; }
@media (max-width: 900px) { .offer-tag-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .offer-tag-grid { grid-template-columns: 1fr; } }

/* FAQ accordion */
.faq-item { border-bottom: 1px solid var(--warm); padding: 1rem 0; }
.faq-item summary { cursor: pointer; font-weight: 600; color: var(--uc1); font-size: .95rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { color: var(--complementary); font-size: 1.2rem; transition: transform .2s; flex-shrink: 0; }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-item p { margin-top: .8rem; color: var(--tl); line-height: 1.7; font-size: .9rem; }
@media (max-width: 600px) {
  .bento-pomoc {
    grid-template-columns: 1fr;
  }
}

/* --- Steps/Path --- */
.steps-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  position: relative;
  flex-wrap: wrap;
}
.steps-container::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  right: 15%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--complementary), var(--secondary));
  z-index: 0;
}
.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 180px;
  max-width: 250px;
}
.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--neutral2);
  border: 3px solid var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--complementary);
}
.step-item h4 { margin-bottom: 0.5rem; }
.step-item p { color: var(--tl); font-size: 0.9rem; }

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--neutral2);
  border-radius: var(--R);
  padding: 40px 30px;
  text-align: center;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,.08); }
.pricing-card.featured {
  border-color: var(--complementary);
  position: relative;
}
.pricing-card.featured::before {
  content: 'Najpopularniejsza';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--complementary);
  color: var(--neutral2);
  padding: 4px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pricing-label {
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  color: var(--tl);
  margin-bottom: 1rem;
}
.pricing-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--uc1);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.pricing-amount span { font-size: 1.2rem; font-weight: 400; }
.pricing-duration { color: var(--tl); font-size: 0.9rem; margin-bottom: 2rem; }
.pricing-features { margin-bottom: 2rem; text-align: left; }
.pricing-features li { padding: 8px 0; padding-left: 28px; position: relative; color: var(--text); font-size: 0.95rem; }
.pricing-features li::before { content: '✓'; position: absolute; left: 0; color: var(--green-accent); font-weight: 700; }

/* --- Pricing Table (cennik page) --- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--neutral2);
  border-radius: var(--R);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.pricing-table th {
  background: var(--uc1);
  color: var(--neutral2);
  padding: 16px 24px;
  text-align: left;
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
}
.pricing-table td {
  padding: 16px 24px;
  border-bottom: 1px solid #f0ecec;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: var(--warm); }
.pricing-table .price-cell { font-weight: 700; color: var(--complementary); font-size: 1.05rem; white-space: nowrap; }

/* --- Team Grid --- */
.team-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 30px;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid #ddd;
  color: var(--tl);
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--complementary);
  color: var(--complementary);
  background: rgba(163,53,80,.05);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}
.team-card {
  background: var(--neutral2);
  border-radius: var(--R);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
  display: flex;
  flex-direction: column;
}
.team-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,.1); }
.team-card-photo {
  height: 380px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  background: #fff !important;
}
.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.team-card-photo .avatar-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--neutral2);
}
.team-card-body { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
.team-card-body h3 { margin-bottom: 4px; font-size: 1.3rem; }
.team-card-role {
  color: var(--complementary);
  font-size: 0.9rem;
  margin-bottom: 12px;
  font-family: 'Lato', sans-serif;
}
.team-card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.tag {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  background: var(--warm);
  color: var(--uc1);
  font-family: 'Lato', sans-serif;
}
.tag-match { background: rgba(107,158,122,.15); color: var(--green-accent); }
.team-card-desc { color: var(--tl); font-size: 0.9rem; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.team-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f0ecec;
  margin-top: auto;
}
.team-card-price { font-weight: 700; color: var(--uc1); }

/* --- Therapist Profile --- */

/* Hero with photo + info */
.therapist-hero {
  background: var(--uc1);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}
.therapist-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,162,148,.08);
}
.therapist-hero .breadcrumb a,
.therapist-hero .breadcrumb span { color: rgba(255,255,255,.5); }
.therapist-hero .breadcrumb a:hover { color: var(--brand); }
.therapist-hero-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 1.5rem;
}
.therapist-hero-photo img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
}
.therapist-hero-photo .avatar-large {
  width: 100%;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  color: var(--neutral2);
  border-radius: 20px;
}
.therapist-hero-text h1 {
  color: var(--neutral2);
  font-size: 2.4rem;
  margin-bottom: 6px;
  line-height: 1.15;
}
.therapist-hero-text .profile-role {
  color: var(--brand);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  font-family: 'Lato', sans-serif;
}
.therapist-hero-text .profile-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 1.5rem; }
.therapist-hero-text .tag {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.15);
  padding: 5px 14px;
  font-size: 0.78rem;
}
.therapist-hero-text .profile-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Profile content - two columns: sidebar + text */
.profile-content {
  background: var(--neutral2);
  padding: 50px 0 60px;
}
.profile-content-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.profile-section {
  margin-bottom: 0;
  padding: 2rem 2.5rem;
  background: var(--warm);
  border-radius: var(--R);
}
.profile-section h3 {
  margin-bottom: .8rem;
  color: var(--complementary);
  font-size: 1.35rem;
}
.profile-section p,
.profile-section li {
  margin-bottom: 0.5rem;
  line-height: 1.75;
  color: var(--text);
  font-size: .95rem;
}
.profile-section ul { padding-left: 0; list-style: none; }
.profile-section ul li {
  padding: 6px 0 6px 28px;
  position: relative;
}
.profile-section ul li::before {
  content: '✓';
  position: absolute;
  left: 4px;
  color: var(--green-accent);
  font-weight: 700;
  font-size: 0.85rem;
}
.profile-quote {
  background: var(--warm);
  border-radius: var(--R);
  padding: 24px 2.5rem;
  border-left: 4px solid var(--complementary);
  font-style: italic;
  color: var(--tl);
  font-size: 1rem;
  line-height: 1.7;
}

/* Profile two-column layout */
.profile-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.profile-two-col .profile-section {
  margin-bottom: 0;
}

/* Specialization pills grid */
.specialization-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  padding: 0;
  list-style: none;
}
.specialization-grid li {
  background: var(--pink-bg);
  border-radius: 30px;
  padding: 10px 20px;
  text-align: center;
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark);
  border: 1px solid rgba(139,58,98,.1);
  transition: background .2s;
}
.specialization-grid li:hover {
  background: var(--brand);
  color: #fff;
}
.specialization-grid li::before {
  display: none !important;
}
.specialization-grid li {
  padding-left: 20px !important;
}

/* Profile method - accent border style */
.profile-method {
  border-left: 3px solid var(--accent);
  padding-left: 2rem !important;
  background: transparent !important;
}

/* Booking section */
.therapist-booking {
  background: var(--warm);
  padding: 50px 0 70px;
}
.booking-container {
  max-width: 860px;
  margin: 0 auto;
  background: var(--neutral2);
  border-radius: var(--R);
  padding: 2.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.04);
}
.booking-container .section-title {
  text-align: left;
  margin-bottom: 0.3rem;
  font-size: 1.8rem;
}
.booking-container .section-subtitle {
  text-align: left;
  margin-bottom: 1.5rem;
  font-size: .95rem;
}

/* Legacy profile grid support (keep for backward compat) */
.profile-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 50px;
  align-items: start;
}
.profile-photo {
  border-radius: var(--R);
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.profile-photo img { width: 100%; height: auto; }
.profile-info h1 { margin-bottom: 4px; }
.profile-role { color: var(--complementary); font-size: 1.1rem; margin-bottom: 1.5rem; font-family: 'Lato', sans-serif; }
.profile-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 2rem; }
.tag {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  background: var(--warm);
  color: var(--uc1);
  font-family: 'Lato', sans-serif;
}
.profile-cta { display: flex; gap: 16px; margin-bottom: 2rem; flex-wrap: wrap; }
.bookero-widget {
  margin-top: 2rem;
  border-radius: var(--R);
  overflow: hidden;
  min-height: 400px;
}

/* Responsive - therapist profile */
@media (max-width: 900px) {
  .therapist-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  .therapist-hero-photo {
    max-width: 220px;
    margin: 0 auto;
  }
  .therapist-hero-text .profile-tags { justify-content: center; }
  .therapist-hero-text .profile-cta { justify-content: center; }
  .therapist-hero-text h1 { font-size: 2rem; }
  .profile-content { padding: 30px 0 40px; }
  .profile-content-inner { padding: 0 16px; }
  .profile-section { padding: 1.5rem; }
  .profile-two-col { grid-template-columns: 1fr; }
  .booking-container { padding: 1.5rem; margin: 0 16px; }

  /* About redesigned - tablet */
  .besure-onas-row { grid-template-columns: 1fr; gap: 2rem; }
  .besure-onas-row-video { position: static; }
  .besure-onas-grid { grid-template-columns: 1fr; gap: 2rem; }
  .besure-onas-video { position: static; }
  .besure-onas-under { grid-template-columns: 1fr; gap: 1.5rem; }
  .besure-about-text { grid-template-columns: 1fr; gap: 0; }
  .besure-about-cards { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
  .therapist-hero { padding: 100px 0 36px; }
  .therapist-hero-text h1 { font-size: 1.7rem; }
  .therapist-hero-text .profile-cta { flex-direction: column; }
  .therapist-hero-text .profile-cta .btn { width: 100%; text-align: center; }
  .profile-section { padding: 1.2rem; margin-bottom: 0; }
  .specialization-grid { grid-template-columns: 1fr; }
}

/* --- Survey --- */
.survey-steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  position: sticky;
  top: 80px;
  background: var(--neutral2);
  padding: 16px 0;
  z-index: 10;
  border-bottom: 1px solid #eee;
}
.survey-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: var(--tl);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.survey-step.active { color: var(--complementary); }
.survey-step.completed { color: var(--green-accent); }
.survey-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.survey-step.active .survey-step-num { background: var(--complementary); color: var(--neutral2); border-color: var(--complementary); }
.survey-step.completed .survey-step-num { background: var(--green-accent); color: var(--neutral2); border-color: var(--green-accent); }
.survey-view { display: none; }
.survey-view.active { display: block; }
.survey-question { text-align: center; margin-bottom: 2rem; }
.survey-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.survey-option {
  border: 2px solid #e0dce0;
  border-radius: var(--R);
  padding: 20px 24px;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 14px;
}
.survey-option:hover { border-color: var(--brand); background: var(--warm); }
.survey-option.selected { border-color: var(--complementary); background: rgba(163,53,80,.05); }
.survey-radio, .survey-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #ccc;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.survey-check { border-radius: 6px; }
.survey-option.selected .survey-radio,
.survey-option.selected .survey-check {
  border-color: var(--complementary);
  background: var(--complementary);
}
.survey-option.selected .survey-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neutral2);
}
.survey-option.selected .survey-check::after {
  content: '✓';
  color: var(--neutral2);
  font-size: 0.85rem;
  font-weight: 700;
}
.survey-nav { display: flex; justify-content: center; gap: 16px; margin-top: 40px; }

/* Survey Results */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.result-card {
  background: var(--neutral2);
  border-radius: var(--R);
  padding: 30px;
  text-align: center;
  border: 2px solid #eee;
  transition: all var(--transition);
}
.result-card:hover { border-color: var(--brand); transform: translateY(-3px); }
.result-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--neutral2);
}
.result-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.match-badge {
  display: inline-block;
  background: rgba(107,158,122,.15);
  color: var(--green-accent);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-family: 'Lato', sans-serif;
  margin-bottom: 1rem;
}

/* --- Blog Cards --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  background: var(--neutral2);
  border-radius: var(--R);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,.08); }
.blog-card-img {
  height: 240px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--pink-bg);
  overflow: hidden;
  position: relative;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-card-body { padding: 24px; }
.blog-card-date { font-size: 0.8rem; color: var(--tl); margin-bottom: 8px; font-family: 'Lato', sans-serif; text-transform: uppercase; }
.blog-card-body h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.blog-card-body p { color: var(--tl); font-size: 0.9rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 1rem; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--warm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--complementary);
}
.contact-item h4 { margin-bottom: 2px; }
.contact-item p, .contact-item a { color: var(--tl); }
.contact-item a:hover { color: var(--complementary); }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--uc1);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0dce0;
  border-radius: 12px;
  background: var(--neutral2);
  transition: border-color var(--transition);
  font-size: 1rem;
  color: var(--text);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--brand);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--tl);
}
.form-checkbox input { margin-top: 3px; accent-color: var(--complementary); }

/* --- Footer --- */
.footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,.95);
  padding: 60px 0 0;
}
.footer h4 { color: #fff; margin-bottom: 1rem; font-size: 1.1rem; }
.footer a { color: rgba(255,255,255,.9); }
.footer a:hover { color: var(--brand); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo img { height: 40px; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,.95); }
.footer-links li { margin-bottom: 8px; }
.footer-links li a { font-size: 0.9rem; }
.footer-contact-item { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; font-size: 0.9rem; color: #fff; }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; color: #fff; }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 1rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--brand); color: var(--neutral2); }
.footer-social a svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,.9);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,.9); }
.footer-bottom-links a:hover { color: var(--brand); }

/* --- Emergency Banner --- */
.emergency-banner {
  background: linear-gradient(135deg, #8b1a35 0%, var(--complementary) 50%, #6d1529 100%);
  color: #fff;
  padding: 28px 24px;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.7;
  border-top: 3px solid rgba(255,255,255,.15);
}
.emergency-heading { font-weight: 800; font-size: 1.1rem; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 2px; color: #fff; }
.emergency-title { font-weight: 400; margin-bottom: 12px; font-size: .9rem; color: rgba(255,255,255,.9); }
.emergency-numbers { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 28px; max-width: 1100px; margin: 0 auto; }
.emergency-numbers span { color: rgba(255,255,255,.85); font-size: .88rem; text-align: center; flex: 0 0 auto; }
.emergency-banner a { color: #fff; text-decoration: none; font-weight: 700; white-space: nowrap; background: rgba(255,255,255,.18); padding: 2px 10px; border-radius: 6px; transition: background .3s; }
.emergency-banner a:hover { background: rgba(255,255,255,.3); }

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease forwards; }
.fade-up-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-delay-3 { animation-delay: 0.3s; opacity: 0; }
.fade-up-delay-4 { animation-delay: 0.4s; opacity: 0; }

/* IntersectionObserver reveal — defined in css-static.css (loaded after) */

/* --- Responsive --- */
@media (max-width: 1024px) {
  .inner { padding: 0 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .mission-grid { grid-template-columns: 1fr 1fr; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-photo { position: static; max-width: 400px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .steps-container::before { display: none; }
}

@media (max-width: 768px) {
  section { padding: 50px 0; }
  .inner { padding: 0 16px; }

  .menu-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--neutral2);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 20px;
    box-shadow: -5px 0 30px rgba(0,0,0,.1);
    transition: right var(--transition);
    z-index: 100;
    align-items: flex-start;
  }
  .nav-links.open { right: 0; }
  .nav-cta { margin-left: 0 !important; margin-top: 1rem; width: 100%; text-align: center; }

  .hero { min-height: 550px; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.50) 40%, rgba(0,0,0,0.68) 100%) !important;
  }
  .hero h1 { text-shadow: 0 2px 24px rgba(0,0,0,0.7); }
  .hero-subtitle { text-shadow: 0 2px 16px rgba(0,0,0,0.6); }
  .hero-microcopy { text-shadow: 0 1px 12px rgba(0,0,0,0.6); }

  .offer-grid { grid-template-columns: 1fr; }
  .offer-grid-3 { grid-template-columns: 1fr; }
  .offer-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .mission-grid { grid-template-columns: 1fr; }
  .help-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "img1       img2"
      "lekowe     lekowe"
      "depresyjne img3"
      "relacje    kryzys"
      "zawodowy   osobisty"
      "img4       psychiczne"
      "extra      extra";
  }
  .bento-item { min-height: 150px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .team-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .survey-options { grid-template-columns: 1fr; }

  .steps-container { flex-direction: column; align-items: center; }
  .cta-box { padding: 40px 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .topbar .inner { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .topbar-contact { display: none; }

  .survey-steps { gap: 16px; flex-wrap: wrap; }

  .pricing-table { font-size: 0.9rem; }
  .pricing-table th, .pricing-table td { padding: 12px 14px; }

  /* About section (legacy) */
  .about-main-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
  /* About section (redesigned) */
  .besure-about-section { padding: 50px 0; }
  .besure-onas-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .besure-onas-row-video { position: static; }
  .besure-onas-row-text { font-size: 1rem; }
  .besure-onas-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .besure-onas-video { position: static; }
  .besure-onas-text { text-align: center; }
  .besure-onas-text .btn { width: 100%; }
  .besure-about-text { grid-template-columns: 1fr; gap: 0; }
  .besure-about-cards { grid-template-columns: 1fr; gap: 16px; margin-top: 2rem; }
  .besure-about-card { padding: 1.5rem; }

  /* Bezpłatna konsultacja - video + text grid */
  .konsultacja-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
  /* Prep row - stack on mobile */
  .konsultacja-prep-row { flex-direction: column !important; text-align: center; gap: 1rem !important; }

  /* Bookero layout */
  .bookero-layout { grid-template-columns: 1fr !important; gap: 20px !important; }
  .bookero-info { position: static !important; }

/* Usługi - price card & CTA */
.uslugi-price-card {
  background: #fff;
  border-radius: var(--R);
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.06);
  text-align: center;
}
.uslugi-price-card .btn-brand {
  border: 2px solid var(--brand);
  font-weight: 600;
}
.uslugi-cta {
  background: var(--warm);
  padding: 60px 0;
  text-align: center;
}
.uslugi-cta .cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.uslugi-cta .btn {
  border-width: 2px;
}

  /* Usługi intro grid */
  .uslugi-intro-grid { grid-template-columns: 1fr !important; }

  /* Inline grids on service pages */
  [style*="grid-template-columns:repeat(3"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:repeat(2"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: repeat(3"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: repeat(2"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }

  /* Kontakt grid */
  .kontakt-grid { grid-template-columns: 1fr !important; }
  .next-steps-grid { grid-template-columns: 1fr !important; }

  /* Emergency banner on mobile */
  .emergency-banner { font-size: .82rem; text-align: center; padding: 20px 16px; line-height: 1.6; }
  .emergency-heading { font-size: .95rem; letter-spacing: 1.5px; }
  .emergency-title { font-size: .82rem; }
  .emergency-numbers { flex-direction: column; gap: 10px; }
  .emergency-numbers span { white-space: normal; font-size: .82rem; }
  .emergency-banner a { display: inline; white-space: nowrap; }

  /* Offer cards on mobile */
  .offer-card { min-height: 220px; padding: 2rem 1.5rem; }
  .offer-card h3 { font-size: 1.25rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .btn { padding: 12px 24px; font-size: 0.85rem; }
  .hero { min-height: 480px; }
  .hero-content { padding: 20px 16px; }
  .hero-proof { flex-direction: column; gap: 10px !important; }
  .hero-proof > div { width: 100%; justify-content: center; }
  .help-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr !important; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item { padding: 16px 8px; }
  .trust-number { font-size: 1.6rem; }
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "img1" "lekowe" "img2" "depresyjne"
      "img3" "relacje" "kryzys"
      "zawodowy" "osobisty"
      "img4" "psychiczne" "extra";
  }
}

/* --- Service page mobile fix --- */
@media (max-width: 600px) {
  .single-uslugi .inner { padding-left: 16px; padding-right: 16px; }
  .single-uslugi [style*="border-left:4px"] { padding: 1rem !important; }
  .single-uslugi [style*="border-left:4px"] h3 { font-size: .9rem !important; }
  .single-uslugi [style*="border-left:4px"] p { font-size: .85rem !important; }
}

/* --- Accessibility --- */
.skip-link {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
  background: var(--complementary); color: #fff; padding: 12px 24px; z-index: 99999; border-radius: 0 0 var(--R) 0;
  font-size: .9rem; font-weight: 600;
}
.skip-link:focus { left: 0; top: 0; width: auto; height: auto; overflow: visible; }
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--brand); outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* --- Dołącz do nas page --- */
.dolacz-content { padding: 60px 0 40px; }
.dolacz-block { margin-bottom: 3rem; text-align: center; }
.dolacz-block .section-title { margin-bottom: 1.2rem; }
.dolacz-lead { font-size: 1.1rem; line-height: 1.85; color: var(--text); margin-bottom: 1rem; }
.dolacz-text { font-size: 1rem; line-height: 1.75; color: var(--tl); margin-bottom: .5rem; }
.dolacz-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 1rem; }
.dolacz-card { background: var(--warm); border-radius: var(--R); padding: 2rem 2.5rem; text-align: left; }
.dolacz-card .about-values { text-align: left; }
.dolacz-card .section-title { margin-bottom: 1rem; text-align: left; }
.dolacz-card .dolacz-text { text-align: left; }
.dolacz-card .dolacz-lead { text-align: left; }

/* --- Utility --- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.hidden { display: none !important; }

/* ===========================
   Bookero - minimal color overrides only
   Let Bookero's own CSS handle layout!
   =========================== */
#bookero-plugin {
  max-width: 100% !important;
}
h3.bookero-plugin-form-heading {
  color: var(--accent) !important;
}
#bookero-plugin button.submit-button {
  background-color: var(--accent) !important;
  border-color: var(--accent) !important;
  border-radius: 30px !important;
}
#bookero-plugin button.submit-button:hover {
  background-color: var(--dark) !important;
  border-color: var(--dark) !important;
}
.switcher.is-active.is-agreement {
  background-color: var(--accent) !important;
}
.agreements-section a {
  color: var(--accent) !important;
}

/* ============================================
   FRONT PAGE V2 - Styles matching besure.pl
   ============================================ */

/* Section Header - reusable pattern */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.5rem; }
.section-header p { color: #777; font-size: 1.2rem; max-width: 650px; margin: 0 auto; }
.besure-about-section .section-header > p { color: #777 !important; }

/* Trust Bar - below hero */
.trust-bar { background: #fff; padding: 0; position: relative; z-index: 3; box-shadow: 0 4px 30px rgba(0,0,0,.08); }
.trust-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); max-width: var(--max-w); margin: 0 auto; padding: 0 16px; }
.trust-item { padding: 28px 20px; text-align: center; transition: background .3s; }
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--warm); }
.trust-number { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 700; color: var(--complementary); line-height: 1; margin-bottom: 4px; }
.trust-label { font-size: 0.85rem; color: var(--tl); font-weight: 500; }

/* Offer card improvements */
.offer-card::before { content: ''; position: absolute; top: -40px; right: -40px; width: 120px; height: 120px; border-radius: 50%; background: rgba(255,255,255,.08); transition: transform .4s ease; }
.offer-card:hover::before { transform: scale(2.5); }
.offer-card .card-arrow { align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; font-family: 'Lato', sans-serif; font-size: .85rem; text-transform: uppercase; letter-spacing: 0.5px; color: #fff; border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 2px; transition: border-color .3s; position: relative; }
.offer-card:hover .card-arrow { border-color: #fff; }

/* Clean offer cards - white cards with tag titles */
.offer-card.offer-card--clean { background: #fff !important; border: 1px solid rgba(58,140,140,.12); box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.offer-card.offer-card--clean::before { display: none; }
.offer-card.offer-card--clean:hover { box-shadow: 0 12px 35px rgba(58,140,140,.12); border-color: rgba(58,140,140,.25); }
.offer-card.offer-card--clean h3 { color: var(--td); }
.offer-card.offer-card--clean p { color: var(--tl); opacity: 1; }
.offer-tag { display: inline-block; padding: 6px 16px; border-radius: 20px; font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.2rem; background: rgba(58,140,140,.12); color: #3a8c8c; font-family: var(--font-body); }
.card-arrow.card-arrow--dark { color: #3a8c8c; border-bottom-color: rgba(58,140,140,.4); }
.offer-card:hover .card-arrow.card-arrow--dark { border-color: #3a8c8c; }

/* Bento card decorative circle */
.bento-pomoc .bp-card::after { content: ''; position: absolute; bottom: 16px; right: 20px; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; transition: background .3s; z-index: 1; }
.bento-pomoc .bp-card:hover::after { background: rgba(255,255,255,.25); }

/* Clean bento cards - white cards with tag titles */
.bp-card.bp-card--clean { background: #fff !important; border: 1px solid rgba(58,140,140,.12); box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.bp-card.bp-card--clean::after { display: none; }
.bp-card.bp-card--clean:hover { box-shadow: 0 12px 35px rgba(58,140,140,.12); border-color: rgba(58,140,140,.25); }
.bp-card.bp-card--clean h3 { color: var(--td); }
.bp-card.bp-card--clean p { color: var(--tl) !important; }
.bp-tag { display: inline-block; padding: 6px 16px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 1rem; background: rgba(58,140,140,.12); color: #3a8c8c; font-family: var(--font-body); }

/* Opinie grid (new - replaces slider) */
.opinie-section { padding: 90px 0; background: var(--warm); }
.opinie-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .opinie-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 600px) { .opinie-grid { grid-template-columns: 1fr; gap: 16px; } }
.opinia-card { background: #fff; border-radius: var(--R); padding: 2.5rem 2rem 2rem; position: relative; box-shadow: 0 6px 25px rgba(0,0,0,.06); transition: transform .3s, box-shadow .3s; }
.opinia-card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(0,0,0,.1); }
.opinia-quote { font-family: var(--font-heading); font-size: 4rem; line-height: 1; position: absolute; top: 12px; left: 20px; opacity: .3; }
.opinia-stars { display: flex; gap: 3px; margin-bottom: 1rem; font-size: .9rem; }
.opinia-text { font-family: var(--font-heading); font-size: 1.15rem; font-style: italic; color: var(--uc1); line-height: 1.7; margin-bottom: 1.2rem; }
.opinia-author { display: flex; align-items: center; gap: 10px; }
.opinia-avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-body); font-weight: 700; font-size: .85rem; }
.opinia-name { font-family: var(--font-body); font-weight: 600; color: var(--uc1); font-size: .9rem; }

/* Dlaczego BeSure - icon cards */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 3rem; }
.why-card { background: #fff; border-radius: var(--R); padding: 2.5rem 2rem; text-align: center; transition: transform .3s, box-shadow .3s; border: 1px solid #f0ecec; }
.why-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,.08); }
.why-tag { display: inline-block; padding: 5px 14px; border-radius: 20px; font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1.2rem; }
.why-tag--complementary { background: rgba(163,53,80,.10); color: var(--complementary); }
.why-tag--brand { background: rgba(58,140,140,.12); color: var(--brand); }
.why-tag--gray { background: rgba(100,100,100,.08); color: #666; }
.why-card h3 { margin-bottom: .75rem; font-size: 1.3rem; }
.why-card p { color: var(--tl); font-size: .93rem; line-height: 1.7; }

/* Steps Timeline — see css-static.css for full styles */
.steps-section { padding: 90px 0; background: #fff; }