/* ═══════════════════════════════════════════════════════════════
   YouTube Masterclass WordPress Theme — Main CSS
   Kolory kontrolowane przez WordPress Customizer przez CSS variables
═══════════════════════════════════════════════════════════════ */

/* ── Zmienne domyślne (nadpisywane przez Customizer) ─── */
:root {
  --ytmc-bg:        #0B0B0B;
  --ytmc-fg:        #F5F5F5;
  --ytmc-primary:   #D4AF37;
  --ytmc-gold-mid:  #F6E27A;
  --ytmc-gold-end:  #C9A227;
  --ytmc-secondary: #1A1A1A;
  --ytmc-muted:     #888888;
  --ytmc-border:    rgba(212,175,55,0.15);
  --ytmc-font:      'Poppins', sans-serif;
  --ytmc-font-size: 16px;
  --ytmc-radius:    0.75rem;
}

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

html { scroll-behavior: smooth; font-size: var(--ytmc-font-size); }

body {
  background-color: var(--ytmc-bg);
  color: var(--ytmc-fg);
  font-family: var(--ytmc-font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; }
ul { list-style: none; }

/* ── Utility ───────────────────────────────────────────── */
.gold-text {
  background: linear-gradient(135deg, var(--ytmc-primary), var(--ytmc-gold-mid), var(--ytmc-gold-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ytmc-primary   { color: var(--ytmc-primary); }
.ytmc-muted     { color: var(--ytmc-muted); }
.ytmc-italic    { font-style: italic; }

.ytmc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.ytmc-container--narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Animations ────────────────────────────────────────── */
@keyframes ytmc-pulse-gold {
  0%,100% { box-shadow: 0 0 20px rgba(212,175,55,0.3); }
  50%      { box-shadow: 0 0 40px rgba(212,175,55,0.65); }
}
@keyframes ytmc-bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
@keyframes ytmc-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes ytmc-fade-up {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes ytmc-ping {
  75%,100% { transform:scale(2); opacity:0; }
}

.ytmc-pulse-gold { animation: ytmc-pulse-gold 2s ease-in-out infinite; }
.ytmc-bounce     { animation: ytmc-bounce     3s ease-in-out infinite; }

/* ── Scroll animations ─────────────────────────────────── */
.ytmc-scroll-anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.ytmc-scroll-anim.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ytmc-animate {
  opacity: 0;
  transform: translateY(20px);
}
.ytmc-animate.is-visible {
  animation: ytmc-fade-up .65s forwards;
}

/* ── Particles canvas ──────────────────────────────────── */
.ytmc-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* ── Buttons ───────────────────────────────────────────── */
.ytmc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--ytmc-radius);
  font-family: var(--ytmc-font);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
  border: none;
  text-decoration: none;
}
.ytmc-btn:hover { opacity: .9; transform: scale(1.04); }

.ytmc-btn--gold {
  background: linear-gradient(135deg, var(--ytmc-primary), var(--ytmc-gold-mid), var(--ytmc-gold-end));
  color: #0B0B0B;
}
.ytmc-btn--outline {
  background: var(--ytmc-secondary);
  color: var(--ytmc-fg);
  border: 1px solid var(--ytmc-border);
}
.ytmc-btn--outline:hover {
  border-color: rgba(212,175,55,0.4);
  color: var(--ytmc-primary);
}
.ytmc-btn--lg  { padding: 1rem 2.5rem; font-size: 1.05rem; }
.ytmc-btn--xl  { padding: 1.2rem 3rem; font-size: 1.1rem; }
.ytmc-btn--full { width: 100%; }

/* ── Badge ─────────────────────────────────────────────── */
.ytmc-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(20px);
  border: 1px solid var(--ytmc-border);
  border-radius: 9999px;
  padding: .4rem 1.1rem;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ytmc-primary);
}
.ytmc-badge__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ytmc-primary), var(--ytmc-gold-end));
  animation: ytmc-pulse-gold 2s infinite;
}

