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

:root {
    --bg-dark: #1F2937;
    --text-white: #FFFFFF;
    --purple: #8B5CF6;
    --purple-light: #A78BFA;
    --purple-dark: #7C3AED;
    --gray-light: #D1D5DB;
    --gray-lighter: #E5E7EB;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(55, 65, 81, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(124, 58, 237, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-play {
    width: 40px;
    height: 40px;
    position: relative;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-play::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 12px solid var(--text-white);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    margin-left: 3px;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(2deg); }
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--text-white), var(--purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--purple);
    transition: width 0.3s;
}

.nav a:hover {
    color: var(--purple-light);
}

.nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 0;
}

.line {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: drawLine 2s ease-out forwards;
}

.line-1 { animation-delay: 0s; }
.line-2 { animation-delay: 0.3s; }
.line-3 { animation-delay: 0.6s; }

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), transparent);
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    animation: hero3D 1s ease-out;
    transform-style: preserve-3d;
    perspective: 1000px;
}

@keyframes hero3D {
    from {
        opacity: 0;
        transform: rotateY(-180deg) translateY(50px);
    }
    to {
        opacity: 1;
        transform: rotateY(0deg) translateY(0);
    }
}

.hero-card h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-white), var(--purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-lighter);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: var(--text-white);
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.5);
    animation: vibrate 0.2s ease-in-out;
}

@keyframes vibrate {
    0%, 100% { transform: translateX(0) translateY(-3px); }
    25% { transform: translateX(-2px) translateY(-3px); }
    75% { transform: translateX(2px) translateY(-3px); }
}

.button-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.button-icon::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid var(--text-white);
    border-radius: 50%;
    top: 2px;
    left: 2px;
}

.button-icon::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 10px;
    border-right: 2px solid var(--text-white);
    border-bottom: 2px solid var(--text-white);
    top: 3px;
    left: 7px;
    transform: rotate(45deg);
}

.cta-button-large {
    padding: 22px 50px;
    font-size: 18px;
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    width: 30px;
    height: 30px;
    position: relative;
}

/* Icon Check */
.icon-check {
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    border-radius: 50%;
}

.icon-check::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 14px;
    border-right: 3px solid var(--text-white);
    border-bottom: 3px solid var(--text-white);
    top: 5px;
    left: 10px;
    transform: rotate(45deg);
}

/* Icon Shield */
.icon-shield::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 24px;
    border: 3px solid var(--purple);
    border-radius: 3px 3px 10px 10px;
    top: 3px;
    left: 5px;
}

.icon-shield::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 10px;
    border-right: 2px solid var(--purple);
    border-bottom: 2px solid var(--purple);
    top: 8px;
    left: 12px;
    transform: rotate(45deg);
}

/* Icon Star */
.icon-star::before {
    content: '★';
    position: absolute;
    font-size: 28px;
    color: var(--purple);
    top: -2px;
    left: 1px;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-dark {
    background: linear-gradient(180deg, #111827 0%, #1F2937 100%);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--text-white), var(--purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray-lighter);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), transparent);
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--purple);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.5);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 20px auto;
    position: relative;
}

/* Icon Click */
.icon-click::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 50px;
    border: 4px solid var(--purple);
    border-radius: 20px 20px 10px 10px;
    top: 15px;
    left: 20px;
}

.icon-click::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 20px;
    background: var(--purple);
    border-radius: 8px 8px 5px 5px;
    top: 10px;
    left: 32px;
}

/* Icon Robot */
.icon-robot::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border: 4px solid var(--purple);
    border-radius: 8px;
    top: 20px;
    left: 15px;
}

.icon-robot::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--purple);
    border-radius: 50%;
    top: 35px;
    left: 28px;
    box-shadow: 20px 0 0 var(--purple);
}

/* Icon Rocket */
.icon-rocket::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 50px;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    border-radius: 15px 15px 5px 5px;
    top: 15px;
    left: 25px;
}

.icon-rocket::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid var(--purple-dark);
    top: 0;
    left: 25px;
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-white);
}

.step-card p {
    color: var(--gray-lighter);
    line-height: 1.8;
    font-weight: 500;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), transparent);
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--purple);
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.3);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    position: relative;
}

/* Icon TV */
.icon-tv::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 45px;
    border: 4px solid var(--purple);
    border-radius: 8px;
    top: 10px;
    left: 5px;
}

.icon-tv::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 4px;
    background: var(--purple);
    border-radius: 2px;
    bottom: 5px;
    left: 25px;
}

/* Icon Play */
.icon-play::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border: 4px solid var(--purple);
    border-radius: 50%;
    top: 10px;
    left: 10px;
}

.icon-play::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid var(--purple);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    position: absolute;
    top: 23px;
    left: 28px;
}

/* Icon Signal */
.icon-signal::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 20px;
    background: var(--purple);
    border-radius: 3px;
    bottom: 15px;
    left: 15px;
    box-shadow: 18px 0 0 var(--purple), 36px -10px 0 var(--purple);
}

