/* TeenSelfCheck — base styles mirror /oferta KED visual system, with extra breathing room. */

.plat-page {
    --plat-bg-1: #0a1612;
    --plat-bg-2: #0f1f1a;
    --plat-bg-dark: #051210;
    --plat-bg-card: rgba(255, 255, 255, 0.03);
    --plat-border: rgba(255, 255, 255, 0.08);
    --plat-border-strong: rgba(255, 255, 255, 0.16);
    --plat-accent: #2ad167;
    --plat-accent-dim: rgba(42, 209, 103, 0.6);
    --plat-accent-soft: rgba(42, 209, 103, 0.12);
    --plat-warning: #f59e0c;
    --plat-t-1: #ffffff;
    --plat-t-2: rgba(255, 255, 255, 0.78);
    --plat-t-3: rgba(255, 255, 255, 0.55);
    --plat-t-4: rgba(255, 255, 255, 0.38);

    --plat-display: "Fraunces", "Times New Roman", serif;
    --plat-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --plat-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

    font-family: var(--plat-body);
    color: var(--plat-t-2);
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(42, 209, 103, 0.06), transparent 60%),
        linear-gradient(180deg, var(--plat-bg-1) 0%, var(--plat-bg-2) 100%);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: clip;
}

.plat-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.plat-narrow {
    max-width: 720px;
}

.plat-section {
    padding: 132px 0;
}

.plat-section-tight {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .plat-section {
        padding: 96px 0;
    }
    .plat-section-tight {
        padding: 64px 0;
    }
}

.plat-accent {
    color: var(--plat-accent);
    font-style: italic;
    font-family: var(--plat-display);
    font-weight: 500;
}

.plat-h2 {
    font-family: var(--plat-display);
    font-weight: 500;
    font-size: clamp(34px, 4.4vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--plat-t-1);
    margin: 0;
    text-wrap: balance;
}

.plat-h2 em {
    color: var(--plat-accent);
    font-style: italic;
    font-weight: 500;
}

.plat-lede {
    font-family: var(--plat-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--plat-t-2);
    max-width: 640px;
    text-wrap: balance;
}

.plat-underline {
    background: linear-gradient(transparent 68%, rgba(42, 209, 103, 0.32) 68%);
    padding: 0 4px;
}

.plat-bold-glow {
    color: var(--plat-t-1);
    font-weight: 600;
}

.plat-green {
    color: var(--plat-accent);
}

/* ═════════ HERO ═════════ */
.plat-hero {
    padding: 120px 0 96px;
    position: relative;
}

.plat-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 64px;
    background: linear-gradient(180deg, transparent, var(--plat-accent-dim));
    opacity: 0.5;
}

.plat-hero-inner {
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
}

.plat-hero-pre {
    font-family: var(--plat-mono);
    font-size: 12px;
    letter-spacing: 0.18em;
    color: var(--plat-accent-dim);
    margin-bottom: 36px;
}

.plat-hero h1 {
    font-family: var(--plat-display);
    font-weight: 500;
    font-size: clamp(40px, 6vw, 76px);
    line-height: 1.04;
    letter-spacing: -0.03em;
    color: var(--plat-t-1);
    margin: 0 0 32px;
    text-wrap: balance;
}

.plat-hero h1 em {
    color: var(--plat-accent);
    font-style: italic;
    font-weight: 500;
}

.plat-hero-sub {
    font-family: var(--plat-body);
    font-size: 18px;
    line-height: 1.65;
    color: var(--plat-t-2);
    max-width: 680px;
    margin: 0 auto 48px;
    text-wrap: balance;
}

.plat-scroll-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 28px;
    border-radius: 999px;
    border: 1px solid var(--plat-border-strong);
    background: rgba(255, 255, 255, 0.02);
    color: var(--plat-t-1);
    font-family: var(--plat-display);
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    text-decoration: none;
    transition: all 0.25s ease;
}

.plat-scroll-cta:hover {
    border-color: var(--plat-accent-dim);
    background: var(--plat-accent-soft);
    color: var(--plat-t-1);
    transform: translateY(-2px);
}

