/* ProDentim — product page styles */
:root {
    --pd-teal: #0d9488;
    --pd-teal-dark: #0f766e;
    --pd-mint: #5eead4;
    --ink: #1f2937;
    --ink-muted: #6b7280;
    --card: #ffffff;
}

[data-theme="dark"] {
    --ink: #f4f4f5;
    --ink-muted: #c4c4cc;
    --card: #1f1f24;
    --pd-teal: #2dd4bf;
    --pd-teal-dark: #5eead4;
    --pd-mint: #99f6e4;
}

body.ve-review-body {
    font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.pd-has-sticky {
    padding-bottom: max(72px, calc(64px + env(safe-area-inset-bottom)));
}

.ve-wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px 18px 60px;
}

.page-intro {
    text-align: center;
    padding: 40px 20px 30px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 30px;
}

.intro-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--pd-teal);
    background: rgba(13, 148, 136, 0.1);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.page-intro h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: 14px;
}

.page-intro h1 span { color: var(--pd-teal); }

.intro-sub {
    font-size: 1.05rem;
    color: var(--ink-muted);
    max-width: 640px;
    margin: 0 auto 16px;
    line-height: 1.6;
}

.intro-stars { font-size: 1.5rem; margin-bottom: 4px; }
.intro-rating { font-size: 14px; color: var(--ink-muted); margin-bottom: 8px; }
.intro-disclaimer { font-size: 13px; color: var(--ink-muted); margin-top: 10px; }

.btn-accent {
    display: inline-block;
    background: linear-gradient(135deg, var(--pd-teal), var(--pd-teal-dark));
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.45);
}

.btn-primary {
    display: inline-block;
    background: var(--card);
    color: var(--pd-teal);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid var(--pd-teal);
    transition: background 0.2s;
}

.btn-primary:hover { background: rgba(13, 148, 136, 0.08); }

.verdict-strip {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.08), rgba(251, 191, 36, 0.08));
    border-left: 4px solid var(--pd-teal);
    border-radius: 12px;
    padding: 18px 22px;
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
}

.toc {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px 26px;
    margin-bottom: 36px;
    text-align: center;
}

.toc-title { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.toc ol { padding-left: 0; list-style-position: inside; columns: 2; column-gap: 24px; max-width: 640px; margin: 0 auto; text-align: left; }
.toc li { margin-bottom: 6px; font-size: 14px; }
.toc a { color: var(--pd-teal); text-decoration: none; }
.toc a:hover { text-decoration: underline; }

section { margin-bottom: 36px; }

.sh2 {
    font-size: clamp(1.25rem, 3vw, 1.6rem);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--pd-teal);
    text-align: center;
}

.sh3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin: 20px 0 8px;
    text-align: center;
}

.pd-section-box > p,
.pd-section-box .pd-section-lead {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.pd-section-box .sh3 { text-align: center; }

.pd-center-img {
    display: block;
    max-width: 320px;
    width: 100%;
    margin: 20px auto;
    border-radius: 14px;
}

.pd-center-img--sm { max-width: 360px; margin-top: 24px; }

.pd-feat-list {
    list-style: none;
    padding: 0;
    max-width: 520px;
    margin: 12px auto 0;
    text-align: center;
}

.pd-feat-list li {
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border);
    color: var(--ink);
}

.pd-feat-list li:last-child { border-bottom: none; }

