/*
 * warm-base.css
 * Main stylesheet for the mindconcept-warm WordPress theme
 * Production build — last updated 2026-04-02
 *
 * Table of Contents
 * ------------------
 *  1. Design Tokens
 *  2. Reset & Base
 *  3. Typography
 *  4. Layout
 *  5. Header
 *  6. Buttons
 *  7. Cards
 *  8. Hero
 *  9. Services
 * 10. Team
 * 11. Pricing
 * 12. Process
 * 13. FAQ
 * 14. Trust / Quote
 * 15. Blog
 * 16. Location
 * 17. CTA Section
 * 18. Footer
 * 19. Decorative Elements
 * 20. Scroll Animations
 * 21. Responsive
 * 22. WordPress Specifics
 * 23. Utilities
 * 24. Print
 */

/* ===================================================================
   1. DESIGN TOKENS
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Palette */
  --sage:        #3d6b4f;
  --sage-light:  #5a8a6c;
  --sage-dark:   #2d5340;
  --sage-darker: #1e3a2d;
  --cream:       #faf7f2;
  --warm-white:  #fffdf9;
  --gold:        #c4956a;
  --gold-light:  #d4a87e;
  --gold-pale:   #f0dcc8;

  /* Text */
  --text-dark:  #2c3e34;
  --text-body:  #4a5d50;
  --text-light: #7a8d7f;

  /* Shadows */
  --shadow-soft:  0 4px 30px rgba(61, 107, 79, .08);
  --shadow-warm:  0 8px 40px rgba(196, 149, 106, .12);
  --shadow-hover: 0 12px 50px rgba(61, 107, 79, .14);

  /* Radii */
  --radius-sm:   12px;
  --radius-md:   20px;
  --radius-lg:   40px;
  --radius-pill: 999px;

  /* Motion */
  --transition: .35s ease;

  /* Layout */
  --max-width: 1200px;
}

/* ===================================================================
   2. RESET & BASE
   =================================================================== */

/* Body scroll lock when mobile menu open */
body.mc-no-scroll {
  overflow: hidden !important;
  height: 100vh !important;
}

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

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

body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

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

ul, ol {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

::selection {
  background: var(--sage);
  color: #fff;
}

/* ===================================================================
   3. TYPOGRAPHY
   =================================================================== */

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
}

h3 {
  font-size: 1.15rem;
  font-weight: 600;
}

h4 {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

p {
  font-weight: 400;
  line-height: 1.7;
}

.mc-section-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ===================================================================
   4. LAYOUT
   =================================================================== */

.mc-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.mc-section {
  padding: 100px 0;
  position: relative;
}

.mc-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.mc-section-header h2 {
  margin-bottom: 16px;
}

.mc-section-header p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-light);
}

/* ===================================================================
   5. HEADER
   High-contrast design — cream/white bg with dark sage text.
   Client requirement: maximum readability, no transparency issues.
   =================================================================== */

.mc-header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.98);
  backdrop-filter: blur(8px);
  padding: 12px 0;
  transition: all .3s ease;
  border-bottom: 1px solid rgba(61,107,79,.06);
}

.mc-header.mc-header--scrolled {
  top: 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  padding: 10px 0;
}

.mc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--max-width, 1200px);
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.mc-logo {
  flex-shrink: 0;
  line-height: 0;
}

.mc-logo a {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.mc-logo-img,
.mc-logo img {
  height: 40px !important;
  width: auto !important;
  max-height: 40px !important;
  max-width: 160px !important;
  object-fit: contain;
}

/* Nav */
.mc-nav {
  flex: 1;
  min-width: 0;
}

.mc-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Offset dla contentu pod fixed header + topbar */
.mc-main {
  padding-top: 100px;
}

.mc-header--scrolled {
  background: rgba(250, 247, 242, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  padding: 10px 0;
}

.mc-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
/* Logo — każdy możliwy selektor */
.mc-logo img,
.mc-logo-img,
.mc-logo .custom-logo,
.mc-header img.custom-logo,
.mc-header .custom-logo-link img,
.mc-header .mc-logo img,
img.custom-logo {
  height: 44px !important;
  width: auto !important;
  max-width: 180px !important;
  max-height: 44px !important;
  object-fit: contain !important;
  transition: height var(--transition);
}

.mc-header--scrolled img.custom-logo,
.mc-header--scrolled .mc-logo img {
  height: 36px !important;
  max-height: 36px !important;
}

.mc-logo,
.mc-logo .custom-logo-link,
.mc-logo span,
.mc-logo a {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}

/* Desktop navigation */
.mc-nav-item > a {
  display: block;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: background var(--transition), color var(--transition);
}

.mc-nav-item > a:hover,
.mc-nav-item > a:focus-visible {
  background: rgba(61, 107, 79, 0.08);
  color: var(--sage);
}

/* Header CTA */
.mc-header-cta {
  display: inline-flex;
  align-items: center;
  background: var(--sage);
  color: var(--warm-white);
  border-radius: var(--radius-pill);
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--transition), transform var(--transition);
}

.mc-header-cta:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
}

/* Inline mobile CTA — between logo and hamburger; hidden on desktop */
.mc-header-cta-inline {
  display: none;
}

/* Hamburger — hidden on desktop */
/* Mobile CTA — ukryty na desktop, widoczny tylko w otwartym mobile menu */
.mc-mobile-cta {
  display: none !important;
}

.mc-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
}

.mc-hamburger:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(61,107,79,.15);
}

.mc-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mega dropdown */
.mc-mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 36px;
  min-width: min(720px, 90vw);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  pointer-events: none;
}

.mc-has-dropdown {
  position: relative;
}