/* ── Card (glass) ──────────────────────────────────────── */
.ytmc-card {
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(20px);
  border: 1px solid var(--ytmc-border);
  border-radius: calc(var(--ytmc-radius) * 1.5);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  transition: background .25s, border-color .25s, box-shadow .25s, transform .25s;
}
.ytmc-card:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(212,175,55,0.35);
  box-shadow: 0 0 30px rgba(212,175,55,.1);
  transform: translateY(-2px);
}
.ytmc-card h3 { font-size: 1rem; font-weight: 600; color: var(--ytmc-fg); }
.ytmc-card p  { font-size: .88rem; color: var(--ytmc-muted); line-height: 1.65; }

.ytmc-card--problem .ytmc-card__icon-wrap { margin-bottom: .25rem; }
.ytmc-card--feature { }
.ytmc-card--yes  { border-color: rgba(212,175,55,.2); }

.ytmc-card__header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .5rem;
}
.ytmc-card__header h3 { font-size: 1.1rem; }

/* icon circles */
.ytmc-icon-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ytmc-secondary);
  display: flex; align-items: center; justify-content: center;
  color: var(--ytmc-muted);
  flex-shrink: 0;
}
.ytmc-icon-circle--gold {
  background: linear-gradient(135deg, var(--ytmc-primary), var(--ytmc-gold-end));
  color: #0B0B0B;
}
.ytmc-icon-circle--sm { width: 22px; height: 22px; }

.ytmc-card__icon-wrap {
  width: 44px; height: 44px;
  border-radius: calc(var(--ytmc-radius) * .75);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ytmc-card__icon-wrap--gold {
  background: rgba(212,175,55,.1);
  color: var(--ytmc-primary);
}
.ytmc-card__icon-wrap--warning {
  background: rgba(239,68,68,.08);
  color: #EF4444;
}

/* checklists */
.ytmc-checklist { display: flex; flex-direction: column; gap: .75rem; }
.ytmc-checklist li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .88rem; color: var(--ytmc-fg); line-height: 1.55;
}
.ytmc-checklist--no li { color: var(--ytmc-muted); }

/* review card */
.ytmc-card--review { gap: 1rem; }
.ytmc-stars { display: flex; gap: 2px; }
.ytmc-star  { color: var(--ytmc-primary); }
.ytmc-card__quote {
  font-size: .88rem;
  color: var(--ytmc-muted);
  font-style: italic;
  line-height: 1.7;
  flex: 1;
}
.ytmc-card__author { display: flex; align-items: center; gap: .75rem; }
.ytmc-card__author-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(212,175,55,.1);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .95rem;
  flex-shrink: 0;
}
.ytmc-card__author-name { font-size: .88rem; font-weight: 600; color: var(--ytmc-fg); }
.ytmc-card__author-role { font-size: .78rem; color: var(--ytmc-muted); }

/* ── Grid ──────────────────────────────────────────────── */
.ytmc-grid { display: grid; gap: 1.25rem; }
.ytmc-grid--2 { grid-template-columns: 1fr; }
.ytmc-grid--3 { grid-template-columns: 1fr; }
.ytmc-grid--4 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .ytmc-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .ytmc-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .ytmc-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .ytmc-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ── Section ───────────────────────────────────────────── */
.ytmc-section {
  position: relative;
  padding: 5rem 1.25rem;
}
.ytmc-section--divider::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--ytmc-border), transparent);
}
.ytmc-section--cta {
  overflow: hidden;
}
.ytmc-section--cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212,175,55,.06) 0%, transparent 60%);
  pointer-events: none;
}

.ytmc-section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.ytmc-section__eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ytmc-primary);
  margin-bottom: .75rem;
}
.ytmc-section__title {
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ytmc-fg);
}
.ytmc-section__subtitle {
  font-size: 1rem;
  color: var(--ytmc-muted);
  margin-top: .75rem;
}

