:root{--blue-100: #00aef3;--blue-200: #0181c9;--blue-300: #2a579c;--blue-400: #063e67;--blue-500: #00263c;--green-100: #aad357;--green-200: #48b95e;--green-300: #088a46;--red-100: #f15257;--red-200: #ec1941;--red-300: #c01e2e;--orange-100: #fdb132;--orange-200: #f6a125;--orange-300: #f78234;--grey-100: #f2f1f3;--grey-200: #e1e1e1;--grey-300: #cccccc;--grey-400: #888888;--white: #ffffff;--black: #000000;--primary: var(--blue-400);--primary-dark: var(--blue-500);--primary-light: var(--blue-300);--accent: var(--blue-100);--font-family: "Roboto", "Helvetica", "Arial", sans-serif}*{margin:0;padding:0;box-sizing:border-box}html{scroll-behavior:smooth}body{font-family:var(--font-family);line-height:1.6;color:var(--blue-500);background-color:var(--white)}a{color:var(--blue-200);text-decoration:none;transition:color .2s ease}a:hover{color:var(--blue-100)}img{max-width:100%;height:auto}.container{max-width:1200px;margin:0 auto;padding:0 1.5rem}.header{background:var(--primary-dark);color:var(--white);padding:1rem 0;position:sticky;top:0;z-index:100;box-shadow:0 2px 10px #0003}.header-content{display:flex;justify-content:space-between;align-items:center}.logo{display:flex;align-items:center;gap:.75rem}.logo img{height:48px;width:48px;border-radius:8px}.logo span{font-size:1.5rem;font-weight:700;color:var(--white)}.nav{display:flex;gap:2rem;align-items:center}.nav a{color:var(--white);font-weight:500;opacity:.9}.nav a:hover{opacity:1;color:var(--accent)}.language-switch{display:flex;gap:.5rem;margin-left:1rem;padding-left:1rem;border-left:1px solid rgba(255,255,255,.3)}.language-switch button{background:none;border:none;color:var(--white);cursor:pointer;padding:.25rem .5rem;border-radius:4px;font-size:.875rem;opacity:.7;transition:all .2s ease}.language-switch button:hover{opacity:1;background:#ffffff1a}.language-switch button.active{opacity:1;background:var(--blue-300)}.mobile-menu-button{display:none;background:none;border:none;color:var(--white);font-size:1.5rem;cursor:pointer}@media(max-width:768px){.nav{display:none;position:absolute;top:100%;left:0;right:0;background:var(--primary-dark);flex-direction:column;padding:1rem;gap:1rem}.nav.open{display:flex}.language-switch{border-left:none;padding-left:0;margin-left:0;border-top:1px solid rgba(255,255,255,.3);padding-top:1rem;margin-top:.5rem;justify-content:center}.mobile-menu-button{display:block}}.hero{background:linear-gradient(135deg,var(--primary-dark) 0%,var(--primary) 100%);color:var(--white);padding:6rem 0;text-align:center}.hero h1{font-size:3.5rem;margin-bottom:.5rem;font-weight:700}.hero .subtitle{font-size:1.75rem;opacity:.9;margin-bottom:1.5rem}.hero p{font-size:1.25rem;max-width:600px;margin:0 auto;opacity:.85}@media(max-width:768px){.hero{padding:4rem 0}.hero h1{font-size:2.5rem}.hero .subtitle{font-size:1.25rem}}.products{padding:5rem 0;background:var(--grey-100)}.products h2{text-align:center;font-size:2.5rem;margin-bottom:3rem;color:var(--primary-dark)}.product-card{background:var(--white);border-radius:16px;overflow:hidden;box-shadow:0 4px 20px #0000001a;margin-bottom:3rem}.product-header{display:flex;align-items:center;padding:2rem;gap:1.5rem}.product-header img{width:100px;height:100px;border-radius:16px;box-shadow:0 4px 12px #00000026}.product-header-text h3{font-size:1.75rem;color:var(--primary-dark);margin-bottom:.25rem}.product-header-text .tagline{color:var(--grey-400);font-size:1.1rem}.product-content{padding:0 2rem 2rem}.product-content p{margin-bottom:1.5rem;color:var(--blue-500);font-size:1.05rem}.features-list{list-style:none;display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:.75rem;margin-bottom:2rem}.features-list li{padding:.5rem 0 .5rem 1.5rem;position:relative;color:var(--blue-500)}.features-list li:before{content:"";position:absolute;left:0;top:.85rem;width:8px;height:8px;background:var(--green-200);border-radius:50%}.product-subsection{background:var(--grey-100);padding:1.5rem;border-radius:12px;margin-bottom:1.5rem}.product-subsection h4{color:var(--primary);margin-bottom:.75rem;font-size:1.1rem}.product-subsection p{margin-bottom:0;font-size:.95rem}.cta-button{display:inline-block;background:var(--primary);color:var(--white);padding:.875rem 2rem;border-radius:8px;font-weight:600;transition:all .2s ease}.cta-button:hover{background:var(--primary-light);color:var(--white);transform:translateY(-2px);box-shadow:0 4px 12px #0003}.about{padding:5rem 0;background:var(--white)}.about h2{text-align:center;font-size:2.5rem;margin-bottom:2rem;color:var(--primary-dark)}.about p{max-width:800px;margin:0 auto;text-align:center;font-size:1.15rem;line-height:1.8}.contact{padding:5rem 0;background:var(--grey-100)}.contact h2{text-align:center;font-size:2.5rem;margin-bottom:1.5rem;color:var(--primary-dark)}.contact p{text-align:center;max-width:600px;margin:0 auto 2rem}.contact-info{text-align:center;padding:2rem;background:var(--white);border-radius:12px;max-width:400px;margin:0 auto;box-shadow:0 4px 12px #0000000d}.contact-info a{font-size:1.25rem;font-weight:600}.footer{background:var(--primary-dark);color:var(--white);padding:3rem 0}.footer-content{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem}.footer-links{display:flex;gap:2rem}.footer-links a{color:var(--white);opacity:.8}.footer-links a:hover{opacity:1;color:var(--accent)}.footer-copyright{opacity:.7;font-size:.9rem}@media(max-width:768px){.footer-content{flex-direction:column;text-align:center}}.legal-page{padding:4rem 0;min-height:calc(100vh - 200px)}.legal-page h1{font-size:2.5rem;color:var(--primary-dark);margin-bottom:2rem}.legal-page h2{font-size:1.5rem;color:var(--primary);margin-top:2rem;margin-bottom:1rem}.legal-page p{margin-bottom:1rem;line-height:1.8}.legal-page ul{margin-left:1.5rem;margin-bottom:1rem}.legal-page li{margin-bottom:.5rem}.legal-page address{font-style:normal;background:var(--grey-100);padding:1.5rem;border-radius:8px;margin:1rem 0}.legal-page a{word-break:break-all}.scroll-to-top{position:fixed;bottom:2rem;right:2rem;background:var(--primary);color:var(--white);width:48px;height:48px;border-radius:50%;border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:1.25rem;opacity:0;visibility:hidden;transition:all .3s ease;box-shadow:0 4px 12px #0003}.scroll-to-top.visible{opacity:1;visibility:visible}.scroll-to-top:hover{background:var(--primary-light);transform:translateY(-2px)}