.plat-scroll-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 4px 8px;
    color: var(--plat-t-2);
    font-family: var(--plat-display);
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    text-decoration: none;
    border-bottom: 1px solid var(--plat-border);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.plat-scroll-link:hover {
    color: var(--plat-accent);
    border-bottom-color: var(--plat-accent-dim);
}

.plat-scroll-link .plat-arrow {
    color: var(--plat-accent-dim);
    transition: transform 0.2s ease, color 0.2s ease;
}

.plat-scroll-link:hover .plat-arrow {
    color: var(--plat-accent);
    transform: translateY(2px);
}

.plat-arrow {
    font-size: 16px;
    transform: translateY(1px);
}

.plat-hero-meta {
    margin-top: 64px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 32px;
    font-family: var(--plat-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--plat-t-3);
}

.plat-hero-meta span {
    position: relative;
    padding-left: 16px;
}

.plat-hero-meta span::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--plat-accent-dim);
}

/* ═════════ BRIDGE / SOFT ═════════ */
.plat-bridge-soft {
    text-align: center;
    font-family: var(--plat-display);
    font-style: italic;
    font-size: clamp(22px, 2.6vw, 28px);
    line-height: 1.4;
    color: var(--plat-t-2);
    max-width: 640px;
    margin: 0 auto;
}

.plat-bridge-soft p {
    margin: 0 0 12px;
}

.plat-bridge-soft p:last-child {
    margin: 0;
}

.plat-bridge {
    margin: 56px auto 0;
    max-width: 640px;
    text-align: center;
    font-family: var(--plat-display);
    font-weight: 500;
    font-size: clamp(26px, 2.8vw, 32px);
    line-height: 1.3;
    color: var(--plat-t-1);
    letter-spacing: -0.015em;
    text-wrap: balance;
}

/* ═════════ SCENE / LUSTRO ═════════ */
.plat-scene {
    max-width: 580px;
    margin: 0 auto;
    text-align: center;
    font-family: var(--plat-display);
    font-size: clamp(20px, 2.2vw, 24px);
    line-height: 1.5;
    color: var(--plat-t-2);
}

.plat-scene p {
    margin: 0 0 18px;
}

.plat-scene p:last-child {
    margin: 0;
}

/* ═════════ THREE LAYERS ═════════ */
.plat-three-layers {
    margin: 56px auto 0;
    max-width: 560px;
    text-align: center;
    font-family: var(--plat-display);
    font-size: clamp(19px, 2vw, 22px);
    line-height: 1.55;
    color: var(--plat-t-2);
}

.plat-three-layers p {
    margin: 0 0 16px;
}

.plat-three-layers p:last-child {
    margin: 0;
}

/* ═════════ DARK PULL QUOTE BREAK ═════════ */
.plat-pull-quote-break {
    background: var(--plat-bg-dark);
    padding: 132px 0;
    text-align: center;
    border-top: 1px solid var(--plat-border);
    border-bottom: 1px solid var(--plat-border);
}

.plat-pull-quote-break-text {
    font-family: var(--plat-display);
    font-weight: 500;
    font-size: clamp(32px, 4.4vw, 52px);
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--plat-t-1);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    text-wrap: balance;
}

.plat-pull-quote-break-text em {
    color: var(--plat-accent);
    font-style: italic;
    font-weight: 500;
}

@media (max-width: 768px) {
    .plat-pull-quote-break {
        padding: 96px 0;
    }
}

/* ═════════ ABOUT / MIKOŁAJ ═════════ */
.plat-about-body {
    font-size: 17px;
    line-height: 1.75;
    color: var(--plat-t-2);
}

.plat-about-body p {
    margin: 0 0 22px;
}

.plat-quote-line {
    font-family: var(--plat-display);
    font-style: italic;
    font-size: 22px;
    line-height: 1.5;
    color: var(--plat-t-1);
    margin: 32px 0;
    padding-left: 18px;
    border-left: 2px solid var(--plat-accent-dim);
}

.plat-about-quote {
    font-family: var(--plat-display);
    font-style: italic;
    font-size: clamp(22px, 2.6vw, 30px);
    line-height: 1.4;
    color: var(--plat-t-1);
    text-align: center;
    margin: 40px 0;
    padding: 28px 24px;
    background: var(--plat-bg-card);
    border-top: 1px solid var(--plat-border);
    border-bottom: 1px solid var(--plat-border);
}

