:root {
    --bg: #050510;
    --accent: #6C5CE7;
    --accent-soft: #FF7675;
    --text: #ffffff;
    --muted: #b2bec3;
}

* {
    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);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.navbar {
    background: rgba(5, 5, 16, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(108, 92, 231, 0.2);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.3);
}

.play-symbol {
    width: 0;
    height: 0;
    border-left: 14px solid white;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    margin-left: 3px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-size: 1.25rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    font-family: 'Arial Black', sans-serif;
    text-transform: uppercase;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero {
    min-height: 90vh;
    padding: 120px 6vw 80px;
    background: radial-gradient(circle at top left, rgba(108, 92, 231, 0.35), transparent 55%),
                radial-gradient(circle at bottom right, rgba(255, 118, 117, 0.25), transparent 55%),
                var(--bg);
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text), var(--muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--muted);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #DC143C;
    color: #FFFFFF;
    font-weight: 700;
}

.btn-primary:hover {
    background: #B22222;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.4);
}

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

.btn-secondary:hover {
    background: var(--accent);
    color: var(--text);
}

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

.btn-outline:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.hero-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.floating-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(108, 92, 231, 0.1) inset;
}

.floating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(108, 92, 231, 0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    border-radius: 12px;
}

.hero-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.section {
    padding: 80px 6vw;
}

.section-alt {
    background: rgba(255, 255, 255, 0.02);
}

.section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 1rem auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 16px;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--muted);
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--muted);
    font-size: 0.95rem;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.content-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.content-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-soft);
    transform: translateY(-3px);
}

.content-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 118, 117, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.content-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.content-card p {
    color: var(--muted);
    font-size: 0.95rem;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.device-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.device-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
}

.device-icon {
    width: 60px;
    height: 60px;
    background: rgba(108, 92, 231, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.device-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.device-card p {
    color: var(--muted);
    font-size: 0.9rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.plan-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s;
}

.plan-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.plan-featured {
    border-color: var(--accent);
    background: rgba(108, 92, 231, 0.08);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-header h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.discount-badge {
    background: #DC143C;
    color: #FFFFFF;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 800;
}

.price-label {
    font-size: 1.125rem;
    color: var(--muted);
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--muted);
}

.check-icon {
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
}

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

.plan-card .btn {
    width: 100%;
    text-align: center;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--muted);
    line-height: 1.7;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.quality-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.quality-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-soft);
}

.quality-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.quality-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.quality-card p {
    color: var(--muted);
    font-size: 0.9rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
}

.review-stars {
    color: #FFD700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.review-card p {
    color: var(--muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.review-card h3 {
    font-size: 0.95rem;
    color: #8B7FE8;
    font-weight: 600;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text);
    text-align: left;
}

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

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

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

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

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--muted);
    line-height: 1.7;
}

.section-cta {
    background: radial-gradient(circle at center, rgba(108, 92, 231, 0.2), transparent 70%),
                var(--bg);
}

.cta-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--accent);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.25rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

.footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 6vw 1.5rem;
}

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

.footer-brand p {
    color: var(--muted);
    margin-top: 1rem;
}

.footer-heading {
    margin-bottom: 1rem;
    color: #9B8FE8;
    font-size: 1.125rem;
    font-weight: 700;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-contact p {
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #075E54;
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    margin-top: 0.5rem;
}

.btn-whatsapp:hover {
    background: #054A42;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(7, 94, 84, 0.3);
}

.whatsapp-icon {
    font-size: 1.25rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--muted);
    font-size: 0.9rem;
}

/* CSS Icons */
.icon-play {
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.icon-shield {
    width: 24px;
    height: 28px;
    background: white;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.icon-star {
    width: 30px;
    height: 30px;
    background: white;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.icon-click {
    width: 28px;
    height: 28px;
    border: 4px solid var(--accent);
    border-radius: 50%;
    position: relative;
}

.icon-click::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-robot {
    width: 30px;
    height: 30px;
    background: var(--accent);
    border-radius: 4px;
    position: relative;
}

.icon-robot::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    top: 8px;
    left: 6px;
}

.icon-robot::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    top: 8px;
    right: 6px;
}

.icon-check {
    width: 30px;
    height: 30px;
    border: 4px solid var(--accent);
    border-radius: 50%;
    position: relative;
}

.icon-check::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 12px;
    border: solid var(--accent);
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    top: 4px;
    left: 8px;
}

.icon-zap {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 20px solid white;
    position: relative;
}

.icon-zap::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 20px solid white;
    top: 4px;
    left: -12px;
}

.icon-tv {
    width: 32px;
    height: 24px;
    border: 3px solid white;
    border-radius: 4px;
    position: relative;
}

.icon-tv::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-top: 3px solid white;
    border-right: 3px solid white;
    transform: rotate(-45deg);
    top: -10px;
    right: 8px;
}

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

.icon-signal::before,
.icon-signal::after {
    content: '';
    position: absolute;
    border: 3px solid white;
    border-radius: 50%;
}

.icon-signal::before {
    width: 20px;
    height: 20px;
    top: 5px;
    left: 5px;
}

.icon-signal::after {
    width: 30px;
    height: 30px;
    top: 0;
    left: 0;
    opacity: 0.5;
}

