/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: Arial, sans-serif; color: #1e293b; background: #fff; line-height: 1.6; }
a { color: inherit; }
img { max-width: 100%; }

/* === TYPOGRAPHY === */
h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 900; line-height: 1.2; }
h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 900; line-height: 1.25; }
h3 { font-size: 1rem; font-weight: 700; }
p { color: #475569; }

/* === LAYOUT === */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section-white  { background: #ffffff; }
.section-light  { background: #f8fafc; }
.section-tinted { background: #f0f4ff; }
.section-dark   { background: #0f172a; color: #94a3b8; }
.section-label  { font-size: 11px; font-weight: 700; text-transform: uppercase;
                  letter-spacing: .08em; color: #6366f1; margin-bottom: 8px; }

/* === NAV === */
.nav { display: flex; justify-content: space-between; align-items: center;
       padding: 16px 0; border-bottom: 1px solid #f1f5f9; }
.nav-logo { font-weight: 900; font-size: 20px; text-decoration: none; color: #1e293b; }
.nav-logo span { color: #6366f1; }
.nav-links { display: flex; gap: 24px; }
.nav-links a { font-size: 14px; color: #64748b; text-decoration: none; }
.nav-links a:hover { color: #1e293b; }
.nav-cta { background: #6366f1; color: #fff !important; padding: 8px 16px;
           border-radius: 6px; font-weight: 700; font-size: 13px; }
/* Prawa strona nav: CTA + Wyloguj w jednym kontenerze — space-between na .nav
   rozpycha tylko logo | menu | nav-right, a nie pojedyncze linki */
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cta-account { display: none; }
.logged-in .nav-cta-guest { display: none; }
.logged-in .nav-cta-account { display: inline-block; }
/* Wyloguj w nav — widoczny tylko dla zalogowanych, dyskretny link obok "Moje konto" */
.nav-cta-logout { display: none; color: #64748b; font-size: 13px;
                  text-decoration: none; cursor: pointer; }
.nav-cta-logout:hover { color: #1e293b; }
.logged-in .nav-cta-logout { display: inline-block; }
/* Zalogowany nie widzi formularza rejestracji — zamiast niego karta "Przejdź do panelu" */
.reg-logged-in { display: none; text-align: center; padding: 16px 4px; }
.logged-in .form-card > :not(.reg-logged-in) { display: none !important; }
.logged-in .reg-logged-in { display: block; }
/* Sekcja korzyści — 1 kolumna na mobile */
@media (max-width: 768px) {
  .benefits-grid { grid-template-columns: 1fr !important; }
}
/* Ukryj linki nawigacyjne na telefonach (< 640px), zostaje logo + CTA */
@media (max-width: 640px) { nav div.nav-links { display: none; } }

/* === HERO === */
.hero { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 48px;
        align-items: flex-start; padding: 64px 0; }
@media (max-width: 768px) { .hero { grid-template-columns: 1fr; } }
.badge { display: inline-flex; align-items: center; gap: 8px;
         background: #fef3c7; color: #92400e; padding: 6px 12px;
         border-radius: 20px; font-size: 12px; font-weight: 700; margin-bottom: 16px; }
.badge .dot { width: 8px; height: 8px; background: #f59e0b; border-radius: 50%;
              animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.hero h1 em { color: #ef4444; font-style: normal;
              text-decoration: underline; text-decoration-color: #fca5a5;
              text-underline-offset: 4px; }
.hero-sub { font-size: 16px; color: #475569; margin: 16px 0 20px; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.pill { background: #eff6ff; color: #3b82f6; border: 1px solid #bfdbfe;
        padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.pill.soon { background: #f1f5f9; color: #94a3b8; border-color: #e2e8f0; }
.stats { display: flex; gap: 24px; }
.stat-num { font-size: 22px; font-weight: 900; color: #6366f1; }
.stat-lbl { font-size: 11px; color: #94a3b8; line-height: 1.3; }

/* === FORM CARD === */
.form-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px;
             padding: 24px; box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.form-card-badge { display: inline-block; background: #fef3c7; color: #92400e;
                   border-radius: 20px; padding: 4px 12px; font-size: 11px;
                   font-weight: 700; margin-bottom: 12px; }
.form-card h3 { color: #0f172a; margin-bottom: 4px; }
.form-card-sub { font-size: 12px; color: #64748b; margin-bottom: 16px; }
.form-label { font-size: 12px; font-weight: 600; color: #374151; display: block;
              margin-bottom: 4px; margin-top: 12px; }
.form-input, .form-select {
  width: 100%; border: 1.5px solid #e2e8f0; padding: 10px 12px;
  border-radius: 6px; font-size: 14px; color: #1e293b; background: #fff;
  transition: border-color .2s; }
.form-input:focus, .form-select:focus { outline: none; border-color: #6366f1; }
.btn-primary { width: 100%; background: #6366f1; color: #fff; border: none;
               padding: 12px; border-radius: 6px; font-size: 14px; font-weight: 800;
               cursor: pointer; margin-top: 16px; letter-spacing: .3px;
               transition: background .2s; }
.btn-primary:hover { background: #4f46e5; }
.btn-primary:disabled { background: #a5b4fc; cursor: not-allowed; }
.trust-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
             margin-top: 12px; }
.trust-item { font-size: 11px; color: #94a3b8; }
.form-divider { text-align: center; font-size: 11px; color: #cbd5e1; margin: 12px 0; }
.form-login { text-align: center; font-size: 12px; color: #64748b; }
.form-login a { color: #6366f1; font-weight: 600; text-decoration: none; }
#reg-message { margin-top: 12px; font-size: 13px; padding: 8px 12px;
               border-radius: 6px; display: none; }
#reg-message.success { background: #f0fdf4; color: #16a34a; }
#reg-message.error   { background: #fef2f2; color: #dc2626; }

/* === BLOCKQUOTE === */
blockquote { border-left: 4px solid #6366f1; padding: 12px 16px;
             background: #f8fafc; border-radius: 0 6px 6px 0; margin-bottom: 20px; }
blockquote .latin { font-size: 16px; font-weight: 800; font-style: italic;
                    color: #1e293b; margin-bottom: 4px; }
blockquote .translation { font-size: 12px; color: #64748b; }

/* === QUOTE IMPACT (hero blockquote w Wyzwaniu) === */
blockquote.quote-impact {
  background: linear-gradient(135deg, #1e293b 0%, #312e81 100%);
  border-left: none;
  border-radius: 16px;
  padding: 40px 48px;
  text-align: center;
  margin-bottom: 32px;
  position: relative;
}
blockquote.quote-impact::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  left: 24px;
  font-size: 96px;
  color: #6366f1;
  font-family: Georgia, serif;
  line-height: 1;
  opacity: .6;
}
blockquote.quote-impact .latin {
  font-size: 28px;
  font-weight: 800;
  font-style: italic;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}
blockquote.quote-impact .translation {
  font-size: 11px;
  color: #a5b4fc;
  letter-spacing: .1em;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  blockquote.quote-impact { padding: 32px 24px; }
  blockquote.quote-impact .latin { font-size: 20px; }
}

/* === PAIN CARDS === */
.pain-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 768px) { .pain-cards { grid-template-columns: 1fr; } }
.pain-card { background: #fff; border: 1px solid #fecaca; border-left: 4px solid #ef4444;
             border-radius: 8px; padding: 20px; }
.pain-law { font-size: 11px; font-weight: 700; color: #ef4444; opacity: .8;
            margin-bottom: 8px; }
.pain-num { font-size: 28px; font-weight: 900; color: #ef4444; margin-bottom: 10px; }
.pain-card p { font-size: 13px; color: #374151; line-height: 1.6; }

/* === STEPS === */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
         position: relative; }
.steps::before { content: ''; position: absolute; top: 22px; left: 15%;
                 right: 15%; height: 2px;
                 background: linear-gradient(90deg,#6366f1,#8b5cf6); }
@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .steps::before { display: none; }
}
.step { text-align: center; position: relative; padding: 0 24px; }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: #6366f1;
            color: #fff; font-weight: 900; font-size: 16px; display: flex;
            align-items: center; justify-content: center; margin: 0 auto 12px;
            border: 3px solid #fff; box-shadow: 0 0 0 2px #6366f1; }
.step-title { font-size: 14px; font-weight: 700; color: #0f172a; margin-bottom: 6px; }
.step-desc { font-size: 12px; color: #64748b; line-height: 1.6; }

/* === PRICING === */
.pricing-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 900px) { .pricing-cards { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px) { .pricing-cards { grid-template-columns: 1fr; } }
.plan { background: #fff; border: 1.5px solid #e2e8f0; border-radius: 10px;
        padding: 20px; text-align: center; display: flex; flex-direction: column;
        position: relative; }
.plan.popular { border-color: #6366f1; }
.plan.popular::before { content: 'NAJPOPULARNIEJSZY'; position: absolute;
  top: -11px; left: 50%; transform: translateX(-50%); background: #6366f1;
  color: #fff; font-size: 9px; font-weight: 700; padding: 3px 10px;
  border-radius: 20px; white-space: nowrap; }
.plan-tag { display: inline-block; font-size: 10px; font-weight: 700;
            padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; }
.tag-free { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.tag-biz  { background: #eff6ff; color: #3b82f6; border: 1px solid #bfdbfe; }
.tag-pro  { background: #fdf4ff; color: #9333ea; border: 1px solid #e9d5ff; }
.tag-ent  { background: #1e293b; color: #e2e8f0; border: 1px solid #334155; }
.plan-name  { font-size: 13px; font-weight: 700; color: #374151; margin-bottom: 6px; }
.plan-price { font-size: 26px; font-weight: 900; color: #0f172a; line-height: 1; }
.plan-price small { font-size: 13px; font-weight: 400; color: #64748b; }
.plan-annual { font-size: 11px; color: #22c55e; font-weight: 600; margin: 6px 0 12px; }
/* margin-top:auto dobija listy do dołu karty — wyróżniki i przyciski na jednej linii we wszystkich planach */
.plan-features { list-style: none; text-align: left; margin-top: auto; margin-bottom: 16px; }
.plan-features li { font-size: 12px; color: #374151; line-height: 2; }
.plan-features li::before { content: '✓ '; color: #6366f1; font-weight: 700; }
.plan-features li.no::before { content: '✕ '; color: #cbd5e1; }
.plan-features li.no { color: #cbd5e1; }
/* display:block + line-height + box-sizing: <a> (Enterprise) renderuje się identycznie jak <button> */
.plan-btn { display: block; width: 100%; padding: 9px; border-radius: 6px; font-size: 12px;
            font-weight: 700; cursor: pointer; border: 1.5px solid transparent;
            line-height: 1.3; box-sizing: border-box; text-align: center; text-decoration: none; }
.plan-btn-free  { background: #f8fafc; color: #374151; border-color: #e2e8f0; }
.plan-btn-paid  { background: #6366f1; color: #fff; }
.plan-btn-enter { background: #0f172a; color: #fff; }

/* === FOOTER === */
.footer-inner { display: flex; justify-content: space-between; gap: 32px;
                flex-wrap: wrap; padding: 48px 0 24px; }
.footer-logo { font-weight: 900; font-size: 18px; color: #fff; margin-bottom: 8px; }
.footer-logo span { color: #6366f1; }
.footer-desc { font-size: 12px; line-height: 1.6; max-width: 220px; }
.footer-links { display: flex; flex-direction: column; gap: 6px; }
.footer-links a { font-size: 12px; color: #64748b; text-decoration: none; }
.footer-links a:hover { color: #94a3b8; }
.footer-bottom { border-top: 1px solid #1e293b; padding: 16px 0;
                 display: flex; justify-content: space-between; align-items: center;
                 flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 11px; color: #475569; }
.footer-badges { display: flex; gap: 8px; }
.footer-badge { font-size: 10px; background: #1e293b; color: #64748b;
                padding: 3px 10px; border-radius: 20px; }

/* === MODALS === */
.modal-overlay { display: none; position: fixed; inset: 0;
                 background: rgba(0,0,0,.5); z-index: 1000;
                 align-items: center; justify-content: center; }
.modal-overlay.active { display: flex; }
.modal { background: #fff; border-radius: 12px; padding: 32px; max-width: 380px;
         width: 90%; box-shadow: 0 20px 60px rgba(0,0,0,.2); text-align: center;
         position: relative; }
.modal-close { position: absolute; top: 14px; right: 16px; background: none;
               border: none; font-size: 20px; cursor: pointer; color: #94a3b8; }
.modal-icon { font-size: 40px; margin-bottom: 12px; }
.modal-title { font-size: 16px; font-weight: 800; color: #0f172a; margin-bottom: 10px; }
.modal-body  { font-size: 13px; color: #475569; line-height: 1.6; margin-bottom: 16px; }
.modal-btn-primary { background: #6366f1; color: #fff; border: none; padding: 11px 24px;
                     border-radius: 6px; font-size: 13px; font-weight: 800;
                     cursor: pointer; width: 100%; margin-bottom: 10px; }
.modal-btn-secondary { background: none; border: none; color: #94a3b8;
                       font-size: 12px; cursor: pointer; }

/* === COOKIE BANNER === */
#cookie-banner { position: fixed; bottom: 0; left: 0; right: 0;
                 background: #1e293b; color: #e2e8f0; padding: 14px 24px;
                 display: flex; align-items: center; justify-content: space-between;
                 font-size: 13px; z-index: 9999; gap: 16px; flex-wrap: wrap; }
#cookie-banner a { color: #818cf8; }
#cookie-banner button { background: #6366f1; color: #fff; border: none;
                        padding: 8px 20px; border-radius: 6px; cursor: pointer;
                        font-weight: 700; white-space: nowrap; flex-shrink: 0; }
#cookie-banner button.cookie-btn-secondary { background: transparent;
                        border: 1px solid #475569; color: #cbd5e1; font-weight: 600; }

/* === LEGAL PAGES === */
.legal-content { max-width: 720px; margin: 0 auto; padding: 48px 20px; }
.legal-content h1 { margin-bottom: 8px; }
.legal-content .meta { font-size: 13px; color: #64748b; margin-bottom: 32px; }
.legal-content h2 { font-size: 1.1rem; color: #1e293b; margin: 32px 0 12px; }
.legal-content h3 { font-size: 1rem; color: #1e293b; margin: 24px 0 8px; }
.legal-content p  { margin-bottom: 12px; font-size: 14px; }
.legal-content ul, .legal-content ol { padding-left: 20px; margin-bottom: 12px; }
.legal-content li { font-size: 14px; color: #475569; margin-bottom: 6px; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 13px; }
.legal-content th, .legal-content td { border: 1px solid #e2e8f0; padding: 10px 12px; text-align: left; }
.legal-content th { background: #f8fafc; font-weight: 700; }
.legal-content blockquote { margin: 16px 0; }
.callout { background: #fef2f2; border-left: 4px solid #ef4444; padding: 12px 16px;
           border-radius: 0 6px 6px 0; margin: 16px 0; font-size: 13px; color: #374151; }
.callout strong { color: #dc2626; }

/* === UTILITY === */
.text-center { text-align: center; }
.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mb-4  { margin-bottom: 16px; }

/* ============================================
   MOBILE RESPONSIVE FIXES
   ============================================ */

/* Stats bar — 3+2 na mobile zamiast 5 w rzędzie */
.stats-bar-inner {
  display: flex; justify-content: space-around;
  flex-wrap: wrap; gap: 16px; text-align: center;
}
.stats-bar-item { min-width: 80px; flex: 1 0 80px; max-width: 130px; }
.stats-bar-num { font-size: 26px; font-weight: 900; color: #6366f1; }
.stats-bar-lbl { font-size: 12px; color: #64748b; margin-top: 4px; line-height: 1.3; }

/* Korzyści — 3 col desktop → 1 col mobile */
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* Co monitorujemy — 2 zbalansowane kolumny (multicol radzi sobie z nieparzystą liczbą kart) */
.monitor-cols { columns: 2; column-gap: 16px; }
.monitor-cols > div { break-inside: avoid; margin-bottom: 16px; }
@media (max-width: 768px) {
  .monitor-cols { columns: 1; }
}

/* Nadchodzące nisze — 2 col mobile */
.niches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px; margin-bottom: 24px;
}
@media (max-width: 640px) {
  .niches-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* Pricing — fix badge overflow + single col on small */
@media (max-width: 500px) {
  .plan.popular { margin-top: 16px; }
  .plan.popular::before { font-size: 8px; padding: 2px 6px; }
}

/* Hero pills — wrap gracefully */
@media (max-width: 480px) {
  .pills { gap: 6px; }
  .pill { font-size: 11px; padding: 3px 9px; }
  .hero-sub { font-size: 15px; }
}

/* Form card — tighter on mobile */
@media (max-width: 480px) {
  .form-card { padding: 18px; }
  .btn-primary { font-size: 13px; padding: 11px; }
  .trust-row { gap: 8px; }
  .trust-item { font-size: 10px; }
}

/* Steps sub-description — better spacing */
@media (max-width: 768px) {
  .step { padding: 0 8px; }
  .step-desc { padding: 0 4px; }
}

/* Stats bar — smaller on mobile */
@media (max-width: 640px) {
  .stats-bar-num { font-size: 20px; }
  .stats-bar-lbl { font-size: 10px; }
  .stats-bar-item { min-width: 60px; }
}

/* Pain cards — bigger font on mobile */
@media (max-width: 768px) {
  .pain-num { font-size: 24px; }
  .pain-card p { font-size: 12px; }
}

/* Upcoming niches — compact on mobile */
@media (max-width: 640px) {
  .niche-card-inner { padding: 12px 10px; }
  .niche-card-inner div:first-child { font-size: 16px; margin-bottom: 4px; }
  .niche-card-inner .niche-title { font-size: 12px; }
  .niche-card-inner .niche-sub { display: none; }
}

/* === NICHE PICKER (single-select tiles) === */
.niche-picker { display: flex; flex-direction: column; gap: 8px; margin-bottom: 4px; }
.niche-opt {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border: 1.5px solid #e2e8f0; border-radius: 8px;
  cursor: pointer; transition: all .15s; background: #fff;
}
.niche-opt:hover { border-color: #6366f1; background: #f5f3ff; }
.niche-opt.selected { border-color: #6366f1; background: #eff6ff; }
.niche-opt.selected strong { color: #4f46e5; }
.niche-opt.niche-soon { opacity: .45; cursor: default; }
.niche-opt.niche-soon:hover { border-color: #e2e8f0; background: #fff; }
.niche-icon { font-size: 18px; flex-shrink: 0; }
.niche-opt strong { font-size: 13px; color: #1e293b; display: block; }
.niche-sub { font-size: 11px; color: #94a3b8; margin-top: 1px; }

/* ============================================
   PROOF OF VALUE CAROUSEL
   ============================================ */
.pov-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 480px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.pov-slide {
  position: absolute;   /* ALL slides absolute — allows simultaneous display */
  top: 0;
  left: 50%;
  width: 560px;
  transition: transform .48s cubic-bezier(.25,.46,.45,.94),
              opacity .48s ease,
              filter .48s ease;
  pointer-events: none;
}
/* Center card: full size, full opacity */
.pov-slide.active {
  transform: translateX(-50%) scale(1);
  opacity: 1; filter: none; z-index: 3;
  pointer-events: auto;
}
/* Left card: peeking from left side */
.pov-slide.prev {
  transform: translateX(calc(-50% - 460px)) scale(.86);
  opacity: .52; filter: blur(2px); z-index: 1;
}
/* Right card: peeking from right side */
.pov-slide.next {
  transform: translateX(calc(-50% + 460px)) scale(.86);
  opacity: .52; filter: blur(2px); z-index: 1;
}
/* Off-screen */
.pov-slide.hidden {
  transform: translateX(-50%) scale(.75);
  opacity: 0; filter: blur(4px); z-index: 0;
}

/* Card shell */
.pov-card { border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.08); background: #fff; }
.pov-topbar { background: #f8fafc; padding: 12px 18px; border-bottom: 1px solid #e2e8f0; display: flex; align-items: center; gap: 10px; }
.pov-dots { display: flex; gap: 5px; }
.pov-dots span { width: 11px; height: 11px; border-radius: 50%; }
.pov-dots span:nth-child(1) { background: #ef4444; }
.pov-dots span:nth-child(2) { background: #f59e0b; }
.pov-dots span:nth-child(3) { background: #22c55e; }
.pov-subject { flex: 1; background: #fff; border: 1px solid #e2e8f0; border-radius: 4px; padding: 4px 12px; font-size: 11px; color: #64748b; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.pov-body { padding: 20px; }
.pov-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.pov-logo { font-size: 15px; font-weight: 900; color: #1e293b; }
.pov-logo span { color: #6366f1; }
.pov-badge { color: #fff; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 10px; }
.pov-alert-card { border-left: 4px solid #ef4444; padding: 14px; background: #fff9f9; border-radius: 0 8px 8px 0; }
.pov-title { font-size: 12px; font-weight: 700; color: #1e293b; margin-bottom: 10px; line-height: 1.4; }
.pov-ai { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 6px; padding: 10px; margin-bottom: 10px; }
.pov-ai-label { font-size: 9px; font-weight: 700; color: #6366f1; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.pov-ai p { font-size: 12px; color: #374151; line-height: 1.6; margin: 0; }
.pov-impact-label { font-size: 9px; font-weight: 700; color: #ef4444; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.pov-impact ul { font-size: 12px; color: #374151; line-height: 1.8; padding-left: 14px; margin: 0 0 10px; }
.pov-source { font-size: 11px; color: #ef4444; font-weight: 600; }

/* Controls */
.pov-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 20px; }
.pov-arrow { background: #fff; border: 1.5px solid #e2e8f0; border-radius: 50%; width: 40px; height: 40px; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s; color: #374151; }
.pov-arrow:hover { border-color: #6366f1; color: #6366f1; background: #f0f4ff; }
.pov-dots-nav { display: flex; gap: 8px; }
.pov-dot { width: 8px; height: 8px; border-radius: 50%; background: #cbd5e1; cursor: pointer; transition: background .2s; }
.pov-dot.active { background: #6366f1; }
.pov-caption { margin-top: 16px; font-size: 12px; color: #94a3b8; text-align: center; }

@media (max-width: 640px) {
  .pov-carousel {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .pov-slide { width: calc(100vw - 40px); }
  .pov-slide.prev {
    display: block;
    transform: translateX(calc(48px - 150vw)) scale(.88);
    opacity: .35;
    filter: blur(1px);
  }
  .pov-slide.next {
    display: block;
    transform: translateX(calc(50vw - 8px)) scale(.88);
    opacity: .35;
    filter: blur(1px);
  }
  .pov-arrow { display: none; }
}
