*{margin:0;padding:0;box-box:border-box}:root{--primary: #0EA5E9;--secondary: #22D3EE;--light: #F0F9FF;--dark: #0C4A6E;--text-dark: #0F172A;--text-light: #64748B;--white: #FFFFFF}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;line-height:1.6;color:var(--text-dark);background-color:var(--white);min-height:100vh;overflow-x:hidden}.header{background:linear-gradient(135deg,var(--primary) 0%,var(--secondary) 100%);padding:1.5rem 0;box-shadow:0 2px 8px #0000001a}.container{max-width:1200px;margin:0 auto;padding:0 2rem}.brand{color:var(--white);font-size:1.5rem;font-weight:700;text-align:center}.hero{position:relative;min-height:500px;background:linear-gradient(135deg,#0ea5e9f2,#22d3eef2),url(https://images.pexels.com/photos/267507/pexels-photo-267507.jpeg?auto=compress&cs=tinysrgb&w=1920) center/cover;display:flex;align-items:center;justify-content:center;text-align:center;padding:4rem 2rem;color:var(--white)}.hero-content h1{font-size:3rem;font-weight:800;margin-bottom:1rem;line-height:1.2}.hero-content p{font-size:1.25rem;max-width:700px;margin:0 auto 2rem;opacity:.95;line-height:1.5}.lead-section{padding:4rem 2rem;background-color:var(--light)}.lead-form{max-width:600px;margin:0 auto;background:var(--white);padding:3rem;border-radius:12px;box-shadow:0 4px 20px #00000014}.lead-form h2{color:var(--primary);font-size:2rem;margin-bottom:2rem;text-align:center}.form-group{margin-bottom:1.5rem}.form-group label{display:block;font-weight:600;margin-bottom:.5rem;color:var(--text-dark)}.form-group input,.form-group textarea,.form-group select{width:100%;padding:.875rem;border:2px solid #E2E8F0;border-radius:8px;font-size:1rem;font-family:inherit;transition:border-color .3s ease}.form-group input:focus,.form-group textarea:focus,.form-group select:focus{outline:none;border-color:var(--primary)}.form-group textarea{resize:vertical;min-height:100px}.submit-btn{width:100%;padding:1rem;background:linear-gradient(135deg,var(--primary) 0%,var(--secondary) 100%);color:var(--white);font-size:1.125rem;font-weight:600;border:none;border-radius:8px;cursor:pointer;transition:transform .2s ease,box-shadow .3s ease}.submit-btn:hover{transform:translateY(-2px);box-shadow:0 8px 20px #0ea5e966}.submit-btn:active{transform:translateY(0)}.footer{background-color:var(--dark);color:var(--white);padding:3rem 2rem;text-align:center}.footer-links{display:flex;flex-wrap:wrap;justify-content:center;gap:2rem;margin-bottom:2rem}.footer-links a{color:var(--secondary);text-decoration:none;font-weight:500;transition:color .3s ease}.footer-links a:hover{color:var(--white)}.footer-contact{margin-top:2rem;font-size:.875rem;opacity:.8}.modal-overlay{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background-color:#000000b3;z-index:1000;overflow-y:auto}.modal-overlay.active{display:flex;align-items:flex-start;justify-content:center;padding:2rem}.modal-content{background:var(--white);max-width:800px;width:100%;border-radius:12px;padding:3rem;position:relative;margin:2rem auto;max-height:calc(100vh - 4rem);overflow-y:auto}.modal-close{position:absolute;top:1.5rem;right:1.5rem;font-size:2rem;background:none;border:none;cursor:pointer;color:var(--text-light);line-height:1;width:32px;height:32px;display:flex;align-items:center;justify-content:center;border-radius:4px;transition:background-color .2s ease}.modal-close:hover{background-color:var(--light);color:var(--text-dark)}.modal-content h2{color:var(--primary);font-size:2rem;margin-bottom:1.5rem}.modal-content h3{color:var(--dark);font-size:1.5rem;margin-top:2rem;margin-bottom:1rem}.modal-content p,.modal-content ul{color:var(--text-dark);margin-bottom:1rem;line-height:1.8}.modal-content ul{padding-left:2rem}.modal-content li{margin-bottom:.5rem}.cookie-banner{position:fixed;bottom:0;left:0;right:0;background-color:var(--white);border-top:2px solid var(--primary);padding:1.5rem;box-shadow:0 -4px 20px #0000001a;z-index:999;display:none}.cookie-banner.active{display:block}.cookie-content{max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:2rem;flex-wrap:wrap}.cookie-text{flex:1;min-width:300px}.cookie-buttons{display:flex;gap:1rem}.cookie-btn{padding:.75rem 1.5rem;border:none;border-radius:8px;font-weight:600;cursor:pointer;transition:transform .2s ease}.cookie-btn.accept{background:linear-gradient(135deg,var(--primary) 0%,var(--secondary) 100%);color:var(--white)}.cookie-btn.decline{background-color:#e2e8f0;color:var(--text-dark)}.cookie-btn:hover{transform:translateY(-2px)}.success-popup{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background-color:#000c;z-index:2000;align-items:center;justify-content:center}.success-popup.active{display:flex}.success-content{background:var(--white);padding:3rem;border-radius:12px;text-align:center;max-width:500px;animation:slideUp .4s ease}@keyframes slideUp{0%{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}.checkmark{width:80px;height:80px;border-radius:50%;background:linear-gradient(135deg,var(--primary) 0%,var(--secondary) 100%);margin:0 auto 1.5rem;display:flex;align-items:center;justify-content:center;animation:scaleIn .5s ease .2s both}@keyframes scaleIn{0%{transform:scale(0)}to{transform:scale(1)}}.checkmark svg{width:50px;height:50px;stroke:var(--white);stroke-width:3;fill:none;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:100;stroke-dashoffset:100;animation:drawCheck .6s ease .5s forwards}@keyframes drawCheck{to{stroke-dashoffset:0}}.success-content h3{color:var(--primary);font-size:1.75rem;margin-bottom:1rem}.success-content p{color:var(--text-light);margin-bottom:.5rem}@media (max-width: 768px){.hero-content h1{font-size:2rem}.hero-content p{font-size:1rem}.lead-form,.modal-content{padding:2rem 1.5rem}.cookie-content{flex-direction:column;text-align:center}.cookie-buttons{width:100%;justify-content:center}.footer-links{flex-direction:column;gap:1rem}}