.cta-band {
    background: linear-gradient(135deg, #0f766e, #115e59);
    color: #fff;
    text-align: center;
    padding: 30px 24px;
    border-radius: 12px;
    margin: 30px auto;
    max-width: 920px;
}

.cta-band h3 { font-size: 1.2rem; margin-bottom: 10px; }
.cta-band p { color: rgba(255, 255, 255, 0.85); font-size: 14px; margin-bottom: 14px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .btn-accent { background: linear-gradient(135deg, #fbbf24, #f59e0b); color: #1c1917; box-shadow: 0 4px 14px rgba(251, 191, 36, 0.4); }

.kw-cloud { display: flex; flex-wrap: wrap; gap: 6px; margin: 14px auto; justify-content: center; max-width: 720px; }

.kw {
    display: inline-block;
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 4px;
    background: #f0fdfa;
    color: var(--ink-muted);
    border: 1px solid #99f6e4;
}

.kw.brand { background: rgba(13, 148, 136, 0.1); color: var(--pd-teal-dark); font-weight: 600; }
.kw.buy { background: rgba(251, 191, 36, 0.12); color: #92400e; font-weight: 600; }

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 8px;
    overflow: hidden;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 14px 18px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14.5px;
    background: none;
    border: none;
    color: var(--ink);
    text-align: left;
}

.faq-q::after { content: '▼'; font-size: 11px; color: var(--pd-teal); transition: transform 0.3s; }
.faq-item.open .faq-q::after { transform: rotate(180deg); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 18px; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 18px 16px; }
.faq-a p { font-size: 14px; color: var(--ink-muted); line-height: 1.7; text-align: left; }

.verdict-card {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.06), rgba(251, 191, 36, 0.06));
    border: 2px solid var(--pd-teal);
    border-radius: 12px;
    padding: 30px 24px;
    text-align: center;
    margin: 30px auto;
    max-width: 720px;
}

.verdict-card h2 { font-size: 1.3rem; margin-bottom: 14px; border: none; padding: 0; }
.verdict-score { font-size: 2.2rem; font-weight: 800; color: var(--pd-teal); margin-bottom: 4px; }
.verdict-score-sub { font-size: 14px; color: var(--ink-muted); margin-bottom: 16px; }
.verdict-card p { max-width: 600px; margin: 0 auto 18px; font-size: 15px; line-height: 1.7; }
.verdict-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.ve-hero.pd-hero-new {
    background:
        radial-gradient(ellipse 70% 50% at 20% 0%, rgba(147, 197, 253, 0.35) 0%, transparent 55%),
        radial-gradient(ellipse 60% 45% at 100% 80%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
        linear-gradient(145deg, #1e3a8a 0%, #3730a3 35%, #2563eb 65%, #1d4ed8 100%);
    padding: 48px 0 56px;
    overflow: hidden;
}

.pd-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
}

.pd-hero-copy {
    text-align: left;
}

.pd-hero-title-block {
    position: relative;
    margin: 0 0 20px;
    padding: 22px 24px 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.06) 100%);
    border: 1px solid rgba(94, 234, 212, 0.35);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
}

.pd-hero-title-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, #5eead4, #fde68a, #5eead4);
}

.pd-hero-logo {
    display: block;
    max-width: 220px;
    width: 100%;
    height: auto;
    margin: 0 0 16px;
    filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

.pd-hero-title {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.pd-brand {
    font-size: clamp(2.2rem, 5.5vw, 3.25rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, #ccfbf1 45%, #5eead4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
}

.pd-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 700;
    color: #0f766e;
    letter-spacing: 0.01em;
    line-height: 1.35;
    padding: 8px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fde68a 0%, #fbbf24 100%);
    box-shadow: 0 4px 14px rgba(251, 191, 36, 0.35);
}

.pd-tagline::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0f766e;
    flex-shrink: 0;
}

.pd-hero-lead {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 480px;
    margin: 0 0 20px;
    line-height: 1.65;
}

.pd-hero-copy .ve-hero-stats { justify-content: flex-start; margin-bottom: 18px; }
.pd-hero-copy .ve-hero-ctas { justify-content: flex-start; }

.pd-hero-icon-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    margin: 20px 0 24px;
    max-width: 520px;
}

.pd-hero-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 800;
    color: #ccfbf1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pd-icon-ring {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(94, 234, 212, 0.5);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    animation: pd-icon-float 3s ease-in-out infinite;
}

.pd-icon-ring img { width: 36px; height: 36px; display: block; }
.pd-icon-ring--1 { animation-delay: 0s; }
.pd-icon-ring--2 { animation-delay: 0.2s; }
.pd-icon-ring--3 { animation-delay: 0.4s; }
.pd-icon-ring--4 { animation-delay: 0.6s; }
.pd-icon-ring--5 { animation-delay: 0.8s; }

@keyframes pd-icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.pd-hero-visual {
    position: relative;
    text-align: center;
}

.pd-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.45) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pd-glow-pulse 4s ease-in-out infinite;
}

@keyframes pd-glow-pulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.pd-hero-product-stage {
    position: relative;
    z-index: 1;
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(94, 234, 212, 0.35);
    border-radius: 28px;
    backdrop-filter: blur(16px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.35);
    max-width: 340px;
    margin: 0 auto;
}

