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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000;
    font-display: swap;
}

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

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-brand h1 {
    color: #00ff88;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #00ff88, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00ff88;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #000 0%, #1a1a2e 50%, #16213e 100%);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, #00ff8844 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, #0066ff44 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, #ff006644 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

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

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

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(0, 255, 136, 0.5), 0 0 10px rgba(0, 255, 136, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(0, 255, 136, 0.8), 0 0 30px rgba(0, 255, 136, 0.5);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 3rem 2rem;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #00ff88, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #e0e0e0;
    margin-bottom: 3.5rem;
    font-weight: 400;
    line-height: 1.7;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    min-width: 180px;
    text-align: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #000;
    position: relative;
}

.btn-primary::after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    font-weight: bold;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.4);
    padding-right: 2.5rem;
}

.btn-primary:hover::after {
    right: 15px;
    opacity: 1;
}

.btn-secondary {
    background: linear-gradient(45deg, #0066ff, #0052cc);
    color: #fff;
    position: relative;
}

.btn-secondary::after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    font-weight: bold;
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 102, 255, 0.4);
    padding-right: 2.5rem;
}

.btn-secondary:hover::after {
    right: 15px;
    opacity: 1;
}

.btn-success {
    background: linear-gradient(135deg, #25D366, #20BA5A);
    color: #fff;
    border: none;
}

.btn-success:hover {
    background: linear-gradient(45deg, #128c7e, #25d366);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp {
    background: linear-gradient(45deg, #00ff88, #25d366);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-whatsapp::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;
}

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn-whatsapp:hover {
    background: linear-gradient(45deg, #25d366, #00ff88);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.6);
    color: #000;
    border-color: rgba(255, 255, 255, 0.4);
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    margin: 0.25rem;
    animation: glow 3s ease-in-out infinite;
    color: #fff;
    font-weight: 500;
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 3rem 0;
    gap: 1.5rem;
}

/* Sections */
section {
    padding: 5rem 0;
    animation: fadeInUp 0.8s ease-out;
}

section:nth-child(odd) {
    animation-delay: 0.2s;
}

section:nth-child(even) {
    animation-delay: 0.4s;
}

.intro-video {
    background: #111;
    color: #fff;
    text-align: center;
}

.intro-video h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00ff88;
}

.intro-text {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #ccc;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    background: #222;
    padding: 4rem 2rem;
    border-radius: 15px;
    font-size: 1.5rem;
    color: #888;
    margin-bottom: 1rem;
}

.video-caption {
    font-style: italic;
    color: #aaa;
}

/* Features */
.features {
    background: #0a0a0a;
    color: #fff;
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #00ff88;
}

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

.feature-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    animation: slideInLeft 0.6s ease-out;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 255, 136, 0.1), rgba(0, 102, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.2);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:nth-child(even) {
    animation: slideInRight 0.6s ease-out;
    animation-delay: 0.2s;
}

.feature-item:nth-child(3n) {
    animation-delay: 0.4s;
}

.feature-item i {
    font-size: 3rem;
    color: #00ff88;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-item p {
    color: #ccc;
}

.features-cta {
    text-align: center;
}

/* Categories */
.categories {
    background: #111;
    color: #fff;
}

.categories h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #00ff88;
}

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

.category-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.6s ease-out;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(0, 102, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.15);
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:nth-child(2n) {
    animation-delay: 0.1s;
}

.category-card:nth-child(3n) {
    animation-delay: 0.2s;
}

.category-card:nth-child(4n) {
    animation-delay: 0.3s;
}

.category-card:nth-child(5n) {
    animation-delay: 0.4s;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.category-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.category-btn {
    color: #00ff88;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.category-btn:hover {
    color: #00cc6a;
}

/* How It Works */
.how-it-works {
    background: #0a0a0a;
    color: #fff;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #00ff88;
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    background: #00ff88;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.step p {
    color: #ccc;
}

.steps-cta {
    text-align: center;
}

/* SEO Content */
.seo-content {
    background: #111;
    color: #fff;
}

.seo-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #00ff88;
}

.seo-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
}