.mc-has-dropdown:hover .mc-mega-dropdown,
.mc-has-dropdown:focus-within .mc-mega-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mc-mega-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mc-mega-dropdown a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: all var(--transition);
}

.mc-mega-dropdown a:hover {
  background: rgba(61, 107, 79, 0.06);
}

/* ===================================================================
   Mega menu — układ KOLUMNOWY (opt-in)
   Włączany klasą CSS `mc-mega--cols` na pozycji menu najwyższego
   poziomu (np. "Oferta"). Struktura menu w WP → Wygląd → Menu:

     Oferta                (pole "Klasy CSS": mc-mega--cols)
       Dla dorosłych       (nagłówek kolumny — MUSI mieć podstrony)
         Terapia dla dorosłych
         Diagnoza ADHD (DIVA)
         ...
       Dla dzieci
         ...
       Dla firm
         ...

   Sekcje (Dla dorosłych / dzieci / firm) to pozycje 2. poziomu
   z zagnieżdżonymi podstronami (3. poziom). Kolumny układają się
   automatycznie. Dropdowny BEZ tej klasy działają jak dotąd.
   =================================================================== */

/* Szerszy panel, żeby zmieścić kolumny + sidebar CTA */
.mc-mega--cols > .mc-mega-dropdown {
  grid-template-columns: 1fr 280px;
  min-width: min(960px, 95vw);
}

/* Lista 2. poziomu staje się siatką kolumn-sekcji */
.mc-mega--cols .mc-dropdown-level-0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px 28px;
  align-content: start;
}

.mc-mega--cols .mc-dropdown-level-0 > li {
  min-width: 0;
}

/* Nagłówek kolumny (np. "Dla dorosłych") — styl jak .mc-mega-col-title.
   Działa jako etykieta; jeśli ustawisz realny URL, pozostaje klikalny. */
.mc-mega--cols .mc-dropdown-level-0 > li.menu-item-has-children > a {
  padding: 2px 16px 8px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  border-radius: 0;
  cursor: default;
}

.mc-mega--cols .mc-dropdown-level-0 > li.menu-item-has-children > a:hover {
  background: transparent;
}

/* Linki podstron wewnątrz kolumny */
.mc-mega--cols .mc-dropdown-level-1 a {
  padding: 8px 16px;
  font-size: .9rem;
  font-weight: 500;
}

/* ===================================================================
   5a. SPECIALIZATIONS GRID (template-parts/specializations.php)
   =================================================================== */

.mc-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.mc-spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(61, 107, 79, .06);
  transition: all var(--transition);
  font-weight: 500;
  color: var(--text-dark);
  font-size: .9rem;
}

.mc-spec-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(196, 149, 106, .1);
  transform: translateY(-2px);
}

.mc-spec-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mc-spec-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1024px) {
  .mc-spec-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .mc-spec-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .mc-spec-grid { grid-template-columns: 1fr; }
}

/* For-whom card lists */
.mc-feature-card ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.mc-feature-card ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.mc-feature-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ===================================================================
   5b. TOP BAR (status otwarte/zamknięte + kontakt)
   =================================================================== */

.mc-topbar {
  background: var(--sage-dark);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  line-height: 1;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  height: 36px;
  display: flex;
  align-items: center;
}

.mc-topbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mc-topbar-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

/* Pulsing dot */
.mc-pulse-dot {
  position: relative;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

.mc-pulse-dot-core {
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: #4ade80;
}

.mc-pulse-dot-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #4ade80;
  animation: mcPulse 2s cubic-bezier(0,0,.2,1) infinite;
}

@keyframes mcPulse {
  0% { transform: scale(1); opacity: .75; }
  75%, 100% { transform: scale(2.2); opacity: 0; }
}

/* Status zamknięte */
.mc-topbar.mc-closed .mc-pulse-dot-core,
.mc-topbar.mc-closed .mc-pulse-dot-ping {
  background: var(--gold);
}

.mc-topbar.mc-closed .mc-pulse-dot-ping {
  animation: none;
}

/* Links */
.mc-topbar-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mc-topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
  white-space: nowrap;
}

.mc-topbar-link:hover {
  color: #fff;
}

.mc-topbar-link svg {
  flex-shrink: 0;
  opacity: .7;
}

/* Adjust header position for top bar */
/* Duplikat usunięty — reguły przeniesione do głównej definicji .mc-header */

@media (max-width: 768px) {
  .mc-topbar-inner {
    flex-direction: column;
    gap: 6px;
    padding: 6px 18px;
    text-align: center;
  }
  .mc-topbar-links {
    gap: 12px;
    font-size: .75rem;
  }
  .mc-topbar-link span.mc-topbar-addr-full {
    display: none;
  }
}

@media (max-width: 480px) {
  .mc-topbar-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ===================================================================
   6. BUTTONS
   =================================================================== */

.mc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition),
              box-shadow var(--transition), border-color var(--transition);
}

.mc-btn-primary {
  background: var(--sage);
  color: var(--warm-white);
  box-shadow: var(--shadow-soft);
}

.mc-btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.mc-btn-secondary {
  background: var(--warm-white);
  color: var(--sage);
  border: 2px solid rgba(61, 107, 79, 0.15);
}

.mc-btn-secondary:hover {
  border-color: var(--sage);
}

/* Wariant secondary na ciemnym tle (CTA dark, hero) */
.mc-page-cta-dark .mc-btn-secondary,
.mc-page-hero .mc-btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.mc-page-cta-dark .mc-btn-secondary:hover,
.mc-page-hero .mc-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.mc-btn-gold {
  background: var(--gold);
  color: var(--warm-white);
  box-shadow: var(--shadow-warm);
}

.mc-btn-gold:hover {
  background: #b5845c;
  transform: translateY(-2px);
}