.pd-hero-product-img {
    width: 100%;
    max-width: 260px;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: pd-float 3.5s ease-in-out infinite;
}

.pd-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
}

.pd-icon-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    max-width: 680px;
    margin: 22px auto;
    width: 100%;
}

.pd-icon-card {
    text-align: center;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #99f6e4;
    background: var(--bg);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pd-icon-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(13, 148, 136, 0.18);
}

.pd-icon-wrap {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f0fdfa 0%, #ecfeff 100%);
    padding: 12px;
    animation: pd-icon-float 3.5s ease-in-out infinite;
}

.pd-icon-wrap img { width: 48px; height: 48px; display: block; }
.pd-icon-wrap--1 { animation-delay: 0s; }
.pd-icon-wrap--2 { animation-delay: 0.15s; }
.pd-icon-wrap--3 { animation-delay: 0.3s; }
.pd-icon-wrap--4 { animation-delay: 0.45s; }
.pd-icon-wrap--5 { animation-delay: 0.6s; }

.pd-icon-card figcaption {
    font-size: 11px;
    font-weight: 800;
    padding: 10px 6px;
    color: #0f766e;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

[data-theme="dark"] .pd-icon-wrap { background: linear-gradient(180deg, #134e4a 0%, var(--bg-elev) 100%); }
[data-theme="dark"] .pd-icon-card figcaption { color: #5eead4; }

.pd-hero-wrap { max-width: 920px; margin: 0 auto; text-align: center; }
.pd-hero-wrap .eyebrow { margin-bottom: 14px; display: inline-flex; }
.pd-hero-wrap .pd-savings-pill { margin-bottom: 16px; }
.pd-hero-copy .eyebrow { margin-bottom: 14px; display: inline-flex; }
.pd-hero-copy .pd-savings-pill { margin-bottom: 14px; }
.pd-hero-copy .ve-hero-ctas { margin-top: 4px; }

.ve-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 24px;
    justify-content: center;
}

.ve-hero-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.92);
}

.ve-hero-stat .ic {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #5eead4;
    border-radius: 50%;
    color: #0f766e;
    font-weight: 800;
    font-size: 11px;
}

.ve-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 16px;
}

.btn-ve-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1c1917;
    font-weight: 800;
    font-size: 15px;
    padding: 14px 26px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.35);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-ve-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(251, 191, 36, 0.45);
}

.btn-ve-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 13px 22px;
    border-radius: 10px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.btn-ve-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
}

