@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap";
:root{--bg-dark:#090e1a;--bg-dark-card:#121b2e;--bg-light:#f8fafc;--bg-light-card:#fff;--text-dark-primary:#f8fafc;--text-dark-secondary:#94a3b8;--text-light-primary:#0f172a;--text-light-secondary:#475569;--accent-blue:#0ea5e9;--accent-blue-hover:#0284c7;--accent-teal:#14b8a6;--accent-teal-hover:#0d9488;--border-dark:#ffffff14;--border-light:#0f172a14;--font-sans:"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;--font-heading:"Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;--max-width:1280px;--header-height:80px}*{box-sizing:border-box;margin:0;padding:0}html,body{width:100%;font-family:var(--font-sans);color:var(--text-light-primary);background-color:var(--bg-light);-webkit-font-smoothing:antialiased;line-height:1.6;overflow-x:hidden}h1,h2,h3,h4,h5,h6{font-family:var(--font-heading);color:var(--text-light-primary);font-weight:700;line-height:1.25}a{color:inherit;text-decoration:none;transition:all .2s}.container{width:100%;max-width:var(--max-width);margin:0 auto;padding:0 2rem}@media (max-width:768px){.container{padding:0 1.25rem}}.section{padding:6rem 0}@media (max-width:768px){.section{padding:4rem 0}}.section-dark{background-color:var(--bg-dark);color:var(--text-dark-primary)}.section-dark h1,.section-dark h2,.section-dark h3,.section-dark h4{color:var(--text-dark-primary)}.section-light{background-color:var(--bg-light);color:var(--text-light-primary)}.text-center{text-align:center}.grid-2{grid-template-columns:repeat(2,1fr);gap:2.5rem;display:grid}.grid-3{grid-template-columns:repeat(3,1fr);gap:2rem;display:grid}.grid-4{grid-template-columns:repeat(4,1fr);gap:1.5rem;display:grid}@media (max-width:1024px){.grid-3,.grid-4{grid-template-columns:repeat(2,1fr)}}@media (max-width:768px){.grid-2,.grid-3,.grid-4{grid-template-columns:1fr;gap:1.75rem}}.flex-between{justify-content:space-between;align-items:center;display:flex}.flex-center{justify-content:center;align-items:center;display:flex}.btn{font-family:var(--font-heading);cursor:pointer;border:1px solid #0000;border-radius:6px;justify-content:center;align-items:center;padding:.85rem 1.75rem;font-size:1rem;font-weight:600;transition:all .25s cubic-bezier(.16,1,.3,1);display:inline-flex}.btn-primary{background-color:var(--accent-blue);color:#fff}.btn-primary:hover{background-color:var(--accent-blue-hover);transform:translateY(-2px);box-shadow:0 8px 20px #0ea5e940}.btn-secondary{color:var(--text-dark-primary);background-color:#ffffff0d;border-color:#ffffff26}.btn-secondary:hover{background-color:#ffffff1a;border-color:#ffffff4d;transform:translateY(-2px)}.btn-light{color:var(--text-light-primary);border-color:var(--text-light-primary);background-color:#0000}.btn-light:hover{background-color:#0f172a0d;transform:translateY(-2px)}.btn-teal{background-color:var(--accent-teal);color:#fff}.btn-teal:hover{background-color:var(--accent-teal-hover);transform:translateY(-2px);box-shadow:0 8px 20px #14b8a640}.badge{font-family:var(--font-heading);text-transform:uppercase;letter-spacing:.05em;border-radius:50px;margin-bottom:1rem;padding:.35rem .85rem;font-size:.75rem;font-weight:600;display:inline-block}.badge-blue{color:var(--accent-blue);background-color:#0ea5e91a;border:1px solid #0ea5e933}.badge-teal{color:var(--accent-teal);background-color:#14b8a61a;border:1px solid #14b8a633}.card{background-color:var(--bg-light-card);border:1px solid var(--border-light);border-radius:8px;padding:2.25rem;transition:all .3s cubic-bezier(.16,1,.3,1)}.card:hover{transform:translateY(-4px);box-shadow:0 15px 35px #0f172a0d}.card-dark{background-color:var(--bg-dark-card);border-color:var(--border-dark)}.card-dark:hover{border-color:#0ea5e966;box-shadow:0 15px 35px #0000004d}.glass-card{-webkit-backdrop-filter:blur(12px);background:#ffffff05;border:1px solid #ffffff0d;border-radius:12px;padding:2rem}.glass-card:hover{border-color:#ffffff1a}.section-title{letter-spacing:-.02em;margin-bottom:1rem;font-size:2.5rem;font-weight:800}.section-subtitle{color:var(--text-light-secondary);max-width:650px;margin:0 auto 3.5rem;font-size:1.125rem}.section-dark .section-subtitle{color:var(--text-dark-secondary)}@media (max-width:768px){.section-title{font-size:2rem}}.logo-track{width:3000px;animation:30s linear infinite scroll;display:flex}@keyframes scroll{0%{transform:translate(0)}to{transform:translate(-1500px)}}.logo-container{opacity:.6;filter:grayscale();justify-content:center;align-items:center;width:200px;height:60px;margin:0 25px;transition:all .3s;display:flex}.logo-container:hover{opacity:1;filter:grayscale(0%)}.form-group{text-align:left;margin-bottom:1.5rem}.form-label{font-family:var(--font-heading);color:inherit;margin-bottom:.5rem;font-size:.875rem;font-weight:600;display:block}.form-input,.form-textarea,.form-select{width:100%;font-family:var(--font-sans);background-color:var(--bg-light-card);border:1px solid var(--border-light);color:var(--text-light-primary);border-radius:6px;outline:none;padding:.85rem 1rem;font-size:.95rem;transition:all .2s}.form-input:focus,.form-textarea:focus,.form-select:focus{border-color:var(--accent-blue);box-shadow:0 0 0 3px #0ea5e926}.section-dark .form-input,.section-dark .form-textarea,.section-dark .form-select{color:var(--text-dark-primary);background-color:#ffffff08;border-color:#ffffff1a}.section-dark .form-input:focus,.section-dark .form-textarea:focus,.section-dark .form-select:focus{border-color:var(--accent-blue);box-shadow:0 0 0 3px #0ea5e933}.animate-fade-in{animation:.6s cubic-bezier(.16,1,.3,1) forwards fadeIn}@keyframes fadeIn{0%{opacity:0;transform:translateY(15px)}to{opacity:1;transform:translateY(0)}}
.Navbar-module__nuAbfa__navbar{-webkit-backdrop-filter:blur(12px);z-index:1000;background-color:#090e1ae6;border-bottom:1px solid #ffffff0d;width:100%;height:80px;transition:all .3s;position:fixed;top:0;left:0}.Navbar-module__nuAbfa__container{justify-content:space-between;align-items:center;max-width:1280px;height:100%;margin:0 auto;padding:0 2rem;display:flex}@media (max-width:768px){.Navbar-module__nuAbfa__container{padding:0 1.25rem}}.Navbar-module__nuAbfa__logo{color:#fff;letter-spacing:-.03em;align-items:center;font-family:Outfit,sans-serif;font-size:1.5rem;font-weight:800;display:flex}.Navbar-module__nuAbfa__logoAccent{color:#0ea5e9}.Navbar-module__nuAbfa__navLinks{align-items:center;gap:2rem;list-style:none;display:flex}.Navbar-module__nuAbfa__navItem a{color:#94a3b8;font-family:Outfit,sans-serif;font-size:.95rem;font-weight:500;transition:color .2s}.Navbar-module__nuAbfa__navItem a:hover{color:#fff}.Navbar-module__nuAbfa__activeLink a{color:#0ea5e9}.Navbar-module__nuAbfa__rightGroup{align-items:center;gap:1.5rem;display:flex}.Navbar-module__nuAbfa__phoneLink{color:#fff;align-items:center;gap:.5rem;font-family:Outfit,sans-serif;font-size:.95rem;font-weight:600;text-decoration:none;display:flex}.Navbar-module__nuAbfa__phoneIcon{color:#0ea5e9;fill:currentColor;width:16px;height:16px}.Navbar-module__nuAbfa__ctaBtn{color:#fff;cursor:pointer;background-color:#0ea5e9;border:none;border-radius:6px;padding:.6rem 1.2rem;font-family:Outfit,sans-serif;font-size:.9rem;font-weight:600;transition:all .2s}.Navbar-module__nuAbfa__ctaBtn:hover{background-color:#0284c7;transform:translateY(-1px);box-shadow:0 4px 12px #0ea5e933}.Navbar-module__nuAbfa__mobileToggle{cursor:pointer;z-index:1001;background:0 0;border:none;padding:.5rem;display:none}.Navbar-module__nuAbfa__hamburgerLine{background-color:#fff;width:24px;height:2px;margin:5px 0;transition:all .3s;display:block}@media (max-width:1024px){.Navbar-module__nuAbfa__navLinks{z-index:999;background-color:#090e1a;border-bottom:1px solid #ffffff0d;flex-direction:column;justify-content:center;align-items:center;gap:2.5rem;width:100%;height:calc(100vh - 80px);transition:transform .4s cubic-bezier(.16,1,.3,1);position:fixed;top:80px;left:0;transform:translateY(-120%)}.Navbar-module__nuAbfa__navLinksActive{transform:translateY(0)}.Navbar-module__nuAbfa__navItem a{font-size:1.25rem}.Navbar-module__nuAbfa__rightGroup{display:none}.Navbar-module__nuAbfa__rightGroupActive{flex-direction:column;align-items:center;gap:1.5rem;margin-top:1rem;display:flex}.Navbar-module__nuAbfa__mobileToggle{display:block}.Navbar-module__nuAbfa__toggleActive .Navbar-module__nuAbfa__hamburgerLine:first-child{transform:translateY(7px)rotate(45deg)}.Navbar-module__nuAbfa__toggleActive .Navbar-module__nuAbfa__hamburgerLine:nth-child(2){opacity:0}.Navbar-module__nuAbfa__toggleActive .Navbar-module__nuAbfa__hamburgerLine:nth-child(3){transform:translateY(-7px)rotate(-45deg)}}
.Footer-module__EZoWya__footer{color:#94a3b8;background-color:#050810;border-top:1px solid #ffffff0d;padding:5rem 0 2rem;font-family:Inter,sans-serif}.Footer-module__EZoWya__grid{grid-template-columns:2fr 1fr 1fr 1.5fr;gap:3rem;margin-bottom:4rem;display:grid}@media (max-width:1024px){.Footer-module__EZoWya__grid{grid-template-columns:1.5fr 1fr 1fr;gap:2.5rem}.Footer-module__EZoWya__newsletterCol{grid-column:span 3;max-width:500px}}@media (max-width:768px){.Footer-module__EZoWya__grid{grid-template-columns:1fr;gap:2rem}.Footer-module__EZoWya__newsletterCol{grid-column:span 1}}.Footer-module__EZoWya__brandCol{flex-direction:column;gap:1.25rem;display:flex}.Footer-module__EZoWya__logo{color:#fff;letter-spacing:-.03em;font-family:Outfit,sans-serif;font-size:1.75rem;font-weight:800}.Footer-module__EZoWya__logoAccent{color:#0ea5e9}.Footer-module__EZoWya__brandText{font-size:.95rem;line-height:1.6}.Footer-module__EZoWya__phone{color:#fff;align-items:center;gap:.5rem;font-family:Outfit,sans-serif;font-size:1.1rem;font-weight:700;text-decoration:none;display:flex}.Footer-module__EZoWya__phoneIcon{color:#0ea5e9;fill:currentColor;width:18px;height:18px}.Footer-module__EZoWya__email{color:#94a3b8;font-size:.95rem}.Footer-module__EZoWya__email:hover{color:#fff}.Footer-module__EZoWya__colTitle{color:#fff;text-transform:uppercase;letter-spacing:.05em;margin-bottom:1.5rem;font-family:Outfit,sans-serif;font-size:1rem;font-weight:700}.Footer-module__EZoWya__linksList{flex-direction:column;gap:.85rem;list-style:none;display:flex}.Footer-module__EZoWya__linkItem a{color:#94a3b8;font-size:.95rem}.Footer-module__EZoWya__linkItem a:hover{color:#fff;padding-left:4px}.Footer-module__EZoWya__newsletterCol{flex-direction:column;gap:1rem;display:flex}.Footer-module__EZoWya__newsletterForm{gap:.5rem;margin-top:.5rem;display:flex}.Footer-module__EZoWya__newsletterInput{color:#fff;background-color:#ffffff08;border:1px solid #ffffff1a;border-radius:6px;outline:none;flex:1;padding:.75rem 1rem;font-family:Inter,sans-serif;font-size:.9rem}.Footer-module__EZoWya__newsletterInput:focus{border-color:#0ea5e9}.Footer-module__EZoWya__newsletterBtn{color:#fff;cursor:pointer;background-color:#0ea5e9;border:none;border-radius:6px;padding:.75rem 1.25rem;font-family:Outfit,sans-serif;font-size:.9rem;font-weight:600;transition:all .2s}.Footer-module__EZoWya__newsletterBtn:hover{background-color:#0284c7}.Footer-module__EZoWya__badgeGroup{flex-wrap:wrap;gap:1rem;margin-top:1.5rem;display:flex}.Footer-module__EZoWya__badge{color:#cbd5e1;text-transform:uppercase;letter-spacing:.05em;background-color:#ffffff08;border:1px solid #ffffff0f;border-radius:4px;align-items:center;gap:.35rem;padding:.5rem .75rem;font-family:Outfit,sans-serif;font-size:.75rem;font-weight:600;display:flex}.Footer-module__EZoWya__badgeDot{background-color:#14b8a6;border-radius:50%;width:6px;height:6px}.Footer-module__EZoWya__bottomBar{border-top:1px solid #ffffff0d;justify-content:space-between;align-items:center;padding-top:2rem;font-size:.85rem;display:flex}@media (max-width:768px){.Footer-module__EZoWya__bottomBar{text-align:center;flex-direction:column;gap:1rem}}.Footer-module__EZoWya__legalLinks{gap:1.5rem;display:flex}.Footer-module__EZoWya__legalLinks a:hover{color:#fff}.Footer-module__EZoWya__subscribedMsg{color:#14b8a6;font-size:.9rem;font-weight:500}
.CookieBanner-module___9etpq__banner{z-index:2000;color:#cbd5e1;background-color:#121b2e;border:1px solid #ffffff14;border-radius:8px;flex-direction:column;gap:1rem;max-width:500px;padding:1.5rem;font-family:Inter,sans-serif;animation:.5s cubic-bezier(.16,1,.3,1) forwards CookieBanner-module___9etpq__slideUp;display:flex;position:fixed;bottom:2rem;left:2rem;right:2rem;box-shadow:0 20px 40px #0006}@media (max-width:640px){.CookieBanner-module___9etpq__banner{bottom:1rem;left:1rem;right:1rem}}@keyframes CookieBanner-module___9etpq__slideUp{0%{opacity:0;transform:translateY(100px)}to{opacity:1;transform:translateY(0)}}.CookieBanner-module___9etpq__text{font-size:.85rem;line-height:1.5}.CookieBanner-module___9etpq__link{color:#0ea5e9;text-decoration:underline}.CookieBanner-module___9etpq__btnGroup{justify-content:flex-end;gap:.75rem;display:flex}.CookieBanner-module___9etpq__btnAccept{color:#fff;cursor:pointer;background-color:#0ea5e9;border:none;border-radius:4px;padding:.5rem 1rem;font-family:Outfit,sans-serif;font-size:.85rem;font-weight:600;transition:background-color .2s}.CookieBanner-module___9etpq__btnAccept:hover{background-color:#0284c7}.CookieBanner-module___9etpq__btnDecline{color:#94a3b8;cursor:pointer;background-color:#0000;border:1px solid #ffffff1a;border-radius:4px;padding:.5rem 1rem;font-family:Outfit,sans-serif;font-size:.85rem;font-weight:500;transition:all .2s}.CookieBanner-module___9etpq__btnDecline:hover{color:#fff;background-color:#ffffff0d}