.mc-btn-outline {
  background: transparent;
  color: var(--sage);
  border: 2px solid var(--sage);
}

.mc-btn-outline:hover {
  background: var(--sage);
  color: var(--warm-white);
}

/* ===================================================================
   7. CARDS
   =================================================================== */

.mc-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(61, 107, 79, 0.06);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition),
              border-color var(--transition);
}

.mc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(61, 107, 79, 0.12);
}

/* Feature cards (usługi, korzyści, dla-kogo) */
.mc-feature-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(61, 107, 79, 0.06);
  padding: 36px 28px;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
}

.mc-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(61, 107, 79, 0.12);
}

.mc-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50% 45% 55% 48%;
  background: linear-gradient(135deg, var(--sage), var(--sage-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.mc-feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mc-feature-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.mc-feature-card p {
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.7;
}

.mc-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* Globalne ograniczenie SVG w sekcjach — zabezpieczenie */
.mc-section svg,
.mc-page-section svg {
  max-width: 100%;
  overflow: visible;
}

/* ===================================================================
   8. HERO
   =================================================================== */

.mc-hero {
  position: relative;
  min-height: max(100vh, 600px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.mc-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.mc-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    135deg,
    rgba(250, 247, 242, 0.92) 0%,
    rgba(61, 107, 79, 0.05) 100%
  );
}

.mc-hero-content {
  max-width: 680px;
  padding: 140px 48px 80px;
  position: relative;
  z-index: 1;
  background: rgba(250, 247, 242, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
}

.mc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: rgba(61, 107, 79, 0.08);
  color: var(--sage);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.mc-hero h1 {
  margin-bottom: 20px;
}

.mc-hero h1 span {
  color: var(--sage);
}

.mc-hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 520px;
}

.mc-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===================================================================
   9. SERVICES
   =================================================================== */

.mc-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mc-service-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(61, 107, 79, 0.06);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition),
              border-color var(--transition);
}

.mc-service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.mc-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(61, 107, 79, 0.12);
}

.mc-service-card:hover::after {
  transform: scaleX(1);
}

.mc-service-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(61, 107, 79, 0.08), rgba(61, 107, 79, 0.14));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--sage);
  margin-bottom: 20px;
}

.mc-service-card h3 {
  margin-bottom: 10px;
}

.mc-service-card p {
  color: var(--text-light);
  font-size: 0.92rem;
}

.mc-service-leaf {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 80px;
  height: 80px;
  opacity: 0.06;
  pointer-events: none;
}

/* ===================================================================
   10. TEAM
   =================================================================== */

.mc-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

.mc-team-card {
  text-align: center;
}

.mc-team-photo {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  border-radius: 50% 45% 55% 48% / 48% 55% 45% 52%;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: border-radius var(--transition), box-shadow var(--transition);
}

.mc-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc-team-photo:hover {
  border-radius: 45% 55% 48% 52% / 52% 48% 55% 45%;
  box-shadow: 0 8px 40px rgba(196, 149, 106, 0.18);
}

.mc-team-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.mc-team-role {
  font-size: 0.88rem;
  color: var(--gold);
  font-weight: 500;
}

/* ===================================================================
   11. PRICING
   =================================================================== */

.mc-pricing {
  max-width: 720px;
  margin: 0 auto;
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(61, 107, 79, 0.06);
  overflow: hidden;
}

.mc-pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(61, 107, 79, 0.06);
  transition: background var(--transition);
}

.mc-pricing-row:last-child {
  border-bottom: none;
}

.mc-pricing-row:hover {
  background: rgba(61, 107, 79, 0.02);
}

.mc-pricing-service {
  font-weight: 500;
  color: var(--text-dark);
}

.mc-pricing-value {
  font-weight: 600;
  color: var(--sage);
}

.mc-pricing-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(61, 107, 79, 0.1);
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 600;
}

/* ===================================================================
   12. PROCESS
   =================================================================== */

.mc-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

/* Connecting line */
.mc-process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: rgba(61, 107, 79, 0.12);
}

.mc-process-step {
  text-align: center;
  position: relative;
}

.mc-process-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--sage);
  background: var(--cream);
  position: relative;
  z-index: 1;
  transition: background var(--transition), color var(--transition);
}

.mc-process-circle:hover {
  background: var(--sage);
  color: var(--warm-white);
}

.mc-process-step h3 {
  margin-bottom: 8px;
}