/* Testimonials */
.testimonials {
    background: #0a0a0a;
    color: #fff;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #00ff88;
}

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

.testimonial {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial p {
    color: #ccc;
    font-style: italic;
}

/* Pricing CTA */
.pricing-cta {
    background: #111;
    color: #fff;
    text-align: center;
}

.pricing-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #00ff88;
}

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

.plan {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.plan:hover {
    transform: translateY(-5px);
}

.plan.featured {
    background: linear-gradient(45deg, #00ff8820, #0066ff20);
    border: 2px solid #00ff88;
}

.plan h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 1rem;
}

.plan p {
    color: #ccc;
}

.pricing-cta-button {
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: #00ff88;
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00ff88;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.newsletter {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
}

.newsletter input {
    flex: 1;
    padding: 0.5rem;
    border: none;
    border-radius: 5px;
    background: #222;
    color: #fff;
}

.newsletter button {
    padding: 0.5rem 1rem;
    background: #00ff88;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    color: #ccc;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #00ff88;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

.certification-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.cert-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
}

.cert-badge:hover {
    transform: translateY(-5px);
    background: rgba(0, 255, 136, 0.1);
}

.cert-icon {
    font-size: 2rem;
    animation: glow 2s ease-in-out infinite;
}

.cert-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: #00ff88;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, rgba(0, 255, 136, 0.1), rgba(0, 102, 255, 0.1));
    padding: 1rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    animation: pulse 3s infinite;
    margin-top: 2rem;
}

/* Coming Soon Page */
.coming-soon {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #111;
    color: #fff;
}

.coming-soon h1 {
    font-size: 3rem;
    color: #00ff88;
    margin-bottom: 1rem;
}

.coming-soon p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}

/* Documentation Page Styles */
.docs-header,
.support-header,
.contact-header {
    background: linear-gradient(45deg, #000 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.docs-header::before,
.support-header::before,
.contact-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, #00ff8844 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, #0066ff44 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, #ff006644 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

.docs-header h1,
.support-header h1,
.contact-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00ff88, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.docs-header p,
.support-header p,
.contact-header p {
    font-size: 1.2rem;
    opacity: 1;
    margin-bottom: 3rem;
    color: #fff;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.docs-search {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.docs-search input {
    flex: 1;
    padding: 1rem;
    border: 1px solid #555;
    border-radius: 8px 0 0 8px;
    background: #222;
    color: #fff;
    font-size: 1rem;
}

.docs-search button {
    padding: 1rem 1.5rem;
    background: #00ff88;
    color: #000;
    border: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-weight: 600;
}

.support-stats,
.contact-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.docs-section {
    padding: 80px 0;
    background: #111;
    color: #fff;
}

.docs-section:nth-child(even) {
    background: #0a0a0a;
}

.docs-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #00ff88;
}

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

.step-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-card .step-number {
    background: #00ff88;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
}

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

.step-card p {
    color: #ccc;
}

.step-card a {
    color: #00ff88;
    text-decoration: none;
}

.step-card a:hover {
    color: #00cc6a;
}

.product-category {
    margin-bottom: 4rem;
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
}

.product-category h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #00ff88;
}

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

.api-item {
    background: #333;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    font-weight: 500;
}

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

.tool-item {
    background: #333;
    padding: 1.5rem;
    border-radius: 8px;
}

.tool-item h4 {
    color: #00ff88;
    margin-bottom: 0.5rem;
}

.tool-item p {
    color: #ccc;
}

.features-list {
    background: #333;
    padding: 1.5rem;
    border-radius: 8px;
}

.features-list h4 {
    color: #00ff88;
    margin-bottom: 1rem;
}

.features-list ul {
    list-style: none;
    padding: 0;
}

.features-list li {
    margin-bottom: 0.5rem;
    color: #ccc;
}

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

.setup-step {
    text-align: center;
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
}

.setup-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.setup-step h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.setup-step p {
    color: #ccc;
}

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

.trouble-item {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #333;
}

.trouble-item h3 {
    color: #00ff88;
    margin-bottom: 0.5rem;
}

.trouble-item p {
    color: #ccc;
}