.plat-signature {
    margin-top: 36px;
    font-family: var(--plat-display);
    font-style: italic;
    font-size: 18px;
    color: var(--plat-accent);
    text-align: right;
}

/* ═════════ NEGATION / OFFER ═════════ */
.plat-negation {
    margin: 64px auto 0;
    max-width: 580px;
    text-align: center;
    font-family: var(--plat-display);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.55;
    color: var(--plat-t-3);
}

.plat-negation p {
    margin: 0 0 12px;
}

.plat-negation p:last-child {
    margin: 0;
}

.plat-offer-summary {
    margin: 56px auto 0;
    max-width: 640px;
    text-align: center;
    font-family: var(--plat-display);
    font-size: clamp(20px, 2.2vw, 24px);
    line-height: 1.55;
    color: var(--plat-t-1);
}

.plat-offer-summary em {
    color: var(--plat-accent);
    font-style: italic;
}

/* ═════════ PILLARS ═════════ */
.plat-pillars {
    margin-top: 88px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-gap: 32px;
    gap: 32px;
}

.plat-pillar {
    background: var(--plat-bg-card);
    border: 1px solid var(--plat-border);
    border-radius: 18px;
    padding: 40px 32px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.plat-pillar:hover {
    border-color: var(--plat-accent-dim);
    transform: translateY(-4px);
}

.plat-pillar-num {
    font-family: var(--plat-mono);
    font-size: 13px;
    color: var(--plat-accent);
    letter-spacing: 0.18em;
    display: block;
    margin-bottom: 4px;
}

.plat-pillar-weeks {
    font-family: var(--plat-mono);
    font-size: 10px;
    color: var(--plat-t-4);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.plat-pillar h4 {
    font-family: var(--plat-display);
    font-weight: 500;
    font-size: 24px;
    line-height: 1.25;
    color: var(--plat-t-1);
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}

.plat-pillar p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--plat-t-3);
    margin: 0 0 20px;
}

.plat-pillar-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--plat-border);
    padding-top: 18px;
}

.plat-pillar-bullets li {
    font-size: 14px;
    line-height: 1.55;
    color: var(--plat-t-2);
    padding: 8px 0 8px 24px;
    position: relative;
}

.plat-pillar-bullets li::before {
    content: "→";
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--plat-accent);
    font-weight: 700;
}

/* ═════════ NAMED STORY (KRZYSIEK) ═════════ */
.plat-named-story {
    margin: 48px auto 0;
    max-width: 580px;
    text-align: center;
    font-family: var(--plat-display);
    font-size: clamp(20px, 2.2vw, 24px);
    line-height: 1.5;
    color: var(--plat-t-2);
}

.plat-named-story p {
    margin: 0 0 12px;
}

.plat-named-story p:last-child {
    margin: 0;
}

.plat-named-story-pointe {
    margin-top: 28px !important;
    color: var(--plat-accent);
    font-style: italic;
}

/* ═════════ REVIEWS ═════════ */
.plat-reviews-grid {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    grid-gap: 24px;
    gap: 24px;
}

.plat-review {
    background: var(--plat-bg-card);
    border: 1px solid var(--plat-border);
    border-radius: 18px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: border-color 0.3s ease;
}

.plat-review:hover {
    border-color: var(--plat-accent-dim);
}

.plat-review-body {
    font-size: 15px;
    line-height: 1.65;
    color: var(--plat-t-2);
    margin: 0;
    flex: 1 1;
}

.plat-review-author {
    font-family: var(--plat-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--plat-accent);
    margin: 0;
}

/* ═════════ FILTER (for me / not for me) ═════════ */
.plat-filter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 32px;
    gap: 32px;
}

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

.plat-filter-col {
    background: var(--plat-bg-card);
    border-radius: 22px;
    padding: 44px 36px;
    border: 1px solid var(--plat-border);
}

.plat-filter-col.plat-filter-yes {
    border-color: rgba(42, 209, 103, 0.22);
    background: linear-gradient(180deg, rgba(42, 209, 103, 0.04), var(--plat-bg-card));
}