.icon-signal::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 30px;
    background: var(--purple);
    border-radius: 3px;
    bottom: 15px;
    left: 33px;
}

/* Icon Devices */
.icon-devices::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 30px;
    border: 3px solid var(--purple);
    border-radius: 5px;
    top: 10px;
    left: 15px;
}

.icon-devices::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 28px;
    border: 3px solid var(--purple);
    border-radius: 4px;
    bottom: 8px;
    right: 12px;
}

/* Icon HD */
.icon-hd::before {
    content: 'HD';
    position: absolute;
    font-size: 32px;
    font-weight: 800;
    color: var(--purple);
    top: 18px;
    left: 18px;
}

.icon-hd::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 50px;
    border: 4px solid var(--purple);
    border-radius: 8px;
    top: 10px;
    left: 5px;
}

/* Icon Update */
.icon-update::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 4px solid var(--purple);
    border-radius: 50%;
    border-top-color: transparent;
    top: 15px;
    left: 15px;
    animation: rotate 2s linear infinite;
}

.icon-update::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 12px solid var(--purple);
    position: absolute;
    top: 12px;
    right: 18px;
    transform: rotate(30deg);
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-white);
}

.benefit-card p {
    color: var(--gray-lighter);
    line-height: 1.7;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(124, 58, 237, 0.05));
}

.cta-box {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), transparent);
    border: 2px solid rgba(124, 58, 237, 0.4);
    border-radius: 20px;
}

.cta-box h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-white);
}

.cta-box p {
    font-size: 18px;
    color: var(--gray-lighter);
    margin-bottom: 35px;
    font-weight: 500;
}

/* Features List */
.features-list {
    max-width: 900px;
    margin: 0 auto;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), transparent);
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: 12px;
    transition: all 0.3s;
}

.feature-row:hover {
    transform: translateX(10px);
    border-color: var(--purple);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    min-width: 80px;
    position: relative;
}

/* Icon Automation */
.icon-automation::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border: 4px solid var(--purple);
    border-radius: 50%;
    top: 15px;
    left: 15px;
}

.icon-automation::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--purple);
    border-radius: 50%;
    top: 36px;
    left: 36px;
    box-shadow: -15px 0 0 var(--purple), 15px 0 0 var(--purple), 0 -15px 0 var(--purple), 0 15px 0 var(--purple);
}

/* Icon Security */
.icon-security::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 50px;
    border: 4px solid var(--purple);
    border-radius: 5px 5px 20px 20px;
    top: 15px;
    left: 20px;
}

.icon-security::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 20px;
    border: 4px solid var(--purple);
    border-radius: 10px 10px 0 0;
    border-bottom: none;
    top: 5px;
    left: 32px;
}

/* Icon Support */
.icon-support::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 35px;
    border: 4px solid var(--purple);
    border-radius: 25px 25px 0 0;
    top: 25px;
    left: 15px;
}

.icon-support::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 20px;
    border: 4px solid var(--purple);
    border-radius: 0 0 15px 15px;
    border-top: none;
    bottom: 10px;
    left: 25px;
}

.feature-content h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--text-white);
}

.feature-content p {
    color: var(--gray-lighter);
    line-height: 1.8;
    font-weight: 500;
}

/* Plans Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.plan-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), transparent);
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: var(--purple);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.4);
}

.plan-featured {
    border-color: var(--purple);
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.3);
    transform: scale(1.05);
}

.plan-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: var(--text-white);
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.5);
}

.plan-header {
    margin-bottom: 30px;
}

.plan-header h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-white);
}

.plan-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    position: relative;
}

/* Icon Calendar */
.icon-calendar::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 45px;
    border: 3px solid var(--purple);
    border-radius: 8px;
    top: 10px;
    left: 5px;
}

.icon-calendar::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--purple);
    top: 22px;
    left: 5px;
}

.icon-calendar-3::before {
    content: '3';
    position: absolute;
    font-size: 28px;
    font-weight: 800;
    color: var(--purple);
    top: 25px;
    left: 20px;
}

.icon-calendar-3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 45px;
    border: 3px solid var(--purple);
    border-radius: 8px;
    top: 10px;
    left: 5px;
}

.icon-calendar-12::before {
    content: '12';
    position: absolute;
    font-size: 24px;
    font-weight: 800;
    color: var(--purple);
    top: 25px;
    left: 16px;
}

.icon-calendar-12::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 45px;
    border: 3px solid var(--purple);
    border-radius: 8px;
    top: 10px;
    left: 5px;
}

.plan-price {
    margin-bottom: 30px;
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10B981, #059669);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.price-label {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
}

.plan-features {
    list-style: none;
    margin-bottom: 35px;
    text-align: left;
}

.plan-features li {
    padding: 12px 0;
    color: var(--gray-lighter);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.check-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    border-radius: 50%;
    position: relative;
    min-width: 20px;
}

