/* ============================================================
   PREMIUM LANDING PAGE — Design Layer
   Loads ON TOP of corporate.css
   Adds: mesh gradients, glassmorphism, grain, micro-animations,
         cinematic typography, luminous accents, premium cards
   ============================================================ */

/* ────────────────────────────────────────
   1. PREMIUM TOKENS
   ──────────────────────────────────────── */
:root {
    /* Extended palette */
    --premium-gradient:    linear-gradient(135deg, #1E3A5F 0%, #0F1F38 40%, #162D50 70%, #1E3A5F 100%);
    --premium-mesh-1:      radial-gradient(ellipse 80% 50% at 20% 40%, rgba(37,99,235,0.15), transparent 60%);
    --premium-mesh-2:      radial-gradient(ellipse 60% 60% at 80% 20%, rgba(124,58,237,0.10), transparent 60%);
    --premium-mesh-3:      radial-gradient(ellipse 50% 70% at 50% 80%, rgba(16,185,129,0.08), transparent 60%);
    --glass-bg:            rgba(255,255,255,0.06);
    --glass-border:        rgba(255,255,255,0.10);
    --glass-bg-light:      rgba(255,255,255,0.70);
    --glass-border-light:  rgba(255,255,255,0.50);
    --glow-blue:           0 0 60px rgba(37,99,235,0.20);
    --glow-green:          0 0 60px rgba(16,185,129,0.15);
    --glow-purple:         0 0 60px rgba(124,58,237,0.15);
    --gradient-text:       linear-gradient(135deg, #3B82F6 0%, #2563EB 30%, #7C3AED 100%);
    --gradient-accent:     linear-gradient(135deg, #2563EB, #7C3AED);
    --gradient-green:      linear-gradient(135deg, #059669, #10B981);
    --shadow-premium:      0 24px 48px -12px rgba(0,0,0,0.18);
    --shadow-glow-blue:    0 8px 32px rgba(37,99,235,0.25);
    --shadow-glow-card:    0 4px 24px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
}

/* ────────────────────────────────────────
   2. NOISE / GRAIN TEXTURE
   ──────────────────────────────────────── */
.noise::after {
    content: '';
    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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: overlay;
}

/* ────────────────────────────────────────
   3. PREMIUM HERO
   ──────────────────────────────────────── */
.plp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-20);
    background: var(--premium-gradient);
    overflow: hidden;
    color: var(--white);
}

.plp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        var(--premium-mesh-1),
        var(--premium-mesh-2),
        var(--premium-mesh-3);
    animation: meshShift 20s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes meshShift {
    0%   { opacity: 1; transform: scale(1) translate(0, 0); }
    50%  { opacity: 0.8; transform: scale(1.1) translate(-2%, 3%); }
    100% { opacity: 1; transform: scale(1) translate(1%, -1%); }
}

.plp-hero::after {
    content: '';
    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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: overlay;
}

.plp-hero > .container { position: relative; z-index: 1; }

.plp-hero__layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-16);
    align-items: center;
}

.plp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.85);
    margin-bottom: var(--space-8);
}

.plp-hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-light);
    box-shadow: 0 0 8px rgba(16,185,129,0.6);
    animation: pulse-dot 2s ease-in-out infinite;
}

.plp-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--weight-extrabold);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-6);
    color: var(--white);
}

.plp-hero__title em {
    font-style: normal;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plp-hero__desc {
    font-size: var(--text-lg);
    line-height: 1.75;
    color: rgba(255,255,255,0.7);
    margin-bottom: var(--space-10);
    max-width: 520px;
}

.plp-hero__actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-10);
}

/* Premium CTA button */
.btn--premium {
    background: var(--white);
    color: var(--navy-dark);
    border: 2px solid var(--white);
    font-weight: var(--weight-bold);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    box-shadow: var(--shadow-glow-blue);
    position: relative;
    overflow: hidden;
}

.btn--premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(37,99,235,0.08) 100%);
    transition: opacity var(--duration) var(--ease);
    opacity: 0;
}

.btn--premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(37,99,235,0.35);
    color: var(--navy-dark);
}

.btn--premium:hover::before { opacity: 1; }

.btn--premium span { position: relative; z-index: 1; }

/* Ghost premium */
.btn--ghost-premium {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--white);
    border: 1px solid var(--glass-border);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
}

.btn--ghost-premium:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
    color: var(--white);
    transform: translateY(-1px);
}

