* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            transition: all 0.3s ease;
        }

        :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary: #8b5cf6;
            --accent: #ec4899;
            --dark: #0f172a;
            --darker: #0a1120;
            --light: #f8fafc;
            --lighter: #ffffff;
            --gray: #64748b;
            --success: #10b981;
            --warning: #f59e0b;
            --danger: #ef4444;
            --transition: all 0.3s ease;
            --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--lighter);
            overflow-x: hidden;
            padding: 20px;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        }

        body.dark-mode {
            background-color: var(--darker);
            color: #e2e8f0;
            background: linear-gradient(135deg, #0c1a2d 0%, #0d2139 100%);
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 700px;
            margin: 30px auto 0;
        }

        body.dark-mode .section-title p {
            color: #94a3b8;
        }

        /* GDPR Banner */
        .gdpr-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--darker);
            color: white;
            padding: 20px;
            z-index: 2000;
            box-shadow: 0 -5px 15px rgba(0,0,0,0.2);
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }
        
        .gdpr-banner.visible {
            transform: translateY(0);
        }
        
        .gdpr-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 20px;
        }
        
        .gdpr-text {
            flex: 1;
            min-width: 300px;
        }
        
        .gdpr-text p {
            margin-bottom: 10px;
        }
        
        .gdpr-text a {
            color: var(--primary);
            text-decoration: underline;
        }
        
        .gdpr-actions {
            display: flex;
            gap: 15px;
        }
        
        .gdpr-btn {
            padding: 12px 25px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: var(--transition);
        }
        
        .gdpr-accept {
            background: var(--success);
            color: white;
        }
        
        .gdpr-reject {
            background: transparent;
            color: #94a3b8;
            border: 1px solid #94a3b8;
        }
        
        .gdpr-settings {
            background: var(--primary);
            color: white;
        }
        
        .gdpr-btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }
        
        /* Cookie Settings Modal */
        .gdpr-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 3000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .gdpr-modal.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background: white;
            width: 90%;
            max-width: 700px;
            border-radius: 15px;
            overflow: hidden;
            max-height: 90vh;
            overflow-y: auto;
        }
        
        body.dark-mode .modal-content {
            background: var(--darker);
        }
        
        .modal-header {
            padding: 25px;
            background: var(--dark);
            color: white;
            position: relative;
        }
        
        .modal-title {
            font-size: 1.8rem;
        }
        
        .close-modal {
            position: absolute;
            top: 25px;
            right: 25px;
            font-size: 1.5rem;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
        }
        
        .modal-body {
            padding: 30px;
        }
        
        .cookie-type {
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid #e2e8f0;
        }
        
        body.dark-mode .cookie-type {
            border-bottom: 1px solid #334155;
        }
        
        .cookie-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .cookie-name {
            font-size: 1.3rem;
            font-weight: 600;
        }
        
        .cookie-toggle {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 30px;
        }
        
        .cookie-toggle input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .cookie-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 30px;
        }
        
        .cookie-slider:before {
            position: absolute;
            content: "";
            height: 22px;
            width: 22px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
        
        input:checked + .cookie-slider {
            background-color: var(--success);
        }
        
        input:checked + .cookie-slider:before {
            transform: translateX(30px);
        }
        
        .cookie-desc {
            color: var(--gray);
            font-size: 1.05rem;
            line-height: 1.6;
        }
        
        body.dark-mode .cookie-desc {
            color: #94a3b8;
        }
        
        .cookie-list {
            margin-top: 15px;
            padding: 15px;
            background: rgba(37, 99, 235, 0.05);
            border-radius: 10px;
        }
        
        body.dark-mode .cookie-list {
            background: rgba(37, 99, 235, 0.1);
        }
        
        .cookie-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px dashed #e2e8f0;
        }
        
        body.dark-mode .cookie-item {
            border-bottom: 1px dashed #334155;
        }
        
        .cookie-item:last-child {
            border-bottom: none;
        }
        
        .modal-footer {
            padding: 25px;
            background: #f8fafc;
            display: flex;
            justify-content: flex-end;
            gap: 15px;
        }
        
        body.dark-mode .modal-footer {
            background: #0f172a;
        }
        
        /* Privacy Policy Page */
        .privacy-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 50px 20px;
        }
        
        .privacy-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .privacy-header h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
        }
        
        .privacy-header p {
            color: var(--gray);
            font-size: 1.2rem;
        }
        
        .privacy-section {
            margin-bottom: 50px;
        }
        
        .privacy-section h2 {
            font-size: 2rem;
            margin-bottom: 25px;
            color: var(--primary);
            position: relative;
            padding-bottom: 15px;
        }
        
        .privacy-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--primary);
        }
        
        .privacy-section p, .privacy-section ul {
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .privacy-section ul {
            padding-left: 30px;
        }
        
        .privacy-section li {
            margin-bottom: 15px;
        }
        
        /* Rest of your existing styles */
        /* ... (all the previous CSS you provided) ... */
        
        /* GDPR Compliance Section */
        .gdpr-compliance {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-radius: 20px;
            padding: 40px;
            margin: 50px 0;
            box-shadow: var(--shadow);
        }
        
        body.dark-mode .gdpr-compliance {
            background: linear-gradient(135deg, #0c1a2d 0%, #0d2139 100%);
        }
        
        .gdpr-compliance h2 {
            text-align: center;
            margin-bottom: 30px;
            font-size: 2.2rem;
            color: var(--primary);
        }
        
        .gdpr-points {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .gdpr-card {
            background: var(--lighter);
            border-radius: 15px;
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        body.dark-mode .gdpr-card {
            background: #1e293b;
        }
        
        .gdpr-card:hover {
            transform: translateY(-10px);
        }
        
        .gdpr-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .gdpr-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .gdpr-card p {
            color: var(--gray);
            line-height: 1.7;
        }
        
        body.dark-mode .gdpr-card p {
            color: #94a3b8;
        }
        
        .gdpr-compliance-btn {
            display: block;
            margin: 40px auto 0;
            max-width: 300px;
            text-align: center;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .gdpr-actions {
                flex-wrap: wrap;
            }
            
            .gdpr-btn {
                width: 100%;
            }
            
            .modal-footer {
                flex-direction: column;
            }
            
            .gdpr-container {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            transition: all 0.3s ease;
        }

        :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary: #8b5cf6;
            --accent: #ec4899;
            --dark: #0f172a;
            --darker: #0a1120;
            --light: #f8fafc;
            --lighter: #ffffff;
            --gray: #64748b;
            --success: #10b981;
            --warning: #f59e0b;
            --danger: #ef4444;
            --transition: all 0.3s ease;
            --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--lighter);
            overflow-x: hidden;
            padding: 20px;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        }

        body.dark-mode {
            background-color: var(--darker);
            color: #e2e8f0;
            background: linear-gradient(135deg, #0c1a2d 0%, #0d2139 100%);
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 700px;
            margin: 30px auto 0;
        }

        body.dark-mode .section-title p {
            color: #94a3b8;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }
        
        body.dark-mode header {
            background: rgba(15, 23, 42, 0.95);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            gap: 6px;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.03);
        }

        .logo-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8px;
        }

        .logo-icon img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            display: block;
        }
        
        
        
        .logo-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.8rem;
        }
        
        .logo-text .zeno {
            color: var(--dark);
            font-weight: 700;
        }
        
        body.dark-mode .logo-text .zeno {
            color: #e2e8f0;
        }
        
        .logo-text .launch {
            color: var(--primary);
            font-weight: 700;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 35px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            transition: var(--transition);
            position: relative;
            font-size: 1.05rem;
        }
        
        body.dark-mode .nav-links a {
            color: #e2e8f0;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary);
            transition: var(--transition);
        }
        
        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }
        
        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 1001;
        }
        
        /* Theme Toggle Styles */
        .theme-toggle-container {
            display: flex;
            align-items: center;
        }
        
        .theme-toggle {
            width: 60px;
            height: 30px;
            background: rgba(37, 99, 235, 0.2);
            border-radius: 50px;
            position: relative;
            cursor: pointer;
            display: flex;
            align-items: center;
            padding: 0 5px;
            box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        body.dark-mode .theme-toggle {
            background: rgba(37, 99, 235, 0.3);
        }
        
        .toggle-switch {
            width: 22px;
            height: 22px;
            background: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            position: absolute;
            left: 4px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }
        
        body.dark-mode .toggle-switch {
            background: #1e293b;
            transform: translateX(30px);
        }
        
        .toggle-icon {
            font-size: 0.9rem;
            color: #FFA500;
            transition: opacity 0.3s ease;
        }
        
        body.dark-mode .toggle-icon {
            color: #FFD700;
        }
        
        .sun-icon {
            position: absolute;
            left: 7px;
        }
        
        .moon-icon {
            position: absolute;
            right: 7px;
            opacity: 0.7;
        }
        
        body.dark-mode .sun-icon {
            opacity: 0.7;
        }
        
        body.dark-mode .moon-icon {
            opacity: 1;
        }

        /* Hero Section */
        #hero {
            height: 100vh;
            min-height: 800px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding-top: 80px;
        }
        
        .slideshow-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            background-size: cover;
            background-position: center;
            transition: opacity 1.5s ease-in-out;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(37, 99, 235, 0.85) 0%, rgba(29, 78, 216, 0.9) 100%);
        }
        
        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: white;
            padding: 0 20px;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .hero-logo {
            max-width: 180px;
            margin-bottom: 30px;
            animation: fadeInDown 1s ease;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
        }
        
        .hero-content h1 {
            font-size: 3.8rem;
            margin-bottom: 25px;
            animation: fadeIn 1s ease;
            line-height: 1.1;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .hero-content p {
            font-size: 1.6rem;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeIn 1.5s ease;
            opacity: 0.9;
            text-shadow: 0 1px 2px rgba(0,0,0,0.2);
        }
        
        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            animation: fadeInUp 1s ease;
        }
        
        .scroll-prompt {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
            cursor: pointer;
        }
        
        .scroll-prompt i {
            font-size: 2rem;
            color: white;
            opacity: 0.7;
            transition: var(--transition);
        }
        
        .scroll-prompt:hover i {
            opacity: 1;
            transform: translateY(5px);
        }

        /* Stats Section */
        .stats {
            background-color: white;
            padding: 80px 0;
            position: relative;
            z-index: 5;
        }
        
        body.dark-mode .stats {
            background-color: var(--darker);
        }

        .stats-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
            min-width: 200px;
        }

        .stat-number {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.1rem;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        body.dark-mode .stat-label {
            color: #94a3b8;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 14px 32px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            font-size: 1.05rem;
            letter-spacing: 0.5px;
            box-shadow: var(--shadow);
            margin-top: 20px;
            border: 2px solid transparent;
        }
        
        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .btn-accent {
            background-color: var(--accent);
        }
        
        .btn-accent:hover {
            background-color: #db2777;
        }

        .btn-outline {
            background-color: transparent;
            border-color: white;
            color: white;
        }
        
        .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
            margin-top: 30px;
        }
        
        .service-card {
            background: var(--lighter);
            border-radius: 20px;
            padding: 50px 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        body.dark-mode .service-card {
            background: #1e293b;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--primary);
            z-index: -1;
            transition: var(--transition);
        }
        
        .service-card:hover::before {
            height: 100%;
            opacity: 0.03;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .service-card i {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 25px;
            transition: var(--transition);
        }
        
        .service-card:hover i {
            transform: scale(1.1);
        }
        
        .service-card h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        .service-card p {
            color: var(--gray);
            font-size: 1.1rem;
            margin-bottom: 25px;
        }
        
        body.dark-mode .service-card p {
            color: #94a3b8;
        }
        
        .feature-list {
            text-align: left;
            margin-top: auto;
            width: 100%;
        }
        
        .feature-list li {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            padding: 8px 0;
            border-bottom: 1px dashed #e2e8f0;
        }
        
        body.dark-mode .feature-list li {
            border-bottom: 1px dashed #334155;
        }
        
        .feature-list li i {
            font-size: 1rem;
            color: var(--success);
            margin-right: 12px;
            margin-bottom: 0;
        }
        
        /* Business Registration Card Specific Styles */
        .business-card {
            position: relative;
            overflow: visible;
        }
        
        .business-card::before {
            background: var(--success);
        }
        
        .business-card i {
            color: var(--success);
        }
        
        .business-card .badge {
            position: absolute;
            top: -15px;
            right: -15px;
            background: var(--success);
            color: white;
            padding: 8px 16px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            transform: rotate(5deg);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            z-index: 10;
        }
        
        /* About Section */
        .about-columns {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .about-column {
            background: var(--lighter);
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        body.dark-mode .about-column {
            background: #1e293b;
        }
        
        .about-column::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--primary);
            z-index: -1;
            transition: var(--transition);
        }
        
        .about-column:hover::before {
            width: 100%;
            opacity: 0.05;
        }
        
        .about-column:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .column-icon {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 25px;
        }
        
        .about-column h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        .about-column p {
            margin-bottom: 20px;
            color: var(--gray);
        }
        
        body.dark-mode .about-column p {
            color: #94a3b8;
        }
        
        .about-column ul {
            list-style: none;
            margin: 25px 0;
        }
        
        .about-column ul li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            padding-left: 5px;
        }
        
        .about-column ul li i {
            color: var(--success);
            margin-right: 12px;
            font-size: 1.2rem;
        }
        
        .vision-pillars {
            margin: 25px 0;
        }
        
        .pillar {
            display: flex;
            margin-bottom: 20px;
            align-items: flex-start;
            background: rgba(37, 99, 235, 0.05);
            padding: 15px;
            border-radius: 10px;
        }
        
        body.dark-mode .pillar {
            background: rgba(37, 99, 235, 0.1);
        }
        
        .pillar span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            margin-right: 15px;
            flex-shrink: 0;
            font-weight: 700;
            font-size: 1.1rem;
        }
        
        .signature {
            display: flex;
            align-items: center;
            margin-top: 30px;
        }
        
        .signature img {
            width: 120px;
            margin-right: 20px;
        }
        
        .signature p span {
            display: block;
            color: var(--primary);
            font-weight: 600;
            margin-top: 5px;
        }
        
        .founder-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 60px;
            align-items: center;
            background: var(--lighter);
            border-radius: 20px;
            padding: 50px;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }
        
        body.dark-mode .founder-section {
            background: #1e293b;
        }
        
        .founder-image {
            position: relative;
            text-align: center;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .founder-image img {
            width: 100%;
            display: block;
            transition: var(--transition);
        }
        
        .founder-image:hover img {
            transform: scale(1.05);
        }
        
        .founder-bio h3 {
            font-size: 2.2rem;
            margin-bottom: 25px;
            color: var(--primary);
        }
        
        .founder-bio p {
            margin-bottom: 20px;
            color: var(--gray);
            font-size: 1.1rem;
        }
        
        body.dark-mode .founder-bio p {
            color: #94a3b8;
        }
        
        .founder-bio .btn {
            margin-top: 15px;
        }
        
        /* Portfolio Section */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
        }
        
        .portfolio-card {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            height: 400px;
            display: flex;
            flex-direction: column;
        }
        
        .portfolio-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .portfolio-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
            z-index: 1;
        }
        
        .card-content {
            padding: 35px;
            position: relative;
            z-index: 2;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }
        
        .card-icon {
            font-size: 2.8rem;
            color: white;
            margin-bottom: 20px;
        }
        
        .portfolio-card h3 {
            color: white;
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        .date {
            color: #cbd5e1;
            font-size: 1rem;
            margin-bottom: 20px;
        }
        
        .description {
            color: #e2e8f0;
            margin-bottom: 25px;
            font-size: 1.1rem;
        }
        
        .tech-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 25px;
        }
        
        .tech-tags span {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        .card-link {
            color: white;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: var(--transition);
            font-size: 1.1rem;
        }
        
        .card-link i {
            margin-left: 10px;
            transition: var(--transition);
        }
        
        .card-link:hover {
            color: var(--primary);
        }
        
        .card-link:hover i {
            transform: translateX(5px);
        }
        
        /* Pricing Section */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
        }
        
        .pricing-card {
            background: var(--lighter);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }
        
        body.dark-mode .pricing-card {
            background: #1e293b;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .pricing-card.popular {
            transform: scale(1.03);
            z-index: 2;
            border: 2px solid var(--primary);
        }
        
        .pricing-card.popular:hover {
            transform: scale(1.03) translateY(-10px);
        }
        
        .popular-badge {
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--primary);
            color: white;
            padding: 8px 40px;
            font-size: 1rem;
            font-weight: 700;
            transform: rotate(45deg);
        }
        
        .pricing-badge {
            display: flex;
            justify-content: space-between;
            padding: 15px 25px;
        }
        
        .best-value, .save-badge {
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 700;
        }
        
        .best-value {
            background: var(--success);
            color: white;
        }
        
        .save-badge {
            background: var(--warning);
            color: white;
        }
        
        .pricing-header {
            padding: 35px 25px;
            text-align: center;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
        }
        
        .pricing-title {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        .pricing-price {
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 5px;
        }
        
        .pricing-period {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .pricing-features {
            padding: 35px 30px;
        }
        
        .pricing-features ul {
            list-style: none;
            margin-bottom: 35px;
        }
        
        .pricing-features ul li {
            padding: 15px 0;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            font-size: 1.1rem;
        }
        
        body.dark-mode .pricing-features ul li {
            border-bottom: 1px solid #334155;
        }
        
        .pricing-features ul li i {
            color: var(--success);
            margin-right: 15px;
            font-size: 1.3rem;
        }
        
        .pricing-button {
            display: block;
            width: 100%;
            text-align: center;
            padding: 15px;
            background: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            font-size: 1.1rem;
        }
        
        .pricing-button:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }
        
        .shopify-button {
            background: var(--accent) !important;
        }
        
        .shopify-button:hover {
            background: #db2777 !important;
        }
        
        .small-text {
            font-size: 0.9rem;
            text-align: center;
            margin-top: 15px;
            color: var(--gray);
        }
        
        .special-offer {
            background: rgba(236, 72, 153, 0.1);
            border: 1px solid rgba(236, 72, 153, 0.2);
            padding: 15px;
            border-radius: 12px;
            margin-top: 25px;
            display: flex;
            align-items: center;
            font-size: 1.05rem;
        }
        
        .special-offer i {
            margin-right: 12px;
            color: var(--accent);
            font-size: 1.4rem;
        }
        
        /* Testimonials */
        #testimonials {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        }
        
        body.dark-mode #testimonials {
            background: linear-gradient(135deg, #0c1a2d 0%, #0d2139 100%);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 35px;
        }
        
        .testimonial-card {
            background: var(--lighter);
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--shadow);
            position: relative;
        }
        
        body.dark-mode .testimonial-card {
            background: #1e293b;
        }
        
        .testimonial-card::before {
            content: "";
            position: absolute;
            top: 30px;
            left: 30px;
            font-size: 5rem;
            color: var(--primary);
            opacity: 0.1;
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .testimonial-content {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            border: 3px solid var(--primary);
        }
        
        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            font-size: 1.3rem;
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: var(--gray);
            font-size: 0.95rem;
        }
        
        /* Contact Section */
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 60px;
        }
        
        .contact-info {
            padding: 40px;
            background: var(--lighter);
            border-radius: 20px;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }
        
        body.dark-mode .contact-info {
            background: #1e293b;
        }
        
        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 25px;
            color: var(--primary);
        }
        
        .contact-info p {
            margin-bottom: 35px;
            color: var(--gray);
            font-size: 1.1rem;
            line-height: 1.7;
        }
        
        body.dark-mode .contact-info p {
            color: #94a3b8;
        }
        
        .contact-details div {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .contact-details i {
            font-size: 1.5rem;
            color: var(--primary);
            margin-right: 20px;
            width: 50px;
            height: 50px;
            background: rgba(37, 99, 235, 0.1);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .contact-details span {
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        .social-links {
            display: flex;
            gap: 18px;
            margin-top: 40px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: #f1f5f9;
            border-radius: 50%;
            color: var(--primary);
            transition: var(--transition);
            font-size: 1.4rem;
            text-decoration: none;
        }
        
        body.dark-mode .social-links a {
            background: #1e293b;
            border: 1px solid #334155;
        }
        
        .social-links a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-5px);
        }
        
        #contactForm {
            padding: 40px;
            background: var(--lighter);
            border-radius: 20px;
            box-shadow: var(--shadow);
            position: relative;
        }
        
        body.dark-mode #contactForm {
            background: #1e293b;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 12px;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 16px 20px;
            border: 1px solid #cbd5e1;
            border-radius: 12px;
            font-family: inherit;
            font-size: 1.1rem;
            background: #f8fafc;
            transition: var(--transition);
        }
        
        body.dark-mode .form-group input,
        body.dark-mode .form-group select,
        body.dark-mode .form-group textarea {
            background: #0f172a;
            border-color: #334155;
            color: #e2e8f0;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
        }
        
        .form-group textarea {
            min-height: 180px;
            resize: vertical;
        }
        
        .form-buttons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 10px;
        }
        
        .form-buttons button {
            width: 100%;
        }
        
        .gdpr-consent {
            display: flex;
            align-items: flex-start;
            margin-top: 25px;
        }
        
        .gdpr-consent input {
            margin-top: 5px;
            margin-right: 15px;
        }
        
        .gdpr-consent label {
            font-size: 0.95rem;
            color: var(--gray);
            font-weight: normal;
            line-height: 1.6;
        }
        
        body.dark-mode .gdpr-consent label {
            color: #94a3b8;
        }
        
        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .badge {
            background: var(--lighter);
            padding: 15px 25px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: var(--shadow);
        }
        
        body.dark-mode .badge {
            background: #1e293b;
        }
        
        .badge i {
            font-size: 2.5rem;
            color: var(--success);
        }
        
        .badge-text {
            font-weight: 600;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 80px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }
        
        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
        }
        
        .footer-column p {
            margin-bottom: 20px;
            color: #94a3b8;
            font-size: 1.1rem;
        }
        
        .footer-column a {
            color: #94a3b8;
            text-decoration: none;
            transition: var(--transition);
            display: block;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .footer-column a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .footer-column form {
            display: flex;
            flex-direction: column;
        }
        
        .footer-column input {
            padding: 16px;
            border: none;
            border-radius: 12px;
            margin-bottom: 15px;
            font-family: inherit;
            font-size: 1.1rem;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 1rem;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .copyright-links a {
            color: #94a3b8;
            text-decoration: none;
            margin-left: 25px;
            transition: var(--transition);
        }
        
        .copyright-links a:hover {
            color: white;
        }
        
        /* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            box-shadow: var(--shadow);
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: var(--primary-dark);
            transform: translateY(-5px);
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
            40% {transform: translateY(-20px);}
            60% {transform: translateY(-10px);}
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .section-title h2 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 992px) {
            section {
                padding: 80px 0;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .logo-text {
                font-size: 1.5rem;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -300px;
                width: 300px;
                height: 100vh;
                background: var(--lighter);
                flex-direction: column;
                align-items: flex-start;
                padding: 100px 40px 40px;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                transition: var(--transition);
                z-index: 1000;
            }
            
            body.dark-mode .nav-links {
                background: var(--darker);
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links li {
                margin: 0 0 25px 0;
            }
            
            .form-buttons {
                grid-template-columns: 1fr;
            }
            
            .hero-content h1 {
                font-size: 2.8rem;
            }
            
            .hero-content p {
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .founder-section {
                padding: 30px;
            }
            
            .testimonial-card {
                padding: 30px;
            }
            
            .hero-content h1 {
                font-size: 2.4rem;
            }
            
            .hero-content p {
                font-size: 1.2rem;
            }
            
            .stat-item {
                min-width: 150px;
                width: 50%;
            }
            
            .stat-number {
                font-size: 2.2rem;
            }
            
            .logo-text {
                display: none;
            }
            
            .logo-icon {
                margin-right: 0;
            }
        }

        @media (max-width: 576px) {
            .section-title h2 {
                font-size: 2rem;
            }
            
            .pricing-card.popular {
                transform: scale(1);
            }
            
            .pricing-card.popular:hover {
                transform: scale(1) translateY(-10px);
            }
            
            .copyright {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            
            .copyright-links a {
                margin: 0 10px;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
            
            .hero-logo {
                max-width: 140px;
            }
            
            .stat-item {
                width: 100%;
            }
        }