.check-icon::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 9px;
    border-right: 2px solid var(--text-white);
    border-bottom: 2px solid var(--text-white);
    top: 4px;
    left: 7px;
    transform: rotate(45deg);
}

.plan-button {
    display: inline-block;
    width: 100%;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: var(--text-white);
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.plan-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.5);
}

/* Guarantee Box */
.guarantee-box {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), transparent);
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: 12px;
}

.guarantee-icon {
    width: 100px;
    height: 100px;
    min-width: 100px;
    position: relative;
}

/* Icon Badge */
.icon-badge::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 70px;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    top: 10px;
    left: 20px;
}

.icon-badge::after {
    content: '✓';
    position: absolute;
    font-size: 40px;
    color: var(--text-white);
    top: 25px;
    left: 35px;
    font-weight: 800;
}

.guarantee-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-white);
}

.guarantee-content p {
    color: var(--gray-lighter);
    line-height: 1.8;
    font-size: 16px;
    font-weight: 500;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), transparent);
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: 12px;
    padding: 30px 25px;
    transition: all 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--purple);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.review-stars {
    color: #FCD34D;
    font-size: 20px;
    margin-bottom: 15px;
}

.review-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-white);
    font-weight: 700;
}

.review-card p {
    color: var(--gray-lighter);
    line-height: 1.7;
    font-size: 15px;
    font-weight: 500;
}

/* Compatibility Grid */
.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.compat-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), transparent);
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s;
}

.compat-card:hover {
    transform: translateY(-8px);
    border-color: var(--purple);
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.3);
}

.compat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    position: relative;
}

/* Icon Smart TV */
.icon-smart-tv::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 45px;
    border: 4px solid var(--purple);
    border-radius: 8px;
    top: 5px;
    left: 5px;
}

.icon-smart-tv::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 4px;
    background: var(--purple);
    border-radius: 2px;
    bottom: 10px;
    left: 20px;
}

/* Icon Mobile */
.icon-mobile::before {
    content: '';
    position: absolute;
    width: 35px;
    height: 55px;
    border: 4px solid var(--purple);
    border-radius: 8px;
    top: 8px;
    left: 18px;
}

.icon-mobile::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 3px;
    background: var(--purple);
    border-radius: 2px;
    bottom: 15px;
    left: 28px;
}

/* Icon Tablet */
.icon-tablet::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 40px;
    border: 4px solid var(--purple);
    border-radius: 6px;
    top: 15px;
    left: 10px;
}

.icon-tablet::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border: 3px solid var(--purple);
    border-radius: 50%;
    bottom: 20px;
    left: 31px;
}

/* Icon Computer */
.icon-computer::before {
    content: '';
    position: absolute;
    width: 55px;
    height: 40px;
    border: 4px solid var(--purple);
    border-radius: 5px;
    top: 8px;
    left: 8px;
}

.icon-computer::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 4px;
    background: var(--purple);
    border-radius: 2px;
    bottom: 12px;
    left: 15px;
}

/* Icon TV Box */
.icon-tvbox::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 35px;
    border: 4px solid var(--purple);
    border-radius: 8px;
    top: 18px;
    left: 10px;
}

.icon-tvbox::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--purple);
    border-radius: 50%;
    top: 30px;
    left: 25px;
}

/* Icon Console */
.icon-console::before {
    content: '';
    position: absolute;
    width: 55px;
    height: 30px;
    border: 4px solid var(--purple);
    border-radius: 15px;
    top: 20px;
    left: 8px;
}

.icon-console::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border: 3px solid var(--purple);
    border-radius: 50%;
    top: 28px;
    right: 18px;
}

.compat-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-white);
}

.compat-card p {
    color: var(--gray-lighter);
    font-size: 14px;
    font-weight: 500;
}

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

.faq-item {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), transparent);
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--purple);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.faq-icon {
    font-size: 28px;
    color: var(--purple);
    transition: transform 0.3s;
    min-width: 30px;
    text-align: center;
}

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

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

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.5s ease-in;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    color: var(--gray-lighter);
    line-height: 1.8;
    font-weight: 500;
}

.faq-answer a {
    color: inherit;
    text-decoration: none;
}

/* Footer */
.footer {
    background: #111827;
    padding: 60px 0 30px;
    border-top: 2px solid rgba(139, 92, 246, 0.4);
}

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

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-white);
}

.footer-section p {
    color: var(--gray-lighter);
    line-height: 1.7;
    font-weight: 500;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--gray-lighter);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.footer-section ul li a:hover {
    color: var(--purple-light);
}

.footer-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: var(--text-white);
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.footer-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
    color: var(--gray-lighter);
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero-card h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .feature-row {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .plan-featured {
        transform: scale(1);
    }
    
    .plan-featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .hero-card {
        padding: 40px 25px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 14px;
    }
    
    .steps-grid,
    .benefits-grid,
    .plans-grid,
    .reviews-grid,
    .compatibility-grid {
        grid-template-columns: 1fr;
    }
}