.mc-process-step p {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* ===================================================================
   13. FAQ
   =================================================================== */

.mc-faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.mc-faq-item {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(61, 107, 79, 0.06);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.mc-faq-item:hover,
.mc-faq-item.active {
  border-color: rgba(61, 107, 79, 0.12);
}

.mc-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Outfit', sans-serif;
  transition: color var(--transition);
}

.mc-faq-question:hover {
  color: var(--sage);
}

.mc-faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(61, 107, 79, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 16px;
  font-size: 1.2rem;
  color: var(--sage);
  transition: transform var(--transition), background var(--transition);
}

.mc-faq-item.active .mc-faq-icon {
  transform: rotate(45deg);
  background: rgba(61, 107, 79, 0.14);
}

.mc-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mc-faq-item.active .mc-faq-answer {
  max-height: 300px;
}

.mc-faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===================================================================
   14. TRUST / QUOTE
   =================================================================== */

.mc-trust-inner {
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  border-radius: 60px 40px 60px 40px;
  color: #fff;
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.mc-trust-inner::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(196, 149, 106, 0.15);
  top: -60px;
  left: -40px;
  pointer-events: none;
}

.mc-trust-inner::after {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(196, 149, 106, 0.1);
  bottom: -40px;
  right: -20px;
  pointer-events: none;
}

.mc-trust-inner blockquote {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.mc-trust-author {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.85;
  position: relative;
  z-index: 1;
}

/* ===================================================================
   15. BLOG
   =================================================================== */

.mc-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mc-blog-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(61, 107, 79, 0.06);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.mc-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.mc-blog-thumb {
  aspect-ratio: 3 / 2;
  background: linear-gradient(135deg, var(--sage-light), var(--gold-pale));
  overflow: hidden;
}

.mc-blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.mc-blog-card:hover .mc-blog-thumb img {
  transform: scale(1.04);
}

.mc-blog-body {
  padding: 24px;
}

.mc-blog-date {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.mc-blog-body h3 {
  margin-bottom: 10px;
  color: var(--text-dark);
}

.mc-blog-body p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ===================================================================
   16. LOCATION
   =================================================================== */

.mc-location .mc-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.mc-map-wrap iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  display: block;
}

/* ===================================================================
   17. CTA SECTION
   =================================================================== */

.mc-cta-section {
  background: linear-gradient(135deg, var(--cream), var(--gold-pale));
  position: relative;
  overflow: hidden;
  text-align: center;
}

.mc-cta-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(61, 107, 79, 0.04);
  top: -80px;
  right: -60px;
  pointer-events: none;
}

.mc-cta-section::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(196, 149, 106, 0.08);
  bottom: -60px;
  left: -40px;
  pointer-events: none;
}

.mc-cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.mc-cta-content h2 {
  margin-bottom: 16px;
}

.mc-cta-content p {
  margin-bottom: 28px;
  color: var(--text-light);
}

.mc-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================================================================
   18. FOOTER
   =================================================================== */

.mc-footer {
  background: var(--sage-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

.mc-footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.mc-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.mc-footer-brand img,
.mc-footer-brand .mc-footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.mc-footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
}

.mc-footer h4,
.mc-footer-col h4 {
  color: var(--warm-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.mc-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mc-footer-links li + li {
  margin-top: 10px;
}

.mc-footer-links a,
.mc-footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition);
}

.mc-footer-links a:hover,
.mc-footer-col ul li a:hover {
  color: var(--gold-light);
}

/* Footer CTA link */
.mc-footer-cta-link a {
  color: var(--gold) !important;
  font-weight: 500;
}

.mc-footer-cta-link a:hover {
  color: var(--warm-white) !important;
}

/* Social icons */
.mc-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.mc-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  transition: background var(--transition), color var(--transition),
              border-color var(--transition);
}

.mc-footer-social a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold);
  border-color: var(--gold);
}

.mc-footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.mc-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.82rem;
}

.mc-footer-legal {
  display: flex;
  gap: 20px;
}

.mc-footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--transition);
}

.mc-footer-legal a:hover {
  color: var(--gold-light);
}

/* ===================================================================
   19. DECORATIVE ELEMENTS
   =================================================================== */

.mc-blob {
  position: absolute;
  border-radius: 50% 45% 55% 48% / 48% 55% 45% 52%;
  opacity: 0.06;
  pointer-events: none;
  animation: mcBlobFloat 12s ease-in-out infinite;
}

@keyframes mcBlobFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(12px, -18px) scale(1.04);
  }
  66% {
    transform: translate(-8px, 10px) scale(0.97);
  }
}

/* ===================================================================
   20. SCROLL ANIMATIONS
   =================================================================== */

/* Domyślnie widoczne. JS dodaje mc-js-ready do body → wtedy animujemy */
.mc-reveal {
  opacity: 1;
  transform: none;
}

.mc-js-ready .mc-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.mc-js-ready .mc-reveal.mc-visible {
  opacity: 1;
  transform: translateY(0);
}

.mc-delay-1 { transition-delay: 0.1s; }
.mc-delay-2 { transition-delay: 0.2s; }
.mc-delay-3 { transition-delay: 0.3s; }
.mc-delay-4 { transition-delay: 0.4s; }
.mc-delay-5 { transition-delay: 0.5s; }
.mc-delay-6 { transition-delay: 0.6s; }

/* ===================================================================
   21. RESPONSIVE
   =================================================================== */

/* ---------- Tablet (max 1024px) ---------- */
@media (max-width: 1024px) {
  .mc-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mc-team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mc-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mc-footer-brand {
    grid-column: 1 / -1;
  }

  .mc-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .mc-process-grid::before {
    display: none;
  }
}

