Darmowa dostawa od 200 zł Wysyłka w 24h w dni robocze 30 dni na zwrot bez zbędnych pytań

SmartEnergy Pro X1 | Inteligentny Zarządca Energii

:root {
–primary: #10b981;
–primary-dark: #059669;
–accent: #06b6d4;
–bg-dark: #0a0a0f;
–bg-card: rgba(255, 255, 255, 0.03);
–text-primary: #ffffff;
–text-secondary: #94a3b8;
–text-muted: #64748b;
–border: rgba(255, 255, 255, 0.1);
–gradient-1: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
–shadow-glow: 0 0 40px rgba(16, 185, 129, 0.3);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Inter’, sans-serif;
background-color: var(–bg-dark);
color: var(–text-primary);
line-height: 1.6;
overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Space Grotesk’, sans-serif;
font-weight: 700;
line-height: 1.2;
}
img {
max-width: 100%;
height: auto;
display: block;
}
a {
text-decoration: none;
color: inherit;
}
/* Navigation */
nav {
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
background: rgba(10, 10, 15, 0.95);
backdrop-filter: blur(20px);
border-bottom: 1px solid var(–border);
}
.nav-container {
max-width: 1200px;
margin: 0 auto;
padding: 1rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 1.25rem;
font-weight: 700;
background: var(–gradient-1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
display: flex;
align-items: center;
gap: 0.5rem;
}
.nav-links {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: rgba(10, 10, 15, 0.98);
flex-direction: column;
padding: 1rem;
gap: 0.5rem;
list-style: none;
border-bottom: 1px solid var(–border);
}
.nav-links.active {
display: flex;
}
.nav-links a {
color: var(–text-secondary);
font-weight: 500;
padding: 0.75rem;
display: block;
border-radius: 8px;
transition: all 0.3s;
}
.nav-links a:hover {
color: var(–primary);
background: rgba(255, 255, 255, 0.05);
}
.mobile-menu-btn {
background: none;
border: none;
color: white;
font-size: 1.5rem;
cursor: pointer;
width: 44px;
height: 44px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 8px;
}
/* Product Hero */
.product-hero {
padding-top: 100px;
padding-bottom: 4rem;
background:
radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
}
.product-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
display: grid;
grid-template-columns: 1fr;
gap: 3rem;
}
.product-image-main {
position: relative;
background: var(–bg-card);
border: 1px solid var(–border);
border-radius: 24px;
padding: 2rem;
display: flex;
align-items: center;
justify-content: center;
min-height: 350px;
}
.product-image-main img {
max-height: 300px;
width: auto;
filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}
.product-badge {
position: absolute;
top: 1.5rem;
left: 1.5rem;
background: linear-gradient(135deg, #f59e0b, #ef4444);
color: white;
padding: 0.5rem 1rem;
border-radius: 50px;
font-weight: 700;
font-size: 0.875rem;
}
.product-info h1 {
font-size: 2rem;
margin-bottom: 1rem;
background: linear-gradient(to right, #ffffff, #94a3b8);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.product-price {
font-size: 2.5rem;
font-weight: 800;
color: var(–primary);
margin-bottom: 0.5rem;
}
.product-price .old {
font-size: 1.5rem;
color: var(–text-muted);
text-decoration: line-through;
margin-left: 1rem;
}
.product-description {
color: var(–text-secondary);
margin-bottom: 2rem;
font-size: 1.1rem;
line-height: 1.7;
}
.product-features-list {
list-style: none;
margin-bottom: 2rem;
}
.product-features-list li {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: 0.75rem;
color: var(–text-secondary);
}
.product-features-list i {
color: var(–primary);
}
.product-buttons {
display: flex;
flex-direction: column;
gap: 1rem;
}
.btn-primary {
background: var(–gradient-1);
color: white;
padding: 1.25rem 2rem;
border-radius: 50px;
font-weight: 700;
font-size: 1.1rem;
border: none;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
transition: all 0.3s;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.btn-secondary {
background: transparent;
color: white;
padding: 1.25rem 2rem;
border-radius: 50px;
font-weight: 600;
border: 1px solid var(–border);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
transition: all 0.3s;
}
/* Gallery Section */
.gallery-section {
padding: 4rem 1rem;
background: linear-gradient(to bottom, var(–bg-dark), #0f172a);
}
.section-header {
text-align: center;
margin-bottom: 3rem;
max-width: 800px;
margin-left: auto;
margin-right: auto;
padding: 0 1rem;
}
.section-tag {
display: inline-block;
background: rgba(16, 185, 129, 0.1);
color: var(–primary);
padding: 0.5rem 1rem;
border-radius: 50px;
font-size: 0.875rem;
font-weight: 600;
margin-bottom: 1rem;
border: 1px solid rgba(16, 185, 129, 0.2);
}
.section-title {
font-size: 2rem;
margin-bottom: 1rem;
color: white;
}
.section-subtitle {
color: var(–text-secondary);
}
.gallery-grid {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr;
gap: 1rem;
padding: 0 1rem;
}
.gallery-item {
position: relative;
border-radius: 16px;
overflow: hidden;
border: 1px solid var(–border);
cursor: pointer;
aspect-ratio: 4/3;
transition: all 0.3s;
}
.gallery-item:hover {
transform: scale(1.02);
border-color: var(–primary);
box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}
.gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s;
}
.gallery-item:hover img {
transform: scale(1.1);
}
.gallery-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 1.5rem;
background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
opacity: 0;
transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay {
opacity: 1;
}
.gallery-overlay h4 {
color: white;
font-size: 1.1rem;
margin-bottom: 0.25rem;
}
.gallery-overlay p {
color: var(–text-secondary);
font-size: 0.875rem;
}
/* Lightbox */
.lightbox {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.95);
z-index: 2000;
align-items: center;
justify-content: center;
padding: 1rem;
}
.lightbox.active {
display: flex;
}
.lightbox-content {
max-width: 90%;
max-height: 80vh;
position: relative;
}
.lightbox img {
width: 100%;
height: 100%;
object-fit: contain;
border-radius: 8px;
}
.lightbox-close {
position: absolute;
top: -50px;
right: 0;
color: white;
font-size: 2rem;
cursor: pointer;
width: 44px;
height: 44px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255,255,255,0.1);
border-radius: 50%;
}
.lightbox-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
color: white;
font-size: 1.5rem;
cursor: pointer;
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255,255,255,0.1);
border-radius: 50%;
border: none;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
/* Specs Section */
.specs-section {
padding: 4rem 1rem;
max-width: 1200px;
margin: 0 auto;
}
.specs-grid {
display: grid;
grid-template-columns: 1fr;
gap: 1rem;
margin-top: 2rem;
}
.spec-card {
background: var(–bg-card);
border: 1px solid var(–border);
border-radius: 16px;
padding: 1.5rem;
display: flex;
align-items: center;
gap: 1rem;
transition: all 0.3s;
}
.spec-card:hover {
border-color: var(–primary);
transform: translateX(5px);
}
.spec-icon {
width: 50px;
height: 50px;
background: rgba(16, 185, 129, 0.1);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: var(–primary);
font-size: 1.25rem;
flex-shrink: 0;
}
.spec-content h4 {
color: white;
margin-bottom: 0.25rem;
font-size: 1rem;
}
.spec-content p {
color: var(–text-secondary);
font-size: 0.9rem;
}
/* CTA Section */
.cta-section {
padding: 4rem 1rem;
background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
border-top: 1px solid var(–border);
text-align: center;
}
.cta-container {
max-width: 600px;
margin: 0 auto;
padding: 0 1rem;
}
.cta-section h2 {
font-size: 2rem;
margin-bottom: 1rem;
}
.cta-section p {
color: var(–text-secondary);
margin-bottom: 2rem;
}
.guarantee-badges {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1.5rem;
margin-top: 2rem;
}
.guarantee-item {
display: flex;
align-items: center;
gap: 0.5rem;
color: var(–text-secondary);
font-size: 0.9rem;
}
.guarantee-item i {
color: var(–primary);
}
/* Footer */
footer {
background: #050508;
padding: 3rem 1rem 1.5rem;
}
.footer-grid {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr;
gap: 2rem;
margin-bottom: 2rem;
padding: 0 1rem;
}
.footer-brand p {
color: var(–text-secondary);
margin-top: 1rem;
line-height: 1.8;
font-size: 0.95rem;
}
.footer-links h4 {
color: white;
margin-bottom: 1rem;
font-size: 1.1rem;
}
.footer-links ul {
list-style: none;
}
.footer-links li {
margin-bottom: 0.5rem;
}
.footer-links a {
color: var(–text-secondary);
transition: color 0.3s;
font-size: 0.95rem;
}
.footer-links a:hover {
color: var(–primary);
}
.footer-bottom {
max-width: 1200px;
margin: 0 auto;
border-top: 1px solid var(–border);
padding-top: 1.5rem;
text-align: center;
color: var(–text-muted);
font-size: 0.875rem;
}
/* Tablet */
@media (min-width: 768px) {
.nav-container {
padding: 1rem 2rem;
}
.mobile-menu-btn {
display: none;
}
.nav-links {
display: flex !important;
position: static;
flex-direction: row;
background: transparent;
padding: 0;
border: none;
}
.product-container {
grid-template-columns: 1fr 1fr;
gap: 4rem;
padding: 0 2rem;
}
.product-image-main {
min-height: 500px;
}
.product-image-main img {
max-height: 400px;
}
.product-info h1 {
font-size: 3rem;
}
.product-buttons {
flex-direction: row;
}
.gallery-grid {
grid-template-columns: repeat(2, 1fr);
padding: 0 2rem;
}
.specs-grid {
grid-template-columns: repeat(2, 1fr);
}
.footer-grid {
grid-template-columns: 2fr 1fr 1fr 1fr;
padding: 0 2rem;
}
}
/* Desktop */
@media (min-width: 1024px) {
.gallery-grid {
grid-template-columns: repeat(3, 1fr);
}
.gallery-item.large {
grid-column: span 2;
grid-row: span 2;
}
.section-title {
font-size: 2.5rem;
}
}

