/* ========================================
   RESET & VARIABLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --cyan: #00FFFF;
    --lime: #32CD32;
    --gray: #333333;
    --dark-gray: #1a1a1a;
    --light-gray: #999999;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--black);
    color: var(--cyan);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--cyan);
}

.navbar {
    padding: 1rem 0;
}

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

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

.logo {
    width: 50px;
    height: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.particle-orbit {
    width: 40px;
    height: 40px;
    border: 2px solid var(--cyan);
    border-radius: 50%;
    position: absolute;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

.particle-core {
    width: 8px;
    height: 8px;
    background: var(--lime);
    border-radius: 50%;
    position: absolute;
    animation: erratic 3s steps(20) infinite;
    box-shadow: 0 0 10px var(--lime);
}

@keyframes erratic {
    0% { transform: translate(0, 0); }
    25% { transform: translate(5px, -5px); }
    50% { transform: translate(-3px, 3px); }
    75% { transform: translate(4px, 2px); }
    100% { transform: translate(0, 0); }
}

.logo-text {
    font-family: 'Roboto Mono', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.nav-menu a {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

/* ========================================
   HERO SECTION - REDESIGNED
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 60px;
}

.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(50, 205, 50, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.05) 0%, transparent 70%);
    animation: particleMove 15s ease-in-out infinite;
}

@keyframes particleMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-grid {
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Floating Badges */
.hero-badges {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(50, 205, 50, 0.1));
    border: 2px solid var(--cyan);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.badge-2 {
    top: 25%;
    right: 8%;
    animation-delay: 1s;
    border-color: var(--lime);
}

.badge-2 .badge-text {
    color: var(--lime);
}

.badge-3 {
    bottom: 30%;
    left: 8%;
    animation-delay: 2s;
}

.badge-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
    border-color: var(--lime);
}

.badge-4 .badge-text {
    color: var(--lime);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(2deg);
    }
    50% {
        transform: translateY(-10px) rotate(-2deg);
    }
    75% {
        transform: translateY(-15px) rotate(1deg);
    }
}

/* Hero Content */
.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--cyan);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--cyan);
    margin-bottom: 2rem;
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(0, 255, 255, 0);
    }
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--lime);
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

.hero-title {
    font-family: 'Roboto Mono', monospace;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line {
    display: block;
    color: var(--cyan);
    animation: slideInLeft 0.8s ease-out;
}

.title-line.highlight {
    background: linear-gradient(90deg, var(--cyan), var(--lime));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInRight 0.8s ease-out, gradient-shift 3s ease-in-out infinite;
}

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

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

@keyframes gradient-shift {
    0%, 100% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(20deg);
    }
}

.hero-description {
    font-size: 1.2rem;
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description strong {
    color: var(--lime);
    font-weight: 600;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    font-size: 0.95rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--lime);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.cta-button-hero {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: linear-gradient(135deg, var(--cyan), var(--lime));
    color: var(--black);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.4);
    animation: pulse-cta 2s ease-in-out infinite;
}

@keyframes pulse-cta {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(0, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(0, 255, 255, 0.6);
    }
}

.cta-button-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button-hero:hover::before {
    left: 100%;
}

.cta-button-hero:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 60px rgba(0, 255, 255, 0.6);
}

.cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.cta-main {
    font-size: 1.1rem;
    font-weight: 700;
}

.cta-sub {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.8;
}

.cta-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.cta-button-hero:hover .cta-arrow {
    transform: translateX(5px);
}

/* Hero Trust */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2.5rem;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid var(--gray);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.trust-number {
    font-family: 'Roboto Mono', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cyan);
}

.trust-label {
    font-size: 0.85rem;
    color: var(--light-gray);
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: var(--gray);
}