/* ── Header ────────────────────────────────────────────── */
.ytmc-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background .3s, border-color .3s, padding .3s, box-shadow .3s;
}
.ytmc-header.is-scrolled {
  background: rgba(11,11,11,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--ytmc-border);
  padding: .7rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.ytmc-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.ytmc-header__brand {
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.ytmc-header__nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
.ytmc-header__nav a {
  font-size: .85rem;
  color: var(--ytmc-muted);
  transition: color .2s;
}
.ytmc-header__nav a:hover { color: var(--ytmc-primary); }
.ytmc-header__cta { display: none; }

@media (min-width: 768px) {
  .ytmc-header__nav { display: flex; }
  .ytmc-header__cta { display: inline-flex; }
}

/* ── Hero ──────────────────────────────────────────────── */
.ytmc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.25rem 4rem;
  overflow: hidden;
}
.ytmc-hero__glow {
  position: absolute;
  top: 25%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(600px, 100vw);
  height: min(600px, 100vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.08) 0%, transparent 70%);
  pointer-events: none;
}
.ytmc-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  max-width: 900px;
  width: 100%;
}
.ytmc-hero__title {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--ytmc-fg);
}
.ytmc-hero__subtitle {
  font-size: clamp(.95rem, 2vw, 1.2rem);
  color: var(--ytmc-muted);
  max-width: 680px;
  line-height: 1.75;
}

/* video */
.ytmc-video {
  width: 100%;
  max-width: 800px;
  border-radius: calc(var(--ytmc-radius) * 1.5);
  overflow: hidden;
  border: 2px solid transparent;
  background: linear-gradient(var(--ytmc-secondary), var(--ytmc-secondary)) padding-box,
              linear-gradient(135deg, var(--ytmc-primary), var(--ytmc-gold-mid), var(--ytmc-gold-end)) border-box;
}
.ytmc-video__placeholder {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--ytmc-secondary), var(--ytmc-bg));
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.ytmc-video__inner {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.ytmc-video__play {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ytmc-primary), var(--ytmc-gold-end));
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer;
  color: #0B0B0B;
  transition: transform .2s;
  animation: ytmc-pulse-gold 2s infinite;
  position: relative;
}
.ytmc-video__play:hover { transform: scale(1.1); }
.ytmc-video__play::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ytmc-primary), var(--ytmc-gold-end));
  animation: ytmc-ping 1.5s cubic-bezier(0,0,.2,1) infinite;
  opacity: .2;
}
.ytmc-video__label  { font-size: .85rem; color: var(--ytmc-muted); }
.ytmc-video__embed-wrap { position: relative; aspect-ratio: 16/9; }
.ytmc-video__iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* trust badges */
.ytmc-trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
.ytmc-trust-badge {
  display: flex; align-items: center; gap: .4rem;
  font-size: .85rem; color: var(--ytmc-muted);
}
.ytmc-check-icon { width: 16px; height: 16px; color: var(--ytmc-primary); }

/* ── Author ────────────────────────────────────────────── */
.ytmc-author {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .ytmc-author { grid-template-columns: 300px 1fr; }
}

.ytmc-author__left {
  display: flex; flex-direction: column;
  align-items: center; gap: 1.25rem;
}
@media (min-width: 768px) {
  .ytmc-author__left { align-items: flex-start; }
}
.ytmc-author__avatar-wrap { position: relative; }
.ytmc-author__avatar {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: linear-gradient(var(--ytmc-secondary), var(--ytmc-secondary)) padding-box,
              linear-gradient(135deg, var(--ytmc-primary), var(--ytmc-gold-end)) border-box;
  border: 3px solid transparent;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; font-weight: 700;
}
.ytmc-author__yt-badge {
  position: absolute;
  bottom: -4px; right: -4px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ytmc-primary), var(--ytmc-gold-end));
  display: flex; align-items: center; justify-content: center;
  color: #0B0B0B;
  box-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.ytmc-author__name-wrap { text-align: center; }
