.header{position:fixed;top:0;left:0;right:0;background-color:#0a0a0acc;-webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);border-bottom:1px solid var(--border-color);z-index:1000;padding:.25rem 0;transition:all .3s ease}.header.scrolled{background-color:#0a0a0af2;padding:.2rem 0;box-shadow:0 4px 20px #00000080}.nav{max-width:1400px;margin:0 auto;padding:0 2rem 0 1.5rem;display:flex;justify-content:space-between;align-items:center}.nav-brand{cursor:pointer;transition:transform .3s ease;margin-right:auto;flex-shrink:0}.nav-brand:hover{transform:scale(1.05)}.header-logo{max-width:280px;height:auto;display:block}.nav-links{display:flex;list-style:none;gap:2.5rem;align-items:center}.nav-links button{background:none;border:none;color:#fff;font-size:.95rem;font-weight:500;cursor:pointer;padding:.5rem 0;transition:all .3s ease;font-family:inherit;position:relative;text-transform:uppercase;letter-spacing:.5px}.nav-links button:after{content:"";position:absolute;bottom:0;left:0;width:0;height:2px;background:#fff;transition:width .3s ease}.nav-links button:hover{color:#fff}.nav-links button:hover:after{width:100%}@media (max-width: 768px){.nav{padding:0 1rem;flex-direction:row;gap:1rem;justify-content:space-between}.nav-brand{margin-right:auto;flex-shrink:0}.nav-links{gap:1rem;flex-wrap:wrap;justify-content:flex-end}.nav-links button{font-size:.8rem}.header-logo{max-width:200px;height:auto}}@media (max-width: 480px){.nav{padding:0 .75rem}.header-logo{max-width:160px;height:auto}.nav-links{gap:.75rem}.nav-links button{font-size:.75rem}}.hero{min-height:100vh;display:flex;align-items:center;justify-content:center;padding:70px 2rem 4rem;position:relative;z-index:1;background:linear-gradient(180deg,var(--bg-primary) 0%,var(--bg-secondary) 100%)}.hero-content{max-width:1000px;text-align:center;display:flex;flex-direction:column;align-items:center;gap:2.5rem;position:relative}.hero-title{font-size:3rem;font-weight:700;color:#fff;margin:0;letter-spacing:-.5px}.hero-subtitle{font-size:1.5rem;color:#fff;font-weight:400;margin:0;letter-spacing:.5px}.hero-description{font-size:1.15rem;color:#fff;line-height:1.8;max-width:700px;margin:0}.hero-title,.hero-subtitle,.hero-description{transition:opacity .8s ease-out,transform .8s ease-out}@media (max-width: 768px){.hero{padding:100px 1.5rem 3rem}.hero-title{font-size:2rem}.hero-subtitle{font-size:1.2rem}.hero-description{font-size:1rem}}.services{padding:8rem 2rem;background-color:var(--bg-secondary);position:relative;z-index:1}.services-container{max-width:1400px;margin:0 auto}.section-subtitle{font-size:1.2rem;text-align:center;color:#fff;margin-bottom:5rem;max-width:600px;margin-left:auto;margin-right:auto}.services-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem;margin-top:4rem}.service-card{background:linear-gradient(135deg,var(--bg-card) 0%,var(--bg-tertiary) 100%);padding:3rem 2.5rem;border-radius:16px;text-align:center;transition:all .4s ease;border:1px solid var(--border-color);position:relative;overflow:hidden}.service-card:before{content:"";position:absolute;top:0;left:0;right:0;height:3px;background:#fff;transform:scaleX(0);transition:transform .4s ease}.service-card:hover{transform:translateY(-10px);box-shadow:0 20px 40px #0006;border-color:#fff}.service-card:hover:before{transform:scaleX(1)}.service-icon{margin-bottom:2rem;color:#fff;display:flex;justify-content:center;transition:all .3s ease}.service-card:hover .service-icon{color:#fff;transform:scale(1.1)}.service-title{font-size:1.5rem;font-weight:600;color:#fff;margin-bottom:1rem}.service-description{font-size:1rem;color:#fff;line-height:1.7}.section-title,.section-subtitle{transition:opacity .8s ease-out,transform .8s ease-out}.service-card{opacity:0;transform:translateY(30px)}.service-card.animate-in{animation:fadeInUp .8s ease-out forwards}@media (max-width: 768px){.services{padding:5rem 1.5rem}.section-title{font-size:2.2rem}.section-subtitle{font-size:1rem;margin-bottom:3rem}.services-grid{grid-template-columns:1fr;gap:1.5rem}.service-card{padding:2.5rem 2rem}}.about{padding:8rem 2rem;background-color:var(--bg-primary);position:relative;z-index:1}.about-container{max-width:1000px;margin:0 auto}.about-content{margin-top:4rem}.about-text{display:flex;flex-direction:column;gap:2.5rem}.about-paragraph{font-size:1.15rem;color:#fff;line-height:1.9;text-align:center}.section-title,.about-content{transition:opacity .8s ease-out,transform .8s ease-out}.about-content:not(.animate-in){opacity:0;transform:translateY(30px)}@media (max-width: 768px){.about{padding:5rem 1.5rem}.section-title{font-size:2.2rem}.about-paragraph{font-size:1rem;text-align:left}}.contact{padding:8rem 2rem;background-color:var(--bg-secondary);position:relative;z-index:1}.contact-container{max-width:800px;margin:0 auto}.section-title{font-size:3rem;font-weight:700;text-align:center;color:#fff;margin-bottom:1rem}.section-subtitle{font-size:1.2rem;text-align:center;color:#fff;margin-bottom:4rem;max-width:600px;margin-left:auto;margin-right:auto}.contact-form{margin-top:3rem;display:flex;flex-direction:column;gap:2rem}.form-group{display:flex;flex-direction:column;gap:.75rem}.form-group label{font-size:1rem;font-weight:500;color:#fff;text-transform:uppercase;letter-spacing:1px;font-size:.85rem}.form-group input,.form-group textarea{padding:1rem 1.25rem;border:1px solid var(--border-color);border-radius:8px;font-size:1rem;font-family:inherit;transition:all .3s ease;background-color:var(--bg-card);color:#fff}.form-group input:focus,.form-group textarea:focus{outline:none;border-color:#fff;box-shadow:0 0 0 3px #ffffff4d}.form-group textarea{resize:vertical;min-height:150px}.submit-button{padding:1.25rem 3rem;background:#fff;color:#000;border:none;border-radius:8px;font-size:1rem;font-weight:600;cursor:pointer;transition:all .3s ease;align-self:flex-start;font-family:inherit;text-transform:uppercase;letter-spacing:1px}.submit-button:hover{transform:translateY(-2px);background:#f0f0f0}.submit-button:active{transform:translateY(0)}.section-title,.section-subtitle,.contact-form{transition:opacity .8s ease-out,transform .8s ease-out}.contact-form:not(.animate-in){opacity:0;transform:translateY(30px)}@media (max-width: 768px){.contact{padding:5rem 1.5rem}.section-title{font-size:2.2rem}.submit-button{align-self:stretch}}.footer{background-color:var(--bg-primary);color:var(--text-primary);padding:4rem 2rem 2rem;text-align:center;position:relative;z-index:1;border-top:1px solid var(--border-color)}.footer-container{max-width:1400px;margin:0 auto;display:flex;flex-direction:column;gap:1.5rem}.footer-text{font-size:.9rem;color:#fff;margin:0}.footer-tagline{font-size:.85rem;color:#fff;margin:0;text-transform:uppercase;letter-spacing:2px}@media (max-width: 768px){.footer{padding:3rem 1.5rem 1.5rem}}.App{min-height:100vh;background-color:var(--bg-primary);position:relative}.App:before{content:"";position:fixed;top:0;left:0;right:0;bottom:0;background:radial-gradient(circle at 20% 50%,rgba(59,130,246,.1) 0%,transparent 50%),radial-gradient(circle at 80% 80%,rgba(16,185,129,.1) 0%,transparent 50%);pointer-events:none;z-index:0}*{margin:0;padding:0;box-sizing:border-box}:root{--bg-primary: #0a0a0a;--bg-secondary: #111111;--bg-tertiary: #1a1a1a;--bg-card: #151515;--text-primary: #ffffff;--text-secondary: #b0b0b0;--text-tertiary: #707070;--accent-blue: #3b82f6;--accent-green: #10b981;--accent-purple: #8b5cf6;--border-color: #252525;--shadow: rgba(0, 0, 0, .5);--glow-blue: rgba(59, 130, 246, .3);--glow-green: rgba(16, 185, 129, .3)}body{font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:var(--text-primary);background-color:var(--bg-primary);line-height:1.6;overflow-x:hidden}html{scroll-behavior:smooth}::selection{background-color:var(--accent-blue);color:#fff}.animate-in{animation:fadeInUp .8s ease-out forwards}@keyframes fadeInUp{0%{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}.hero-title:not(.animate-in),.hero-subtitle:not(.animate-in),.hero-description:not(.animate-in),.section-title:not(.animate-in),.section-subtitle:not(.animate-in),.about-content:not(.animate-in),.contact-form:not(.animate-in){opacity:0;transform:translateY(30px)}