/* Social proof in hero */
.plp-hero__proof {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.plp-hero__avatars {
    display: flex;
}

.plp-hero__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.15);
    margin-right: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: var(--weight-bold);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    color: var(--white);
}

.plp-hero__avatar:last-child { margin-right: 0; }
.plp-hero__avatar--blue { background: rgba(37,99,235,0.3); }
.plp-hero__avatar--green { background: rgba(16,185,129,0.3); }
.plp-hero__avatar--purple { background: rgba(124,58,237,0.3); }

.plp-hero__proof-text {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.6);
    line-height: 1.4;
}

.plp-hero__proof-text strong {
    display: block;
    color: var(--white);
    font-weight: var(--weight-semibold);
}

/* ────────────────────────────────────────
   4. GLASS DASHBOARD CARD (hero visual)
   ──────────────────────────────────────── */
.glass-dash {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    position: relative;
    box-shadow: 0 32px 64px rgba(0,0,0,0.2);
}

.glass-dash__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.glass-dash__title {
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: rgba(255,255,255,0.8);
}

.glass-dash__status {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    color: var(--green-light);
    background: rgba(16,185,129,0.15);
    padding: 3px var(--space-3);
    border-radius: var(--radius-full);
}

.glass-dash__status::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green-light);
    animation: pulse-dot 2s infinite;
}

.glass-dash__metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.glass-metric {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    text-align: center;
    transition: all 0.3s var(--ease);
}

.glass-metric:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}

.glass-metric__value {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--weight-extrabold);
    color: var(--white);
    margin-bottom: var(--space-1);
}

.glass-metric__value--blue { color: var(--blue-light); }
.glass-metric__value--green { color: var(--green-light); }
.glass-metric__value--purple { color: #A78BFA; }
.glass-metric__value--amber { color: #FBBF24; }

.glass-metric__label {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.5);
}

.glass-metric__change {
    font-size: 10px;
    font-weight: var(--weight-semibold);
    color: var(--green-light);
    margin-top: var(--space-1);
}

/* Floating accent cards */
.plp-float {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-3) var(--space-5);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    animation: float-premium 6s ease-in-out infinite;
    z-index: 2;
}

.plp-float--tl { top: -12px; left: -20px; }
.plp-float--br { bottom: 20px; right: -24px; animation-delay: -3s; }

.plp-float__icon { margin-right: var(--space-2); }

@keyframes float-premium {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(0.5deg); }
}

/* ────────────────────────────────────────
   5. PREMIUM STATS STRIP
   ──────────────────────────────────────── */
.plp-stats {
    padding: var(--space-16) 0;
    background: var(--white);
    position: relative;
    border-bottom: 1px solid var(--gray-100);
}

.plp-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.plp-stat {
    text-align: center;
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.plp-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s;
}

.plp-stat:hover {
    background: var(--white);
    box-shadow: var(--shadow-premium);
    transform: translateY(-4px);
}

.plp-stat:hover::before { opacity: 1; }

.plp-stat__value {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: var(--weight-extrabold);
    color: var(--navy);
    margin-bottom: var(--space-1);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plp-stat__label {
    font-size: var(--text-sm);
    color: var(--gray-500);
    font-weight: var(--weight-medium);
}

/* ────────────────────────────────────────
   6. PREMIUM SECTION HEADERS
   ──────────────────────────────────────── */
.plp-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-16);
}

.plp-section-header .overline {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-xs);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--blue);
    margin-bottom: var(--space-4);
    padding: var(--space-1) var(--space-4);
    background: var(--blue-pale);
    border-radius: var(--radius-full);
}

.plp-section-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
}

.plp-section-header p {
    font-size: var(--text-lg);
    max-width: 560px;
    margin: 0 auto;
    color: var(--gray-500);
}

/* ────────────────────────────────────────
   7. PREMIUM CARDS
   ──────────────────────────────────────── */
.plp-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.plp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--card-accent, var(--gradient-accent));
    opacity: 0;
    transition: opacity 0.3s;
}

.plp-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-premium);
    transform: translateY(-6px);
}

.plp-card:hover::before { opacity: 1; }