/* ---------- Mobile landscape (max 768px) ---------- */
@media (max-width: 768px) {
  .mc-section {
    padding: 60px 0;
  }

  .mc-section-header {
    margin-bottom: 36px;
  }

  /* Navigation toggle */
  .mc-nav-list {
    display: none;
  }

  .mc-hamburger {
    display: flex;
    flex-shrink: 0;
  }

  /* Ukryj CTA przycisk w headerze na mobile — jest w hamburger menu */
  .mc-header-cta {
    display: none;
  }

  /* Inline mobile CTA — między logo a hamburgerem, zawsze w jednej linii */
  .mc-header-cta-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--sage, #3d6b4f);
    color: var(--warm-white, #fff);
    border-radius: var(--radius-pill, 999px);
    padding: clamp(6px, 1.4vw, 10px) clamp(8px, 2.6vw, 18px);
    font-size: clamp(0.62rem, 2.4vw, 0.85rem);
    font-weight: 600;
    line-height: 1.1;
    white-space: nowrap;
    text-decoration: none;
    margin-left: auto;
    margin-right: clamp(6px, 1.6vw, 12px);
    flex: 0 0 auto;
    min-width: 0;
    transition: background var(--transition, .2s ease), transform var(--transition, .2s ease);
  }

  .mc-header-cta-inline:hover,
  .mc-header-cta-inline:focus-visible {
    background: var(--sage-dark, #2f5640);
    color: var(--warm-white, #fff);
    transform: translateY(-1px);
  }

  /* Mniejszy gap w nagłówku, by CTA mieściło się obok logo */
  .mc-header-inner {
    gap: 8px;
    padding: 0 16px;
  }

  /* Pokaż CTA w otwartym mobile menu */
  .mc-nav-list.mc-nav-open .mc-header-cta-mobile {
    display: block;
    margin-top: 16px;
    text-align: center;
  }

  /* Mobile nav — dropdown panel pod headerem */
  .mc-header {
    z-index: 10000;
  }

  .mc-nav-list.mc-nav-open {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream, #faf7f2);
    border-bottom: 2px solid rgba(61,107,79,.1);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    padding: 8px 0 16px;
    max-height: 80vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 10001;
  }

  .mc-nav-list.mc-nav-open .mc-nav-item > a {
    display: block;
    padding: 10px 20px;
    font-size: .95rem;
    font-weight: 600;
    color: var(--text-dark, #2c3e34);
    text-decoration: none;
    text-align: left;
  }

  .mc-nav-list.mc-nav-open .mc-nav-item > a:hover {
    color: var(--sage, #3d6b4f);
    background: rgba(61,107,79,.04);
  }

  /* Mega dropdown w mobile — flat lista */
  .mc-nav-list.mc-nav-open .mc-mega-dropdown {
    position: static !important;
    transform: none !important;
    min-width: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    border: none !important;
    padding: 0 0 4px 20px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    background: transparent !important;
    display: block !important;
    grid-template-columns: 1fr !important;
  }

  .mc-nav-list.mc-nav-open .mc-mega-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mc-nav-list.mc-nav-open .mc-mega-dropdown a {
    display: block;
    padding: 7px 32px;
    font-size: .85rem;
    color: var(--text-light, #4a5d50);
    text-align: left;
  }

  .mc-nav-list.mc-nav-open .mc-mega-dropdown a:hover {
    color: var(--sage, #3d6b4f);
  }

  .mc-nav-list.mc-nav-open .mc-mega-cta {
    display: none !important;
  }

  .mc-nav-list.mc-nav-open .mc-mega-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .mc-nav-list.mc-nav-open .mc-mega-col-title {
    padding: 4px 20px;
    font-size: .7rem;
  }

  /* Układ kolumnowy (mc-mega--cols) — na mobile jedna kolumna (akordeon) */
  .mc-nav-list.mc-nav-open .mc-mega--cols .mc-dropdown-level-0 {
    display: block !important;
    gap: 0 !important;
  }

  .mc-nav-list.mc-nav-open .mc-mega--cols .mc-dropdown-level-0 > li.menu-item-has-children > a {
    padding: 10px 20px 4px !important;
    color: var(--gold, #c4956a) !important;
  }

  /* CTA desktop — ukryty na mobile */
  .mc-header-cta {
    display: none !important;
  }

  /* CTA w mobile menu */
  .mc-nav-list.mc-nav-open .mc-mobile-cta {
    display: block !important;
    margin: 8px 20px 0 !important;
    padding-top: 12px !important;
    border-top: 1px solid rgba(61,107,79,.1) !important;
  }

  .mc-nav-list.mc-nav-open .mc-mobile-cta a {
    display: block !important;
    background: var(--sage, #3d6b4f) !important;
    color: #fff !important;
    text-align: center !important;
    padding: 12px 20px !important;
    border-radius: 999px !important;
    font-weight: 600 !important;
    font-size: .9rem !important;
  }

  /* Hero */
  .mc-hero-content {
    padding: 120px 24px 60px;
    margin: 0 16px;
  }

  .mc-hero p {
    font-size: 1rem;
  }

  /* Grids */
  .mc-services-grid {
    grid-template-columns: 1fr;
  }

  .mc-team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .mc-blog-grid {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .mc-pricing-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px 20px;
  }

  /* FAQ */
  .mc-faq-list {
    max-width: 100%;
  }

  /* Trust */
  .mc-trust-inner {
    padding: 40px 24px;
    border-radius: var(--radius-lg);
  }

  /* Footer */
  .mc-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mc-footer-brand {
    grid-column: auto;
  }

  .mc-footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .mc-footer-legal {
    justify-content: center;
  }
}

/* ---------- Small mobile (max 480px) ---------- */
@media (max-width: 480px) {
  .mc-container {
    padding: 0 16px;
  }

  .mc-hero-content {
    padding: 100px 20px 48px;
    margin: 0 12px;
  }

  .mc-hero-actions {
    flex-direction: column;
  }

  .mc-hero-actions .mc-btn {
    width: 100%;
  }

  .mc-team-grid {
    grid-template-columns: 1fr;
  }

  .mc-team-photo {
    width: 160px;
    height: 160px;
  }

  .mc-process-grid {
    grid-template-columns: 1fr;
  }

  .mc-cta-actions {
    flex-direction: column;
  }

  .mc-cta-actions .mc-btn {
    width: 100%;
  }

  .mc-blog-grid {
    gap: 20px;
  }

  .mc-section {
    padding: 48px 0;
  }

  .mc-footer-inner {
    padding: 0 16px;
  }
}

/* ===================================================================
   22. WORDPRESS SPECIFICS
   =================================================================== */

.wp-block-embed__wrapper {
  max-width: 100%;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.entry-content img {
  border-radius: var(--radius-md);
}

.alignwide {
  max-width: calc(var(--max-width) + 120px);
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100%;
  max-width: 100vw;
  margin-left: 0;
  margin-right: 0;
}

/* Search form */
.mc-search-form {
  display: flex;
  gap: 8px;
}

.mc-search-form input[type="search"] {
  flex: 1;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(61, 107, 79, 0.15);
  background: var(--warm-white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: border-color var(--transition);
}

.mc-search-form input[type="search"]:focus {
  border-color: var(--sage);
  outline: none;
}

/* Comment form */
.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(61, 107, 79, 0.12);
  background: var(--warm-white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: border-color var(--transition);
  margin-bottom: 14px;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--sage);
  outline: none;
}

.comment-form textarea {
  min-height: 140px;
  resize: vertical;
}

.comment-form .submit {
  background: var(--sage);
  color: var(--warm-white);
  border: none;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: background var(--transition);
}

.comment-form .submit:hover {
  background: var(--sage-dark);
}

/* ===================================================================
   23. UTILITIES
   =================================================================== */

.mc-text-sage  { color: var(--sage); }
.mc-text-gold  { color: var(--gold); }
.mc-bg-warm    { background-color: var(--warm-white); }
.mc-bg-cream   { background-color: var(--cream); }

/* ===================================================================
   24. PRINT
   =================================================================== */

@media print {
  .mc-header,
  .mc-footer,
  .mc-nav-list,
  .mc-hamburger,
  .mc-btn,
  .mc-header-cta,
  .mc-blob {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 12pt;
  }

  .mc-section {
    padding: 24px 0;
  }

  .mc-hero {
    min-height: auto;
  }

  a[href]::after {
    content: ' (' attr(href) ')';
    font-size: 0.8em;
    color: #555;
  }
}

/* ==========================================================================
   24. Image Banner
   ========================================================================== */

.mc-image-banner {
  position: relative;
  padding: 0;
}

.mc-image-banner-header {
  max-width: 720px;
  margin: 0 auto;
  padding: 96px 24px 48px;
  text-align: center;
}

.mc-image-banner-header .mc-section-label {
  margin-bottom: 14px;
}

.mc-image-banner-header h2 {
  margin: 0 0 16px;
  color: var(--text-dark);
}

.mc-image-banner-header p {
  margin: 0 auto;
  max-width: 560px;
  color: var(--text-light);
}

.mc-image-banner-inner {
  max-width: 1100px;
  margin: -60px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Gdy obecny jest nagłówek nad video — anulujemy ujemny margines */
.mc-image-banner-header + .mc-image-banner-inner {
  margin-top: 0;
}

/* Video banner */
.mc-video-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
  cursor: pointer;
}

.mc-video-banner picture {
  display: block;
}

.mc-video-poster {
  width: 100%;
  height: auto;
  display: block;
}

.mc-video-player {
  display: none;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.mc-video-banner.mc-playing picture,
.mc-video-banner.mc-playing .mc-video-poster,
.mc-video-banner.mc-playing .mc-video-play {
  display: none;
}

.mc-video-banner.mc-playing .mc-video-player {
  display: block;
}

.mc-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,.92);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
  transition: all var(--transition);
  z-index: 2;
}

.mc-video-play:hover {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.08);
}

.mc-image-banner-inner img:not(.mc-video-poster) {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-warm);
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .mc-image-banner-inner { margin-top: -30px; }
  .mc-video-play { width: 60px; height: 60px; }
}

/* ==========================================================================
   25. Why Us
   ========================================================================== */

.mc-why {
  background: var(--warm-white);
}

.mc-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.mc-why-card {
  position: relative;
  padding: 44px 36px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition);
  overflow: hidden;
}

.mc-why-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50% 40% 60% 45%;
  background: var(--sage);
  opacity: 0.05;
  transition: all var(--transition);
}

.mc-why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-warm);
}

.mc-why-card:hover::before {
  opacity: 0.1;
  transform: scale(1.2);
}

.mc-why-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--sage), var(--sage-light));
  border-radius: 50% 45% 55% 48%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mc-why-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--warm-white);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mc-why-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.mc-why-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .mc-why-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ==========================================================================
   26. TUS Section
   ========================================================================== */