NOWOŚĆ 2026
SmartEnergy Pro X1

SmartEnergy Pro X1

1 999 zł
2 499 zł

Rewolucyjny system zarządzania energią oparty na sztucznej inteligencji.
Monitoruje, analizuje i optymalizuje zużycie prądu w czasie rzeczywistym,
pozwalając zaoszczędzić do 40% na rachunkach.

  • Monitorowanie w czasie rzeczywistym
  • AI optymalizacja zużycia
  • Integracja z fotowoltaiką
  • Aplikacja mobilna iOS/Android
  • 5 lat gwarancji



Galeria

Zobacz produkt w akcji

10 zdjęć prezentujących możliwości SmartEnergy Pro X1

Urządzenie główne

SmartEnergy Pro X1

Elegancki design pasujący do każdego wnętrza

Panel sterowania

Panel LED

Intuicyjny interfejs użytkownika

Aplikacja mobilna

Aplikacja mobilna

Kontrola z każdego miejsca

Instalacja

Łatwa instalacja

Montaż w 15 minut

Wnętrze

W Twoim domu

Estetyczne wkomponowanie

Wykresy

Analityka

Szczegółowe raporty zużycia

Fotowoltaika

Integracja PV

Współpraca z panelami słonecznymi

Magazyn energii

Magazyn energii

Zarządzanie bateriami

Smart home

Ekosystem Smart Home

Kompatybilność z Google Home i Alexa

Osiedle

Skalowalność

Dla domu i małych firm

Specyfikacja

Parametry techniczne

Napięcie

230V AC, 50/60Hz

Maksymalne obciążenie

63A (14.5kW)

Łączność

WiFi 6, Bluetooth 5.0, Zigbee

Procesor

ARM Cortex-A72 Quad Core

Temperatura pracy

-10°C do +50°C

Wymiary

180 x 120 x 45 mm

Certyfikaty

CE, TUV, RoHS

Aplikacja

iOS 13+, Android 8+

Zacznij oszczędzać już dziś

Dołącz do 10 000+ zadowolonych użytkowników i zmniejsz swoje rachunki za prąd o 40%


30 dni na zwrot
Darmowa dostawa
5 lat gwarancji



Gallery image