.pd-hero-showcase {
    position: relative;
    max-width: 380px;
    margin: 0 auto 20px;
    padding: 28px 24px 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(94, 234, 212, 0.45);
    border-radius: 24px;
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    text-align: center;
}
.pd-hero-showcase img {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.25));
    animation: pd-float 3.5s ease-in-out infinite;
}
@keyframes pd-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.pd-hero-ring {
    position: absolute;
    inset: 12px;
    border: 2px dashed rgba(94, 234, 212, 0.45);
    border-radius: 20px;
    pointer-events: none;
    animation: pd-ring-pulse 4s ease-in-out infinite;
}
@keyframes pd-ring-pulse {
    0%, 100% { opacity: 0.45; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.01); }
}
.pd-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
}
.pd-hero-chip {
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #ccfbf1;
    border: 1px solid rgba(94, 234, 212, 0.35);
}
.pd-savings-pill {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1c1917;
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.35);
}
.pd-section-box {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px 22px;
    margin-bottom: 28px;
}
.pd-section-lead { text-align: center; max-width: 640px; margin: 0 auto 20px; color: var(--ink-muted); }
.pd-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}
.pd-benefit-card {
    text-align: center;
    padding: 18px 12px;
    border-radius: 14px;
    background: linear-gradient(180deg, #f0fdfa 0%, var(--bg) 100%);
    border: 1px solid #99f6e4;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pd-benefit-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(13, 148, 136, 0.15); }
[data-theme="dark"] .pd-benefit-card { background: linear-gradient(180deg, #134e4a 0%, var(--bg-elev) 100%); border-color: #0f766e; }
.pd-benefit-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    color: #fff;
    font-size: 24px;
}
.pd-benefit-card h3 { font-size: 13px; font-weight: 800; margin: 0 0 6px; color: #0f766e; }
[data-theme="dark"] .pd-benefit-card h3 { color: #5eead4; }
.pd-benefit-card p { font-size: 11px; margin: 0; color: var(--ink-muted); line-height: 1.45; }
.pd-lottie-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; max-width: 900px; margin: 22px auto; }
.pd-lottie-card {
    text-align: center;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #99f6e4;
    background: var(--bg);
    transition: transform 0.25s ease;
}
.pd-lottie-card:hover { transform: scale(1.03); }
.pd-lottie-wrap {
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f0fdfa 0%, #ecfeff 100%);
    padding: 10px;
}
[data-theme="dark"] .pd-lottie-wrap { background: linear-gradient(180deg, #134e4a 0%, var(--bg-elev) 100%); }
.pd-lottie-wrap svg,
[data-lottie] svg {
    width: 64px !important;
    height: 64px !important;
    display: block;
    margin: 0 auto;
}
.pd-hero-lottie svg { width: 48px !important; height: 48px !important; }
.pd-lottie-card figcaption { font-size: 11px; font-weight: 700; padding: 8px 6px; color: #0f766e; }
[data-theme="dark"] .pd-lottie-card figcaption { color: #5eead4; }
.pd-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 920px;
    margin: 0 auto;
}
.pd-showcase-card {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg);
    transition: transform 0.25s ease;
}
.pd-showcase-card:hover { transform: translateY(-4px); }
.pd-showcase-visual {
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: linear-gradient(180deg, #f0fdfa, var(--bg-elev));
}
.pd-showcase-visual img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 8px; }
.pd-showcase-card figcaption { font-size: 12px; font-weight: 700; padding: 10px; text-align: center; color: #0f766e; }
.pd-ingredient-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 900px;
    margin: 20px auto 0;
}
.pd-ingredient-card {
    padding: 16px;
    border-radius: 14px;
    border: 1px solid #99f6e4;
    background: var(--bg);
    text-align: center;
}
.pd-ingredient-card img { width: 96px; height: 96px; object-fit: contain; margin: 0 auto 10px; display: block; }
.pd-ingredient-card h3 { font-size: 13px; margin: 0 0 6px; color: #0f766e; }
.pd-ingredient-card p { font-size: 11px; margin: 0; color: var(--ink-muted); }
.pd-bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 920px; margin: 0 auto; }
.pd-bonus-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg);
    text-align: center;
}
.pd-bonus-card img { width: 100%; height: auto; display: block; }
.pd-bonus-card h3 { font-size: 12px; padding: 10px 12px 4px; margin: 0; }
.pd-bonus-card p { font-size: 11px; padding: 0 12px 12px; margin: 0; color: var(--ink-muted); }
.pd-price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 920px; margin: 24px auto 0; }
.pd-price-card {
    text-align: center;
    padding: 20px 16px;
    border-radius: 16px;
    border: 2px solid var(--border);
    background: var(--bg);
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pd-price-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(13, 148, 136, 0.12); }
.pd-price-card.is-popular {
    border-color: #14b8a6;
    box-shadow: 0 12px 36px rgba(13, 148, 136, 0.2);
    transform: scale(1.03);
}
.pd-price-card img { max-width: 180px; max-height: 200px; width: auto; height: auto; object-fit: contain; margin: 0 auto 12px; display: block; }
.pd-buy-btn { display: inline-block; margin-top: 8px; min-width: 160px; }
.pd-price-card .price { font-size: 2rem; font-weight: 800; color: #0f766e; margin: 8px 0; }
.pd-price-card .price small { font-size: 0.45em; font-weight: 600; }
.pd-price-ribbon {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    color: #fff;
    margin-bottom: 12px;
}
.pd-guarantee-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
    max-width: 640px;
    margin: 28px auto 0;
    padding: 24px 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f0fdfa, var(--bg-elev));
    border: 1px solid #99f6e4;
}
.pd-shipping-badge-wrap {
    display: flex;
    justify-content: center;
    margin: 28px auto 12px;
    padding: 0 16px;
}
.pd-shipping-badge {
    display: block;
    width: min(240px, 78vw);
    max-width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    margin: 0 auto;
}

.pd-guarantee-row img { flex-shrink: 0; width: 120px; height: auto; margin: 0 auto; }
.pd-guarantee-row .sh3 { margin-top: 0; }
.pd-guarantee-row p { text-align: center; margin-bottom: 0; }

.pd-reviews-banner {
    margin: 0 auto 24px;
    max-width: 920px;
    padding: 0 4px;
}
.pd-reviews-collage {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(15, 118, 110, 0.12);
}
.pd-reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 720px;
    margin: 0 auto;
}
.pd-review-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: start;
    gap: 16px;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.pd-review-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #99f6e4;
}
.pd-review-body { min-width: 0; }
.pd-review-meta {
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 10px;
    color: var(--ink-muted);
}
.pd-review-meta strong { color: var(--ink); }
.pd-review-stars {
    width: 80px;
    height: auto;
    vertical-align: middle;
    display: inline-block;
    margin-left: 2px;
}
.pd-review-quote {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink);
    font-style: italic;
}
.pd-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin: 20px auto 12px;
    max-width: 720px;
    padding: 0 4px;
}
.pd-badge {
    font-size: 12px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f0fdfa;
    color: #0f766e;
    border: 1px solid #99f6e4;
    white-space: nowrap;
    line-height: 1.2;
    text-align: center;
}
.pd-cert-wrap {
    width: 100%;
    max-width: 880px;
    margin: 16px auto 0;
    padding: 0 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.pd-cert-wrap::-webkit-scrollbar { height: 4px; }
.pd-cert-wrap::-webkit-scrollbar-thumb { background: #99f6e4; border-radius: 4px; }
[data-theme="dark"] .pd-badge { background: #134e4a; color: #5eead4; }
.pd-kw-seo { margin-top: 24px; padding-top: 20px; border-top: 1px dashed var(--border); }
.pd-kw-seo-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-muted); margin-bottom: 10px; text-align: center; }
.pd-split-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 680px;
    margin: 20px auto 0;
    text-align: center;
}
.pd-split-block img { width: 100%; max-width: 520px; border-radius: 14px; }
.pd-split-copy p { text-align: center; max-width: 600px; margin-left: auto; margin-right: auto; }
.pd-hero-lottie {
    position: absolute;
    width: 56px;
    height: 56px;
    pointer-events: none;
    z-index: 2;
}
.pd-lottie-tl { top: 8px; left: 8px; }
.pd-lottie-br { bottom: 8px; right: 8px; }
.pd-sticky-offer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #0f766e, #0d9488);
    color: #fff;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    transform: translateY(100%);
    transition: transform 0.35s ease;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
}
.pd-sticky-offer.is-visible { transform: translateY(0); }
.pd-sticky-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.pd-sticky-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}
.pd-sticky-brand {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.pd-sticky-detail {
    font-size: 12px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.92);
}
.pd-sticky-inner .btn-sticky {
    background: #fbbf24;
    color: #1c1917;
    font-weight: 800;
    font-size: 13px;
    padding: 11px 18px;
    border-radius: 999px;
    white-space: nowrap;
    text-decoration: none;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    transition: transform 0.15s ease, background 0.15s ease;
}
.pd-sticky-inner .btn-sticky:hover {
    background: #f59e0b;
    transform: translateY(-1px);
}
.pd-cert-img {
    display: block;
    width: 100%;
    max-width: 880px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    border-radius: 12px;
}
@media (max-width: 768px) {
    .toc ol { columns: 1; }
    .pd-hero-grid { grid-template-columns: 1fr; gap: 28px; }
    .pd-hero-copy { text-align: center; }
    .pd-hero-logo { margin: 0 auto 16px; }
    .pd-hero-title { align-items: center; }
    .pd-hero-title-block { text-align: center; }
    .pd-hero-title-block::before { left: 20%; right: 20%; }
    .pd-tagline { margin: 0 auto; }
    .pd-hero-lead { margin: 0 auto 20px; }
    .pd-hero-copy .ve-hero-stats { justify-content: center; }
    .pd-hero-copy .ve-hero-ctas { justify-content: center; }
    .pd-hero-icon-row { justify-content: center; margin: 20px auto 24px; }
    .pd-hero-visual { order: -1; }
    .pd-hero-product-stage { max-width: 280px; }
    .pd-hero-icon-row { gap: 8px; }
    .pd-icon-ring { width: 48px; height: 48px; border-radius: 12px; }
    .pd-icon-ring img { width: 30px; height: 30px; }
    .pd-icon-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        max-width: 420px;
        gap: 12px;
    }
    .pd-icon-grid .pd-icon-card:nth-child(1) { grid-column: 1 / 3; }
    .pd-icon-grid .pd-icon-card:nth-child(2) { grid-column: 3 / 5; }
    .pd-icon-grid .pd-icon-card:nth-child(3) { grid-column: 5 / 7; }
    .pd-icon-grid .pd-icon-card:nth-child(4) { grid-column: 2 / 4; }
    .pd-icon-grid .pd-icon-card:nth-child(5) { grid-column: 4 / 6; }
    .pd-badge-row { gap: 8px; max-width: 520px; }
    .pd-badge { font-size: 11px; padding: 7px 12px; }
    .pd-benefit-grid { grid-template-columns: repeat(2, 1fr); }
    .pd-lottie-grid { grid-template-columns: repeat(3, 1fr); }
    .pd-showcase-grid { grid-template-columns: repeat(2, 1fr); }
    .pd-ingredient-grid { grid-template-columns: 1fr; max-width: 360px; }
    .pd-bonus-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .pd-price-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
    .pd-price-card.is-popular { transform: none; }
    .btn-accent, .btn-primary { display: inline-block; }
    .pd-sticky-offer { padding: 12px 14px calc(12px + env(safe-area-inset-bottom)); }
    .pd-sticky-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .pd-sticky-copy {
        text-align: center;
        align-items: center;
    }
    .pd-sticky-brand { font-size: 15px; }
    .pd-sticky-detail {
        font-size: 11px;
        max-width: 320px;
    }
    .pd-sticky-inner .btn-sticky {
        width: 100%;
        text-align: center;
        padding: 13px 16px;
        font-size: 14px;
    }
    body.pd-has-sticky {
        padding-bottom: max(118px, calc(108px + env(safe-area-inset-bottom)));
    }
}
@media (max-width: 640px) {
    .pd-shipping-badge { width: min(200px, 70vw); }
    .pd-reviews-banner { margin-bottom: 18px; }
    .pd-review-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
    .pd-review-body { text-align: center; }
    .pd-review-meta { font-size: 12px; }
    .pd-review-quote { font-size: 14px; }
    .pd-icon-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: min(320px, 100%);
        gap: 10px;
    }
    .pd-icon-grid .pd-icon-card:nth-child(n) { grid-column: auto; }
    .pd-icon-grid .pd-icon-card:last-child {
        grid-column: 1 / -1;
        justify-self: center;
        width: calc(50% - 5px);
    }
    .pd-icon-wrap { height: 76px; padding: 10px; }
    .pd-icon-wrap img { width: 42px; height: 42px; }
    .pd-icon-card figcaption { font-size: 10px; padding: 8px 4px; }
    .pd-badge-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        max-width: 100%;
        padding: 0;
    }
    .pd-badge {
        font-size: 10px;
        padding: 8px 10px;
        white-space: normal;
    }
    .pd-cert-wrap { padding: 0 4px; }
    .pd-hero-icon-row .pd-hero-icon-item { flex: 0 0 calc(33.33% - 8px); }
    .pd-hero-icon-item span:last-child { font-size: 9px; }
    .pd-benefit-grid { grid-template-columns: 1fr; }
}