/* Responsive Hero */
@media (max-width: 1024px) {
    .badge {
        padding: 10px 16px;
    }
    
    .badge-text {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
    }

    .hero-badges {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button-hero {
        padding: 16px 24px;
        font-size: 0.95rem;
        gap: 10px;
    }

    .cta-main {
        font-size: 0.95rem;
    }

    .cta-sub {
        font-size: 0.7rem;
    }

    .cta-arrow {
        font-size: 1.2rem;
    }

    .hero-trust {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .trust-divider {
        width: 60px;
        height: 1px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .cta-button-hero {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.9rem;
        flex-wrap: wrap;
    }

    .cta-text {
        flex: 1;
        min-width: 150px;
    }

    .cta-main {
        font-size: 0.9rem;
    }

    .cta-sub {
        font-size: 0.65rem;
    }

    .trust-number {
        font-size: 1.5rem;
    }
}

/* ========================================
   BUTTONS
   ======================================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: transparent;
    color: var(--cyan);
    text-decoration: none;
    border: 2px solid var(--cyan);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--cyan);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover {
    color: var(--black);
    box-shadow: 0 0 20px var(--cyan);
}

.cta-button:hover::before {
    left: 0;
}

.cta-button.large {
    padding: 20px 45px;
    font-size: 1.3rem;
}

.plan-button {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--cyan);
    text-decoration: none;
    border: 2px solid var(--cyan);
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 600;
}

.plan-button:hover {
    background: var(--cyan);
    color: var(--black);
}

/* ========================================
   SECTIONS GENERAL
   ======================================== */
section {
    padding: 80px 0;
    position: relative;
}

section h2 {
    font-family: 'Roboto Mono', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--cyan);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--lime);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits {
    background: var(--dark-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: var(--black);
    border: 1px solid var(--cyan);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.3);
    border-color: var(--lime);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--cyan);
}

.benefit-card p {
    color: var(--light-gray);
    line-height: 1.8;
}

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

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   HOW IT WORKS SECTION - TIMELINE
   ======================================== */
.steps-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto 3rem;
    position: relative;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-circle {
    width: 80px;
    height: 80px;
    background: var(--black);
    border: 3px solid var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--cyan);
    font-family: 'Roboto Mono', monospace;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-item:hover .step-circle {
    background: var(--cyan);
    color: var(--black);
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--cyan);
}

.step-connector {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--lime));
    margin-top: 40px;
    position: relative;
}

.step-connector::before {
    content: '';
    position: absolute;
    right: 0;
    top: -5px;
    width: 0;
    height: 0;
    border-left: 10px solid var(--lime);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--lime);
}

.step-content p {
    color: var(--light-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .steps-timeline {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        width: 3px;
        height: 60px;
        margin: 0;
    }

    .step-connector::before {
        left: -5px;
        top: auto;
        bottom: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 10px solid var(--lime);
    }
}

/* ========================================
   ADVANTAGES SECTION
   ======================================== */
.advantages {
    background: var(--dark-gray);
}

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

.advantage-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--black);
    border-left: 3px solid var(--lime);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateX(5px);
    box-shadow: -5px 0 20px rgba(50, 205, 50, 0.2);
}

.advantage-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--cyan);
}

.advantage-item p {
    color: var(--light-gray);
    line-height: 1.6;
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.process-card {
    background: var(--black);
    border: 2px solid var(--gray);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.process-card:hover {
    border-color: var(--cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.process-card h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: var(--cyan);
}

.process-card p {
    color: var(--light-gray);
    line-height: 1.6;
}

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

/* ========================================
   PLANS SECTION
   ======================================== */
.plans {
    background: var(--dark-gray);
}

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

.plan-card {
    background: var(--black);
    border: 2px solid var(--cyan);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.3);
}

.plan-card.featured {
    border-color: var(--lime);
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.1);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lime);
    color: var(--black);
    padding: 5px 20px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
}

.plan-badge.best-value {
    background: var(--cyan);
}

.plan-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--cyan);
}

.plan-price {
    margin-bottom: 2rem;
}