.docs-cta {
    background: linear-gradient(45deg, #000 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.docs-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, #00ff8844 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, #0066ff44 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

.docs-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00ff88, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.docs-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #ccc;
    position: relative;
    z-index: 1;
}

/* Support Page Styles */
.support-options,
.contact-options {
    padding: 80px 0;
    background: #111;
}

.support-options h2,
.contact-options h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #00ff88;
}

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

.support-card {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.support-card:hover {
    transform: translateY(-5px);
}

.support-card.featured {
    border: 2px solid #00ff88;
    transform: scale(1.02);
}

.support-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #00ff88, #0066ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.support-icon i {
    font-size: 2rem;
    color: #000;
}

.support-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
}

.custom-assistance-title {
    color: #fff !important;
    font-weight: 900 !important;
}

.support-card h3:contains("Request Custom Assistance"),
.support-card h3[title*="Custom Assistance"] {
    color: #fff !important;
    font-weight: 900 !important;
}

.support-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.support-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.support-card li {
    color: #ccc;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.support-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
}

.contact-methods,
.direct-contact {
    padding: 80px 0;
    background: #0a0a0a;
}

.contact-methods h2,
.direct-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #00ff88;
}

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

.contact-item,
.direct-contact-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #333;
}

.contact-icon,
.direct-contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #00ff88, #0066ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon i,
.direct-contact-icon i {
    font-size: 1.5rem;
    color: #000;
}

.contact-item h3,
.direct-contact-item h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.contact-item p,
.direct-contact-item p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.response-time {
    color: #00ff88;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-details p {
    text-align: left;
    margin-bottom: 0.5rem;
}

.contact-details strong {
    color: #00ff88;
}

/* Contact Page Specific Styles */
.support-channels,
.response-guarantee {
    padding: 80px 0;
    background: #111;
    color: #fff;
}

.support-channels:nth-child(even),
.response-guarantee:nth-child(even) {
    background: #0a0a0a;
}

.support-channels h2,
.response-guarantee h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #00ff88;
}

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

.channel-card,
.guarantee-item {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.channel-card:hover,
.guarantee-item:hover {
    transform: translateY(-5px);
}

.channel-icon,
.guarantee-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #00ff88, #0066ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.channel-icon i,
.guarantee-icon i {
    font-size: 2rem;
    color: #000;
}

.channel-card h3,
.guarantee-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
}

.channel-card p,
.guarantee-item p {
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.contact-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-type-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.contact-type-card:hover {
    transform: translateY(-5px);
}

.contact-type-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    background: linear-gradient(135deg, #00ff88, #0066ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-type-icon i {
    font-size: 1.8rem;
    color: #000;
}

.contact-type-card h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.contact-type-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.channel-features {
    margin: 1.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #ccc;
    font-size: 0.9rem;
}

.feature-item i {
    color: #00ff88;
    width: 16px;
    font-size: 0.8rem;
}

/* Professional Support Sections */
.professional-support,
.enterprise-solutions,
.contact-form-section {
    padding: 80px 0;
    background: #111;
}

.professional-support:nth-child(even),
.enterprise-solutions:nth-child(even),
.contact-form-section:nth-child(even) {
    background: #0a0a0a;
}

.professional-support h2,
.enterprise-solutions h2,
.contact-form-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #00ff88;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 255, 136, 0.3);
    letter-spacing: 1px;
}

.professional-grid,
.enterprise-grid,
.contact-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.professional-card,
.enterprise-card,
.solution-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.professional-card:hover,
.enterprise-card:hover,
.solution-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.6);
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.2);
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.professional-icon,
.enterprise-icon,
.solution-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #00ff88, #0066ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.professional-icon i,
.enterprise-icon i,
.solution-icon i {
    font-size: 2rem;
    color: #000;
}

.professional-card h3,
.enterprise-card h3,
.solution-card h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #fff;
    font-weight: 900;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #00ff88, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.professional-card p,
.enterprise-card p,
.solution-card p {
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.8;
    font-size: 1.1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.professional-features,
.enterprise-features {
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08), rgba(0, 102, 255, 0.05));
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.1);
}

