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

        /* Variables CSS */
        :root {
            --background: #000000;
            --foreground: #ffffff;
            --card: #111111;
            --card-foreground: #ffffff;
            --primary: #CCFF00;
            --primary-foreground: #000000;
            --secondary: #222222;
            --secondary-foreground: #ffffff;
            --muted: #333333;
            --muted-foreground: #aaaaaa;
            --border: rgba(255, 255, 255, 0.1);
            --input-background: #222222;
            --radius: 0.625rem;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Base styles */
        html {
            scroll-behavior: smooth;
            font-size: 14px;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: var(--background);
            color: var(--foreground);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            transition: var(--transition);
        }

        .header.scrolled {
            background: rgba(0, 0, 0, 0.98);
            box-shadow: var(--shadow-lg);
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            background: var(--primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: var(--primary-foreground);
            transition: var(--transition);
        }

        .logo:hover .logo-icon {
            background: rgba(204, 255, 0, 0.9);
            transform: rotate(5deg);
        }

        .logo-text {
            font-size: 1.25rem;
            font-weight: bold;
            background: linear-gradient(45deg, var(--foreground), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav {
            display: none;
            align-items: center;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .nav {
                display: flex;
            }
        }

        .nav-link {
            color: var(--foreground);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary);
        }

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

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .btn {
            padding: 0.5rem 1rem;
            border: none;
            border-radius: var(--radius);
            cursor: pointer;
            font-weight: 500;
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            position: relative;
            overflow: hidden;
        }

        .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: var(--transition);
        }

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

        .btn-primary {
            background: var(--primary);
            color: var(--primary-foreground);
        }

        .btn-primary:hover {
            background: rgba(204, 255, 0, 0.9);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .btn-outline {
            border: 1px solid var(--border);
            background: transparent;
            color: var(--foreground);
        }

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

        .btn-lg {
            padding: 0.75rem 2rem;
            font-size: 1.125rem;
        }

        /* Mobile menu */
        .mobile-menu-btn {
            display: block;
            background: none;
            border: none;
            color: var(--foreground);
            cursor: pointer;
            font-size: 1.5rem;
            transition: var(--transition);
        }

        .mobile-menu-btn:hover {
            color: var(--primary);
            transform: scale(1.1);
        }

        @media (min-width: 768px) {
            .mobile-menu-btn {
                display: none;
            }
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            gap: 1rem;
            padding: 1rem;
            border-top: 1px solid var(--border);
            animation: slideDown 0.3s ease-out;
            
        }

        .mobile-menu.open {
            display: flex;
        }

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

        /* Sections */
        section {
            padding: 5rem 0;
        }

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

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: -1;
        }

        .hero-bg-effect {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .hero-bg-effect:nth-child(1) {
            top: 20%;
            left: 20%;
            width: 400px;
            height: 400px;
            background: var(--primary);
            animation-delay: 0s;
        }

        .hero-bg-effect:nth-child(2) {
            bottom: 20%;
            right: 20%;
            width: 300px;
            height: 300px;
            background: var(--primary);
            opacity: 0.05;
            animation-delay: 2s;
        }

        .hero-bg-effect:nth-child(3) {
            top: 60%;
            left: 60%;
            width: 200px;
            height: 200px;
            background: var(--primary);
            opacity: 0.08;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) scale(1);
            }
            50% {
                transform: translateY(-20px) scale(1.05);
            }
        }

        .hero-content {
            text-align: center;
            position: relative;
            z-index: 1;
            max-width: 900px;
            animation: fadeInUp 1s ease-out;
        }

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

        .hero-title {
            font-size: clamp(2rem, 6vw, 4.5rem);
            font-weight: bold;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            background: linear-gradient(45deg, var(--foreground), var(--primary), var(--foreground));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: textGlow 2s ease-in-out infinite alternate;
        }

        @keyframes textGlow {
            from {
                text-shadow: 0 0 20px rgba(204, 255, 0, 0.3);
            }
            to {
                text-shadow: 0 0 30px rgba(204, 255, 0, 0.5);
            }
        }

        .hero-subtitle {
            font-size: 1.125rem;
            color: var(--muted-foreground);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
            margin-bottom: 4rem;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        @media (min-width: 640px) {
            .hero-buttons {
                flex-direction: row;
                justify-content: center;
            }
        }

        .stats {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 4rem;
        }

        @media (min-width: 768px) {
            .stats {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .stat-item {
            text-align: center;
            animation: fadeInUp 1s ease-out 0.9s both;
        }

        .stat-item:nth-child(2) {
            animation-delay: 1.1s;
        }

        .stat-item:nth-child(3) {
            animation-delay: 1.3s;
        }

        .stat-icon {
            width: 64px;
            height: 64px;
            background: rgba(204, 255, 0, 0.2);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            transition: var(--transition);
        }

        .stat-item:hover .stat-icon {
            background: rgba(204, 255, 0, 0.3);
            transform: scale(1.1) rotate(5deg);
        }

        .stat-value {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--muted-foreground);
            font-size: 0.875rem;
        }

        /* Services */
        .services {
            background: var(--secondary);
            position: relative;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
        }

        .section-title {
            text-align: center;
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: bold;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, var(--foreground), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.125rem;
            color: var(--muted-foreground);
            margin-bottom: 4rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

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

        .services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 4rem;
        }

        @media (min-width: 768px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

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

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

        .card:hover {
            border-color: rgba(204, 255, 0, 0.5);
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, rgba(204, 255, 0, 0.2), rgba(204, 255, 0, 0.05));
            transition: var(--transition);
        }

        .card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, rgba(204, 255, 0, 0.3), rgba(204, 255, 0, 0.1));
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: var(--card-foreground);
            transition: var(--transition);
        }

        .card:hover .card-title {
            color: var(--primary);
        }

        .card-description {
            color: var(--muted-foreground);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .feature-list {
            list-style: none;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            font-size: 0.875rem;
            color: var(--muted-foreground);
            transition: var(--transition);
        }

        .feature-item:hover {
            color: var(--foreground);
            transform: translateX(5px);
        }

        .feature-bullet {
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .feature-item:hover .feature-bullet {
            background: var(--primary);
            transform: scale(1.5);
        }

        /* About */
        .about-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .about-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        .about-text {
            color: var(--muted-foreground);
            font-size: 1.125rem;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

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

        @media (min-width: 640px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .feature-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 1.5rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--primary);
            transition: var(--transition);
        }

        .feature-card:hover::before {
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: rgba(204, 255, 0, 0.3);
        }

        .feature-title {
            font-weight: bold;
            margin-bottom: 0.5rem;
            color: var(--card-foreground);
        }

        .feature-description {
            color: var(--muted-foreground);
            font-size: 0.875rem;
            line-height: 1.5;
        }

        /* Portfolio */
        .portfolio-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .portfolio-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .portfolio-item {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            transition: var(--transition);
            position: relative;
        }

        .portfolio-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent, rgba(204, 255, 0, 0.1), transparent);
            opacity: 0;
            transition: var(--transition);
        }

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

        .portfolio-item:hover {
            transform: translateY(-10px);
            border-color: rgba(204, 255, 0, 0.5);
            box-shadow: var(--shadow-lg);
        }

        .portfolio-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, var(--muted), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--muted-foreground);
            font-size: 0.875rem;
            position: relative;
            overflow: hidden;
        }

        .portfolio-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(204, 255, 0, 0.1), transparent, rgba(204, 255, 0, 0.1));
            opacity: 0;
            transition: var(--transition);
        }

        .portfolio-item:hover .portfolio-image::before {
            opacity: 1;
        }

        .portfolio-content {
            padding: 1.5rem;
        }

        .portfolio-title {
            font-weight: bold;
            margin-bottom: 0.5rem;
            color: var(--card-foreground);
        }

        .portfolio-description {
            color: var(--muted-foreground);
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .portfolio-tags {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .tag {
            background: rgba(204, 255, 0, 0.1);
            color: var(--primary);
            padding: 0.25rem 0.75rem;
            border-radius: 1rem;
            font-size: 0.75rem;
            font-weight: 500;
            transition: var(--transition);
        }

        .tag:hover {
            background: rgba(204, 255, 0, 0.2);
            transform: scale(1.05);
        }

        /* Pricing */
        .pricing-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 2rem;
            overflow: visible;
        }

        @media (min-width: 1024px) {
            .pricing-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .pricing-card {
            position: relative;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2rem;
            text-align: center;
            transition: var(--transition);
            overflow: visible;
        }

        .pricing-card:hover {
            border-color: rgba(204, 255, 0, 0.5);
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .pricing-card.popular {
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(204, 255, 0, 0.2);
            transform: scale(1.05);
        }

        .pricing-card.popular:hover {
            transform: scale(1.05) translateY(-5px);
        }

        .popular-badge {
            position: absolute;
            top: -16px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: var(--primary-foreground);
            padding: 0.5rem 1.5rem;
            border-radius: 2rem;
            font-size: 0.875rem;
            font-weight: 600;
            box-shadow: var(--shadow-lg);
            z-index: 10;
            white-space: nowrap;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: translateX(-50%) scale(1);
            }
            50% {
                transform: translateX(-50%) scale(1.05);
            }
        }

        .plan-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            transition: var(--transition);
        }

        .plan-icon.basic {
            background: rgba(204, 255, 0, 0.2);
            color: var(--primary);
        }

        .plan-icon.premium {
            background: var(--primary);
            color: var(--primary-foreground);
        }

        .pricing-card:hover .plan-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .plan-name {
            font-size: 1.75rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: var(--card-foreground);
        }

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

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

        .original-price-text {
            font-size: 1.125rem;
            color: var(--muted-foreground);
            text-decoration: line-through;
        }

        .discount-badge {
            background: rgba(204, 255, 0, 0.2);
            color: var(--primary);
            padding: 0.25rem 0.5rem;
            border-radius: 0.5rem;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .price-value {
            font-size: 3rem;
            font-weight: bold;
            color: var(--primary);
            line-height: 1;
        }

        .price-period {
            color: var(--muted-foreground);
            font-size: 1rem;
        }

        .plan-description {
            color: var(--muted-foreground);
            margin-bottom: 2rem;
            line-height: 1.5;
        }

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

        .plan-feature {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
            transition: var(--transition);
        }

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

        .check-icon {
            width: 20px;
            height: 20px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
            transition: var(--transition);
        }

        .plan-feature:hover .check-icon {
            transform: scale(1.2);
        }

        .plan-feature-text {
            color: var(--muted-foreground);
            font-size: 0.875rem;
            line-height: 1.5;
        }

        /* Contact */
        .contact-section {
            background: var(--secondary);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 1024px) {
            .contact-grid {
                grid-template-columns: 1fr 2fr;
            }
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-info-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 1.5rem;
            transition: var(--transition);
        }

        .contact-info-card:hover {
            border-color: rgba(204, 255, 0, 0.5);
            transform: translateY(-5px);
        }

        .contact-info-content {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .contact-info-icon {
            width: 48px;
            height: 48px;
            background: rgba(204, 255, 0, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-info-details h4 {
            font-weight: 600;
            color: var(--foreground);
            margin-bottom: 0.25rem;
        }

        .contact-info-value {
            color: var(--primary);
            font-weight: 500;
            margin-bottom: 0.25rem;
        }

        .contact-info-description {
            color: var(--muted-foreground);
            font-size: 0.875rem;
        }

        .contact-form {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2rem;
            position: relative;
        }

        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), rgba(204, 255, 0, 0.5), var(--primary));
            border-radius: var(--radius) var(--radius) 0 0;
        }

        .contact-form h3 {
            color: var(--foreground);
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
        }

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

        .form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        @media (min-width: 768px) {
            .form-row {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--foreground);
        }

        .form-input,
        .form-textarea,
        .form-select {
            width: 100%;
            padding: 0.75rem;
            background: var(--input-background);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            color: var(--foreground);
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-input:focus,
        .form-textarea:focus,
        .form-select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(204, 255, 0, 0.2);
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: var(--muted-foreground);
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-select {
            cursor: pointer;
        }

        /* Footer */
        .footer {
            background: var(--secondary);
            border-top: 1px solid var(--border);
            padding: 3rem 0 1rem;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .footer-content {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .footer-section h3 {
            font-weight: bold;
            margin-bottom: 1rem;
            color: var(--foreground);
        }

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

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

        .footer-links a {
            color: var(--muted-foreground);
            text-decoration: none;
            transition: var(--transition);
            position: relative;
        }

        .footer-links a::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }

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

        .footer-links a:hover::before {
            width: 100%;
        }

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

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, rgba(204, 255, 0, 0.1), rgba(204, 255, 0, 0.05));
            border: 1px solid rgba(204, 255, 0, 0.2);
            border-radius: 1.5rem;
            padding: 3rem 2rem;
            text-align: center;
            margin-top: 3rem;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(204, 255, 0, 0.1), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% {
                left: -100%;
            }
            100% {
                left: 100%;
            }
        }

        .includes-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }

        @media (min-width: 768px) {
            .includes-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .includes-item {
            text-align: center;
            transition: var(--transition);
        }

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

        .includes-icon {
            width: 64px;
            height: 64px;
            background: rgba(204, 255, 0, 0.2);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            transition: var(--transition);
        }

        .includes-item:hover .includes-icon {
            background: rgba(204, 255, 0, 0.3);
            transform: scale(1.1);
        }

        /* Responsive */
        @media (max-width: 767px) {
            .pricing-card.popular {
                transform: none;
            }
            
            .pricing-card.popular:hover {
                transform: translateY(-5px);
            }
        }

        /* Success/Error messages */
        .success-message {
            background: rgba(0, 255, 0, 0.1);
            border: 1px solid rgba(0, 255, 0, 0.3);
            color: #00ff00;
            padding: 1rem;
            border-radius: var(--radius);
            margin-bottom: 1rem;
            display: none;
        }

        .success-message.show {
            display: block;
            animation: fadeInUp 0.5s ease-out;
        }

        .error-message {
            background: rgba(255, 0, 0, 0.1);
            border: 1px solid rgba(255, 0, 0, 0.3);
            color: #ff6b6b;
            padding: 1rem;
            border-radius: var(--radius);
            margin-bottom: 1rem;
            display: none;
        }

        .error-message.show {
            display: block;
            animation: fadeInUp 0.5s ease-out;
        }

        /* Loading animation */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 2px solid var(--muted);
            border-radius: 50%;
            border-top-color: var(--primary);
            animation: spin 1s ease-in-out infinite;
        }

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

        /* Icon styles */
        .icon {
            width: 24px;
            height: 24px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .icon-small {
            width: 20px;
            height: 20px;
        }

        .icon-large {
            width: 32px;
            height: 32px;
        }
