/* ══════════════════════════════════════════════════════════════
   VORUTO PLANS PAGE
   ══════════════════════════════════════════════════════════════ */

:root {
    --pl-purple: #7C3AED;
    --pl-pink:   #EC4899;
    --pl-blue:   #0ea5e9;
    --pl-green:  #10b981;
    --pl-ink:    #0F172A;
    --pl-gray:   #64748B;
    --pl-line:   #e2e8f0;
    --pl-grad:   linear-gradient(120deg, #7C3AED, #EC4899, #3B82F6);
    --pl-font:   'Plus Jakarta Sans', sans-serif;
}

body.page-template-page-plans {
    background: #fff;
    font-family: var(--pl-font);
}

.pl-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── HERO ──────────────────────────────────────────────────── */
.pl-hero {
    position: relative;
    background: #0b0620;
    display: flex;
    justify-content: center;
    overflow: hidden;
    padding: 56px 24px;
}

.pl-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
    text-align: center;
}

.pl-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c4b5fd;
    margin-bottom: 14px;
}

.pl-hero-title {
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: #fff;
    margin: 0 0 14px;
}

.pl-grad {
    background: var(--pl-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pl-hero-sub {
    font-size: 0.95rem;
    color: rgba(255,255,255,.65);
    line-height: 1.5;
    margin: 0 auto 20px;
    max-width: 440px;
}

.pl-hero-tags {
    list-style: none;
    padding: 0 4px 4px;
    margin: 0 auto 24px;
    max-width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}
.pl-hero-tags::-webkit-scrollbar { display: none; }

.pl-hero-tags li {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.8);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    padding: 6px 12px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

.pl-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(120deg, #7C3AED, #EC4899);
    color: #fff;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: .25s;
}
.pl-btn-primary:hover {
    transform: translateY(-2px);
    color: #fff;
}

/* ── SECTIONS SHARED ───────────────────────────────────────── */
.pl-section {
    padding: 100px 0;
}

.pl-section-head {
    text-align: center;
    margin-bottom: 60px;
}

.pl-eyebrow-dark {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pl-purple);
    margin-bottom: 12px;
}

.pl-section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--pl-ink);
    line-height: 1.1;
    margin: 0;
}

/* ── PLANS GRID ────────────────────────────────────────────── */
.pl-plans-section {
    background: #faf9ff;
}

.pl-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pl-plan-card {
    background: #fff;
    border-radius: 20px;
    border: 2px solid var(--pl-line);
    overflow: hidden;
    position: relative;
    transition: .3s cubic-bezier(.23,1,.32,1);
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.pl-plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,.1);
    border-color: var(--pc, #6366f1);
}

.pl-plan-featured {
    border-color: #0ea5e9;
    box-shadow: 0 8px 32px rgba(14,165,233,.18);
    transform: scale(1.03);
}
.pl-plan-featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.pl-plan-badge-top {
    background: linear-gradient(90deg, #0ea5e9, #6366f1);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    padding: 6px;
}

.pl-plan-top {
    padding: 32px 28px 24px;
    border-bottom: 1px solid var(--pl-line);
}

.pl-plan-jp {
    font-family: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--pc, #6366f1);
    line-height: 1;
    margin-bottom: 4px;
}

.pl-plan-name {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--pl-ink);
    margin-bottom: 8px;
    letter-spacing: -.5px;
}

.pl-plan-tagline {
    font-size: 13px;
    color: var(--pl-gray);
    line-height: 1.4;
    margin-bottom: 20px;
}

.pl-plan-fee-wrap {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.pl-plan-free {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--pl-green);
}

.pl-plan-fee-val {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--pc, #6366f1);
    line-height: 1;
}

.pl-plan-fee-label {
    font-size: 13px;
    color: var(--pl-gray);
    font-weight: 500;
}

/* Shōnin: fee range 6% → 1% */
.pl-plan-fee-range {
    font-size: 2rem;
    font-weight: 900;
    color: var(--pc, #0ea5e9);
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 6px;
}
.pl-fee-arrow {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--pl-gray);
}