.plp-card--green { --card-accent: var(--gradient-green); }
.plp-card--purple { --card-accent: linear-gradient(135deg, #7C3AED, #A78BFA); }
.plp-card--amber { --card-accent: linear-gradient(135deg, #D97706, #FBBF24); }
.plp-card--red { --card-accent: linear-gradient(135deg, #DC2626, #F87171); }

.plp-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
    background: var(--blue-pale);
    color: var(--blue);
    transition: all 0.3s var(--ease);
}

.plp-card:hover .plp-card__icon {
    transform: scale(1.05);
}

.plp-card__icon svg { width: 24px; height: 24px; }

.plp-card--green .plp-card__icon { background: var(--green-pale); color: var(--green); }
.plp-card--purple .plp-card__icon { background: var(--purple-pale); color: var(--purple); }
.plp-card--amber .plp-card__icon { background: var(--amber-pale); color: var(--amber); }
.plp-card--red .plp-card__icon { background: var(--red-pale); color: var(--red); }

.plp-card__title {
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-3);
    color: var(--gray-900);
}

.plp-card__desc {
    font-size: var(--text-sm);
    color: var(--gray-500);
    line-height: var(--leading-relaxed);
}

/* ────────────────────────────────────────
   8. PREMIUM PROCESS STEPS
   ──────────────────────────────────────── */
.plp-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    position: relative;
    counter-reset: process;
}

.plp-process::before {
    content: '';
    position: absolute;
    top: 42px;
    left: 80px;
    right: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--purple), var(--green));
    opacity: 0.2;
}

.plp-process-step {
    text-align: center;
    position: relative;
    counter-increment: process;
}

.plp-process-step__num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--weight-extrabold);
    color: var(--gray-400);
    position: relative;
    z-index: 1;
    transition: all 0.4s var(--ease);
    box-shadow: var(--shadow-sm);
}

.plp-process-step:hover .plp-process-step__num {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
    box-shadow: var(--shadow-glow-blue);
    transform: scale(1.1);
}

.plp-process-step__title {
    font-size: var(--text-lg);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-2);
    color: var(--gray-900);
}

.plp-process-step__desc {
    font-size: var(--text-sm);
    color: var(--gray-500);
    line-height: var(--leading-relaxed);
    max-width: 220px;
    margin: 0 auto;
}

/* ────────────────────────────────────────
   9. PREMIUM DATA / RESULTS CARDS
   ──────────────────────────────────────── */
.plp-data {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    text-align: center;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.plp-data:hover {
    box-shadow: var(--shadow-premium);
    transform: translateY(-4px);
}

.plp-data__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-4);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.plp-data__icon svg { width: 22px; height: 22px; }

.plp-data__icon--blue { background: var(--blue-pale); color: var(--blue); }
.plp-data__icon--green { background: var(--green-pale); color: var(--green); }
.plp-data__icon--amber { background: var(--amber-pale); color: var(--amber); }
.plp-data__icon--purple { background: var(--purple-pale); color: var(--purple); }

.plp-data__value {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: var(--weight-extrabold);
    color: var(--navy);
    margin-bottom: var(--space-1);
}

.plp-data__label {
    font-size: var(--text-sm);
    color: var(--gray-500);
    font-weight: var(--weight-medium);
}

.plp-data__change {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    color: var(--green);
    margin-top: var(--space-2);
    padding: 2px var(--space-3);
    background: var(--green-pale);
    border-radius: var(--radius-full);
}

/* ────────────────────────────────────────
   10. PREMIUM PRICING
   ──────────────────────────────────────── */
.plp-pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    align-items: start;
}

.plp-price-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    text-align: center;
    transition: all 0.4s var(--ease);
    position: relative;
}

.plp-price-card:hover {
    box-shadow: var(--shadow-premium);
    transform: translateY(-6px);
}

.plp-price-card--featured {
    border: 2px solid transparent;
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        var(--gradient-accent) border-box;
    box-shadow: var(--shadow-glow-blue);
    transform: scale(1.03);
    z-index: 1;
}

.plp-price-card--featured:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: 0 20px 50px rgba(37,99,235,0.25);
}

.plp-price-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: var(--white);
    font-size: var(--text-xs);
    font-weight: var(--weight-bold);
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

.plp-price-card__name {
    font-size: var(--text-sm);
    font-weight: var(--weight-bold);
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-4);
}

.plp-price-card__price {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: var(--weight-extrabold);
    color: var(--navy);
    line-height: 1;
    margin-bottom: var(--space-1);
}

.plp-price-card__period {
    font-size: var(--text-sm);
    color: var(--gray-400);
    margin-bottom: var(--space-8);
}

.plp-price-card__divider {
    height: 1px;
    background: var(--gray-100);
    margin: 0 calc(-1 * var(--space-10));
    margin-bottom: var(--space-6);
}

.plp-price-card__features {
    text-align: left;
    margin-bottom: var(--space-8);
}

.plp-price-card__feat {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-sm);
    color: var(--gray-600);
    padding: var(--space-2) 0;
}

