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

:root {
    --primary-color: #0066ff;
    --primary-dark: #0052cc;
    --primary-light: #3385ff;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #1c1c1c;
    --bg-card-hover: #252525;
    --text-primary: #ffffff;
    --text-secondary: #c0c0c0;
    --text-muted: #999999;
    --border-color: #2a2a2a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    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(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 15px 0;
}

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

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-bars {
    display: flex;
    gap: 3px;
    align-items: flex-end;
}

.play-bars span {
    width: 4px;
    background: white;
    border-radius: 2px;
    animation: pulse 1.5s ease-in-out infinite;
}

.play-bars span:nth-child(1) {
    height: 12px;
    animation-delay: 0s;
}

.play-bars span:nth-child(2) {
    height: 18px;
    animation-delay: 0.2s;
}

.play-bars span:nth-child(3) {
    height: 10px;
    animation-delay: 0.4s;
}

@keyframes pulse {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.6); }
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav {
    display: flex;
    gap: 30px;
}

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

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

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

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

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 50%, #1a0a0a 100%);
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 102, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease-out;
}

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

.check-mark {
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: relative;
}

.check-mark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid var(--primary-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.hero-badge span {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
}

.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 102, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-card);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px) scale(1.05);
}

.btn-large {
    padding: 18px 40px;
    font-size: 17px;
}

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

/* Icon Styles */
.whatsapp-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
    mask-size: contain;
    -webkit-mask-size: contain;
}

.info-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.info-icon::after {
    content: 'i';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    font-size: 14px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(28, 28, 28, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.users-icon::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    top: 8px;
    left: 14px;
}

.users-icon::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 10px;
    border: 2px solid var(--primary-color);
    border-radius: 10px 10px 0 0;
    border-bottom: none;
    bottom: 8px;
    left: 11px;
}

.star-icon::before {
    content: '★';
    color: var(--primary-color);
    font-size: 24px;
}

.clock-icon::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
}

.clock-icon::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 8px;
    background: var(--primary-color);
    top: 11px;
    left: 19px;
    transform-origin: top center;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Sections */
.section {
    padding: 80px 0;
    position: relative;
}

.section-dark {
    background: var(--bg-darker);
}

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

.section-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(231, 76, 60, 0.2);
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(0, 102, 255, 0.2);
    margin-bottom: 20px;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.click-icon::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 24px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    top: 15px;
}

.click-icon::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 10px;
    border: 2px solid var(--primary-color);
    border-bottom: none;
    border-radius: 4px 4px 0 0;
    top: 17px;
}

.robot-icon::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    top: 22px;
}

.robot-icon::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    top: 16px;
}

.message-icon::before {
    content: '';
    position: absolute;
    width: 28px;
    height: 22px;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    top: 18px;
}

.message-icon::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--primary-color);
    bottom: 16px;
    left: 20px;
}

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

.step-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 102, 255, 0.05) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
}

.cta-box h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

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

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 35px 28px;
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px) rotate(1deg);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.15);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.lightning-icon::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 14px solid var(--primary-color);
    top: 12px;
}

.lightning-icon::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid var(--primary-color);
    bottom: 14px;
    left: 22px;
}

.shield-icon::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 24px;
    border: 2px solid var(--primary-color);
    border-radius: 3px 3px 10px 10px;
}

.shield-icon::after {
    content: '✓';
    position: absolute;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
}

.quality-icon::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
}

.quality-icon::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
}

.device-icon::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 16px;
    border: 2px solid var(--primary-color);
    border-radius: 3px;
    top: 14px;
}

.device-icon::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 2px;
    background: var(--primary-color);
    bottom: 12px;
}

.content-icon::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 26px;
    border: 2px solid var(--primary-color);
    border-radius: 3px;
}

.content-icon::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid var(--primary-color);
    transform: rotate(90deg);
}

.support-icon::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    top: 10px;
}

.support-icon::after {
    content: '';
    position: absolute;
    width: 26px;
    height: 12px;
    border: 2px solid var(--primary-color);
    border-radius: 13px 13px 0 0;
    border-bottom: none;
    bottom: 10px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

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

.plan-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 15px 50px rgba(0, 102, 255, 0.2);
}

.plan-featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 102, 255, 0.05) 100%);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 25px;
}

.plan-header h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.plan-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.calendar-icon::before {
    content: '';
    position: absolute;
    width: 28px;
    height: 24px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    top: 20px;
}

.calendar-icon::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    top: 26px;
}