@media (min-width: 768px) { .ytmc-author__name-wrap { text-align: left; } }
.ytmc-author__name-wrap h3 { font-size: 1.3rem; font-weight: 700; }

.ytmc-author__stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .6rem; width: 100%; max-width: 280px;
}
.ytmc-author__stat {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--ytmc-border);
  border-radius: var(--ytmc-radius);
  padding: .6rem .75rem;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
}
.ytmc-author__stat-val   { font-size: 1rem; font-weight: 700; }
.ytmc-author__stat-label { font-size: .72rem; color: var(--ytmc-muted); }

.ytmc-author__bio { display: flex; flex-direction: column; gap: 1rem; }
.ytmc-author__bio-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700; line-height: 1.25;
  color: var(--ytmc-fg);
}
.ytmc-author__bio p { font-size: .92rem; color: var(--ytmc-muted); line-height: 1.75; }
.ytmc-author__sig {
  display: flex; align-items: center; gap: 1rem; margin-top: .5rem;
}
.ytmc-author__sig-line { flex: 1; height: 1px; background: var(--ytmc-border); }

/* ── Stats bar ─────────────────────────────────────────── */
.ytmc-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .ytmc-stats { grid-template-columns: repeat(4, 1fr); }
}
.ytmc-stat {
  text-align: center;
  display: flex; flex-direction: column; gap: .25rem;
}
.ytmc-stat__val   { font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 800; }
.ytmc-stat__label { font-size: .85rem; color: var(--ytmc-muted); }

/* ── Pricing ───────────────────────────────────────────── */
.ytmc-pricing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .ytmc-pricing { grid-template-columns: repeat(3, 1fr); }
}

.ytmc-plan {
  position: relative;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--ytmc-border);
  border-radius: calc(var(--ytmc-radius) * 1.5);
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: transform .3s;
}
.ytmc-plan:hover { transform: translateY(-4px); }

.ytmc-plan--featured {
  border: 2px solid var(--ytmc-primary);
  background: rgba(212,175,55,.03);
  box-shadow: 0 0 60px rgba(212,175,55,.12);
}
@media (min-width: 768px) {
  .ytmc-plan--featured { transform: scale(1.04); }
  .ytmc-plan--featured:hover { transform: scale(1.04) translateY(-4px); }
}

.ytmc-plan__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--ytmc-primary), var(--ytmc-gold-end));
  color: #0B0B0B;
  font-size: .72rem; font-weight: 700;
  padding: .25rem 1rem;
  border-radius: 9999px;
  white-space: nowrap;
}
.ytmc-plan__header { text-align: center; }
.ytmc-plan__name {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.ytmc-plan__price {
  display: flex; align-items: baseline;
  justify-content: center; gap: .25rem;
}
.ytmc-plan__amount { font-size: 3rem; font-weight: 800; color: var(--ytmc-fg); }
.ytmc-plan__currency { font-size: 1.1rem; color: var(--ytmc-muted); }
.ytmc-plan__desc { font-size: .85rem; color: var(--ytmc-muted); margin-top: .4rem; }
.ytmc-plan__divider { height: 1px; background: var(--ytmc-border); }
.ytmc-plan__features { display: flex; flex-direction: column; gap: .65rem; flex: 1; }
.ytmc-plan__features li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .85rem; color: var(--ytmc-fg);
}

/* ── Bonus ─────────────────────────────────────────────── */
.ytmc-bonus {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center; gap: 1.75rem;
}
.ytmc-bonus__desc { font-size: 1rem; color: var(--ytmc-muted); line-height: 1.75; max-width: 560px; }