.plp-price-card__feat svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--green);
}

/* ────────────────────────────────────────
   11. PREMIUM FAQ
   ──────────────────────────────────────── */
.plp-faq {
    max-width: 720px;
    margin: 0 auto;
}

.plp-faq-item {
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-3);
    transition: all 0.3s var(--ease);
    overflow: hidden;
    background: var(--white);
}

.plp-faq-item:hover {
    border-color: var(--gray-200);
    box-shadow: var(--shadow-md);
}

.plp-faq-item.open {
    border-color: var(--blue-pale);
    box-shadow: var(--shadow-glow-card);
}

.plp-faq-item__q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-5) var(--space-6);
    cursor: pointer;
    font-weight: var(--weight-semibold);
    color: var(--gray-900);
    gap: var(--space-4);
    width: 100%;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: var(--text-base);
    text-align: left;
}

.plp-faq-item__q svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--gray-300);
    transition: all 0.3s var(--ease);
}

.plp-faq-item.open .plp-faq-item__q svg {
    transform: rotate(45deg);
    color: var(--blue);
}

.plp-faq-item__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

.plp-faq-item.open .plp-faq-item__a { max-height: 300px; }

.plp-faq-item__a p {
    padding: 0 var(--space-6) var(--space-6);
    font-size: var(--text-sm);
    color: var(--gray-500);
    line-height: var(--leading-relaxed);
}

/* ────────────────────────────────────────
   12. PREMIUM CTA
   ──────────────────────────────────────── */
.plp-cta {
    padding: var(--space-32) 0;
    background: var(--premium-gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.plp-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        var(--premium-mesh-1),
        var(--premium-mesh-2),
        var(--premium-mesh-3);
    opacity: 0.7;
    pointer-events: none;
}

.plp-cta::after {
    content: '';
    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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.plp-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.plp-cta h2 {
    color: var(--white);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
}

.plp-cta p {
    color: rgba(255,255,255,0.7);
    font-size: var(--text-lg);
    margin-bottom: var(--space-10);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.plp-cta__actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* ────────────────────────────────────────
   13. PREMIUM FOOTER (LP)
   ──────────────────────────────────────── */
.plp-footer {
    background: var(--gray-900);
    padding: var(--space-8) 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.plp-footer p {
    font-size: var(--text-xs);
    color: var(--gray-500);
}

.plp-footer a {
    color: var(--gray-400);
}

.plp-footer a:hover { color: var(--white); }

/* ────────────────────────────────────────
   14. PREMIUM FEATURES LIST
   ──────────────────────────────────────── */
.plp-feature {
    display: flex;
    gap: var(--space-5);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    transition: all 0.3s var(--ease);
    border: 1px solid transparent;
}

.plp-feature:hover {
    background: var(--gray-50);
    border-color: var(--gray-100);
}

.plp-feature__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
}

.plp-feature:hover .plp-feature__icon { transform: scale(1.08); }

.plp-feature__icon svg { width: 22px; height: 22px; }

.plp-feature__title {
    font-size: var(--text-base);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-1);
    color: var(--gray-900);
}

.plp-feature__desc {
    font-size: var(--text-sm);
    color: var(--gray-500);
    line-height: var(--leading-relaxed);
}

/* ────────────────────────────────────────
   15. GRADIENT DIVIDER
   ──────────────────────────────────────── */
.gradient-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--blue), var(--purple), var(--green), transparent);
    opacity: 0.15;
    border: none;
    margin: 0;
}

/* ────────────────────────────────────────
   16. PREMIUM SECTION DARK
   ──────────────────────────────────────── */
.section--premium-dark {
    background: var(--gray-900);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.section--premium-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 50% at 20% 50%, rgba(37,99,235,0.08), transparent),
        radial-gradient(ellipse 50% 50% at 80% 50%, rgba(124,58,237,0.06), transparent);
    pointer-events: none;
}

.section--premium-dark h2,
.section--premium-dark h3,
.section--premium-dark h4 { color: var(--white); }

.section--premium-dark p { color: var(--gray-400); }

.section--premium-dark .plp-section-header .overline {
    background: rgba(37,99,235,0.15);
    color: var(--blue-light);
}

/* ────────────────────────────────────────
   17. RESPONSIVE — PREMIUM
   ──────────────────────────────────────── */
