@import "https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap";
:root{--primary:#1a1a5e;--primary-light:#2d2d8a;--primary-dark:#0f0f3d;--accent:#f0a500;--accent-light:#ffc940;--accent-dark:#c88600;--teal:#00b4d8;--teal-light:#48cae4;--teal-dark:#0096b7;--success:#2ecc71;--warning:#f39c12;--danger:#e74c3c;--white:#fff;--gray-50:#f8f9fa;--gray-100:#f1f3f5;--gray-200:#e9ecef;--gray-300:#dee2e6;--gray-400:#ced4da;--gray-500:#adb5bd;--gray-600:#868e96;--gray-700:#495057;--gray-800:#343a40;--gray-900:#212529;--black:#0a0a0a;--font-heading:"Outfit", sans-serif;--font-body:"Inter", sans-serif;--fs-xs:.75rem;--fs-sm:.875rem;--fs-base:1rem;--fs-md:1.125rem;--fs-lg:1.25rem;--fs-xl:1.5rem;--fs-2xl:2rem;--fs-3xl:2.5rem;--fs-4xl:3rem;--fs-5xl:3.75rem;--space-xs:.25rem;--space-sm:.5rem;--space-md:1rem;--space-lg:1.5rem;--space-xl:2rem;--space-2xl:3rem;--space-3xl:4rem;--space-4xl:6rem;--radius-sm:.375rem;--radius-md:.75rem;--radius-lg:1rem;--radius-xl:1.5rem;--radius-full:9999px;--shadow-sm:0 1px 3px #00000014;--shadow-md:0 4px 12px #0000001a;--shadow-lg:0 8px 30px #0000001f;--shadow-xl:0 20px 60px #00000026;--shadow-glow:0 0 30px #f0a5004d;--glass-bg:#ffffff14;--glass-border:#ffffff26;--glass-bg-light:#ffffffd9;--glass-border-light:#ffffff80;--transition-fast:.15s ease;--transition-base:.25s ease;--transition-slow:.4s ease;--transition-spring:.5s cubic-bezier(.34, 1.56, .64, 1)}*,:before,:after{box-sizing:border-box;margin:0;padding:0}html{scroll-behavior:smooth;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body{font-family:var(--font-body);font-size:var(--fs-base);color:var(--gray-800);background:var(--white);line-height:1.7;overflow-x:hidden}h1,h2,h3,h4,h5,h6{font-family:var(--font-heading);color:var(--primary);font-weight:700;line-height:1.2}h1{font-size:var(--fs-4xl)}h2{font-size:var(--fs-3xl)}h3{font-size:var(--fs-2xl)}h4{font-size:var(--fs-xl)}a{color:inherit;transition:color var(--transition-fast);text-decoration:none}img,video{max-width:100%;display:block}button,input,textarea,select{font-family:var(--font-body);font-size:var(--fs-base);border:none;outline:none}ul,ol{list-style:none}.container{max-width:1200px;padding:0 var(--space-xl);margin:0 auto}.section{padding:var(--space-4xl) 0}.section-title{text-align:center;margin-bottom:var(--space-md);position:relative}.section-subtitle{text-align:center;color:var(--gray-600);font-size:var(--fs-md);margin-bottom:var(--space-3xl);max-width:600px;margin-left:auto;margin-right:auto}.btn{justify-content:center;align-items:center;gap:var(--space-sm);border-radius:var(--radius-full);font-weight:600;font-size:var(--fs-base);cursor:pointer;transition:all var(--transition-base);border:2px solid #0000;padding:.75rem 1.75rem;text-decoration:none;display:inline-flex}.btn-primary{background:linear-gradient(135deg, var(--accent), var(--accent-dark));color:var(--white);box-shadow:0 4px 15px #f0a5004d}.btn-primary:hover{transform:translateY(-2px);box-shadow:0 6px 25px #f0a50066}.btn-secondary{color:var(--white);border-color:var(--white);background:0 0}.btn-secondary:hover{background:var(--white);color:var(--primary);transform:translateY(-2px)}.btn-outline{color:var(--primary);border-color:var(--primary);background:0 0}.btn-outline:hover{background:var(--primary);color:var(--white);transform:translateY(-2px)}.btn-danger{background:var(--danger);color:var(--white)}.btn-danger:hover{background:#c0392b;transform:translateY(-2px)}.btn-sm{font-size:var(--fs-sm);padding:.5rem 1.25rem}.badge{border-radius:var(--radius-full);font-size:var(--fs-xs);text-transform:uppercase;letter-spacing:.05em;padding:.25rem .75rem;font-weight:600;display:inline-block}.badge-accent{color:var(--accent-dark);background:#f0a50026}.badge-teal{color:var(--teal-dark);background:#00b4d826}.card{background:var(--white);border-radius:var(--radius-lg);box-shadow:var(--shadow-md);transition:all var(--transition-base);overflow:hidden}.card:hover{box-shadow:var(--shadow-lg);transform:translateY(-4px)}.glass{background:var(--glass-bg-light);-webkit-backdrop-filter:blur(20px);border:1px solid var(--glass-border-light);border-radius:var(--radius-lg)}.gradient-primary{background:linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--teal-dark) 100%)}.gradient-accent{background:linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%)}@keyframes fadeInUp{0%{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes slideInLeft{0%{opacity:0;transform:translate(-30px)}to{opacity:1;transform:translate(0)}}@keyframes slideInRight{0%{opacity:0;transform:translate(30px)}to{opacity:1;transform:translate(0)}}@keyframes pulse{0%,to{transform:scale(1)}50%{transform:scale(1.05)}}@keyframes float{0%,to{transform:translateY(0)}50%{transform:translateY(-10px)}}@keyframes shimmer{0%{background-position:-200% 0}to{background-position:200% 0}}@keyframes spin{to{transform:rotate(360deg)}}.animate-fade-in-up{animation:.6s forwards fadeInUp}.animate-fade-in{animation:.6s forwards fadeIn}.animate-slide-left{animation:.6s forwards slideInLeft}.animate-slide-right{animation:.6s forwards slideInRight}.animate-float{animation:3s ease-in-out infinite float}.delay-1{animation-delay:.1s}.delay-2{animation-delay:.2s}.delay-3{animation-delay:.3s}.delay-4{animation-delay:.4s}.delay-5{animation-delay:.5s}.form-group{margin-bottom:var(--space-lg)}.form-label{margin-bottom:var(--space-sm);color:var(--gray-700);font-weight:600;font-size:var(--fs-sm);display:block}.form-input{border:2px solid var(--gray-200);border-radius:var(--radius-md);width:100%;font-size:var(--fs-base);transition:all var(--transition-fast);background:var(--white);padding:.75rem 1rem}.form-input:focus{border-color:var(--teal);box-shadow:0 0 0 3px #00b4d826}.form-textarea{resize:vertical;min-height:120px}@media (max-width:768px){h1{font-size:var(--fs-3xl)}h2{font-size:var(--fs-2xl)}h3{font-size:var(--fs-xl)}.container{padding:0 var(--space-md)}.section{padding:var(--space-3xl) 0}}@media (max-width:480px){h1{font-size:var(--fs-2xl)}h2{font-size:var(--fs-xl)}.section{padding:var(--space-2xl) 0}}::-webkit-scrollbar{width:8px}::-webkit-scrollbar-track{background:var(--gray-100)}::-webkit-scrollbar-thumb{background:var(--primary-light);border-radius:var(--radius-full)}::-webkit-scrollbar-thumb:hover{background:var(--primary)}
.Navbar-module__TcZsTG__navbar{z-index:1000;width:100%;transition:all var(--transition-base);background:0 0;padding:1rem 0;position:fixed;top:0;left:0}.Navbar-module__TcZsTG__navbar.Navbar-module__TcZsTG__scrolled{-webkit-backdrop-filter:blur(20px);background:#1a1a5ef2;padding:.6rem 0;box-shadow:0 4px 30px #0003}.Navbar-module__TcZsTG__container{justify-content:space-between;align-items:center;max-width:1200px;margin:0 auto;padding:0 2rem;display:flex}.Navbar-module__TcZsTG__logo{align-items:center;gap:.75rem;text-decoration:none;display:flex}.Navbar-module__TcZsTG__logoIcon{filter:drop-shadow(0 2px 4px #0003);font-size:2rem}.Navbar-module__TcZsTG__logoText{flex-direction:column;display:flex}.Navbar-module__TcZsTG__logoName{font-family:var(--font-heading);color:var(--accent);letter-spacing:.05em;font-size:1.2rem;font-weight:800;line-height:1.2}.Navbar-module__TcZsTG__logoSub{color:#ffffffb3;letter-spacing:.15em;text-transform:uppercase;font-size:.7rem}.Navbar-module__TcZsTG__navLinks{align-items:center;gap:.25rem;list-style:none;display:flex}.Navbar-module__TcZsTG__navLink{border-radius:var(--radius-full);color:#ffffffd9;transition:all var(--transition-fast);padding:.5rem 1rem;font-size:.95rem;font-weight:500;text-decoration:none}.Navbar-module__TcZsTG__navLink:hover{color:var(--white);background:#ffffff1a}.Navbar-module__TcZsTG__navLink.Navbar-module__TcZsTG__active{color:var(--accent);background:#f0a50026}.Navbar-module__TcZsTG__hamburger{cursor:pointer;z-index:1001;background:0 0;border:none;flex-direction:column;gap:5px;padding:8px;display:none}.Navbar-module__TcZsTG__hamburger span{background:var(--white);width:24px;height:2.5px;transition:all var(--transition-base);border-radius:2px;display:block}.Navbar-module__TcZsTG__hamburger.Navbar-module__TcZsTG__active span:first-child{transform:translateY(7.5px)rotate(45deg)}.Navbar-module__TcZsTG__hamburger.Navbar-module__TcZsTG__active span:nth-child(2){opacity:0}.Navbar-module__TcZsTG__hamburger.Navbar-module__TcZsTG__active span:nth-child(3){transform:translateY(-7.5px)rotate(-45deg)}@media (max-width:768px){.Navbar-module__TcZsTG__hamburger{display:flex}.Navbar-module__TcZsTG__navLinks{background:linear-gradient(180deg, var(--primary-dark), var(--primary));width:280px;height:100vh;transition:right var(--transition-base);flex-direction:column;gap:.5rem;padding:5rem 2rem 2rem;position:fixed;top:0;right:-100%;box-shadow:-10px 0 30px #0000004d}.Navbar-module__TcZsTG__navLinks.Navbar-module__TcZsTG__open{right:0}.Navbar-module__TcZsTG__navLink{width:100%;padding:.75rem 1rem;font-size:1.1rem}}
.Footer-module__lQLTWW__footer{color:var(--white);position:relative}.Footer-module__lQLTWW__wave{color:var(--primary-dark);margin-bottom:-1px;line-height:0}.Footer-module__lQLTWW__wave svg{width:100%;height:80px}.Footer-module__lQLTWW__content{background:var(--primary-dark);padding:3rem 0 0}.Footer-module__lQLTWW__container{max-width:1200px;margin:0 auto;padding:0 2rem}.Footer-module__lQLTWW__grid{border-bottom:1px solid #ffffff1a;grid-template-columns:1.5fr 1fr 1fr 1.2fr;gap:3rem;padding-bottom:3rem;display:grid}.Footer-module__lQLTWW__logoWrap{align-items:center;gap:.75rem;margin-bottom:1rem;display:flex}.Footer-module__lQLTWW__logoIcon{font-size:2rem}.Footer-module__lQLTWW__logoName{font-family:var(--font-heading);color:var(--accent);font-size:1.1rem;font-weight:800;line-height:1.3}.Footer-module__lQLTWW__logoSub{color:#fff9;text-transform:uppercase;letter-spacing:.1em;font-size:.7rem}.Footer-module__lQLTWW__brandDesc{color:#ffffffa6;font-size:.9rem;line-height:1.6}.Footer-module__lQLTWW__columnTitle{font-family:var(--font-heading);color:var(--accent);text-transform:uppercase;letter-spacing:.05em;margin-bottom:1.25rem;font-size:1rem;font-weight:700}.Footer-module__lQLTWW__linkList{list-style:none}.Footer-module__lQLTWW__linkList li{margin-bottom:.6rem}.Footer-module__lQLTWW__linkList a{color:#ffffffb3;transition:all var(--transition-fast);font-size:.9rem;text-decoration:none}.Footer-module__lQLTWW__linkList a:hover{color:var(--accent);padding-left:4px}.Footer-module__lQLTWW__contactList{list-style:none}.Footer-module__lQLTWW__contactList li{color:#ffffffb3;align-items:flex-start;gap:.75rem;margin-bottom:1rem;font-size:.9rem;display:flex}.Footer-module__lQLTWW__contactList a{color:#ffffffb3;transition:color var(--transition-fast);text-decoration:none}.Footer-module__lQLTWW__contactList a:hover{color:var(--accent)}.Footer-module__lQLTWW__contactIcon{flex-shrink:0;margin-top:2px;font-size:1.1rem}.Footer-module__lQLTWW__bottom{color:#ffffff80;justify-content:space-between;align-items:center;padding:1.5rem 0;font-size:.85rem;display:flex}.Footer-module__lQLTWW__socials{gap:.75rem;display:flex}.Footer-module__lQLTWW__socialLink{color:#ffffffb3;width:38px;height:38px;transition:all var(--transition-base);background:#ffffff1a;border-radius:50%;justify-content:center;align-items:center;display:flex}.Footer-module__lQLTWW__socialLink:hover{background:var(--accent);color:var(--white);transform:translateY(-3px)}@media (max-width:768px){.Footer-module__lQLTWW__grid{grid-template-columns:1fr 1fr;gap:2rem}.Footer-module__lQLTWW__bottom{text-align:center;flex-direction:column;gap:1rem}}@media (max-width:480px){.Footer-module__lQLTWW__grid{grid-template-columns:1fr}}