/* countdown */
.ytmc-countdown {
  display: flex; align-items: center; gap: .75rem;
}
.ytmc-countdown__block {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: var(--ytmc-radius);
  width: 70px; padding: .6rem 0;
  position: relative; overflow: hidden;
}
.ytmc-countdown__block::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(212,175,55,.06) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: ytmc-shimmer 3s ease-in-out infinite;
  pointer-events: none;
}
.ytmc-countdown__val {
  font-size: 1.75rem; font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.ytmc-countdown__label { font-size: .65rem; color: var(--ytmc-muted); text-transform: uppercase; letter-spacing: .05em; }
.ytmc-countdown__sep { font-size: 1.5rem; font-weight: 700; color: var(--ytmc-primary); line-height: 1; padding-bottom: 1rem; }

@media (min-width: 480px) {
  .ytmc-countdown__block { width: 88px; }
  .ytmc-countdown__val { font-size: 2rem; }
}

/* ── FAQ ───────────────────────────────────────────────── */
.ytmc-faq { display: flex; flex-direction: column; gap: .65rem; }
.ytmc-faq__item {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--ytmc-border);
  border-radius: calc(var(--ytmc-radius) * 1.25);
  overflow: hidden;
  transition: border-color .2s;
}
.ytmc-faq__item.is-open { border-color: rgba(212,175,55,.3); }
.ytmc-faq__question {
  width: 100%;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.4rem;
  text-align: left;
  font-family: var(--ytmc-font);
  font-size: .95rem; font-weight: 500;
  color: var(--ytmc-fg);
  gap: 1rem;
  transition: color .2s;
}
.ytmc-faq__question:hover { color: var(--ytmc-primary); }
.ytmc-faq__chevron {
  flex-shrink: 0;
  transition: transform .3s;
  color: var(--ytmc-muted);
}
.ytmc-faq__item.is-open .ytmc-faq__chevron { transform: rotate(180deg); color: var(--ytmc-primary); }
.ytmc-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.ytmc-faq__answer p {
  padding: 0 1.4rem 1.1rem;
  font-size: .88rem; color: var(--ytmc-muted); line-height: 1.75;
}
.ytmc-faq__item.is-open .ytmc-faq__answer { max-height: 400px; }

/* ── Final CTA ─────────────────────────────────────────── */
.ytmc-cta {
  position: relative; z-index: 1;
  max-width: 700px; margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.75rem;
}
.ytmc-cta__desc { font-size: 1rem; color: var(--ytmc-muted); line-height: 1.75; max-width: 580px; }
.ytmc-guarantee {
  display: flex; align-items: center; gap: .85rem;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--ytmc-border);
  border-radius: calc(var(--ytmc-radius) * 1.25);
  padding: 1rem 1.25rem;
  text-align: left;
  max-width: 480px;
}
.ytmc-guarantee__title { font-size: .88rem; font-weight: 600; color: var(--ytmc-fg); }
.ytmc-guarantee__desc  { font-size: .78rem; color: var(--ytmc-muted); margin-top: .2rem; }

/* ── Footer ────────────────────────────────────────────── */
.ytmc-footer {
  position: relative;
  padding: 2.5rem 1.25rem;
}
.ytmc-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--ytmc-border), transparent);
}
.ytmc-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  font-size: .85rem;
  color: var(--ytmc-muted);
}
@media (min-width: 768px) {
  .ytmc-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.ytmc-footer__brand { font-weight: 700; font-size: 1rem; }
.ytmc-footer__links { display: flex; gap: 1.5rem; }
.ytmc-footer__links a { transition: color .2s; }
.ytmc-footer__links a:hover { color: var(--ytmc-primary); }

/* ── Sticky CTA (mobile) ───────────────────────────────── */
.ytmc-sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  padding: .75rem 1rem;
  background: linear-gradient(to top, rgba(11,11,11,.95), transparent);
  transform: translateY(100%);
  transition: transform .3s;
  display: block;
}
.ytmc-sticky-cta.is-visible { transform: translateY(0); }

@media (min-width: 768px) {
  .ytmc-sticky-cta { display: none !important; }
}
