:root {
    --bg-prisma: #030712;
    --violet: #8b5cf6;
    --blue: #3b82f6;
    --green: #22c55e;
    --orange: #fb923c;
    --text-main: #f9fafb;
    --text-soft: #9ca3af;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-prisma);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* HEADER */
.header-prisma {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(3, 7, 18, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.nav-prisma {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 7vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-prisma-header {
    background: linear-gradient(135deg, var(--green), #16a34a);
    color: #022c22;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* BRAND / LOGO */
.brand-prisma {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-prisma-mark {
    width: 48px;
    height: 48px;
    position: relative;
    border-radius: 18px;
    background: radial-gradient(circle at 20% 0%, #ede9fe, #1e1b4b);
    display: grid;
    place-items: center;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.9), 0 0 40px rgba(59, 130, 246, 0.7);
}

.brand-prisma-mark::before {
    content: "";
    width: 110%;
    height: 110%;
    background: conic-gradient(from 180deg, #8b5cf6, #3b82f6, #22c55e, #fb923c, #8b5cf6);
    animation: prismaRotate 5s linear infinite;
    opacity: 0.8;
}

.brand-prisma-core {
    position: absolute;
    width: 65%;
    height: 65%;
    clip-path: polygon(25% 10%, 75% 10%, 100% 50%, 75% 90%, 25% 90%, 0 50%);
    background: radial-gradient(circle at 30% 0%, #fefce8, #1d2837);
    box-shadow: 0 0 18px rgba(248, 250, 252, 0.9);
}

.brand-prisma-text {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.20em;
    color: #e0e7ff;
}

/* HERO */
.hero-prisma {
    min-height: 90vh;
    padding: 100px 7vw 60px;
    background: radial-gradient(circle at 20% 0%, rgba(139, 92, 246, 0.3), transparent 55%),
                radial-gradient(circle at 100% 60%, rgba(34, 197, 94, 0.26), transparent 60%),
                var(--bg-prisma);
    color: var(--text-main);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 50px;
    align-items: center;
}

.hero-prisma-title {
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    line-height: 1.06;
    margin-bottom: 14px;
}

.hero-prisma-sub {
    max-width: 520px;
    color: var(--text-soft);
    font-size: 0.98rem;
    margin-bottom: 10px;
}

/* BADGES */
.hero-prisma-badges {
    margin: 26px 0 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.badge-prisma {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.7);
}

.badge-prisma[data-color="violet"] {
    border-color: rgba(139, 92, 246, 0.9);
    color: #e9d5ff;
}

.badge-prisma[data-color="blue"] {
    border-color: rgba(59, 130, 246, 0.9);
    color: #dbeafe;
}

.badge-prisma[data-color="green"] {
    border-color: rgba(34, 197, 94, 0.9);
    color: #bbf7d0;
}

.badge-prisma[data-color="orange"] {
    border-color: rgba(251, 146, 60, 0.9);
    color: #ffedd5;
}

.badge-prisma-icon {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 0 14px currentColor;
}

/* BOTÕES */
.hero-prisma-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-prisma {
    border-radius: 999px;
    padding: 11px 22px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-prisma:hover {
    transform: translateY(-2px);
}

.btn-prisma-primary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #022c22;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.9), 0 20px 45px rgba(0, 0, 0, 0.9);
}

.btn-prisma-activation {
    background: linear-gradient(135deg, #fb923c, #f97316);
    color: #1f2937;
    box-shadow: 0 0 20px rgba(251, 146, 60, 0.9), 0 20px 45px rgba(15, 23, 42, 0.95);
    animation: activationShake 2.7s ease-in-out infinite;
}

.btn-prisma-ghost {
    background: transparent;
    border: 1px solid rgba(148, 163, 184, 0.7);
    color: #e5e7eb;
}

.btn-large {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-xlarge {
    padding: 18px 42px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-icon-play::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 8px solid currentColor;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* CARD PRISMA */
.hero-prisma-right {
    display: grid;
    place-items: center;
}

.prisma-shell {
    position: relative;
    width: 100%;
    max-width: 380px;
    padding: 24px 20px;
    border-radius: 24px;
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.95), rgba(3, 7, 18, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.55);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.9);
    overflow: hidden;
}

.prisma-shell::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: conic-gradient(from 180deg, rgba(139, 92, 246, 0.35), transparent, rgba(14, 165, 233, 0.35), transparent);
    opacity: 0.4;
    filter: blur(26px);
}

.prisma-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(45, 212, 191, 0.9);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #a5f3fc;
    margin-bottom: 16px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 2s ease-in-out infinite;
}

.prisma-content {
    position: relative;
}

.prisma-card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.prisma-card-text {
    color: var(--text-soft);
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.prisma-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.prisma-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
}

.feature-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), #16a34a);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.feature-check::after {
    content: "✓";
    color: #022c22;
    font-size: 0.7rem;
    font-weight: bold;
}

/* SECTIONS */
.section-prisma {
    padding: 60px 7vw;
    position: relative;
}

.section-dark {
    background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.15), transparent 70%), var(--bg-prisma);
}

.container-prisma {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-soft);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

/* STEPS */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.step-card {
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.8), rgba(3, 7, 18, 0.9));
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--violet), var(--blue), var(--green));
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--violet), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
}