.plan-price {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.price-label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.price-discount {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.price-period {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 15px;
}

.check-icon {
    width: 20px;
    height: 20px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

.check-icon::after {
    content: '✓';
    position: absolute;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.tv-icon::before {
    content: '';
    position: absolute;
    width: 32px;
    height: 24px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
}

.tv-icon::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 4px;
    background: var(--primary-color);
    bottom: 12px;
}

.movie-icon::before {
    content: '';
    position: absolute;
    width: 28px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 3px;
}

.movie-icon::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid var(--primary-color);
    left: 22px;
}

.sports-icon::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
}

.sports-icon::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    border-style: dashed;
}

.hd-icon::before {
    content: 'HD';
    position: absolute;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 800;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Differentials */
.differentials-container {
    display: grid;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto 50px;
}

.differential-card {
    display: flex;
    gap: 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s;
}

.differential-card:hover {
    transform: translateX(10px) rotate(-1deg);
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.15);
}

.differential-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.automation-icon::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
}

.automation-icon::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.speed-icon::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid var(--primary-color);
}

.speed-icon::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 2px;
    background: var(--primary-color);
    left: 10px;
}

.simple-icon::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
}

.simple-icon::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.reliable-icon::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 20px solid var(--primary-color);
    top: 15px;
}

.reliable-icon::after {
    content: '!';
    position: absolute;
    color: var(--bg-card);
    font-size: 16px;
    font-weight: 700;
    top: 22px;
}

.differential-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.differential-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.guarantee-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 35px 28px;
    text-align: center;
    transition: all 0.3s;
}

.guarantee-card:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--primary-color);
}

.guarantee-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.verified-icon::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
}

.verified-icon::after {
    content: '✓';
    position: absolute;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
}

.privacy-icon::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 24px;
    border: 3px solid var(--primary-color);
    border-radius: 10px 10px 0 0;
    border-bottom: none;
    top: 20px;
}

.privacy-icon::after {
    content: '';
    position: absolute;
    width: 26px;
    height: 18px;
    background: var(--primary-color);
    border-radius: 4px;
    bottom: 16px;
}

.satisfaction-icon::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
}

.satisfaction-icon::after {
    content: '😊';
    position: absolute;
    font-size: 18px;
}

.guarantee-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.guarantee-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Process Timeline */
.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

.timeline-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-card);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.start-icon::before {
    content: '▶';
    color: var(--primary-color);
    font-size: 20px;
}

.data-icon::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 24px;
    border: 2px solid var(--primary-color);
    border-radius: 3px;
}

.activate-icon::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
}

.activate-icon::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid var(--primary-color);
    left: 18px;
}

.experience-icon::before {
    content: '★';
    color: var(--primary-color);
    font-size: 24px;
}

.follow-icon::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 16px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
}

.follow-icon::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--primary-color);
    bottom: 18px;
}

.timeline-content {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s;
}

.timeline-content:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.section-cta {
    background: linear-gradient(135deg, var(--bg-darker) 0%, rgba(0, 102, 255, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 35px;
}

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

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s;
}

.review-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15);
}

.review-stars {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 600;
}

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

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

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(0, 102, 255, 0.05);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    padding-right: 20px;
}

.faq-icon {
    font-size: 28px;
    color: var(--primary-color);
    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 30px 25px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.faq-answer a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s;
}

.faq-answer a:hover {
    opacity: 0.7;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-content {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-text {
    color: #d0d0d0;
    max-width: 500px;
    margin: 0 auto;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: #a0a0a0;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        width: 100%;
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .steps-grid,
    .benefits-grid,
    .plans-grid,
    .features-grid,
    .guarantees-grid {
        grid-template-columns: 1fr;
    }
    
    .differential-card {
        flex-direction: column;
        text-align: center;
    }
    
    .differential-icon {
        margin: 0 auto;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-icon {
        margin: 0 auto;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .step-card,
    .benefit-card,
    .plan-card,
    .guarantee-card {
        padding: 25px 20px;
    }
    
    .cta-box {
        padding: 35px 25px;
    }
    
    .cta-box h3 {
        font-size: 24px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: white;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Loading Animation */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

/* Performance Optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    font-family: inherit;
}

/* Focus States */
a:focus,
button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .btn {
        display: none;
    }
}


/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.legal-date {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.legal-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content ul li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.footer-links a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .legal-content {
        padding: 30px 25px;
    }
    
    .legal-content h1 {
        font-size: 32px;
    }
    
    .legal-content h2 {
        font-size: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}
