:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --accent-color: #ffcc02;
    --dark-bg: #0a0a0a;
    --darker-bg: #1a1a1a;
    --neon-orange: #ff6b35;
    --neon-yellow: #ffcc02;
    --neon-pink: #ff1744;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--neon-yellow));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--neon-pink));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--neon-orange));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--primary-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    height: 45px;
    width: 235px;
    max-width: 235px;
    border-radius: 8px;
    filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.4));
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Buttons */
.cta-btn, .main-cta, .plan-btn, .final-cta-btn {
    background: var(--gradient-primary);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    color: white !important;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-btn:hover, .main-cta:hover, .plan-btn:hover, .final-cta-btn:hover,
.cta-btn:focus, .main-cta:focus, .plan-btn:focus, .final-cta-btn:focus,
.cta-btn:active, .main-cta:active, .plan-btn:active, .final-cta-btn:active,
.cta-btn:visited, .main-cta:visited, .plan-btn:visited, .final-cta-btn:visited {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    text-decoration: none !important;
    color: white !important;
}

.main-cta {
    font-size: 1.2rem;
    padding: 18px 36px;
    margin-top: 30px;
}

.cta-btn-full {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
    background: var(--gradient-secondary);
    border: none;
    padding: 18px 24px;
    border-radius: 25px;
    color: white !important;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 147, 30, 0.3);
    text-decoration: none !important;
    text-align: center;
}

.cta-btn-full:hover,
.cta-btn-full:focus,
.cta-btn-full:active,
.cta-btn-full:visited {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 147, 30, 0.5);
    text-decoration: none !important;
    color: white !important;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--neon-yellow);
    margin-bottom: 40px;
    font-weight: 500;
}

.features-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.icon {
    width: 50px;
    height: 50px;
    animation: float 3s ease-in-out infinite;
}

.icon:nth-child(2) { animation-delay: -0.5s; }
.icon:nth-child(3) { animation-delay: -1s; }
.icon:nth-child(4) { animation-delay: -1.5s; }
.icon:nth-child(5) { animation-delay: -2s; }
.icon:nth-child(6) { animation-delay: -2.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.animated-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
    font-size: 2rem;
    font-weight: 700;
}

.number-counter {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Sections */
section {
    padding: 80px 0;
}

.cta-section {
    padding: 40px 0;
    background: rgba(255, 204, 2, 0.1);
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Grid Layouts */
.steps-grid, .benefits-grid, .apps-grid, .plans-grid, .reviews-grid, .faq-grid {
    display: grid;
    gap: 30px;
    margin-top: 50px;
}

.steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.apps-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.plans-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

/* Cards */
.step-card, .benefit-card, .app-card, .plan-card, .review-card, .faq-item {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.step-card:hover, .benefit-card:hover, .app-card:hover, .plan-card:hover, .review-card:hover, .faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    border-color: var(--neon-yellow);
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: block;
}

.benefit-icon, .app-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: block;
}

/* Plan Cards */
.plan-card.popular {
    position: relative;
    border-color: var(--neon-yellow);
    background: rgba(26, 26, 26, 0.9);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-features {
    margin: 20px 0;
    text-align: left;
}

.plan-features p {
    margin: 10px 0;
    color: var(--text-gray);
}

/* Reviews */
.stars {
    margin-bottom: 15px;
    text-align: center;
}

.reviewer {
    margin-top: 15px;
    border-top: 1px solid var(--primary-color);
    padding-top: 15px;
}

.reviewer strong {
    display: block;
    color: var(--neon-yellow);
}

.reviewer span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* FAQ */
.faq-item h3 {
    color: var(--neon-orange);
    margin-bottom: 15px;
    text-align: left;
}

.faq-item p {
    text-align: left;
    color: var(--text-gray);
}

/* Final CTA */
.final-cta {
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    text-align: center;
}

.final-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.final-icon {
    width: 80px;
    height: 80px;
    transition: transform 0.3s ease;
}

.final-icon:hover {
    transform: scale(1.1);
}

.final-cta-btn {
    font-size: 1.3rem;
    padding: 20px 40px;
    margin-top: 30px;
}

/* Footer */
footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--primary-color);
    padding: 40px 0;
    text-align: center;
}