.discount-badge {
    display: inline-block;
    background: var(--lime);
    color: var(--black);
    padding: 8px 15px;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.price-label {
    display: block;
    font-size: 1.2rem;
    color: var(--lime);
    margin-top: 1rem;
}

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

.plan-features li {
    padding: 0.8rem 0;
    color: var(--light-gray);
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ========================================
   DIFFERENTIALS SECTION
   ======================================== */
.differentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.differential-card {
    background: var(--black);
    border: 2px solid var(--gray);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.differential-card:hover {
    border-color: var(--lime);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(50, 205, 50, 0.2);
}

.differential-card h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: var(--lime);
}

.differential-card p {
    color: var(--light-gray);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .differentials-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   GUARANTEE SECTION
   ======================================== */
.guarantee {
    background: var(--dark-gray);
}

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

.guarantee-card {
    background: var(--black);
    border: 2px solid var(--gray);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.guarantee-card:hover {
    border-color: var(--cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.guarantee-card h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: var(--cyan);
}

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

@media (max-width: 768px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   COMPATIBILITY SECTION
   ======================================== */
.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.device-card {
    background: var(--dark-gray);
    border: 1px solid var(--gray);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.device-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.device-card:hover::before {
    left: 100%;
}

.device-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.2);
    transform: translateY(-5px);
}

.device-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--cyan);
    margin-top: 1rem;
}

.device-card p {
    color: var(--light-gray);
    line-height: 1.6;
}

/* ========================================
   CONTENT SECTION
   ======================================== */
.content-section {
    background: var(--dark-gray);
}

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

.content-card {
    background: var(--black);
    border: 2px solid var(--gray);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.content-card:hover {
    border-color: var(--lime);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(50, 205, 50, 0.2);
}

.content-card h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--cyan);
}

.content-card p {
    color: var(--light-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

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

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   QUALITY SECTION
   ======================================== */
.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.quality-card {
    background: var(--dark-gray);
    border: 2px solid var(--gray);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.quality-card:hover {
    border-color: var(--lime);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(50, 205, 50, 0.3);
}

.quality-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--black);
    border: 2px solid var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.quality-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--lime);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.quality-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--cyan);
}

.quality-bar {
    width: 100%;
    height: 8px;
    background: var(--black);
    border: 1px solid var(--gray);
    border-radius: 10px;
    margin: 1.5rem 0;
    overflow: hidden;
}

.quality-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--cyan), var(--lime));
    border-radius: 10px;
    animation: progress-glow 2s ease-in-out infinite;
}

@keyframes progress-glow {
    0%, 100% {
        box-shadow: 0 0 5px var(--cyan);
    }
    50% {
        box-shadow: 0 0 15px var(--lime);
    }
}

.quality-card p {
    color: var(--light-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ========================================
   AUTOMATION SECTION
   ======================================== */
.automation {
    background: var(--dark-gray);
}

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

.automation-card {
    background: var(--black);
    border: 2px solid var(--gray);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.automation-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--lime));
    transition: width 0.3s ease;
}

.automation-card:hover::after {
    width: 100%;
}

.automation-card:hover {
    border-color: var(--cyan);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.automation-number {
    position: absolute;
    top: -15px;
    right: 20px;
    font-family: 'Roboto Mono', monospace;
    font-size: 3rem;
    font-weight: bold;
    color: var(--gray);
    opacity: 0.3;
}

.automation-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--dark-gray);
    border: 2px solid var(--lime);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.automation-card:hover .automation-icon {
    transform: rotateY(360deg);
    border-color: var(--cyan);
}

.automation-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--cyan);
}

.automation-card p {
    color: var(--light-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews {
    background: var(--black);
}

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

.review-card {
    background: var(--dark-gray);
    border: 1px solid var(--gray);
    padding: 2rem;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.2);
}

.review-stars {
    color: var(--lime);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-card h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--cyan);
    font-weight: 600;
}

.review-card p {
    color: var(--light-gray);
    line-height: 1.6;
    font-style: italic;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
    background: var(--dark-gray);
}

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

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid var(--gray);
    background: var(--black);
}

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

.faq-question:hover {
    background: var(--dark-gray);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--lime);
    transition: transform 0.3s ease;
}

.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: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--light-gray);
    line-height: 1.8;
}

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

/* ========================================
   CTA FINAL SECTION
   ======================================== */
.cta-final {
    background: var(--black);
    text-align: center;
    padding: 100px 0;
}