/* Link "ver termos" abaixo da taxa */
.pl-fee-terms {
    display: inline-block;
    margin-top: 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--pl-gray);
    text-decoration: none;
    border-bottom: 1px dashed var(--pl-line);
    transition: .2s;
}
.pl-fee-terms:hover {
    color: var(--pl-purple);
    border-color: var(--pl-purple);
}

/* Feature com limite (Minarai) */
.pl-features li.pl-feat-limit {
    color: var(--pl-gray);
    font-size: 13px;
}
.pl-features li.pl-feat-limit::before {
    content: '—';
    color: var(--pl-gray);
    background: transparent;
    font-weight: 400;
    font-size: 14px;
}

.pl-plan-body {
    padding: 24px 28px 28px;
}

.pl-plan-desc {
    font-size: 13px;
    color: var(--pl-gray);
    line-height: 1.5;
    margin: 0 0 20px;
}

.pl-features-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--pl-gray);
    margin-bottom: 12px;
}

.pl-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pl-features li {
    font-size: 13.5px;
    color: var(--pl-ink);
    display: flex;
    align-items: center;
    gap: 10px;
}
.pl-features li::before {
    content: '✓';
    font-size: 12px;
    font-weight: 800;
    color: var(--pl-green);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    background: rgba(16,185,129,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pl-plan-note {
    font-size: 12px;
    color: var(--pl-gray);
    font-style: italic;
    margin: 0 0 24px;
    line-height: 1.4;
}

.pl-plan-cta {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: .2s;
}

.pl-cta-outline {
    border: 2px solid var(--pl-line);
    color: var(--pl-ink);
}
.pl-cta-outline:hover {
    border-color: var(--pl-purple);
    color: var(--pl-purple);
}

.pl-cta-primary {
    background: linear-gradient(120deg, #0ea5e9, #6366f1);
    color: #fff;
    box-shadow: 0 4px 18px rgba(14,165,233,.35);
}
.pl-cta-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(14,165,233,.45);
    color: #fff;
}

/* ── PLATFORM SECTION ──────────────────────────────────────── */
.pl-platform-section {
    background: #fff;
}

.pl-platform-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.pl-platform-sub {
    font-size: 1rem;
    color: var(--pl-gray);
    line-height: 1.7;
    margin: 16px 0 0;
}

.pl-platform-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pl-platform-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: #faf9ff;
    border-radius: 12px;
    border: 1px solid #f1f0ff;
    transition: .2s;
}
.pl-platform-list li:hover {
    border-color: #c4b5fd;
    background: #f5f3ff;
}

.pl-plat-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    color: var(--pl-purple);
    padding: 10px;
}

.pl-platform-list li strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--pl-ink);
    margin-bottom: 2px;
}

.pl-platform-list li span {
    font-size: 13px;
    color: var(--pl-gray);
}

/* ── CTA FINAL ─────────────────────────────────────────────── */
.pl-cta-section {
    position: relative;
    background: #080318;
    padding: 120px 24px;
    text-align: center;
    overflow: hidden;
}

.pl-cta-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 256px;
    pointer-events: none;
}

.pl-cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(124,58,237,.3) 0%, transparent 70%);
    pointer-events: none;
}

.pl-cta-inner {
    position: relative;
    z-index: 2;
}

.pl-cta-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin: 12px 0 20px;
}

.pl-cta-sub {
    font-size: 1rem;
    color: rgba(255,255,255,.65);
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.pl-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pl-btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(6px);
    transition: .25s;
}
.pl-btn-ghost:hover {
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.5);
    color: #fff;
    transform: translateY(-2px);
}

.pl-cta-fine {
    margin: 24px 0 0;
    font-size: 12px;
    color: rgba(255,255,255,.4);
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
    .pl-plans-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    .pl-plan-featured {
        transform: none;
    }
    .pl-plan-featured:hover {
        transform: translateY(-6px);
    }
    .pl-platform-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .pl-hero {
        padding: 40px 20px;
    }
}

@media (max-width: 600px) {
    .pl-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .pl-btn-primary,
    .pl-btn-ghost {
        justify-content: center;
    }
}