.mc-tus-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.mc-tus-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mc-tus-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-body);
}

.mc-tus-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--sage);
  fill: none;
  stroke-width: 2.5;
}

.mc-tus-price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 24px;
  background: rgba(61, 107, 79, 0.08);
  border-radius: var(--radius-pill);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sage);
}

.mc-tus-video {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

/* TUS landing — sekcja "Czym jest TUS" (video + opis) */
.mc-tus-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* TUS landing — hero badge "Zapisy otwarte" z pulsem */
.mc-tus-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  background: rgba(196, 149, 106, 0.18);
  color: var(--gold-light);
  border: 1px solid rgba(196, 149, 106, 0.32);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.mc-tus-pulse {
  position: relative;
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 0 rgba(212, 168, 126, 0.7);
  animation: mc-tus-pulse 2s ease-out infinite;
}

@keyframes mc-tus-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(212, 168, 126, 0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(212, 168, 126, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 168, 126, 0); }
}

/* TUS landing — status banner (obecne grupy / sierpień 2026) */
.mc-tus-status {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 44px;
  background: linear-gradient(135deg, var(--warm-white) 0%, #f5f0e7 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(61, 107, 79, 0.10);
  border-left: 6px solid var(--gold);
  box-shadow: 0 24px 60px -28px rgba(45, 83, 64, 0.18);
  position: relative;
  overflow: hidden;
}

.mc-tus-status::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  top: -120px;
  right: -100px;
  background: radial-gradient(circle, rgba(61, 107, 79, 0.12), transparent 70%);
  pointer-events: none;
}

.mc-tus-status-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  color: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 24px -10px rgba(61, 107, 79, 0.5);
}

.mc-tus-status-body { min-width: 0; position: relative; z-index: 1; }