.cta-final h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-final p {
    font-size: 1.3rem;
    color: var(--lime);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: var(--dark-gray);
    border-top: 1px solid var(--cyan);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.footer-links {
    display: flex;
    gap: 2rem;
}

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

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

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

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

/* ========================================
   ICONS - ORGANIZED BY SECTION
   ======================================== */

/* Base Icon Styles */
[class^="icon-"] {
    width: 60px;
    height: 60px;
    position: relative;
    display: inline-block;
    color: var(--lime);
}

/* Benefits Icons */
.benefit-card [class^="icon-"] {
    margin: 0 auto 1.5rem;
}

.icon-quality::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid currentColor;
    border-radius: 50%;
    left: 15px;
    top: 10px;
}

.icon-quality::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 20px;
    border-right: 4px solid currentColor;
    border-bottom: 4px solid currentColor;
    transform: rotate(45deg);
    left: 24px;
    top: 15px;
}

.icon-speed-fast::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 20px solid currentColor;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    left: 15px;
    top: 18px;
}

.icon-speed-fast::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 3px;
    background: currentColor;
    left: 10px;
    top: 15px;
    box-shadow: 0 6px 0 currentColor, 0 12px 0 currentColor;
}

.icon-secure::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 30px;
    border: 3px solid currentColor;
    border-radius: 50% 50% 0 0;
    left: 18px;
    top: 10px;
}

.icon-secure::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 16px;
    border-right: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    transform: rotate(45deg);
    left: 24px;
    top: 20px;
}

.icon-multi-device::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 15px;
    border: 3px solid currentColor;
    left: 10px;
    top: 15px;
}

.icon-multi-device::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 20px;
    border: 3px solid currentColor;
    right: 10px;
    bottom: 15px;
}

.icon-support::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 3px solid currentColor;
    border-radius: 50%;
    left: 18px;
    top: 8px;
}

.icon-support::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 3px;
    background: currentColor;
    left: 22px;
    bottom: 12px;
    box-shadow: 0 -6px 0 currentColor;
}

.icon-content::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 36px;
    border: 3px solid currentColor;
    left: 15px;
    top: 10px;
}

.icon-content::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 12px solid currentColor;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    left: 24px;
    top: 24px;
}

/* Advantages Icons */
.advantage-item [class^="icon-"] {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.icon-library::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 30px;
    border: 2px solid currentColor;
    left: 8px;
    top: 5px;
}

.icon-library::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 2px;
    background: currentColor;
    left: 12px;
    top: 12px;
    box-shadow: 0 6px 0 currentColor, 0 12px 0 currentColor;
}

.icon-movie::before {
    content: '';
    position: absolute;
    width: 28px;
    height: 20px;
    border: 2px solid currentColor;
    left: 6px;
    top: 10px;
}

.icon-movie::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: currentColor;
    border-radius: 50%;
    left: 4px;
    top: 8px;
    box-shadow: 8px 0 0 currentColor, 16px 0 0 currentColor, 24px 0 0 currentColor;
}

.icon-sports::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid currentColor;
    border-radius: 50%;
    left: 10px;
    top: 10px;
}

.icon-sports::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 2px;
    background: currentColor;
    left: 14px;
    top: 19px;
    transform: rotate(-45deg);
}

.icon-smooth::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: currentColor;
    left: 5px;
    top: 19px;
}

.icon-smooth::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid currentColor;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    right: 5px;
    top: 14px;
}

.icon-interface::before {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    border: 2px solid currentColor;
    border-radius: 4px;
    left: 6px;
    top: 6px;
}

.icon-interface::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid currentColor;
    left: 14px;
    top: 14px;
}

.icon-update::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid currentColor;
    border-radius: 50%;
    border-top-color: transparent;
    left: 10px;
    top: 10px;
    animation: rotate 2s linear infinite;
}

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

.icon-update::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid currentColor;
    left: 14px;
    top: 8px;
}

/* Plans Icons */
.icon-check-small {
    width: 20px;
    height: 20px;
}

.icon-check-small::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 12px;
    border-right: 2px solid var(--lime);
    border-bottom: 2px solid var(--lime);
    transform: rotate(45deg);
    left: 6px;
    top: 2px;
}

/* Differentials Icons */
.differential-card [class^="icon-"] {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    color: var(--cyan);
}

.icon-star::before {
    content: '★';
    position: absolute;
    font-size: 50px;
    color: currentColor;
    left: 10px;
    top: 5px;
}

.icon-globe::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid currentColor;
    border-radius: 50%;
    left: 15px;
    top: 15px;
}