.footer-content p {
    margin: 10px 0;
    color: var(--text-gray);
}

.footer-links {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--neon-yellow);
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
    max-width: 800px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 1.5rem;
    color: var(--neon-orange);
    margin: 30px 0 15px 0;
    text-align: left;
}

.legal-page h3 {
    font-size: 1.2rem;
    color: var(--neon-yellow);
    margin: 20px 0 10px 0;
    text-align: left;
}

.legal-page p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--text-gray);
}

.legal-page ul {
    margin: 15px 0 15px 30px;
    color: var(--text-gray);
}

.legal-page li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.back-home {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--primary-color);
}

/* Button Icons */
.btn-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

/* Star Icons */
.star-icon {
    width: 100px;
    height: 20px;
}

/* Check Icons */
.check-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
}

/* Plan Icons */
.plan-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: block;
}

/* Image Optimizations */
img {
    max-width: 100%;
    height: auto;
    loading: lazy;
}

.icon, .benefit-icon, .app-icon, .step-icon, .final-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover Effects for Colored Icons */
.features-icons img:hover {
    transform: scale(1.1) translateY(-5px);
    transition: all 0.3s ease;
}

.step-icon:hover, .benefit-icon:hover, .app-icon:hover {
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.final-icon:hover {
    transform: scale(1.2);
    transition: all 0.3s ease;
}

.plan-icon:hover {
    transform: scale(1.1) rotate(5deg);
    transition: all 0.3s ease;
}

/* SVG Specific Optimizations */
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* SVG Icon Colors */
/* Hero Icons */
.features-icons img[src*="hd.svg"] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(45%) sepia(100%) saturate(2000%) hue-rotate(15deg) brightness(110%) contrast(110%);
}

.features-icons img[src*="4k.svg"] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(65%) sepia(100%) saturate(1500%) hue-rotate(35deg) brightness(120%) contrast(105%);
}

.features-icons img[src*="futebol.svg"] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(85%) sepia(100%) saturate(2000%) hue-rotate(45deg) brightness(115%) contrast(110%);
}

.features-icons img[src*="news.svg"] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(45%) sepia(100%) saturate(2000%) hue-rotate(15deg) brightness(110%) contrast(110%);
}

.features-icons img[src*="live.svg"] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(25%) sepia(100%) saturate(3000%) hue-rotate(340deg) brightness(120%) contrast(115%);
}

/* Step Icons */
.step-icon[src*="whatsapp.svg"] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(65%) sepia(100%) saturate(1500%) hue-rotate(35deg) brightness(120%) contrast(105%);
}

.step-icon[src*="click.svg"] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(45%) sepia(100%) saturate(2000%) hue-rotate(15deg) brightness(110%) contrast(110%);
}

.step-icon[src*="automatico.svg"] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(85%) sepia(100%) saturate(2000%) hue-rotate(45deg) brightness(115%) contrast(110%);
}

/* Benefit Icons */
.benefit-icon[src*="automatizado.svg"] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(45%) sepia(100%) saturate(2000%) hue-rotate(15deg) brightness(110%) contrast(110%);
}

.benefit-icon[src*="4-horas.svg"] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(65%) sepia(100%) saturate(1500%) hue-rotate(35deg) brightness(120%) contrast(105%);
}

.benefit-icon[src*="qualidade.svg"] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(85%) sepia(100%) saturate(2000%) hue-rotate(45deg) brightness(115%) contrast(110%);
}

.benefit-icon[src*="whatsapp.svg"] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(25%) sepia(100%) saturate(3000%) hue-rotate(340deg) brightness(120%) contrast(115%);
}

.benefit-icon[src*="imediato.svg"] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(45%) sepia(100%) saturate(2000%) hue-rotate(15deg) brightness(110%) contrast(110%);
}

.benefit-icon[src*="24-horas.svg"] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(65%) sepia(100%) saturate(1500%) hue-rotate(35deg) brightness(120%) contrast(105%);
}