.mc-tus-status-title {
  margin: 10px 0 14px;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.mc-tus-status-text {
  margin: 0 0 20px;
  color: var(--text-light);
  font-size: 1.04rem;
  line-height: 1.7;
  max-width: 720px;
}

.mc-tus-status-text strong { color: var(--text-dark); font-weight: 700; }

/* TUS landing — timeline 3 kroków rekrutacji */
.mc-tus-timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0 0;
  padding: 0;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* Łącząca linia między krokami (desktop) */
.mc-tus-timeline::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(61, 107, 79, 0.25) 0,
    rgba(61, 107, 79, 0.25) 6px,
    transparent 6px,
    transparent 12px
  );
  z-index: 0;
}

.mc-tus-step {
  position: relative;
  text-align: center;
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 56px 24px 28px;
  border: 1px solid rgba(61, 107, 79, 0.08);
  box-shadow: 0 4px 30px rgba(61, 107, 79, 0.06);
  transition: transform 280ms cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 280ms cubic-bezier(0.23, 1, 0.32, 1);
}

@media (hover: hover) and (pointer: fine) {
  .mc-tus-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(61, 107, 79, 0.12);
  }
}

.mc-tus-step-marker {
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(61, 107, 79, 0.15);
  z-index: 1;
}

.mc-tus-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
}

.mc-tus-step--active .mc-tus-step-marker {
  border-color: var(--gold);
  box-shadow: 0 0 0 6px rgba(196, 149, 106, 0.18);
}

.mc-tus-step--active .mc-tus-step-num {
  background: linear-gradient(135deg, var(--gold) 0%, #b78659 100%);
}

.mc-tus-step--active {
  border-color: rgba(196, 149, 106, 0.3);
  box-shadow: 0 12px 36px -10px rgba(196, 149, 106, 0.25);
}

.mc-tus-step--upcoming .mc-tus-step-num { background: var(--sage-light); opacity: 0.85; }

.mc-tus-step-phase {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
}

.mc-tus-step--upcoming .mc-tus-step-phase { color: var(--sage); }

.mc-tus-step-period {
  margin-top: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-light);
}

.mc-tus-step-title {
  margin: 12px 0 10px;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.mc-tus-step-desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* TUS landing — perks list nad formularzem */
.mc-tus-perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 880px;
}

.mc-tus-perks li {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 18px;
  background: var(--warm-white);
  border: 1px solid rgba(61, 107, 79, 0.10);
  border-radius: var(--radius-pill);
  font-size: 0.93rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.mc-tus-perks li svg {
  color: var(--sage);
  flex-shrink: 0;
  margin-top: 2px;
}

.mc-tus-perks strong { color: var(--sage-dark); font-weight: 700; }

@media (max-width: 768px) {
  .mc-tus-wrap { grid-template-columns: 1fr; gap: 32px; }
  .mc-tus-intro { grid-template-columns: 1fr; gap: 28px; }

  .mc-tus-status {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 32px 26px;
  }
  .mc-tus-status-icon { width: 56px; height: 56px; }
  .mc-tus-status-title { font-size: 1.4rem; }

  .mc-tus-timeline {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 50px;
  }
  .mc-tus-timeline::before { display: none; }
  .mc-tus-step { padding: 48px 24px 26px; }

  .mc-tus-perks {
    flex-direction: column;
    gap: 10px;
  }
  .mc-tus-perks li { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .mc-tus-pulse { animation: none; }
  .mc-tus-step { transition: none; }
}

/* ==========================================================================
   27. Podcast Section
   ========================================================================== */

.mc-podcast-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.mc-podcast-info h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.mc-podcast-info p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.8;
}

.mc-podcast-video {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
  aspect-ratio: 16 / 9;
}

.mc-podcast-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .mc-podcast-wrap { grid-template-columns: 1fr; gap: 32px; }
}

/* ==========================================================================
   28. Online vs Stationary
   ========================================================================== */

.mc-visit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.mc-visit-card {
  padding: 40px 36px;
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(61, 107, 79, 0.08);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
}

.mc-visit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.mc-visit-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--sage), var(--sage-light));
  border-radius: 50% 45% 55% 48%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mc-visit-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--warm-white);
  fill: none;
  stroke-width: 1.8;
}

.mc-visit-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.mc-visit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.mc-visit-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-body);
}

.mc-visit-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--sage);
  fill: none;
  stroke-width: 2.5;
}

@media (max-width: 768px) {
  .mc-visit-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   29a. STICKY SIDEBAR CTA (podstrony)
   ========================================================================== */

.mc-sidebar-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 320px;
  background: var(--sage-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .2);
  transition: transform .4s ease, opacity .4s ease;
}

/* Ukryty na stronie głównej — front-page.php go nie dołącza */

.mc-sidebar-cta-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--gold);
}

.mc-sidebar-cta-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
  text-transform: none;
  letter-spacing: 0;
}

.mc-sidebar-cta-text {
  font-size: .88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 18px;
}

.mc-sidebar-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mc-sidebar-btn-primary {
  display: block;
  padding: 12px 20px;
  background: var(--gold);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .92rem;
  text-align: center;
  transition: all var(--transition);
}

.mc-sidebar-btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.mc-sidebar-btn-light {
  display: block;
  padding: 10px 20px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .92rem;
  text-align: center;
  transition: all var(--transition);
}

.mc-sidebar-btn-light:hover {
  background: rgba(255, 255, 255, .2);
}

/* Ukryj na mobile — za mało miejsca */
@media (max-width: 768px) {
  .mc-sidebar-cta {
    display: none;
  }
}

/* ==========================================================================
   29. YouTube Facade
   ========================================================================== */

.mc-youtube-facade {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--sage-dark);
}