.icon-globe::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 40px;
    border: 3px solid currentColor;
    border-radius: 50%;
    left: 25px;
    top: 15px;
}

.icon-clock::before {
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    border: 3px solid currentColor;
    border-radius: 50%;
    left: 12px;
    top: 12px;
}

.icon-clock::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 15px;
    background: currentColor;
    left: 28px;
    top: 20px;
}

/* Compatibility Icons */
.icon-screen::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 30px;
    border: 3px solid currentColor;
    left: 10px;
    top: 10px;
}

.icon-screen::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 5px;
    background: currentColor;
    left: 20px;
    bottom: 10px;
}

.icon-smartphone::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 40px;
    border: 3px solid currentColor;
    border-radius: 5px;
    left: 18px;
    top: 10px;
}

.icon-smartphone::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 2px;
    background: currentColor;
    left: 25px;
    bottom: 15px;
}

.icon-tablet-device::before {
    content: '';
    position: absolute;
    width: 32px;
    height: 40px;
    border: 3px solid currentColor;
    border-radius: 4px;
    left: 14px;
    top: 10px;
}

.icon-tablet-device::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border: 2px solid currentColor;
    border-radius: 50%;
    left: 26px;
    bottom: 14px;
}

.icon-monitor::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 28px;
    border: 3px solid currentColor;
    left: 10px;
    top: 10px;
}

.icon-monitor::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 3px;
    background: currentColor;
    left: 18px;
    bottom: 12px;
}

.icon-tvbox::before {
    content: '';
    position: absolute;
    width: 32px;
    height: 24px;
    border: 3px solid currentColor;
    border-radius: 4px;
    left: 14px;
    top: 18px;
}

.icon-tvbox::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 3px solid currentColor;
    right: 16px;
    top: 24px;
}

.icon-cast::before {
    content: '';
    position: absolute;
    width: 36px;
    height: 28px;
    border: 3px solid currentColor;
    border-radius: 5px;
    left: 12px;
    top: 12px;
}

.icon-cast::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border-left: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    border-radius: 0 0 0 14px;
    left: 12px;
    bottom: 12px;
}

/* Quality Icons */
.quality-icon [class^="icon-"] {
    width: 40px;
    height: 40px;
}

.icon-resolution::before {
    content: '4K';
    position: absolute;
    font-size: 20px;
    font-weight: bold;
    color: currentColor;
    left: 8px;
    top: 10px;
}

.icon-lightning::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 16px solid currentColor;
    left: 12px;
    top: 5px;
}

.icon-lightning::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 16px solid currentColor;
    left: 20px;
    top: 18px;
}

.icon-network::before {
    content: '';
    position: absolute;
    width: 32px;
    height: 32px;
    border: 3px solid currentColor;
    border-radius: 50%;
    left: 4px;
    top: 4px;
}

.icon-network::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 3px solid currentColor;
    border-radius: 50%;
    left: 11px;
    top: 11px;
}

.icon-server::before {
    content: '';
    position: absolute;
    width: 32px;
    height: 10px;
    border: 3px solid currentColor;
    left: 4px;
    top: 5px;
}

.icon-server::after {
    content: '';
    position: absolute;
    width: 32px;
    height: 10px;
    border: 3px solid currentColor;
    left: 4px;
    top: 18px;
    box-shadow: 0 13px 0 0 currentColor, 3px 13px 0 0 currentColor, -3px 13px 0 0 currentColor;
}

/* Automation Icons */
.automation-icon [class^="icon-"] {
    width: 40px;
    height: 40px;
}

.icon-ai::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 3px solid currentColor;
    border-radius: 50%;
    left: 8px;
    top: 8px;
}

.icon-ai::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: currentColor;
    border-radius: 50%;
    left: 14px;
    top: 14px;
    animation: ai-pulse 1.5s ease-in-out infinite;
}

@keyframes ai-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.5; }
}

.icon-instant::before {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    border: 3px solid currentColor;
    border-radius: 50%;
    left: 6px;
    top: 6px;
}

.icon-instant::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 12px solid currentColor;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    left: 18px;
    top: 12px;
}