.professional-features li {
    color: #fff;
    margin-bottom: 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.5rem 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00ff88, #0066ff);
    color: #000;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 800;
    margin: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.solution-header {
    margin-bottom: 1.8rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 255, 136, 0.3);
}

.solution-benefits {
    margin: 2rem 0;
    background: rgba(0, 255, 136, 0.08);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.25);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    color: #fff;
    text-align: left;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.6rem 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.benefit-item i {
    color: #00ff88;
    width: 20px;
    font-size: 1.1rem;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
}

.btn-block {
    width: 100%;
    margin-top: 1rem;
}

.btn-custom {
    background: linear-gradient(135deg, #333, #555);
    color: white;
    border: 1px solid #555;
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
}

.btn-custom:hover {
    background: linear-gradient(135deg, #555, #777);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.btn-outline {
    background: transparent;
    color: #00ff88;
    border: 2px solid #00ff88;
}

.btn-outline:hover {
    background: #00ff88;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.knowledge-base {
    padding: 80px 0;
    background: #0a0a0a;
}

.knowledge-base h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #00ff88;
}

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

.kb-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.kb-item:hover {
    transform: translateY(-5px);
}

.kb-item i {
    font-size: 2.5rem;
    color: #00ff88;
    margin-bottom: 1rem;
}

.kb-item h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.kb-item p {
    color: #ccc;
    margin-bottom: 1rem;
}

.kb-item a {
    color: #00ff88;
    text-decoration: none;
    font-weight: 600;
}

.kb-item a:hover {
    color: #00cc6a;
}

/* Shop Page Styles */
.shop-header {
    background: linear-gradient(45deg, #000 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.shop-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, #00ff8844 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, #0066ff44 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, #ff006644 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

.shop-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00ff88, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.shop-header p {
    font-size: 1.2rem;
    opacity: 1;
    margin-bottom: 3rem;
    color: #fff;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.shop-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

.shop-category {
    padding: 80px 0;
    background: #111;
}

.category-header {
    text-align: center;
    margin-bottom: 4rem;
}

.category-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00ff88;
}

.category-header h2 i {
    margin-right: 1rem;
    color: #00ff88;
}

.category-header p {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.2);
}

.product-card.featured {
    border: 2px solid #00ff88;
    transform: scale(1.02);
}

.product-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #00ff88, #0066ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.product-icon i {
    font-size: 1.5rem;
    color: white;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
}

.product-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    margin-bottom: 2rem;
}

.feature-tag {
    display: inline-block;
    background: #333;
    color: #00ff88;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 0.2rem;
    font-weight: 500;
}

