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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0a0e27 0%, #1a1545 50%, #0f1133 100%);
            color: #ffffff;
            overflow-x: hidden;
        }

        /* Animated Background Grid */
        .background-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            background-image: 
                linear-gradient(rgba(102, 126, 234, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(102, 126, 234, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translateY(0); }
            100% { transform: translateY(50px); }
        }

        .gradient-orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.3;
            z-index: 0;
            pointer-events: none;
        }

        .orb-1 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(138, 99, 255, 0.4), rgba(186, 85, 211, 0.2));
            top: -200px;
            right: -200px;
            animation: float-orb 15s ease-in-out infinite;
        }

        .orb-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(72, 61, 139, 0.4), rgba(138, 99, 255, 0.2));
            bottom: -150px;
            left: -150px;
            animation: float-orb 20s ease-in-out infinite reverse;
        }

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

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(10, 14, 39, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(138, 99, 255, 0.1);
            animation: slideDown 0.5s ease-out;
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 28px;
            font-weight: bold;
        }

        .logo img {
            height: 45px;
            width: auto;
            transition: all 0.3s;
            background: transparent;
            object-fit: contain;
        }

        .logo:hover img {
            transform: scale(1.05);
            filter: brightness(1.1);
        }

        .logo-text {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        nav {
            display: flex;
            gap: 40px;
        }

        nav a {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 100px 50px 50px;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 25px;
            background: rgba(138, 99, 255, 0.1);
            border: 1px solid rgba(138, 99, 255, 0.3);
            border-radius: 50px;
            margin-bottom: 30px;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

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

        .hero h1 {
            font-size: 72px;
            font-weight: 800;
            margin-bottom: 30px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 0.8s ease-out 0.4s both;
            line-height: 1.2;
        }

        .hero p {
            font-size: 22px;
            max-width: 900px;
            margin: 0 auto 50px;
            color: #b8b8d4;
            animation: fadeInUp 0.8s ease-out 0.6s both;
            line-height: 1.6;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 40px;
            background: linear-gradient(90deg, #8b5cf6 0%, #3b82f6 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            transition: all 0.3s;
            animation: fadeInUp 0.8s ease-out 0.8s both;
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(139, 92, 246, 0.7);
            background: linear-gradient(90deg, #9d6dff 0%, #4f9aff 100%);
        }

        .status-indicator {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 30px;
            color: #4ade80;
            animation: fadeInUp 0.8s ease-out 1s both;
        }

        .status-dot {
            width: 10px;
            height: 10px;
            background: #4ade80;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

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

        /* Hero Logo Display */
        .hero-logo {
            margin: 30px 0;
            animation: fadeInUp 0.8s ease-out 0.3s both;
        }

        .hero-logo img {
            max-width: 180px;
            filter: drop-shadow(0 10px 40px rgba(102, 126, 234, 0.6));
            animation: float-logo 6s ease-in-out infinite;
        }

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

        /* Automation Animation Section */
        .automation-demo {
            padding: 100px 50px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .automation-demo h2 {
            font-size: 48px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .automation-demo p {
            font-size: 20px;
            color: #b8b8d4;
            margin-bottom: 60px;
        }

        .automation-container {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(138, 99, 255, 0.2);
            border-radius: 24px;
            padding: 50px;
            backdrop-filter: blur(20px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .efficiency-meter {
            margin-bottom: 40px;
        }

        .efficiency-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            font-size: 18px;
        }

        .efficiency-value {
            font-size: 32px;
            font-weight: bold;
            color: #4ade80;
        }

        .progress-bar {
            width: 100%;
            height: 30px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            overflow: hidden;
            position: relative;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #4ade80 100%);
            border-radius: 15px;
            width: 0%;
            transition: width 2s ease-out;
            position: relative;
            overflow: hidden;
        }

        .progress-fill::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .loading-circle {
            width: 150px;
            height: 150px;
            margin: 40px auto;
            position: relative;
        }

        .circle-bg {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 8px solid rgba(255, 255, 255, 0.1);
        }

        .circle-progress {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 8px solid transparent;
            border-top-color: #667eea;
            border-right-color: #764ba2;
            animation: spin 2s linear infinite;
        }

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

        .circle-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 24px;
            font-weight: bold;
        }

        .automation-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(138, 99, 255, 0.2);
        }

        .stat-number {
            font-size: 42px;
            font-weight: bold;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }

        .stat-label {
            color: #b8b8d4;
            font-size: 16px;
        }

        /* Services Section */
        .services {
            padding: 100px 50px;
            position: relative;
            z-index: 1;
        }

        .section-title {
            text-align: center;
            font-size: 48px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            font-size: 20px;
            color: #b8b8d4;
            margin-bottom: 60px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(138, 99, 255, 0.2);
            border-radius: 24px;
            padding: 40px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            transform: scaleX(0);
            transition: transform 0.4s;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(138, 99, 255, 0.4);
            box-shadow: 0 30px 60px rgba(102, 126, 234, 0.2);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: rgba(102, 126, 234, 0.1);
            border: 2px solid rgba(102, 126, 234, 0.3);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            position: relative;
            overflow: hidden;
        }

        .service-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.2), transparent);
            animation: iconShine 3s infinite;
        }

        @keyframes iconShine {
            0% { transform: rotate(0deg) translate(-50%, -50%); }
            100% { transform: rotate(360deg) translate(-50%, -50%); }
        }

        .service-icon svg {
            width: 40px;
            height: 40px;
            position: relative;
            z-index: 1;
        }

        .service-card h3 {
            font-size: 28px;
            margin-bottom: 15px;
        }

        .service-card p {
            color: #b8b8d4;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .service-features {
            list-style: none;
        }

        .service-features li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            color: #b8b8d4;
        }

        .service-features li::before {
            content: '●';
            position: absolute;
            left: 0;
            color: #a78bfa;
        }

        .service-price {
            margin-top: 25px;
            padding-top: 25px;
            border-top: 1px solid rgba(138, 99, 255, 0.2);
            font-size: 28px;
            font-weight: bold;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
        }

        .automation-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(138, 99, 255, 0.2);
        }

        .stat-number {
            font-size: 42px;
            font-weight: bold;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }

        .stat-label {
            color: #b8b8d4;
            font-size: 16px;
        }

        /* Dashboard Grid */
        .dashboard-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        .metric-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(138, 99, 255, 0.2);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s;
        }

        .metric-card:hover {
            background: rgba(255, 255, 255, 0.06);
            transform: translateY(-5px);
        }

        .metric-icon {
            width: 50px;
            height: 50px;
            margin: 0 auto 15px;
        }

        .metric-icon svg {
            width: 100%;
            height: 100%;
        }

        .metric-value {
            font-size: 36px;
            font-weight: bold;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
        }

        .metric-label {
            color: #b8b8d4;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .progress-bar-small {
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            overflow: hidden;
        }

        .progress-fill-small {
            height: 100%;
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            border-radius: 3px;
            width: 0%;
            transition: width 0.5s ease-out;
        }

        .efficiency-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .circular-progress {
            position: relative;
            width: 200px;
            height: 200px;
            margin: 0 auto;
        }

        .progress-ring {
            transform: rotate(-90deg);
        }

        .progress-ring-circle {
            stroke-dasharray: 534.07;
            stroke-dashoffset: 534.07;
            transition: stroke-dashoffset 0.5s ease-out;
            stroke-linecap: round;
        }

        .progress-percentage {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 42px;
            font-weight: bold;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Values Section */
        .values {
            padding: 100px 50px;
            position: relative;
            z-index: 1;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .value-card {
            text-align: center;
            padding: 40px 20px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(138, 99, 255, 0.2);
            border-radius: 15px;
            transition: all 0.3s;
        }

        .value-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: scale(1.05);
        }

        .value-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background: rgba(102, 126, 234, 0.1);
            border: 2px solid rgba(102, 126, 234, 0.3);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .value-card:hover .value-icon {
            background: rgba(102, 126, 234, 0.2);
            border-color: rgba(102, 126, 234, 0.5);
            transform: scale(1.1);
        }

        .value-icon svg {
            width: 30px;
            height: 30px;
        }

        .value-card h3 {
            font-size: 20px;
            margin-bottom: 10px;
        }

        /* Team Section */
        .team {
            padding: 100px 50px;
            position: relative;
            z-index: 1;
        }

        .team-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
            color: #b8b8d4;
            font-size: 18px;
            line-height: 1.8;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 900px;
            margin: 0 auto;
        }

        .team-member {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(138, 99, 255, 0.2);
            border-radius: 24px;
            padding: 40px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(20px);
        }

        .team-member:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.06);
            box-shadow: 0 30px 60px rgba(102, 126, 234, 0.2);
        }

        .member-avatar {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            font-weight: bold;
        }

        .member-name {
            font-size: 28px;
            margin-bottom: 10px;
        }

        .member-role {
            color: #a78bfa;
            font-size: 18px;
            margin-bottom: 15px;
        }

        .member-bio {
            color: #b8b8d4;
            line-height: 1.6;
        }

        /* Pricing Section */
        .pricing {
            padding: 100px 50px;
            position: relative;
            z-index: 1;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto 60px;
        }

        .pricing-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(138, 99, 255, 0.2);
            border-radius: 24px;
            padding: 40px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(20px);
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(138, 99, 255, 0.4);
            box-shadow: 0 30px 60px rgba(102, 126, 234, 0.2);
        }

        .pricing-card.featured {
            border: 2px solid rgba(138, 99, 255, 0.5);
            background: rgba(102, 126, 234, 0.05);
        }

        .pricing-badge {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(102, 126, 234, 0.2);
            border: 1px solid rgba(102, 126, 234, 0.4);
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            width: fit-content;
        }

        .pricing-badge.featured-badge {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
        }

        .pricing-card h3 {
            font-size: 28px;
            margin-bottom: 20px;
        }

        .pricing-amount {
            display: flex;
            align-items: flex-start;
            margin-bottom: 10px;
        }

        .currency {
            font-size: 24px;
            margin-right: 5px;
            margin-top: 10px;
            color: #a78bfa;
        }

        .price {
            font-size: 56px;
            font-weight: bold;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }

        .price-custom {
            font-size: 32px;
            font-weight: bold;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .pricing-description {
            color: #b8b8d4;
            margin-bottom: 30px;
            min-height: 48px;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 30px;
            flex-grow: 1;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            color: #e0e0e0;
        }

        .pricing-button {
            width: 100%;
            padding: 16px 24px;
            background: rgba(102, 126, 234, 0.2);
            border: 2px solid rgba(102, 126, 234, 0.4);
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .pricing-button:hover {
            background: rgba(102, 126, 234, 0.3);
            border-color: rgba(102, 126, 234, 0.6);
            transform: scale(1.02);
        }

        .featured-button {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
        }

        .featured-button:hover {
            background: linear-gradient(135deg, #7e8ef0 0%, #8a5bb8 100%);
            transform: scale(1.05);
        }

        .payment-methods {
            text-align: center;
            padding: 40px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(138, 99, 255, 0.2);
            border-radius: 20px;
            max-width: 800px;
            margin: 0 auto;
        }

        .payment-methods p {
            color: #b8b8d4;
            margin-bottom: 20px;
            font-size: 16px;
        }

        .payment-icons {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .payment-icon {
            padding: 12px 24px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(138, 99, 255, 0.2);
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            color: #a78bfa;
        }

        /* Contact Section */
        .contact {
            padding: 100px 50px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .contact-content {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(138, 99, 255, 0.2);
            border-radius: 24px;
            padding: 60px;
            backdrop-filter: blur(20px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .contact h2 {
            font-size: 48px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .contact p {
            color: #b8b8d4;
            margin-bottom: 40px;
            font-size: 18px;
            line-height: 1.6;
        }

        .contact-info {
            margin-top: 40px;
            padding-top: 40px;
            border-top: 1px solid rgba(138, 99, 255, 0.2);
        }

        .contact-item {
            margin: 20px 0;
            color: #b8b8d4;
        }

        .contact-item a {
            color: #a78bfa;
            text-decoration: none;
        }

        /* Footer */
        footer {
            padding: 40px 50px;
            text-align: center;
            border-top: 1px solid rgba(138, 99, 255, 0.2);
            color: #b8b8d4;
            position: relative;
            z-index: 1;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 { font-size: 42px; }
            .hero p { font-size: 18px; }
            .services-grid { grid-template-columns: 1fr; }
            .values-grid { grid-template-columns: repeat(2, 1fr); }
            .team-grid { grid-template-columns: 1fr; }
            .automation-stats { grid-template-columns: 1fr; }
            nav { display: none; }
        }