/* App Icons */
.app-icon[src*="ssiptv.svg"] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(45%) sepia(100%) saturate(2000%) hue-rotate(15deg) brightness(110%) contrast(110%);
}

.app-icon[src*="kodai.svg"] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(65%) sepia(100%) saturate(1500%) hue-rotate(35deg) brightness(120%) contrast(105%);
}

.app-icon[src*="msplayer.svg"] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(85%) sepia(100%) saturate(2000%) hue-rotate(45deg) brightness(115%) contrast(110%);
}

.app-icon[src*="vlc.svg"] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(25%) sepia(100%) saturate(3000%) hue-rotate(340deg) brightness(120%) contrast(115%);
}

.app-icon[src*="Perfect Player.svg"] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(45%) sepia(100%) saturate(2000%) hue-rotate(15deg) brightness(110%) contrast(110%);
}

.app-icon[src*="TiviMate.svg"] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(65%) sepia(100%) saturate(1500%) hue-rotate(35deg) brightness(120%) contrast(105%);
}

.app-icon[src*="GSE Smart.svg"] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(85%) sepia(100%) saturate(2000%) hue-rotate(45deg) brightness(115%) contrast(110%);
}

.app-icon[src*="OTTPlayer.svg"] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(25%) sepia(100%) saturate(3000%) hue-rotate(340deg) brightness(120%) contrast(115%);
}

.app-icon[src*="Lazy IPT.svg"] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(45%) sepia(100%) saturate(2000%) hue-rotate(15deg) brightness(110%) contrast(110%);
}

.app-icon[src*="SmartersPlayer.svg"] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(65%) sepia(100%) saturate(1500%) hue-rotate(35deg) brightness(120%) contrast(105%);
}

.app-icon[src*="play.svg"] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(85%) sepia(100%) saturate(2000%) hue-rotate(45deg) brightness(115%) contrast(110%);
}

.app-icon[src*="desktop.svg"] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(25%) sepia(100%) saturate(3000%) hue-rotate(340deg) brightness(120%) contrast(115%);
}

/* Plan Icons */
.plan-icon[src*="30-dias.svg"] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(45%) sepia(100%) saturate(2000%) hue-rotate(15deg) brightness(110%) contrast(110%);
}

.plan-icon[src*="90-dias.svg"] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(65%) sepia(100%) saturate(1500%) hue-rotate(35deg) brightness(120%) contrast(105%);
}

.plan-icon[src*="365-dias.svg"] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(85%) sepia(100%) saturate(2000%) hue-rotate(45deg) brightness(115%) contrast(110%);
}

/* Check Icons */
.check-icon {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(65%) sepia(100%) saturate(1500%) hue-rotate(35deg) brightness(120%) contrast(105%);
}

/* Button Icons */
.btn-icon[src*="foguete.svg"] {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(45%) sepia(100%) saturate(2000%) hue-rotate(15deg) brightness(110%) contrast(110%);
}

.btn-icon[src*="whatsapp.svg"] {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(65%) sepia(100%) saturate(1500%) hue-rotate(35deg) brightness(120%) contrast(105%);
}

.btn-icon[src*="raio.svg"] {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(85%) sepia(100%) saturate(2000%) hue-rotate(45deg) brightness(115%) contrast(110%);
}

.btn-icon[src*="bola.svg"] {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(25%) sepia(100%) saturate(3000%) hue-rotate(340deg) brightness(120%) contrast(115%);
}

.btn-icon[src*="diamante.svg"] {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(45%) sepia(100%) saturate(2000%) hue-rotate(15deg) brightness(110%) contrast(110%);
}

.btn-icon[src*="sem-pagar.svg"] {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(65%) sepia(100%) saturate(1500%) hue-rotate(35deg) brightness(120%) contrast(105%);
}

/* Final Icons */
.final-icon[src*="foguete.svg"] {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(45%) sepia(100%) saturate(2000%) hue-rotate(15deg) brightness(110%) contrast(110%);
}

.final-icon[src*="raio.svg"] {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(85%) sepia(100%) saturate(2000%) hue-rotate(45deg) brightness(115%) contrast(110%);
}