/* Dark mode — ensure all body text & cards stay readable */
[data-theme="dark"] body.ve-review-body {
    color: var(--ink);
    background: var(--bg);
}

[data-theme="dark"] .page-intro h1,
[data-theme="dark"] .sh2,
[data-theme="dark"] .sh3,
[data-theme="dark"] .toc-title,
[data-theme="dark"] .faq-q,
[data-theme="dark"] .pd-bonus-card h3,
[data-theme="dark"] .pd-price-card h3,
[data-theme="dark"] .verdict-card h2 {
    color: var(--ink);
}

[data-theme="dark"] .intro-sub,
[data-theme="dark"] .intro-rating,
[data-theme="dark"] .intro-disclaimer,
[data-theme="dark"] .page-intro p,
[data-theme="dark"] .pd-section-box > p,
[data-theme="dark"] .pd-section-lead,
[data-theme="dark"] .faq-a p,
[data-theme="dark"] .verdict-score-sub,
[data-theme="dark"] .verdict-card p,
[data-theme="dark"] .pd-feat-list li,
[data-theme="dark"] .pd-review-meta,
[data-theme="dark"] .pd-kw-seo-label {
    color: var(--ink-muted);
}

[data-theme="dark"] .toc,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .pd-section-box {
    background: var(--card);
    border-color: var(--border);
}