.icon-chat::before {
    content: '';
    position: absolute;
    width: 28px;
    height: 22px;
    border: 3px solid currentColor;
    border-radius: 6px;
    left: 6px;
    top: 6px;
}

.icon-chat::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid currentColor;
    left: 14px;
    bottom: 8px;
}

.icon-follow::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 3px solid currentColor;
    border-radius: 50%;
    left: 8px;
    top: 4px;
}

.icon-follow::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 3px;
    background: currentColor;
    left: 12px;
    bottom: 8px;
    box-shadow: 0 -6px 0 currentColor;
}

/* Button Icons */
.cta-button [class^="icon-"],
.plan-button [class^="icon-"] {
    width: 24px;
    height: 24px;
}

.icon-play::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 18px solid currentColor;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    left: 6px;
    top: 0;
}

.icon-whatsapp::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid currentColor;
    border-radius: 50%;
    top: 2px;
    left: 2px;
}

.icon-whatsapp::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid currentColor;
    border-radius: 50%;
    top: 7px;
    left: 7px;
}

.icon-robot::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid currentColor;
    border-radius: 3px;
    left: 3px;
    top: 3px;
}

.icon-robot::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: currentColor;
    border-radius: 50%;
    left: 6px;
    top: 8px;
    box-shadow: 8px 0 0 currentColor;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .compatibility-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .benefits-grid,
    .advantages-grid,
    .plans-grid,
    .differentials-grid,
    .compatibility-grid,
    .content-grid,
    .reviews-grid,
    .quality-grid,
    .automation-grid {
        grid-template-columns: 1fr;
    }

    .step {
        flex-direction: column;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .cta-button.large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .cta-final h2 {
        font-size: 2rem;
    }

    .cta-final p {
        font-size: 1.1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .automation-number {
        font-size: 2rem;
        top: -10px;
        right: 10px;
    }

    .quality-icon {
        width: 60px;
        height: 60px;
    }

    .quality-icon [class^="icon-"] {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    section {
        padding: 50px 0;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
.cta-button:focus,
.faq-question:focus,
.nav-menu a:focus,
.plan-button:focus {
    outline: 2px solid var(--lime);
    outline-offset: 2px;
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    header,
    footer,
    .cta-button,
    .particles-bg {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    section {
        page-break-inside: avoid;
    }
}

/* Process Icons */
.process-card [class^="icon-"] {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    color: var(--lime);
}

.icon-automation::before {
    content: '';
    position: absolute;
    width: 32px;
    height: 32px;
    border: 3px solid currentColor;
    border-radius: 8px;
    left: 14px;
    top: 14px;
}

.icon-automation::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: currentColor;
    border-radius: 50%;
    left: 22px;
    top: 22px;
    animation: ai-pulse 1.5s ease-in-out infinite;
}

.icon-experience::before {
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    border: 3px solid currentColor;
    border-radius: 50%;
    left: 12px;
    top: 12px;
}

.icon-experience::after {
    content: '✓';
    position: absolute;
    font-size: 24px;
    color: currentColor;
    left: 20px;
    top: 14px;
}

.icon-contact::before {
    content: '';
    position: absolute;
    width: 32px;
    height: 24px;
    border: 3px solid currentColor;
    border-radius: 6px;
    left: 14px;
    top: 14px;
}

.icon-contact::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid currentColor;
    left: 22px;
    bottom: 16px;
}

/* Differentials Icons */
.differential-card [class^="icon-"] {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    color: var(--cyan);
}

.icon-tech::before {
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    border: 3px solid currentColor;
    left: 12px;
    top: 12px;
}

.icon-tech::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid currentColor;
    left: 20px;
    top: 20px;
    animation: rotate 3s linear infinite;
}

.icon-coverage::before {
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    border: 3px solid currentColor;
    border-radius: 50%;
    left: 12px;
    top: 12px;
}

.icon-coverage::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 36px;
    border: 3px solid currentColor;
    border-radius: 50%;
    left: 20px;
    top: 12px;
}

.icon-available::before {
    content: '';
    position: absolute;
    width: 32px;
    height: 32px;
    border: 3px solid currentColor;
    border-radius: 50%;
    left: 14px;
    top: 14px;
}

.icon-available::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 14px;
    background: currentColor;
    left: 28px;
    top: 20px;
}