.plat-filter-col.plat-filter-no {
    border-color: rgba(255, 255, 255, 0.08);
}

.plat-filter-col h3 {
    font-family: var(--plat-display);
    font-weight: 500;
    font-size: 24px;
    line-height: 1.25;
    margin: 0 0 28px;
    color: var(--plat-t-1);
    letter-spacing: -0.01em;
}

.plat-filter-col.plat-filter-yes h3 {
    color: var(--plat-accent);
}

.plat-filter-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plat-filter-col li {
    font-size: 15px;
    line-height: 1.6;
    color: var(--plat-t-2);
    padding: 12px 0 12px 28px;
    position: relative;
    border-top: 1px solid var(--plat-border);
}

.plat-filter-col li:first-child {
    border-top: none;
    padding-top: 0;
}

.plat-filter-col.plat-filter-yes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--plat-accent);
    font-weight: 700;
}

.plat-filter-col.plat-filter-yes li:first-child::before {
    top: 0;
}

.plat-filter-col.plat-filter-no li::before {
    content: "×";
    position: absolute;
    left: 0;
    top: 11px;
    color: var(--plat-t-4);
    font-weight: 700;
    font-size: 18px;
}

.plat-filter-col.plat-filter-no li:first-child::before {
    top: -1px;
}

/* ═════════ FINAL ═════════ */
.plat-final {
    padding: 132px 0;
    background: var(--plat-bg-dark);
    border-top: 1px solid var(--plat-border);
}

.plat-final-body {
    font-family: var(--plat-display);
    font-size: clamp(20px, 2.2vw, 26px);
    line-height: 1.55;
    color: var(--plat-t-2);
    text-align: center;
    margin-top: 48px;
}

.plat-final-body p {
    margin: 0 0 18px;
}

.plat-final-body p:last-child {
    margin: 0;
}

.plat-final-paths {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 24px;
    gap: 24px;
}

@media (max-width: 768px) {
    .plat-final-paths {
        grid-template-columns: 1fr;
    }
}

.plat-path {
    padding: 36px 30px;
    border-radius: 18px;
    background: var(--plat-bg-card);
    border: 1px solid var(--plat-border);
    text-align: center;
    font-family: var(--plat-display);
    font-size: 17px;
    line-height: 1.6;
    color: var(--plat-t-2);
}

.plat-path.plat-path-yes {
    border-color: rgba(42, 209, 103, 0.25);
    background: linear-gradient(180deg, rgba(42, 209, 103, 0.05), var(--plat-bg-card));
}

.plat-path p {
    margin: 0 0 10px;
}

.plat-path p:last-child {
    margin: 0;
}

.plat-path-label {
    font-family: var(--plat-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--plat-accent);
    margin-bottom: 20px !important;
}

.plat-path.plat-path-no .plat-path-label {
    color: var(--plat-t-4);
}

.plat-sig-final {
    margin-top: 80px;
    text-align: center;
    font-family: var(--plat-display);
    font-style: italic;
    font-size: 24px;
    color: var(--plat-accent);
}

/* ═════════ HERO CTA ROW ═════════ */
.plat-hero-cta-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.plat-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 32px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #2ad167 0%, #1fb058 100%);
    color: #0a1a10;
    font-family: var(--plat-body);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.005em;
    text-decoration: none;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35), 0 2px 8px rgba(42, 209, 103, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plat-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.45), 0 4px 12px rgba(42, 209, 103, 0.5);
    color: #0a1a10;
}

.plat-cta-primary.plat-cta-large {
    padding: 22px 40px;
    font-size: 18px;
}

.plat-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 4px 8px;
    color: var(--plat-t-2);
    font-family: var(--plat-display);
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    text-decoration: none;
    border-bottom: 1px solid var(--plat-border);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.plat-cta-secondary:hover {
    color: var(--plat-accent);
    border-bottom-color: var(--plat-accent-dim);
}

.plat-cta-secondary .plat-arr {
    color: var(--plat-accent-dim);
    transition: transform 0.2s ease, color 0.2s ease;
}

.plat-cta-secondary:hover .plat-arr {
    color: var(--plat-accent);
    transform: translateY(2px);
}