.icon-device {
    width: 28px;
    height: 20px;
    border: 3px solid white;
    border-radius: 3px;
    position: relative;
}

.icon-device::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 2px;
    background: white;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
}

.icon-lock {
    width: 20px;
    height: 16px;
    background: white;
    border-radius: 3px;
    position: relative;
    margin-top: 8px;
}

.icon-lock::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 12px;
    border: 3px solid white;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    top: -12px;
    left: 0;
}

.icon-update {
    width: 28px;
    height: 28px;
    border: 3px solid white;
    border-radius: 50%;
    border-top-color: transparent;
    position: relative;
}

.icon-update::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid white;
    top: -8px;
    right: -2px;
    transform: rotate(45deg);
}

.icon-film {
    width: 28px;
    height: 22px;
    border: 3px solid var(--accent-soft);
    border-radius: 2px;
    position: relative;
}

.icon-film::before,
.icon-film::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-soft);
}

.icon-film::before {
    top: 2px;
    left: 2px;
}

.icon-film::after {
    bottom: 2px;
    right: 2px;
}

.icon-sports {
    width: 26px;
    height: 26px;
    border: 3px solid var(--accent-soft);
    border-radius: 50%;
    position: relative;
}

.icon-sports::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 3px;
    background: var(--accent-soft);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.icon-sports::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 3px;
    background: var(--accent-soft);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.icon-news {
    width: 24px;
    height: 28px;
    border: 3px solid var(--accent-soft);
    border-radius: 2px;
    position: relative;
}

.icon-news::before,
.icon-news::after {
    content: '';
    position: absolute;
    height: 2px;
    background: var(--accent-soft);
    left: 3px;
    right: 3px;
}

.icon-news::before {
    top: 6px;
}

.icon-news::after {
    top: 12px;
}

.icon-kids {
    width: 26px;
    height: 26px;
    background: var(--accent-soft);
    border-radius: 50%;
    position: relative;
}

.icon-kids::before,
.icon-kids::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    top: 8px;
}

.icon-kids::before {
    left: 5px;
}

.icon-kids::after {
    right: 5px;
}

.icon-doc {
    width: 22px;
    height: 28px;
    background: var(--accent-soft);
    border-radius: 2px;
    position: relative;
}

.icon-doc::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--bg);
    top: 0;
    right: 0;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

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

.icon-music::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 20px;
    background: var(--accent-soft);
    bottom: 6px;
    right: 4px;
}

.icon-music::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-soft);
    border-radius: 50%;
    bottom: 0;
    right: 0;
}

.icon-smartphone {
    width: 18px;
    height: 28px;
    border: 3px solid var(--accent);
    border-radius: 4px;
}

.icon-tablet {
    width: 24px;
    height: 28px;
    border: 3px solid var(--accent);
    border-radius: 3px;
}

.icon-smart-tv {
    width: 32px;
    height: 22px;
    border: 3px solid var(--accent);
    border-radius: 2px;
    position: relative;
}

.icon-smart-tv::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 4px;
    background: var(--accent);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 2px 2px;
}

.icon-computer {
    width: 30px;
    height: 20px;
    border: 3px solid var(--accent);
    border-radius: 2px;
    position: relative;
}

.icon-computer::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 3px;
    background: var(--accent);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.icon-box {
    width: 28px;
    height: 20px;
    background: var(--accent);
    border-radius: 2px;
    position: relative;
}

.icon-box::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 3px;
    background: white;
    top: 8px;
    left: 7px;
}

.icon-rocket {
    width: 20px;
    height: 28px;
    background: white;
    clip-path: polygon(50% 0%, 70% 30%, 100% 100%, 50% 85%, 0% 100%, 30% 30%);
}

.icon-globe {
    width: 28px;
    height: 28px;
    border: 3px solid white;
    border-radius: 50%;
    position: relative;
}

.icon-globe::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 28px;
    border: 3px solid white;
    border-radius: 50%;
    top: -3px;
    left: 4px;
}

.icon-users {
    width: 32px;
    height: 28px;
    position: relative;
}

.icon-users::before,
.icon-users::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    top: 0;
}

.icon-users::before {
    left: 0;
}

.icon-users::after {
    right: 0;
}

.icon-headset {
    width: 28px;
    height: 24px;
    border: 3px solid white;
    border-bottom: none;
    border-radius: 14px 14px 0 0;
    position: relative;
}

.icon-headset::before,
.icon-headset::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 10px;
    background: white;
    border-radius: 3px;
    bottom: -10px;
}

.icon-headset::before {
    left: -3px;
}

.icon-headset::after {
    right: -3px;
}

.icon-chromecast {
    width: 28px;
    height: 28px;
    position: relative;
}

.icon-chromecast::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid var(--accent);
    border-radius: 50%;
    top: 0;
    right: 0;
}

.icon-chromecast::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid var(--accent);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    bottom: 2px;
    left: 0;
}

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

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .steps-grid,
    .benefits-grid,
    .content-grid,
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .devices-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .logo-main {
        font-size: 1rem;
    }
    
    .logo-sub {
        font-size: 0.55rem;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .play-symbol {
        border-left: 11px solid white;
        border-top: 7px solid transparent;
        border-bottom: 7px solid transparent;
    }
    
    .nav-links {
        font-size: 0.875rem;
    }
}