.final-icon[src*="diamante.svg"] {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(25%) sepia(100%) saturate(3000%) hue-rotate(340deg) brightness(120%) contrast(115%);
}

/* Star Icons */
.star-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(65%) sepia(100%) saturate(1500%) hue-rotate(35deg) brightness(120%) contrast(105%);
}

/* Performance Optimizations */
.icon, .benefit-icon, .app-icon, .step-icon, .final-icon, .btn-icon, .star-icon, .check-icon, .plan-icon {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar .container {
        padding: 10px 15px;
    }
    
    .logo-icon {
        height: 35px;
        width: 183px;
        max-width: 183px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .features-icons {
        gap: 20px;
    }
    
    .icon {
        width: 40px;
        height: 40px;
    }
    
    section {
        padding: 60px 0;
    }
    
    h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .steps-grid, .benefits-grid, .apps-grid, .plans-grid, .reviews-grid, .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step-card, .benefit-card, .app-card, .plan-card, .review-card, .faq-item {
        padding: 20px;
    }
    
    .final-icons {
        gap: 20px;
    }
    
    .final-icon {
        width: 60px;
        height: 60px;
    }
    

}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .main-cta {
        font-size: 1rem;
        padding: 15px 30px;
    }
    
    .cta-btn-full {
        font-size: 1rem;
        padding: 15px 20px;
    }
    
    .final-cta-btn {
        font-size: 1.1rem;
        padding: 18px 30px;
    }
}/*
 FAQ Page Styles */
.faq-page {
    padding: 120px 0 80px;
    background: var(--dark-bg);
}

.faq-page h1 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-intro a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.faq-intro a:hover {
    color: var(--neon-yellow);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.faq-item {
    background: var(--darker-bg);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

.faq-item h3 {
    color: var(--neon-yellow);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    margin-bottom: 0 !important;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 10px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
    padding: 0;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    padding-top: 15px;
    opacity: 1;
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.faq-item a {
    color: inherit;
    text-decoration: none;
    font-weight: normal;
}

.faq-item a:hover {
    color: var(--neon-yellow);
}

.faq-cta {
    text-align: center;
    background: var(--darker-bg);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin-top: 50px;
}

.faq-cta h2 {
    color: var(--neon-yellow);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.faq-cta p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.faq-cta a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.faq-cta a:hover {
    color: var(--neon-yellow);
}

/* Mobile Responsiveness for FAQ */
@media (max-width: 768px) {
    .faq-page {
        padding: 100px 0 60px;
    }
    
    .faq-page h1 {
        font-size: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-item h3 {
        font-size: 1rem;
    }
    
    .faq-cta {
        padding: 30px 20px;
    }
    
    .faq-cta h2 {
        font-size: 1.5rem;
    }
}/*
 Article Page Styles */
.article-content {
    padding: 60px 0 80px;
    background: var(--dark-bg);
}

.article-content article {
    max-width: 800px;
    margin: 0 auto;
    background: var(--darker-bg);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 40px;
}

.article-content h2 {
    color: var(--neon-yellow);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 40px 0 20px 0;
    line-height: 1.3;
}

.article-content h2:first-of-type {
    margin-top: 0;
}

.article-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 30px 0 15px 0;
    line-height: 1.4;
}

.article-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.article-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.article-content a:hover {
    color: var(--neon-yellow);
}

.article-cta {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 204, 2, 0.1));
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
}

.article-cta h3 {
    color: var(--neon-yellow);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.article-cta p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-align: center;
}

.article-cta .cta-btn {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.article-cta .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: white;
}

/* Mobile Responsiveness for Article */
@media (max-width: 768px) {
    .article-content {
        padding: 40px 0 60px;
    }
    
    .article-content article {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
        margin: 30px 0 15px 0;
    }
    
    .article-content h3 {
        font-size: 1.2rem;
        margin: 25px 0 12px 0;
    }
    
    .article-content p {
        font-size: 1rem;
        line-height: 1.7;
        text-align: left;
    }
    
    .article-cta {
        padding: 25px 20px;
        margin: 30px 0 0 0;
    }
    
    .article-cta h3 {
        font-size: 1.3rem;
    }
    
    .article-cta .cta-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}