/* ═════════ STICKY CTA ═════════ */
.plat-sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9000;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-family: var(--plat-body);
    font-weight: 700;
    font-size: 15px;
    color: #0a1a10;
    background: linear-gradient(135deg, #2ad167 0%, #1fb058 100%);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(42, 209, 103, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plat-sticky-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(42, 209, 103, 0.5);
    color: #0a1a10;
}

.plat-sticky-cta .plat-arr {
    font-size: 16px;
    font-weight: 700;
}

@media (max-width: 640px) {
    .plat-sticky-cta {
        left: 16px;
        right: 16px;
        bottom: 16px;
        justify-content: center;
        padding: 14px 20px;
        font-size: 14px;
        border-radius: 16px;
    }
}

/* ═════════ MODULES ═════════ */
.plat-modules {
    margin-top: 88px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 32px;
    gap: 32px;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 720px) {
    .plat-modules {
        grid-template-columns: 1fr;
    }
}

.plat-module {
    background: var(--plat-bg-card);
    border: 1px solid var(--plat-border);
    border-radius: 18px;
    padding: 40px 32px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.plat-module:hover {
    border-color: var(--plat-accent-dim);
    transform: translateY(-4px);
}

.plat-module-num {
    font-family: var(--plat-mono);
    font-size: 13px;
    color: var(--plat-accent);
    letter-spacing: 0.18em;
    display: block;
    margin-bottom: 4px;
}

.plat-module-label {
    font-family: var(--plat-mono);
    font-size: 10px;
    color: var(--plat-t-4);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.plat-module h4 {
    font-family: var(--plat-display);
    font-weight: 500;
    font-size: 24px;
    line-height: 1.25;
    color: var(--plat-t-1);
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}

.plat-module p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--plat-t-3);
    margin: 0 0 20px;
}

.plat-module-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--plat-border);
    padding-top: 18px;
}

.plat-module-bullets li {
    font-size: 14px;
    line-height: 1.55;
    color: var(--plat-t-2);
    padding: 8px 0 8px 24px;
    position: relative;
}

.plat-module-bullets li::before {
    content: "→";
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--plat-accent);
    font-weight: 700;
}

/* ═════════ STEPS ═════════ */
.plat-steps {
    max-width: 720px;
    margin: 0 auto;
}

.plat-step {
    display: flex;
    gap: 28px;
    padding: 28px 0;
    border-top: 1px solid var(--plat-border);
}

.plat-step:first-child {
    border-top: none;
}

.plat-step-num {
    flex-shrink: 0;
    font-family: var(--plat-mono);
    font-size: 14px;
    color: var(--plat-accent);
    letter-spacing: 0.16em;
    padding-top: 4px;
    min-width: 40px;
}

.plat-step-body {
    flex: 1 1;
}

.plat-step-body h4 {
    font-family: var(--plat-display);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.3;
    color: var(--plat-t-1);
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}

.plat-step-body p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--plat-t-3);
    margin: 0;
}

/* ═════════ FINAL CTA BLOCK ═════════ */
.plat-final-cta-block {
    margin-top: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.plat-final-meta {
    font-family: var(--plat-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--plat-t-4);
    margin: 0;
    text-align: center;
}

.plat-final-meta span {
    color: var(--plat-t-3);
}

/* ═════════ CTA PROMISE LINE ═════════ */
.plat-cta-promise {
    margin: 4px auto 0;
    max-width: 480px;
    text-align: center;
    font-family: var(--plat-body);
    font-size: 14px;
    line-height: 1.55;
    color: var(--plat-t-3);
}

.plat-cta-promise strong {
    color: var(--plat-t-1);
    font-weight: 600;
}

/* ═════════ FAQ ═════════ */
.plat-faq {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 680px;
    margin: 0 auto;
}

.plat-faq-item {
    background: var(--plat-bg-card);
    border: 1px solid var(--plat-border);
    border-radius: 16px;
    padding: 28px 32px;
    transition: border-color 0.3s ease;
}

.plat-faq-item:hover {
    border-color: var(--plat-accent-dim);
}

.plat-faq-item h4 {
    font-family: var(--plat-display);
    font-style: italic;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.35;
    color: var(--plat-t-1);
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}

.plat-faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--plat-t-3);
    margin: 0;
}