/* Guarantee Icons */
.guarantee-card [class^="icon-"] {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    color: var(--lime);
}

.icon-premium::before {
    content: '★';
    position: absolute;
    font-size: 40px;
    color: currentColor;
    left: 10px;
    top: 8px;
}

.icon-full-access::before {
    content: '';
    position: absolute;
    width: 32px;
    height: 32px;
    border: 3px solid currentColor;
    border-radius: 50%;
    left: 14px;
    top: 14px;
}

.icon-full-access::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 16px solid currentColor;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    left: 24px;
    top: 20px;
}

.icon-trust::before {
    content: '';
    position: absolute;
    width: 28px;
    height: 34px;
    border: 3px solid currentColor;
    border-radius: 50% 50% 0 0;
    left: 16px;
    top: 10px;
}

.icon-trust::after {
    content: '✓';
    position: absolute;
    font-size: 20px;
    color: currentColor;
    left: 22px;
    top: 20px;
}

/* Content Icons */
.content-card [class^="icon-"] {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    color: var(--lime);
}

.icon-sport::before {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    border: 3px solid currentColor;
    border-radius: 50%;
    left: 11px;
    top: 11px;
}

.icon-sport::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 2px;
    background: currentColor;
    left: 17px;
    top: 24px;
    transform: rotate(-45deg);
}

.icon-film::before {
    content: '';
    position: absolute;
    width: 32px;
    height: 24px;
    border: 3px solid currentColor;
    left: 9px;
    top: 13px;
}

.icon-film::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: currentColor;
    border-radius: 50%;
    left: 6px;
    top: 10px;
    box-shadow: 10px 0 0 currentColor, 20px 0 0 currentColor, 30px 0 0 currentColor;
}

.icon-series::before {
    content: '';
    position: absolute;
    width: 28px;
    height: 20px;
    border: 3px solid currentColor;
    left: 11px;
    top: 15px;
}

.icon-series::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 12px solid currentColor;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    left: 20px;
    top: 19px;
}

.icon-documentary::before {
    content: '';
    position: absolute;
    width: 28px;
    height: 32px;
    border: 3px solid currentColor;
    left: 11px;
    top: 9px;
}

.icon-documentary::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 2px;
    background: currentColor;
    left: 17px;
    top: 18px;
    box-shadow: 0 6px 0 currentColor, 0 12px 0 currentColor;
}

.icon-news::before {
    content: '';
    position: absolute;
    width: 32px;
    height: 28px;
    border: 3px solid currentColor;
    left: 9px;
    top: 11px;
}

.icon-news::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: currentColor;
    left: 15px;
    top: 18px;
    box-shadow: 0 6px 0 currentColor;
}

.icon-entertainment::before {
    content: '♪';
    position: absolute;
    font-size: 32px;
    color: currentColor;
    left: 12px;
    top: 8px;
}

.icon-kids::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid currentColor;
    border-radius: 50%;
    left: 15px;
    top: 8px;
}

.icon-kids::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 3px;
    background: currentColor;
    left: 17px;
    bottom: 10px;
    box-shadow: 0 -8px 0 currentColor;
}

.icon-music::before {
    content: '♫';
    position: absolute;
    font-size: 36px;
    color: currentColor;
    left: 10px;
    top: 6px;
}

.icon-international::before {
    content: '';
    position: absolute;
    width: 32px;
    height: 32px;
    border: 3px solid currentColor;
    border-radius: 50%;
    left: 9px;
    top: 9px;
}

.icon-international::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 32px;
    border: 3px solid currentColor;
    border-radius: 50%;
    left: 17px;
    top: 9px;
}

/* Quality Additional Icons */
.icon-adaptive::before {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    border: 3px solid currentColor;
    border-radius: 50%;
    left: 6px;
    top: 6px;
}

.icon-adaptive::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 3px solid currentColor;
    border-radius: 50%;
    left: 12px;
    top: 12px;
}

.icon-buffer::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 16px solid currentColor;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    left: 12px;
    top: 10px;
}

.icon-buffer::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 20px;
    background: currentColor;
    right: 12px;
    top: 10px;
}
