@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap");:root{--font-sans:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;--font-mono:"JetBrains Mono","Courier New",monospace;--background:#f8fafc;--foreground:#090d16;--card:#fff;--card-foreground:#090d16;--card-border:#e2e8f0;--primary:#1e3a8a;--primary-hover:#1e40af;--primary-foreground:#fff;--secondary:#475569;--secondary-hover:#334155;--secondary-foreground:#f8fafc;--accent-teal:#0d9488;--accent-teal-hover:#0f766e;--accent-teal-foreground:#fff;--accent-gold:#b45309;--muted:#f1f5f9;--muted-foreground:#64748b;--border:#e2e8f0;--radius-sm:4px;--radius-md:8px;--radius-lg:12px;--radius-full:9999px;--shadow-sm:0 1px 2px 0 rgba(0,0,0,.05);--shadow-md:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06);--shadow-lg:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05);--transition-smooth:all 0.3s cubic-bezier(0.4,0,0.2,1)}@media (prefers-color-scheme:dark){:root{--background:#090d16;--foreground:#f8fafc;--card:#111827;--card-foreground:#f8fafc;--card-border:#1f2937;--primary:#3b82f6;--primary-hover:#60a5fa;--primary-foreground:#fff;--secondary:#94a3b8;--secondary-hover:#cbd5e1;--secondary-foreground:#090d16;--accent-teal:#14b8a6;--accent-teal-hover:#2dd4bf;--accent-teal-foreground:#090d16;--accent-gold:#f59e0b;--muted:#1e293b;--muted-foreground:#94a3b8;--border:#1f2937;--shadow-sm:0 1px 2px 0 rgba(0,0,0,.3);--shadow-md:0 4px 6px -1px rgba(0,0,0,.4),0 2px 4px -1px rgba(0,0,0,.2);--shadow-lg:0 10px 15px -3px rgba(0,0,0,.5),0 4px 6px -2px rgba(0,0,0,.3)}}*{box-sizing:border-box;padding:0;margin:0}body,html{max-width:100vw;overflow-x:hidden;font-family:var(--font-sans);background:var(--background);color:var(--foreground);line-height:1.6;scroll-behavior:smooth}a{color:inherit;text-decoration:none;transition:var(--transition-smooth)}h1,h2,h3,h4,h5,h6{font-weight:700;letter-spacing:-.02em;line-height:1.25}p{color:var(--muted-foreground)}.text-mono{font-family:var(--font-mono)}.container{max-width:1280px;margin:0 auto;padding:0 1.5rem}.header-wrapper{position:-webkit-sticky;position:sticky;top:0;z-index:100;background:rgba(248,250,252,.8);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-bottom:1px solid var(--border);transition:var(--transition-smooth)}@media (prefers-color-scheme:dark){.header-wrapper{background:rgba(9,13,22,.8);border-bottom:1px solid var(--border)}}.navbar{justify-content:space-between;height:4.5rem}.nav-brand,.navbar{display:flex;align-items:center}.nav-brand{font-size:1.25rem;font-weight:800;letter-spacing:-.03em;gap:.5rem;color:var(--foreground)}.nav-brand span{font-weight:400;color:var(--muted-foreground)}.nav-links{display:flex;align-items:center;gap:2rem}.nav-link{font-size:.875rem;font-weight:500;color:var(--muted-foreground)}.nav-link.active,.nav-link:hover{color:var(--foreground)}.nav-actions{display:flex;align-items:center;gap:1rem}.mobile-menu-btn{display:none;background:none;border:none;cursor:pointer;color:var(--foreground)}@media (max-width:768px){.nav-actions,.nav-links{display:none}.mobile-menu-btn{display:block}}.mobile-nav-panel{display:flex;flex-direction:column;background:var(--background);border-bottom:1px solid var(--border);padding:1rem 1.5rem 2rem;gap:1.25rem}.mobile-nav-link{font-size:1rem;font-weight:600;color:var(--foreground)}.hero-container{padding:6rem 0 4rem;display:grid;grid-template-columns:1.2fr .8fr;grid-gap:4rem;gap:4rem;align-items:center}@media (max-width:992px){.hero-container{grid-template-columns:1fr;text-align:center;padding:4rem 0 3rem}}.hero-content{display:flex;flex-direction:column;gap:1.5rem}.hero-tagline{font-family:var(--font-mono);font-size:.875rem;font-weight:600;text-transform:uppercase;letter-spacing:.15em;color:var(--primary)}.hero-title{font-size:4rem;font-weight:900;line-height:1.1;letter-spacing:-.04em}@media (max-width:640px){.hero-title{font-size:2.75rem}}.hero-desc{font-size:1.25rem;max-width:620px}@media (max-width:992px){.hero-desc{margin:0 auto}}.hero-buttons{display:flex;gap:1rem;margin-top:1rem}@media (max-width:992px){.hero-buttons{justify-content:center}}.btn{display:inline-flex;align-items:center;justify-content:center;padding:.75rem 1.5rem;font-size:.95rem;font-weight:600;border-radius:var(--radius-md);border:1px solid transparent;cursor:pointer;transition:var(--transition-smooth);gap:.5rem}.btn-primary{background:var(--primary);color:var(--primary-foreground)}.btn-primary:hover{background:var(--primary-hover);transform:translateY(-1px);box-shadow:var(--shadow-md)}.btn-secondary{background:var(--secondary);color:var(--secondary-foreground)}.btn-secondary:hover{background:var(--secondary-hover);transform:translateY(-1px)}.btn-outline{background:transparent;border-color:var(--border);color:var(--foreground)}.btn-outline:hover{background:var(--muted);border-color:var(--muted-foreground)}.btn-accent{background:var(--accent-teal);color:var(--accent-teal-foreground)}.btn-accent:hover{background:var(--accent-teal-hover);transform:translateY(-1px)}.btn-sm{padding:.5rem 1rem;font-size:.875rem}.metrics-panel{border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:3rem 0;background:var(--card)}.metrics-grid{display:grid;grid-template-columns:repeat(4,1fr);grid-gap:2rem;gap:2rem}@media (max-width:992px){.metrics-grid{grid-template-columns:repeat(2,1fr)}}@media (max-width:480px){.metrics-grid{grid-template-columns:1fr}}.metric-card{text-align:center;padding:1rem}.metric-value{font-family:var(--font-mono);font-size:2.5rem;font-weight:700;color:var(--primary);margin-bottom:.5rem}.metric-label{font-size:.875rem;font-weight:600;color:var(--muted-foreground);text-transform:uppercase;letter-spacing:.05em}.section,.section-alt{padding:6rem 0}.section-alt{background:var(--muted)}.section-header{max-width:680px;margin-bottom:4rem;display:flex;flex-direction:column;gap:1rem}.section-tag{font-family:var(--font-mono);font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.15em;color:var(--accent-teal)}.section-title{font-size:2.5rem;font-weight:800;letter-spacing:-.03em}.section-desc{font-size:1.125rem}.grid-cards{display:grid;grid-template-columns:repeat(3,1fr);grid-gap:2rem;gap:2rem}@media (max-width:992px){.grid-cards{grid-template-columns:repeat(2,1fr)}}@media (max-width:640px){.grid-cards{grid-template-columns:1fr}}.card{background:var(--card);border:1px solid var(--card-border);border-radius:var(--radius-lg);padding:2.5rem;transition:var(--transition-smooth);display:flex;flex-direction:column;gap:1.25rem}.card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);border-color:var(--primary)}.card-icon{width:3rem;height:3rem;border-radius:var(--radius-md);background:var(--muted);color:var(--primary);display:flex;align-items:center;justify-content:center}.card-title{font-size:1.25rem;font-weight:700}.card-desc{font-size:.95rem;flex-grow:1}.spec-widget{background:var(--card);border:1px solid var(--card-border);border-radius:var(--radius-lg);padding:3rem;margin-top:2rem;box-shadow:var(--shadow-md)}.spec-widget-grid{display:grid;grid-template-columns:1fr 1fr;grid-gap:4rem;gap:4rem}@media (max-width:768px){.spec-widget-grid{grid-template-columns:1fr;gap:2rem}}.spec-slider-box{display:flex;flex-direction:column;gap:1.5rem}.spec-slider-header{display:flex;justify-content:space-between;align-items:center}.spec-slider-title{font-size:1.125rem;font-weight:700}.spec-slider-value{font-family:var(--font-mono);font-size:1.25rem;font-weight:700;color:var(--primary)}.spec-slider{-webkit-appearance:none;width:100%;height:6px;border-radius:var(--radius-full);background:var(--border);outline:none}.spec-slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:18px;height:18px;border-radius:50%;background:var(--primary);cursor:pointer;-webkit-transition:var(--transition-smooth);transition:var(--transition-smooth)}.spec-slider::-webkit-slider-thumb:hover{transform:scale(1.2)}.spec-preview-text{font-size:.95rem;color:var(--muted-foreground);line-height:1.6;min-height:5rem}.certs-row{display:flex;gap:2rem;margin-top:1rem}@media (max-width:480px){.certs-row{flex-direction:column;gap:1rem}}.cert-badge{display:inline-flex;align-items:center;gap:.5rem;padding:.5rem 1rem;background:var(--muted);border:1px solid var(--border);border-radius:var(--radius-full);font-size:.8125rem;font-weight:600}.cert-badge-grs{border-color:var(--accent-teal);color:var(--accent-teal)}.cert-badge-oeko{border-color:var(--accent-gold);color:var(--accent-gold)}.rfq-card{max-width:720px;margin:0 auto;background:var(--card);border:1px solid var(--card-border);border-radius:var(--radius-lg);padding:3.5rem;box-shadow:var(--shadow-lg)}@media (max-width:640px){.rfq-card{padding:2rem 1.5rem}}.rfq-header{text-align:center;margin-bottom:2.5rem;display:flex;flex-direction:column;gap:.5rem}.rfq-steps{display:flex;justify-content:space-between;margin-bottom:3rem;position:relative}.rfq-steps:before{content:"";position:absolute;top:50%;left:0;right:0;height:2px;background:var(--border);z-index:1;transform:translateY(-50%)}.rfq-step{width:2.5rem;height:2.5rem;border-radius:50%;background:var(--card);border:2px solid var(--border);display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.875rem;z-index:2;transition:var(--transition-smooth)}.rfq-step.active{border-color:var(--primary);background:var(--primary);color:var(--primary-foreground)}.rfq-step.completed{border-color:var(--accent-teal);background:var(--accent-teal);color:var(--accent-teal-foreground)}.form-grid{display:grid;grid-template-columns:1fr 1fr;grid-gap:1.5rem;gap:1.5rem;margin-bottom:2rem}@media (max-width:640px){.form-grid{grid-template-columns:1fr}}.form-group-full{grid-column:1/-1}.form-label{display:block;font-size:.875rem;font-weight:600;margin-bottom:.5rem}.form-control{width:100%;padding:.75rem 1rem;font-size:.95rem;background:var(--background);border:1px solid var(--border);border-radius:var(--radius-md);color:var(--foreground);outline:none;font-family:var(--font-sans);transition:var(--transition-smooth)}.form-control:focus{border-color:var(--primary);box-shadow:0 0 0 3px rgba(30,58,138,.15)}.form-select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23475569'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 1rem center;background-size:1.25rem}.upload-zone{border:2px dashed var(--border);border-radius:var(--radius-md);padding:2rem;text-align:center;cursor:pointer;background:var(--background);transition:var(--transition-smooth)}.upload-zone:hover{border-color:var(--primary)}.upload-icon{margin-bottom:.75rem}.upload-icon,.upload-text{color:var(--muted-foreground)}.upload-text{font-size:.875rem}.upload-selected-file{margin-top:1rem;display:inline-flex;align-items:center;gap:.5rem;padding:.375rem .75rem;background:var(--muted);border-radius:var(--radius-md);font-size:.8125rem;font-weight:500}.form-navigation{display:flex;justify-content:space-between;margin-top:2.5rem}.form-error{color:#dc2626;font-size:.8125rem;margin-top:.25rem}.specs-table-wrapper{overflow-x:auto;border:1px solid var(--border);border-radius:var(--radius-lg);margin-top:1.5rem}.specs-table{width:100%;border-collapse:collapse;text-align:left;font-size:.95rem}.specs-table th{background:var(--muted);font-weight:600}.specs-table td,.specs-table th{padding:1rem 1.5rem;border-bottom:1px solid var(--border)}.specs-table tr:last-child td{border-bottom:none}.footer-wrapper{background:var(--card);border-top:1px solid var(--border);padding:6rem 0 3rem;font-size:.9rem}.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1.5fr;grid-gap:4rem;gap:4rem;margin-bottom:4rem}@media (max-width:992px){.footer-grid{grid-template-columns:repeat(2,1fr);gap:3rem}}@media (max-width:576px){.footer-grid{grid-template-columns:1fr;gap:2.5rem}}.footer-col{display:flex;flex-direction:column;gap:1.25rem}.footer-logo{font-size:1.25rem;font-weight:800;letter-spacing:-.03em;color:var(--foreground)}.footer-logo span{font-weight:400;color:var(--muted-foreground)}.footer-title{font-weight:700;color:var(--foreground);text-transform:uppercase;font-size:.75rem;letter-spacing:.1em}.footer-links{list-style:none;display:flex;flex-direction:column;gap:.75rem}.footer-link{color:var(--muted-foreground)}.footer-link:hover{color:var(--foreground)}.footer-bottom{border-top:1px solid var(--border);padding-top:2rem;display:flex;justify-content:space-between;align-items:center;color:var(--muted-foreground);font-size:.8125rem}@media (max-width:640px){.footer-bottom{flex-direction:column;gap:1rem;text-align:center}}.ai-portal-box{background:linear-gradient(135deg,rgba(30,58,138,.05),rgba(13,148,136,.05));border:1px solid rgba(30,58,138,.15);border-radius:var(--radius-lg);padding:3rem;text-align:center;display:flex;flex-direction:column;align-items:center;gap:1.25rem;position:relative;overflow:hidden}.ai-portal-badge{font-family:var(--font-mono);font-size:.6875rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--primary);background:rgba(30,58,138,.1);padding:.25rem .75rem;border-radius:var(--radius-full)}.ai-portal-title{font-size:1.5rem;font-weight:800}.ai-portal-desc{max-width:500px}.ai-portal-placeholder-input{width:100%;max-width:480px;display:flex;align-items:center;background:var(--card);border:1px solid var(--border);border-radius:var(--radius-md);padding:.5rem .5rem .5rem 1.25rem;gap:.75rem;opacity:.7}.ai-portal-placeholder-text{font-size:.875rem;color:var(--muted-foreground);flex-grow:1;text-align:left}.specs-visualizer-container{display:grid;grid-template-columns:repeat(3,1fr);grid-gap:1.5rem;gap:1.5rem}@media (max-width:768px){.specs-visualizer-container{grid-template-columns:1fr}}.specs-visualizer-card{border:1px solid var(--border);background:var(--card);border-radius:var(--radius-md);padding:1.5rem}.specs-visualizer-header{font-family:var(--font-mono);font-size:.75rem;color:var(--accent-teal);text-transform:uppercase;margin-bottom:.5rem}.specs-visualizer-title{font-size:1.25rem;font-weight:700;margin-bottom:.75rem}.specs-visualizer-items{list-style:none;display:flex;flex-direction:column;gap:.5rem}.specs-visualizer-item{display:flex;justify-content:space-between;font-size:.875rem}.specs-visualizer-item span:first-child{color:var(--muted-foreground)}.specs-visualizer-item span:last-child{font-weight:600}