/* ═════════ NUMBERS BAND ═════════ */
.plat-numbers-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
    gap: 24px;
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 32px;
    background: linear-gradient(160deg, rgba(42, 209, 103, 0.06), var(--plat-bg-card));
    border: 1px solid rgba(42, 209, 103, 0.18);
    border-radius: 20px;
}

@media (max-width: 640px) {
    .plat-numbers-band {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

.plat-number {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.plat-number-value {
    font-family: var(--plat-display);
    font-weight: 500;
    font-size: clamp(28px, 3.4vw, 40px);
    line-height: 1;
    color: var(--plat-accent);
    letter-spacing: -0.02em;
}

.plat-number-label {
    font-family: var(--plat-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--plat-t-3);
}

/* ═════════ FREE vs PRO COMPARISON ═════════ */
.plat-compare {
    max-width: 680px;
    margin: 0 auto;
    border: 1px solid var(--plat-border);
    border-radius: 16px;
    overflow: hidden;
    background: var(--plat-bg-card);
}

.plat-compare-row {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    padding: 18px 22px;
    border-top: 1px solid var(--plat-border);
    font-size: 15px;
    color: var(--plat-t-2);
}

.plat-compare-row:first-child {
    border-top: none;
}

.plat-compare-head {
    background: rgba(255, 255, 255, 0.02);
    font-family: var(--plat-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--plat-t-3);
    padding-top: 16px;
    padding-bottom: 16px;
}

.plat-compare-col-name {
    text-align: center;
}

.plat-compare-col-pro {
    color: var(--plat-accent);
}

.plat-compare-feature {
    font-family: var(--plat-display);
    font-style: italic;
    font-size: 17px;
    color: var(--plat-t-1);
}

.plat-compare-row > div:nth-child(2),
.plat-compare-row > div:nth-child(3) {
    text-align: center;
    font-family: var(--plat-mono);
    font-size: 14px;
    color: var(--plat-t-2);
}

.plat-compare-pro-val {
    color: var(--plat-accent) !important;
    font-weight: 600;
}

.plat-compare-note {
    margin: 24px auto 0;
    max-width: 480px;
    text-align: center;
    font-family: var(--plat-mono);
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--plat-t-3);
    line-height: 1.6;
}

@media (max-width: 540px) {
    .plat-compare-row {
        padding: 14px 16px;
        font-size: 14px;
    }
    .plat-compare-feature {
        font-size: 15px;
    }
}

/* ═════════ MINI PLANNER MOCKUP ═════════ */
.plat-mock-card {
    max-width: 560px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(42, 209, 103, 0.18);
    border-radius: 20px;
    padding: 28px 28px 20px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.plat-mock-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--plat-border);
    margin-bottom: 14px;
}

.plat-mock-title {
    font-family: var(--plat-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--plat-t-3);
}

.plat-mock-meta {
    font-family: var(--plat-mono);
    font-size: 11px;
    color: var(--plat-accent);
    letter-spacing: 0.08em;
}

.plat-mock-task {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 8px;
    border-bottom: 1px solid var(--plat-border);
    transition: background 0.2s ease;
}

.plat-mock-task:last-child {
    border-bottom: none;
}

.plat-mock-task:hover {
    background: rgba(255, 255, 255, 0.02);
}

.plat-mock-task-active {
    background: linear-gradient(90deg, rgba(42, 209, 103, 0.08), transparent);
    border-left: 3px solid var(--plat-accent);
    margin-left: -8px;
    padding-left: 13px;
    border-radius: 4px;
}

.plat-mock-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--plat-border-strong);
    flex-shrink: 0;
}

.plat-mock-task-active .plat-mock-check {
    border-color: var(--plat-accent);
    position: relative;
}

.plat-mock-task-active .plat-mock-check::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--plat-accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.plat-mock-task-body {
    flex: 1 1;
    min-width: 0;
}

.plat-mock-task-title {
    font-family: var(--plat-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--plat-t-1);
    line-height: 1.35;
}

.plat-mock-task-active .plat-mock-task-title {
    color: var(--plat-accent);
}