.step-icon-click {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent);
    border: 2px solid var(--violet);
}

.step-icon-click::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid var(--violet);
    border-radius: 8px;
    cursor: pointer;
}

.step-icon-robot {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3), transparent);
    border: 2px solid var(--blue);
}

.step-icon-robot::after {
    content: "";
    position: absolute;
    width: 35px;
    height: 35px;
    background: var(--blue);
    border-radius: 8px;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.step-icon-robot::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 8px;
    background: var(--bg-prisma);
    border-radius: 4px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.step-icon-check {
    background: radial-gradient(circle, rgba(34, 197, 94, 0.3), transparent);
    border: 2px solid var(--green);
}

.step-icon-check::after {
    content: "✓";
    font-size: 2.5rem;
    color: var(--green);
    font-weight: bold;
}

.step-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.step-text {
    color: var(--text-soft);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* BENEFITS */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 16px;
    padding: 28px 22px;
    transition: transform 0.3s, border-color 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.6);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    position: relative;
}

.benefit-icon-speed {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.2), rgba(249, 115, 22, 0.1));
    border: 2px solid rgba(251, 146, 60, 0.5);
}

.benefit-icon-speed::after {
    content: "⚡";
    font-size: 1.8rem;
}

.benefit-icon-quality {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(124, 58, 237, 0.1));
    border: 2px solid rgba(139, 92, 246, 0.5);
}

.benefit-icon-quality::after {
    content: "★";
    font-size: 1.8rem;
    color: var(--violet);
}

.benefit-icon-simple {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.1));
    border: 2px solid rgba(34, 197, 94, 0.5);
}

.benefit-icon-simple::after {
    content: "✓";
    font-size: 1.8rem;
    color: var(--green);
    font-weight: bold;
}

.benefit-icon-auto {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.1));
    border: 2px solid rgba(59, 130, 246, 0.5);
}

.benefit-icon-auto::after {
    content: "⚙";
    font-size: 1.8rem;
    color: var(--blue);
}

.benefit-icon-device {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(147, 51, 234, 0.1));
    border: 2px solid rgba(168, 85, 247, 0.5);
}

.benefit-icon-device::after {
    content: "📱";
    font-size: 1.5rem;
}

.benefit-icon-content {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(219, 39, 119, 0.1));
    border: 2px solid rgba(236, 72, 153, 0.5);
}

.benefit-icon-content::after {
    content: "🎬";
    font-size: 1.5rem;
}

.benefit-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.benefit-text {
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-card {
    text-align: center;
    padding: 24px 18px;
}

.feature-icon-wrapper {
    margin-bottom: 16px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
}

.feature-icon-hd {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent);
    border: 2px solid var(--violet);
}

.feature-icon-hd::after {
    content: "HD";
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--violet);
}

.feature-icon-stable {
    background: radial-gradient(circle, rgba(34, 197, 94, 0.3), transparent);
    border: 2px solid var(--green);
}

.feature-icon-stable::after {
    content: "📡";
    font-size: 1.8rem;
}

.feature-icon-channels {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3), transparent);
    border: 2px solid var(--blue);
}

.feature-icon-channels::after {
    content: "📺";
    font-size: 1.8rem;
}

.feature-icon-vod {
    background: radial-gradient(circle, rgba(251, 146, 60, 0.3), transparent);
    border: 2px solid var(--orange);
}