.mc-youtube-facade::after {
  content: '';
  width: 68px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  position: relative;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232d5340'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
  transition: transform var(--transition);
}

.mc-youtube-facade:hover::after {
  display: none; /* Zastąpiony przez .mc-yt-play button */
}

/* YouTube play button (dodawany przez JS) */
.mc-yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 50px;
  background: rgba(255,255,255,.92);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  z-index: 2;
}

.mc-yt-play::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent var(--sage-dark);
  margin-left: 3px;
}

.mc-yt-play:hover {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 6px 30px rgba(0,0,0,.2);
}

/* Mega menu: grid z CTA sidebar */
.mc-mega-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
}

.mc-mega-col-title {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  padding: 0 14px 6px;
}

.mc-mega-cta {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mc-mega-cta-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  background: rgba(61,107,79,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
}

.mc-mega-cta h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-transform: none;
  letter-spacing: 0;
}

.mc-mega-cta p {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.6;
}

.mc-youtube-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   28. CTA Box — wstawka konwersyjna w środku treści (np. strona MMPI-2)
   Użycie: shortcode [mc_cta_box ...]
   ========================================================================== */

.mc-cta-box {
  display: block;
  margin: 56px auto;
  max-width: 920px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px -28px rgba(45, 83, 64, 0.32);
  position: relative;
}

.mc-cta-box::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  top: -120px;
  right: -100px;
  opacity: 0.18;
  pointer-events: none;
}

.mc-cta-box--sage { background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 100%); color: #fff; }
.mc-cta-box--sage::before { background: var(--gold); }
.mc-cta-box--cream { background: var(--warm-white); color: var(--text-dark); border: 1px solid rgba(61, 107, 79, 0.08); }
.mc-cta-box--cream::before { background: var(--sage); opacity: 0.10; }

.mc-cta-box-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  align-items: center;
  gap: 32px;
  padding: 36px 40px;
  position: relative;
  z-index: 1;
}

.mc-cta-box-title {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.mc-cta-box-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.92;
  max-width: 520px;
}

.mc-cta-box--cream .mc-cta-box-text { color: var(--text-light); opacity: 1; }

.mc-cta-box-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  min-width: 220px;
}

.mc-cta-box-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 30px -12px rgba(196, 149, 106, 0.6);
  transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1),
              background-color 200ms ease,
              box-shadow 200ms ease;
}

.mc-cta-box-button:active { transform: scale(0.97); }

@media (hover: hover) and (pointer: fine) {
  .mc-cta-box-button:hover {
    background: #b78659;
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -14px rgba(196, 149, 106, 0.7);
  }
}

.mc-cta-box-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
  opacity: 0.88;
  transition: opacity 200ms ease;
}

.mc-cta-box-phone:hover { opacity: 1; text-decoration: underline; }

@media (max-width: 720px) {
  .mc-cta-box { margin: 40px auto; }
  .mc-cta-box-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 24px;
    text-align: center;
  }
  .mc-cta-box-text { margin: 0 auto; }
  .mc-cta-box-actions { min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .mc-cta-box-button { transition: none; }
}

/* ==========================================================================
   29. Content Upgrade — kontekstowy CTA wewnątrz artykułu blogowego
   Shortcode: [mc_content_upgrade type="adhd|tus|lek-dziecka|media-spol"]
   ========================================================================== */

.mc-content-upgrade {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  max-width: 760px;
  margin: 48px auto;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--warm-white) 0%, #f5f0e7 100%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(61, 107, 79, 0.10);
  border-left: 5px solid var(--sage);
  position: relative;
}

.mc-content-upgrade-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mc-content-upgrade-body { min-width: 0; }

.mc-content-upgrade-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.mc-content-upgrade-heading {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.mc-content-upgrade-text {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-light);
}

.mc-content-upgrade-bullets {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.mc-content-upgrade-bullets li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.97rem;
  line-height: 1.5;
  color: var(--text-dark);
}

.mc-content-upgrade-bullets li svg {
  color: var(--sage);
  margin-top: 3px;
  flex-shrink: 0;
}

.mc-content-upgrade-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.mc-content-upgrade-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--sage);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1),
              background-color 200ms ease,
              box-shadow 200ms ease;
  box-shadow: 0 10px 24px -12px rgba(61, 107, 79, 0.55);
}

.mc-content-upgrade-button:active { transform: scale(0.97); }
.mc-content-upgrade-button svg { transition: transform 200ms cubic-bezier(0.23, 1, 0.32, 1); }

@media (hover: hover) and (pointer: fine) {
  .mc-content-upgrade-button:hover {
    background: var(--sage-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -14px rgba(61, 107, 79, 0.6);
  }
  .mc-content-upgrade-button:hover svg { transform: translateX(3px); }
}

.mc-content-upgrade-copy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid rgba(61, 107, 79, 0.25);
  color: var(--sage-dark);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .mc-content-upgrade-copy:hover {
    background: rgba(61, 107, 79, 0.06);
    border-color: var(--sage);
  }
}

.mc-content-upgrade-copy.is-copied {
  background: var(--sage);
  border-color: var(--sage);
  color: #fff;
}

@media (max-width: 640px) {
  .mc-content-upgrade {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 22px;
    margin: 36px auto;
  }
  .mc-content-upgrade-icon { width: 48px; height: 48px; }
  .mc-content-upgrade-heading { font-size: 1.2rem; }
  .mc-content-upgrade-actions { flex-direction: column; align-items: stretch; }
  .mc-content-upgrade-button,
  .mc-content-upgrade-copy { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .mc-content-upgrade-button,
  .mc-content-upgrade-button svg,
  .mc-content-upgrade-copy { transition: none; }
}