.shop-cta {
    background: linear-gradient(45deg, #000 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.shop-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, #00ff8844 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, #0066ff44 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

.shop-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00ff88, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.shop-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #ccc;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Pricing Page Styles */
.pricing-header {
    background: linear-gradient(45deg, #000 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, #00ff8844 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, #0066ff44 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, #ff006644 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

.pricing-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00ff88, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.pricing-header p {
    font-size: 1.2rem;
    opacity: 1;
    margin-bottom: 3rem;
    color: #fff;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.toggle-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 255, 136, 0.3);
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: #00ff88;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: rgba(0, 255, 136, 0.5);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.discount-badge {
    background: #00ff88;
    color: #000;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-left: 0.5rem;
    font-weight: 600;
}

.pricing-plans {
    padding: 80px 0;
    background: #111;
}

.plans-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.pricing-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 255, 136, 0.3);
}

.pricing-card.featured {
    border: 2px solid #00ff88;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
    background: linear-gradient(135deg, #1a1a1a 0%, #0d2818 100%);
}

.pricing-card.enterprise {
    background: linear-gradient(135deg, #00ff88 0%, #0066ff 100%);
    color: #000;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #00ff88;
    color: #000;
    padding: 0.5rem 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #00ff88, #0066ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.enterprise .plan-icon {
    background: rgba(0, 0, 0, 0.2);
}

.plan-icon i {
    font-size: 2rem;
    color: #000;
}

.enterprise .plan-icon i {
    color: #fff;
}

.plan-name {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #fff;
}

.enterprise .plan-name {
    color: #000;
}

.plan-subtitle {
    color: #ccc;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.enterprise .plan-subtitle {
    color: rgba(0, 0, 0, 0.7);
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00ff88;
}

.enterprise .currency {
    color: #000;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
}

.enterprise .amount {
    color: #000;
}

.period {
    font-size: 1rem;
    color: #ccc;
    margin-left: 0.2rem;
}

.enterprise .period {
    color: rgba(0, 0, 0, 0.7);
}

.custom-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
}

.annual-note {
    font-size: 0.9rem;
    color: #00ff88;
    margin-bottom: 1rem;
}

.enterprise .annual-note {
    color: rgba(0, 0, 0, 0.7);
}

.contact-note {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
}

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

.plan-features ul {
    list-style: none;
    padding: 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ccc;
}

.enterprise .plan-features li {
    color: rgba(0, 0, 0, 0.8);
}

.plan-features i {
    color: #00ff88;
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.enterprise .plan-features i {
    color: #000;
}

.plan-footer {
    text-align: center;
}

.plan-footer .btn {
    display: block;
    margin: 0 auto 1rem;
    width: 100%;
    max-width: 250px;
}

.features-comparison {
    padding: 80px 0;
    background: #0a0a0a;
}

.features-comparison h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #00ff88;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.comparison-table th {
    background: linear-gradient(135deg, #00ff88, #0066ff);
    color: #000;
    padding: 1.5rem 1rem;
    font-weight: 600;
    text-align: center;
}

.comparison-table td {
    padding: 1.2rem 1rem;
    text-align: center;
    border-bottom: 1px solid #333;
    font-weight: 500;
    color: #ccc;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #fff;
}

.comparison-table .fas.fa-check {
    color: #00ff88;
}

.comparison-table .fas.fa-times {
    color: #ff4444;
}

.pricing-faq {
    padding: 80px 0;
    background: #111;
}

.pricing-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #00ff88;
}

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

.faq-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid #333;
}

.faq-item h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #ccc;
    line-height: 1.6;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    background-color: #1a1a1a;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid #333;
}

.close {
    color: #ccc;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.close:hover {
    color: #00ff88;
}

.modal-content h2 {
    color: #00ff88;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #fff;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #555;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #222;
    color: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

/* Performance optimizations */
* {
    will-change: auto;
}

.btn, .feature-item, .category-card, .product-card {
    will-change: transform;
}

/* Preload critical fonts */
@font-face {
    font-family: 'Inter';
    font-display: swap;
}

/* Favicon */
<link rel="icon" href="/path/to/av-favicon.ico" type="image/x-icon">

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .navbar .container {
        flex-direction: column;
    }

    .hero {
        padding-top: 150px;
    }
}

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

    .container {
        padding: 0 10px;
    }

    section {
        padding: 3rem 0;
    }

    .shop-header h1 {
        font-size: 2rem;
    }

    .shop-stats {
        gap: 1.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card {
        padding: 1.5rem;
    }

    .category-header h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .pricing-header h1 {
        font-size: 2.5rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .shop-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem 0.5rem;
    }
}

/* Enhanced Terminal Demo Styles */
.terminal-demo {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: #fff;
    text-align: center;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.terminal-demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 60%),
                radial-gradient(circle at 70% 80%, rgba(0, 102, 255, 0.08) 0%, transparent 60%);
    animation: float 8s ease-in-out infinite;
}