[data-theme="dark"] .kw {
    background: #134e4a;
    color: #ccfbf1;
    border-color: #0f766e;
}

[data-theme="dark"] .kw.brand { color: #5eead4; background: rgba(13, 148, 136, 0.2); }
[data-theme="dark"] .kw.buy { color: #fde68a; background: rgba(251, 191, 36, 0.18); }

[data-theme="dark"] .pd-showcase-visual {
    background: linear-gradient(180deg, #134e4a 0%, var(--bg-elev) 100%);
}

[data-theme="dark"] .pd-showcase-card figcaption,
[data-theme="dark"] .pd-ingredient-card h3,
[data-theme="dark"] .pd-lottie-card figcaption,
[data-theme="dark"] .pd-price-card .price,
[data-theme="dark"] .pd-icon-card figcaption {
    color: #5eead4;
}

[data-theme="dark"] .pd-ingredient-card {
    border-color: #0f766e;
    background: var(--bg-elev);
}

[data-theme="dark"] .pd-icon-card,
[data-theme="dark"] .pd-lottie-card {
    border-color: #0f766e;
}

[data-theme="dark"] .pd-review-card {
    background: var(--card);
    border-color: var(--border);
}

[data-theme="dark"] .pd-review-quote,
[data-theme="dark"] .pd-review-meta strong {
    color: var(--ink);
}

[data-theme="dark"] .verdict-card {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.18), rgba(251, 191, 36, 0.08));
}

[data-theme="dark"] .verdict-score { color: var(--pd-mint); }

[data-theme="dark"] .verdict-strip {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.16), rgba(251, 191, 36, 0.1));
    color: var(--ink);
}