@media (max-width: 1024px) {
    .plp-hero__layout { grid-template-columns: 1fr; gap: var(--space-10); }
    .plp-hero__desc { max-width: 100%; }
    .plp-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .plp-process { grid-template-columns: repeat(2, 1fr); }
    .plp-process::before { display: none; }
    .plp-pricing { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .plp-price-card--featured { transform: none; }
    .plp-price-card--featured:hover { transform: translateY(-6px); }
}

@media (max-width: 768px) {
    .plp-hero {
        min-height: auto;
        padding: calc(var(--header-height) + var(--space-12)) 0 var(--space-12);
        text-align: center;
    }
    .plp-hero__title { font-size: clamp(1.75rem, 7vw, 2.5rem); }
    .plp-hero__actions { flex-direction: column; }
    .plp-hero__actions .btn--premium,
    .plp-hero__actions .btn--ghost-premium { width: 100%; }
    .plp-hero__proof { flex-direction: column; text-align: center; }
    .glass-dash { display: none; }
    .plp-float { display: none; }
    .plp-stats__grid { grid-template-columns: 1fr 1fr; gap: var(--space-4); }
    .plp-stat__value { font-size: var(--text-2xl); }
    .plp-process { grid-template-columns: 1fr 1fr; gap: var(--space-4); }
    .plp-cta { padding: var(--space-20) 0; }
    .plp-cta h2 { font-size: var(--text-2xl); }
    .plp-cta__actions { flex-direction: column; }
    .plp-cta__actions .btn--premium,
    .plp-cta__actions .btn--ghost-premium { width: 100%; max-width: 320px; margin: 0 auto; }
}

@media (max-width: 480px) {
    .plp-stats__grid { grid-template-columns: 1fr; }
    .plp-process { grid-template-columns: 1fr; }
}

/* ────────────────────────────────────────
   16. PREMIUM QUIZ LP
   ──────────────────────────────────────── */
.qlp-progress { height: 4px; background: var(--gray-100); border-radius: 100px; margin-bottom: var(--space-8); overflow: hidden; }
.qlp-progress__bar { height: 100%; background: linear-gradient(90deg, var(--blue), var(--purple)); border-radius: 100px; width: 0%; transition: width 0.5s var(--ease); }

.qlp-alert { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; padding: var(--space-3) var(--space-4); border-radius: var(--radius-lg); font-size: var(--text-sm); margin-bottom: var(--space-4); display: none; }

/* Step card */
.qlp-step {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8) var(--space-6);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
}
.qlp-step__counter {
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-4);
}
.qlp-step__question {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    color: var(--gray-900);
    line-height: 1.35;
    margin-bottom: var(--space-2);
}
.qlp-step__hint {
    font-size: var(--text-sm);
    color: var(--gray-400);
    margin-bottom: var(--space-6);
}

/* Options */
.qlp-options { display: flex; flex-direction: column; gap: var(--space-3); }
.qlp-option {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-5);
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-xl);
    cursor: pointer;
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--gray-700);
    transition: all 0.25s var(--ease);
    text-align: left;
    font-family: inherit;
    width: 100%;
}
.qlp-option:hover {
    border-color: var(--blue);
    background: rgba(37, 99, 235, 0.03);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}
.qlp-option.selected {
    border-color: var(--blue);
    background: rgba(37, 99, 235, 0.06);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.qlp-option__letter {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-lg);
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--gray-400);
    flex-shrink: 0;
    transition: all 0.25s var(--ease);
}
.qlp-option.selected .qlp-option__letter {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}
.qlp-option__text { flex: 1; }
.qlp-option__check {
    width: 22px; height: 22px;
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s var(--ease);
}
.qlp-option.selected .qlp-option__check {
    background: var(--blue);
    border-color: var(--blue);
}
.qlp-option.selected .qlp-option__check::after {
    content: '\2713';
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
}

/* Nav */
.qlp-nav { display: flex; justify-content: space-between; align-items: center; margin-top: var(--space-6); }
.qlp-btn { background: none; border: none; font-family: inherit; font-size: var(--text-sm); font-weight: var(--weight-semibold); cursor: pointer; padding: var(--space-2) var(--space-4); border-radius: var(--radius-lg); transition: all 0.2s var(--ease); }
.qlp-btn--back { color: var(--gray-400); }
.qlp-btn--back:hover { color: var(--gray-700); background: var(--gray-50); }

/* Loading */
.qlp-loading { display: none; text-align: center; padding: var(--space-16) var(--space-4); }
.qlp-spinner {
    width: 44px; height: 44px;
    border: 3px solid var(--gray-100);
    border-top-color: var(--blue);
    border-radius: 50%;
    animation: qlp-spin 0.7s linear infinite;
    margin: 0 auto var(--space-4);
}
@keyframes qlp-spin { to { transform: rotate(360deg); } }
.qlp-loading p { color: var(--gray-400); font-size: var(--text-sm); }

