*{margin:0;padding:0;box-sizing:border-box}:root{--primary: #2563eb;--primary-dark: #1d4ed8;--secondary: #7c3aed;--dark: #0f172a;--darker: #020617;--light: #f8fafc;--gray: #64748b;--gray-light: #e2e8f0;--border: #334155;--success: #10b981}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Inter,sans-serif;background-color:var(--darker);color:var(--light);line-height:1.6}.app{min-height:100vh;display:flex;flex-direction:column}.header{background-color:#0f172af2;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);border-bottom:1px solid var(--border);padding:1rem 2rem;position:sticky;top:0;z-index:1000;display:flex;justify-content:space-between;align-items:center}.logo-container{display:flex;align-items:center;gap:1rem}.logo-image{height:50px;width:auto;filter:drop-shadow(0 0 10px rgba(37,99,235,.3))}.logo-text{font-size:1.8rem;font-weight:900;display:flex;align-items:center}.logo-cx{color:var(--primary)}.logo-pro{color:var(--success)}.logo-global{color:var(--light)}.nav-menu{display:flex;gap:2rem}.nav-menu a{color:var(--gray-light);text-decoration:none;font-weight:500;font-size:1.1rem;transition:color .3s ease;padding:.5rem 1rem;border-radius:8px}.nav-menu a:hover{color:var(--primary);background-color:#2563eb1a}.hero-section{padding:4rem 2rem;display:flex;align-items:center;justify-content:space-between;gap:4rem;max-width:1200px;margin:0 auto;min-height:80vh}.hero-left{flex:1}.hero-title{font-size:3.5rem;font-weight:900;line-height:1.2;margin-bottom:1.5rem;background:linear-gradient(45deg,var(--primary),var(--secondary));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.highlight{color:var(--primary);-webkit-text-fill-color:var(--primary)}.hero-subtitle{font-size:1.25rem;color:var(--gray);margin-bottom:2.5rem;max-width:600px}.hero-buttons{display:flex;gap:1rem;flex-wrap:wrap}.btn-primary,.btn-secondary{padding:1rem 2rem;font-size:1.1rem;font-weight:600;border:none;border-radius:8px;cursor:pointer;transition:all .3s ease;min-width:150px}.btn-primary{background:linear-gradient(45deg,var(--primary),var(--primary-dark));color:#fff}.btn-primary:hover{transform:translateY(-2px);box-shadow:0 10px 25px #2563eb66}.btn-secondary{background:transparent;color:var(--light);border:2px solid var(--border)}.btn-secondary:hover{border-color:var(--primary);background:#2563eb1a}.hero-right{flex:1;display:flex;justify-content:center;align-items:center}.hero-image{max-width:100%;height:auto;max-height:500px;filter:drop-shadow(0 0 30px rgba(37,99,235,.2));animation:float 6s ease-in-out infinite}@keyframes float{0%,to{transform:translateY(0)}50%{transform:translateY(-20px)}}.services-section{padding:5rem 2rem;background-color:#0f172a80}.section-title{text-align:center;font-size:2.5rem;margin-bottom:3rem;color:var(--light)}.services-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem;max-width:1200px;margin:0 auto}.service-card{background:#ffffff0d;border:1px solid var(--border);border-radius:15px;padding:2rem;transition:all .3s ease}.service-card:hover{transform:translateY(-10px);border-color:var(--primary);box-shadow:0 15px 35px #2563eb26}.service-icon{width:70px;height:70px;background:linear-gradient(45deg,var(--primary),var(--secondary));border-radius:50%;display:flex;align-items:center;justify-content:center;margin-bottom:1.5rem}.service-icon img{width:40px;height:40px;filter:brightness(0) invert(1)}.service-card h3{font-size:1.5rem;margin-bottom:1rem;color:var(--light)}.service-card p{color:var(--gray);line-height:1.6}.about-section{padding:5rem 2rem;max-width:1200px;margin:0 auto}.about-content{display:flex;align-items:center;gap:4rem}.about-image{flex:1;display:flex;justify-content:center}.about-logo{max-width:100%;height:auto;max-height:400px;filter:drop-shadow(0 0 20px rgba(37,99,235,.3))}.about-text{flex:1}.about-text h2{font-size:2.5rem;margin-bottom:1.5rem;color:var(--light)}.about-text p{color:var(--gray);font-size:1.1rem;margin-bottom:2rem;line-height:1.8}.stats{display:flex;gap:2rem;margin-top:2rem}.stat{text-align:center}.stat h3{font-size:2.5rem;color:var(--primary);margin-bottom:.5rem}.stat p{color:var(--gray);font-size:.9rem;text-transform:uppercase;letter-spacing:1px}.contact-section{padding:5rem 2rem;background-color:#0f172a80}.contact-content{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start}.contact-info{display:flex;flex-direction:column;gap:2rem}.contact-item{display:flex;align-items:center;gap:1rem;padding:1.5rem;background:#ffffff0d;border-radius:10px;border:1px solid var(--border);transition:all .3s ease}.contact-item:hover{border-color:var(--primary);transform:translate(10px)}.contact-icon{width:40px;height:40px;padding:.5rem;background:linear-gradient(45deg,var(--primary),var(--secondary));border-radius:50%;display:flex;align-items:center;justify-content:center}.contact-icon img{width:20px;height:20px;filter:brightness(0) invert(1)}.contact-item h4{color:var(--light);margin-bottom:.25rem}.contact-item p{color:var(--gray)}.contact-form{display:flex;flex-direction:column;gap:1.5rem}.contact-form input,.contact-form textarea{padding:1rem;background:#ffffff0d;border:1px solid var(--border);border-radius:8px;color:var(--light);font-size:1rem;transition:border-color .3s ease}.contact-form input:focus,.contact-form textarea:focus{outline:none;border-color:var(--primary)}.contact-form input::placeholder,.contact-form textarea::placeholder{color:var(--gray)}.contact-form textarea{resize:vertical;min-height:120px}.footer{margin-top:auto;background-color:var(--dark);border-top:1px solid var(--border);padding:3rem 2rem}.footer-content{max-width:1200px;margin:0 auto;text-align:center}.footer-logo{display:flex;justify-content:center;align-items:center;gap:1rem;margin-bottom:1.5rem;font-size:1.8rem;font-weight:900;color:var(--light)}.footer-logo-image{height:40px;width:auto;filter:brightness(0) invert(1) drop-shadow(0 0 10px rgba(37,99,235,.5))}.copyright{color:var(--gray);margin-bottom:.5rem}.tech-info{color:var(--gray);font-size:.9rem;opacity:.8}@media(max-width:1024px){.hero-section,.about-content{flex-direction:column;text-align:center}.contact-content{grid-template-columns:1fr}.hero-title{font-size:2.8rem}}@media(max-width:768px){.header{flex-direction:column;gap:1rem;padding:1rem}.nav-menu{gap:1rem}.hero-title{font-size:2.2rem}.hero-buttons{justify-content:center}.services-grid{grid-template-columns:1fr}.stats{flex-direction:column;gap:1.5rem}.section-title{font-size:2rem}}@media(max-width:480px){.hero-title{font-size:1.8rem}.hero-subtitle{font-size:1rem}.btn-primary,.btn-secondary{width:100%}.logo-text{font-size:1.4rem}}body{margin:0;min-height:100vh}#root{min-height:100vh}html{scroll-behavior:smooth}::selection{background-color:#4f46e54d;color:#fff}