.feature-icon-vod::after {
    content: "🎥";
    font-size: 1.8rem;
}

.feature-icon-sports {
    background: radial-gradient(circle, rgba(34, 197, 94, 0.3), transparent);
    border: 2px solid var(--green);
}

.feature-icon-sports::after {
    content: "⚽";
    font-size: 1.8rem;
}

.feature-icon-epg {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent);
    border: 2px solid var(--violet);
}

.feature-icon-epg::after {
    content: "📋";
    font-size: 1.8rem;
}

.feature-title {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.feature-text {
    color: var(--text-soft);
    font-size: 0.9rem;
}

/* PLANS */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 0;
}

.plan-card {
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), rgba(3, 7, 18, 0.95));
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 20px;
    padding: 32px 24px;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
}

.plan-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.6);
}

.plan-featured {
    border: 2px solid var(--violet);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.4);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--violet), var(--blue));
    color: white;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.plan-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.plan-name {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.plan-period {
    color: var(--text-soft);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.plan-discount {
    display: inline-block;
    background: linear-gradient(135deg, var(--green), #16a34a);
    color: #022c22;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 8px;
}

.plan-body {
    margin-bottom: 24px;
}

.plan-description {
    color: var(--text-soft);
    margin-bottom: 20px;
    line-height: 1.6;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
}

.check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), #16a34a);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.check-icon::after {
    content: "✓";
    color: #022c22;
    font-size: 0.7rem;
    font-weight: bold;
}

/* COMPATIBILITY */
.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 20px;
}

.compat-card {
    text-align: center;
    padding: 28px 20px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 16px;
    transition: transform 0.3s;
}

.compat-card:hover {
    transform: translateY(-5px);
}

.compat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
}

.compat-icon-tv {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3), transparent);
    border: 2px solid var(--blue);
}

.compat-icon-tv::after {
    content: "📺";
    font-size: 2.2rem;
}

.compat-icon-mobile {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent);
    border: 2px solid var(--violet);
}

.compat-icon-mobile::after {
    content: "📱";
    font-size: 2.2rem;
}

.compat-icon-computer {
    background: radial-gradient(circle, rgba(34, 197, 94, 0.3), transparent);
    border: 2px solid var(--green);
}

.compat-icon-computer::after {
    content: "💻";
    font-size: 2.2rem;
}

.compat-icon-box {
    background: radial-gradient(circle, rgba(251, 146, 60, 0.3), transparent);
    border: 2px solid var(--orange);
}

.compat-icon-box::after {
    content: "📦";
    font-size: 2.2rem;
}

.compat-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.compat-text {
    color: var(--text-soft);
    font-size: 0.9rem;
}

/* DIFERENCIAIS */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.diff-card {
    padding: 28px 24px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 16px;
    border-left: 4px solid var(--violet);
}

.diff-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--violet), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.diff-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.diff-text {
    color: var(--text-soft);
    line-height: 1.7;
}

/* REVIEWS */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.review-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 16px;
    padding: 24px 20px;
}

.review-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.review-text {
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 14px;
    font-style: italic;
}

.review-author {
    font-size: 0.88rem;
    color: var(--text-main);
    font-weight: 600;
}

/* GUARANTEE */
.guarantee-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 45px 30px;
    background: radial-gradient(circle at top, rgba(34, 197, 94, 0.15), transparent);
    border: 2px solid rgba(34, 197, 94, 0.4);
    border-radius: 24px;
}

.guarantee-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.3), transparent);
    border: 3px solid var(--green);
    display: grid;
    place-items: center;
}

.guarantee-icon::after {
    content: "✓";
    font-size: 2.8rem;
    color: var(--green);
    font-weight: bold;
}

.guarantee-title {
    font-size: 2rem;
    margin-bottom: 14px;
}

.guarantee-text {
    color: var(--text-soft);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* CTA */
.cta-center {
    text-align: center;
    margin-top: 30px;
}

.cta-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 30px;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.15), transparent);
    border-radius: 24px;
}

.cta-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.cta-text {
    color: var(--text-soft);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.final-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 30px;
}

.final-cta-title {
    font-size: 2.5rem;
    margin-bottom: 18px;
}

.final-cta-text {
    color: var(--text-soft);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: var(--text-main);
    font-size: 1rem;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(139, 92, 246, 0.1);
}