/* Lead gate */
.qlp-gate {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-10) var(--space-6);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    text-align: center;
}
.qlp-gate__icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(139,92,246,0.1));
    color: var(--blue);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto var(--space-5);
}
.qlp-gate__title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--weight-extrabold);
    color: var(--gray-900);
    margin-bottom: var(--space-3);
}
.qlp-gate__desc {
    font-size: var(--text-sm);
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: var(--space-6);
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}
.qlp-form { max-width: 380px; margin: 0 auto; }
.qlp-form__field { margin-bottom: var(--space-3); }
.qlp-input {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--white);
    color: var(--gray-900);
}
.qlp-input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.qlp-submit {
    width: 100%;
    padding: var(--space-4);
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    font-weight: var(--weight-bold);
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    margin-top: var(--space-2);
    box-shadow: 0 4px 16px rgba(37,99,235,0.3);
}
.qlp-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(37,99,235,0.4); }
.qlp-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.qlp-gate__privacy { font-size: var(--text-xs); color: var(--gray-400); margin-top: var(--space-4); }

/* Result */
.qlp-result {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-10) var(--space-6);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.qlp-result__score-ring { width: 120px; height: 120px; margin: 0 auto var(--space-4); position: relative; }
.qlp-ring-svg { width: 100%; height: 100%; }
.qlp-ring-fill { transition: stroke-dashoffset 0s; }
.qlp-result__score-value {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--weight-extrabold);
    color: var(--gray-900);
}
.qlp-result__level {
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-4);
}
.qlp-result__title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    color: var(--gray-900);
    margin-bottom: var(--space-3);
}
.qlp-result__desc {
    font-size: var(--text-sm);
    color: var(--gray-500);
    line-height: 1.75;
    max-width: 480px;
    margin: 0 auto var(--space-6);
}

/* Lead magnet card */
.qlp-magnet {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    background: linear-gradient(135deg, rgba(37,99,235,0.04), rgba(139,92,246,0.04));
    border: 1px solid rgba(37,99,235,0.12);
    border-radius: var(--radius-xl);
    padding: var(--space-4) var(--space-5);
    margin-bottom: var(--space-6);
    text-align: left;
}
.qlp-magnet__icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.qlp-magnet__body { flex: 1; }
.qlp-magnet__body strong { font-size: var(--text-sm); color: var(--gray-900); display: block; margin-bottom: 2px; }
.qlp-magnet__body p { font-size: var(--text-xs); color: var(--gray-500); margin: 0; }
.qlp-magnet__btn {
    padding: var(--space-2) var(--space-4);
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: var(--white);
    border-radius: var(--radius-lg);
    font-size: var(--text-xs);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s var(--ease);
    flex-shrink: 0;
}
.qlp-magnet__btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,99,235,0.3); }

/* WhatsApp CTA */
.qlp-result__actions { margin-top: var(--space-4); }
.qlp-cta-wa {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    background: #25D366;
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--weight-bold);
    text-decoration: none;
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}
.qlp-cta-wa:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }

/* Quiz page shell */
.qlp-page {
    min-height: 100vh;
    background: var(--premium-gradient);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-8) var(--space-4);
    position: relative;
    overflow: hidden;
}
.qlp-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}
.qlp-page > * { position: relative; z-index: 1; }
.qlp-page-brand {
    text-align: center;
    margin-bottom: var(--space-6);
    font-size: var(--text-xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}
.qlp-page-brand a { color: inherit; text-decoration: none; }
.qlp-page-container { max-width: 580px; width: 100%; }
.qlp-page-footer {
    text-align: center;
    margin-top: var(--space-6);
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.25);
}
.qlp-page-footer a { color: inherit; text-decoration: none; }

/* Quiz responsive */
@media (max-width: 640px) {
    .qlp-step { padding: var(--space-6) var(--space-4); }
    .qlp-gate { padding: var(--space-8) var(--space-4); }
    .qlp-result { padding: var(--space-8) var(--space-4); }
    .qlp-step__question { font-size: var(--text-lg); }
    .qlp-option { padding: var(--space-3) var(--space-4); }
    .qlp-magnet { flex-direction: column; text-align: center; }
    .qlp-magnet__btn { width: 100%; text-align: center; display: block; padding: var(--space-3); }
}