.terminal-demo h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #00ff88;
    font-weight: 800;
    text-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.intro-text {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 4rem;
    color: #e0e0e0;
    line-height: 1.8;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.terminal-container {
    max-width: 1100px;
    margin: 0 auto 3rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e1e1e, #2d2d2d);
    border: 2px solid #444;
    position: relative;
    z-index: 1;
}

.terminal {
    font-family: 'SF Mono', 'Monaco', 'Fira Code', 'Courier New', monospace;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.terminal-header {
    background: linear-gradient(135deg, #2d2d2d, #3d3d3d);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #555;
    position: relative;
}

.terminal-controls {
    display: flex;
    gap: 10px;
    z-index: 2;
}

.control {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.control:hover {
    transform: scale(1.1);
}

.control.close {
    background: linear-gradient(135deg, #ff5f57, #ff3b30);
}

.control.minimize {
    background: linear-gradient(135deg, #ffbd2e, #ff9500);
}

.control.maximize {
    background: linear-gradient(135deg, #28ca42, #30d158);
}

.terminal-title {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.terminal-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-indicator {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-indicator.online {
    background: linear-gradient(135deg, #00ff88, #28ca42);
    color: #000;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
    50% { box-shadow: 0 0 0 8px rgba(0, 255, 136, 0); }
}

.terminal-body {
    padding: 24px;
    min-height: 500px;
    max-height: 500px;
    background: #0a0a0a;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    font-size: 13px;
    line-height: 1.6;
}

.terminal-body::-webkit-scrollbar {
    width: 8px;
}

.terminal-body::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.terminal-body::-webkit-scrollbar-thumb {
    background: #00ff88;
    border-radius: 4px;
}

.terminal-output {
    color: #00ff88;
    font-weight: 500;
}

.terminal-line {
    margin-bottom: 6px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    animation: slideInLeft 0.5s ease-out;
}

.prompt {
    color: #00ff88;
    font-weight: 700;
    margin-right: 8px;
    min-width: 200px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.command {
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.output {
    color: #e0e0e0;
    margin-left: 208px;
    white-space: pre-wrap;
    word-break: break-word;
    font-weight: 500;
}

.success {
    color: #00ff88;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
}

.warning {
    color: #ffbd2e;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(255, 189, 46, 0.6);
}

.error {
    color: #ff5f57;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(255, 95, 87, 0.6);
}

.info {
    color: #5ac8fa;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(90, 200, 250, 0.6);
}

.highlight {
    color: #ffffff;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.benefit-counter {
    color: #ffbd2e;
    font-weight: 800;
    text-shadow: 0 0 8px rgba(255, 189, 46, 0.7);
}

.api-status {
    color: #28ca42;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(40, 196, 66, 0.6);
}

.terminal-cursor {
    display: inline-block;
    background: linear-gradient(135deg, #00ff88, #28ca42);
    width: 12px;
    height: 18px;
    animation: cursor-blink 1.2s infinite;
    margin-left: 6px;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.8);
}

@keyframes cursor-blink {
    0%, 50% { opacity: 1; transform: scale(1); }
    51%, 100% { opacity: 0.3; transform: scale(0.95); }
}

.progress-bar {
    background: #333;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin: 8px 0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress-fill {
    background: linear-gradient(90deg, #00ff88, #28ca42, #00ff88);
    height: 100%;
    border-radius: 4px;
    animation: progress-wave 2.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

@keyframes progress-wave {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}

.system-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(0, 255, 136, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 102, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 255, 136, 0.6);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    text-shadow: 0 4px 15px rgba(0, 255, 136, 0.5);
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 900;
    color: #00ff88;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 255, 136, 0.6);
    letter-spacing: 1px;
}

.stat-label {
    font-size: 1rem;
    color: #ccc;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Advanced animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(0, 255, 136, 0.8), 0 0 30px rgba(0, 255, 136, 0.6);
    }
}

.matrix-effect {
    animation: glow-pulse 3s ease-in-out infinite;
}

/* Responsive terminal */
@media (max-width: 768px) {
    .terminal-demo {
        padding: 4rem 0;
    }

    .terminal-demo h2 {
        font-size: 2.2rem;
    }

    .terminal-container {
        margin: 0 15px 2rem;
    }

    .terminal-body {
        padding: 20px;
        min-height: 400px;
        max-height: 400px;
        font-size: 12px;
    }

    .prompt {
        min-width: 150px;
    }

    .output {
        margin-left: 158px;
    }

    .system-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .stat-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .terminal-demo h2 {
        font-size: 1.8rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .terminal-body {
        padding: 15px;
        min-height: 350px;
        max-height: 350px;
        font-size: 11px;
    }

    .prompt {
        min-width: 120px;
    }

    .output {
        margin-left: 128px;
    }

    .system-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}