.faq-question h3 {
    font-size: 1.05rem;
    font-weight: 600;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--violet);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-soft);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* FOOTER */
.footer-prisma {
    background: rgba(3, 7, 18, 0.98);
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    padding: 50px 7vw 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-description {
    color: var(--text-soft);
    font-size: 0.9rem;
    margin-top: 12px;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-list a {
    color: var(--text-soft);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-list a:hover {
    color: var(--violet);
}

.footer-text {
    color: var(--text-soft);
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    color: var(--text-soft);
    font-size: 0.85rem;
}

/* ANIMATIONS */
@keyframes prismaRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes activationShake {
    0%, 100% { transform: translateY(0); }
    20% { transform: translateY(-1px); }
    30% { transform: translateY(0); }
    40% { transform: translateY(-1px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-prisma {
        grid-template-columns: minmax(0, 1fr);
        padding-top: 100px;
        padding-bottom: 60px;
        gap: 30px;
    }

    .hero-prisma-right {
        order: -1;
    }

    .nav-prisma {
        flex-direction: column;
        gap: 12px;
        padding: 12px 5vw;
    }

    .section-prisma {
        padding: 50px 5vw;
    }

    .steps-grid,
    .plans-grid,
    .compatibility-grid,
    .diff-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefits-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-large,
    .btn-xlarge {
        width: 100%;
    }

    .step-card,
    .benefit-card,
    .feature-card,
    .plan-card,
    .compat-card,
    .diff-card,
    .review-card {
        padding: 24px 18px;
    }

    .guarantee-box,
    .cta-box,
    .final-cta {
        padding: 40px 20px;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 15px;
    }

    .hero-prisma {
        padding-top: 140px;
        padding-bottom: 50px;
    }

    .hero-prisma-title {
        font-size: 1.8rem;
        line-height: 1.15;
        margin-bottom: 16px;
    }

    .hero-prisma-sub {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }

    .prisma-shell {
        max-width: 100%;
        padding: 20px 16px;
    }

    .prisma-card-title {
        font-size: 1.15rem;
    }

    .prisma-card-text {
        font-size: 0.88rem;
    }

    .hero-prisma-badges {
        justify-content: flex-start;
        gap: 8px;
    }

    .badge-prisma {
        font-size: 0.7rem;
        padding: 5px 9px;
    }

    .hero-prisma-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .btn-prisma {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.88rem;
    }

    .btn-large {
        padding: 13px 24px;
        font-size: 0.92rem;
    }

    .btn-xlarge {
        padding: 15px 28px;
        font-size: 0.95rem;
    }

    .step-number,
    .diff-number {
        font-size: 2.2rem;
    }

    .step-title,
    .benefit-title,
    .feature-title,
    .compat-title,
    .diff-title {
        font-size: 1.1rem;
    }

    .step-text,
    .benefit-text,
    .feature-text,
    .compat-text,
    .diff-text {
        font-size: 0.88rem;
    }

    .plan-name {
        font-size: 1.5rem;
    }

    .plan-description,
    .plan-features li {
        font-size: 0.88rem;
    }

    .review-text {
        font-size: 0.88rem;
    }

    .review-author {
        font-size: 0.85rem;
    }

    .guarantee-title,
    .cta-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .guarantee-text,
    .cta-text {
        font-size: 0.95rem;
    }

    .final-cta-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .final-cta-text {
        font-size: 0.98rem;
        margin-bottom: 24px;
    }

    .faq-question {
        padding: 16px 18px;
        font-size: 0.95rem;
    }

    .faq-question h3 {
        font-size: 0.98rem;
        line-height: 1.4;
    }

    .faq-icon {
        font-size: 1.3rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 16px;
    }

    .faq-answer p {
        font-size: 0.88rem;
    }

    .footer-prisma {
        padding: 50px 5vw 25px;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-description,
    .footer-text,
    .footer-list a {
        font-size: 0.85rem;
    }

    .brand-prisma-mark {
        width: 42px;
        height: 42px;
    }

    .brand-prisma-text {
        font-size: 0.75rem;
    }

    .step-icon,
    .benefit-icon,
    .feature-icon,
    .compat-icon {
        width: 70px;
        height: 70px;
    }

    .guarantee-icon {
        width: 80px;
        height: 80px;
    }
}