.plat-mock-task-sub {
    font-size: 13px;
    color: var(--plat-t-3);
    margin-top: 4px;
}

.plat-mock-play {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--plat-bg-card);
    border: 1px solid var(--plat-border);
    color: var(--plat-t-3);
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 2px;
}

.plat-mock-task-active .plat-mock-play {
    background: var(--plat-accent);
    border-color: var(--plat-accent);
    color: #0a1a10;
}

.plat-mock-caption {
    margin: 24px auto 0;
    max-width: 480px;
    text-align: center;
    font-family: var(--plat-display);
    font-style: italic;
    font-size: 14px;
    color: var(--plat-t-3);
    line-height: 1.6;
}

/* ═════════ VIDEO WRAPPER ═════════ */
.plat-video-wrap {
    max-width: 880px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
}

/* ═════════ TESTIMONIALS (Kacper + Julia) ═════════ */
.plat-testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 28px;
    gap: 28px;
    max-width: 1080px;
    margin: 0 auto;
}

@media (max-width: 720px) {
    .plat-testimonials {
        grid-template-columns: 1fr;
    }
}

.plat-testimonial {
    background: linear-gradient(160deg, rgba(42, 209, 103, 0.06), var(--plat-bg-card));
    border: 1px solid rgba(42, 209, 103, 0.18);
    border-radius: 18px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.plat-testi-stars {
    color: var(--plat-warning);
    font-size: 14px;
    letter-spacing: 2px;
}

.plat-testimonial blockquote {
    margin: 0;
    font-family: var(--plat-display);
    font-style: italic;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.55;
    color: var(--plat-t-1);
    flex: 1 1;
}

.plat-testi-who {
    padding-top: 16px;
    border-top: 1px solid var(--plat-border);
    font-family: var(--plat-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--plat-t-3);
}

.plat-testi-who strong {
    color: var(--plat-accent);
    font-weight: 600;
}

/* ═════════ TESTIMONIAL AVATARS ═════════ */
.plat-testi-who {
    display: flex;
    align-items: center;
    gap: 12px;
}

.plat-testi-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--plat-display);
    font-weight: 600;
    font-size: 14px;
    color: #0a1a10;
    flex-shrink: 0;
}

.plat-testi-avatar-k {
    background: linear-gradient(135deg, #2ad167, #1fb058);
}

.plat-testi-avatar-j {
    background: linear-gradient(135deg, #f59e0c, #d97706);
}

/* ═════════ VIDEO CTA ═════════ */
.plat-video-cta {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

/* ═════════ INLINE CTA AT EMOTIONAL PEAK ═════════ */
.plat-inline-cta {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
    padding: 36px 32px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(42, 209, 103, 0.08), rgba(42, 209, 103, 0.02));
    border: 1px solid rgba(42, 209, 103, 0.22);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.plat-inline-cta-text {
    font-family: var(--plat-display);
    font-size: clamp(22px, 2.6vw, 28px);
    line-height: 1.45;
    color: var(--plat-t-1);
    margin: 0;
    text-wrap: balance;
}

.plat-inline-cta-text strong {
    color: var(--plat-accent);
    font-weight: 500;
    font-style: italic;
}

.plat-inline-cta-secondary {
    margin: 4px 0 0;
    font-family: var(--plat-display);
    font-style: italic;
    font-size: 14px;
    color: var(--plat-t-3);
}

.plat-testi-avatar-t {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    color: #fff;
}

/* Testimonials grid — 3 cards now */
@media (min-width: 880px) {
    .plat-testimonials {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ═════════ NUMBERS BAND ANCHORED (hero metric + caption) ═════════ */
.plat-numbers-band-anchored .plat-number-hero .plat-number-value {
    font-size: clamp(40px, 4.6vw, 56px);
}

.plat-numbers-band-anchored .plat-number-hero .plat-number-label {
    color: var(--plat-accent);
}

.plat-numbers-caption {
    margin: 28px auto 0;
    max-width: 540px;
    text-align: center;
    font-family: var(--plat-display);
    font-style: italic;
    font-size: clamp(16px, 1.7vw, 18px);
    line-height: 1.55;
    color: var(--plat-t-2);
}