/* Sales letter layout */
.sl-top-bar {
    background: linear-gradient(90deg, #1e3a8a, #4338ca);
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
}
.sl-trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 20px; }
.pd-hero-copy .sl-trust-row, .cb-hero-copy .sl-trust-row { justify-content: flex-start; }
.sl-trust-badge { display: flex; flex-direction: column; align-items: center; gap: 5px; width: 68px; text-align: center; }
.sl-trust-badge .ring {
    width: 54px; height: 54px; border-radius: 50%; background: #fff;
    border: 2px solid rgba(251, 191, 36, 0.65);
    display: flex; align-items: center; justify-content: center;
    font-size: 9px; font-weight: 800; line-height: 1.15; color: #1e40af;
    text-transform: uppercase; box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.sl-trust-badge span:last-child { font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.92); text-transform: uppercase; }
.sl-intro-head { text-align: center; max-width: 780px; margin: 0 auto 20px; }
.sl-intro-title { font-size: clamp(1.35rem, 3vw, 1.75rem); font-weight: 800; color: #1e40af; margin: 0; line-height: 1.25; }
.sl-promo-banner {
    background: linear-gradient(135deg, #1e40af 0%, #0d9488 100%);
    border-radius: 12px; padding: 28px 24px; text-align: center; margin: 28px 0; color: #fff;
    box-shadow: 0 8px 32px rgba(30, 64, 175, 0.22);
}
.sl-promo-banner h3 { font-size: 1.35rem; font-weight: 800; margin: 0 0 8px; }
.sl-promo-banner p { margin: 0 0 16px; opacity: 0.92; font-size: 14px; }
.btn-sl-shop {
    display: inline-flex; background: linear-gradient(135deg, #fcd34d, #f59e0b); color: #1c1917;
    font-weight: 800; font-size: 16px; padding: 14px 32px; border-radius: 8px; text-decoration: none;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.45); text-transform: uppercase; letter-spacing: 0.04em;
}
.btn-sl-shop:hover { transform: translateY(-2px); }
@media (max-width: 900px) { .pd-hero-copy .sl-trust-row, .cb-hero-copy .sl-trust-row { justify-content: center; } }
[data-theme="dark"] .sl-intro-title { color: #93c5fd; }
