:root {
  --primary: #087392;
  --dark: #001226;
  --light: #e1e8f0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter;
  color: var(--dark);
}

.header {
  position: fixed;
  width: 100%;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid #eee;
  z-index: 10;
}

.nav {
  max-width: 1100px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  transition: 0.3s;
}

.logo img:hover {
  opacity: 0.8;
}

#logo_ebike {
  height: 40px;
  width: auto;
  display: block;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: var(--dark);
  transition: 0.3s;
}

nav a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.hero {
  padding-top: 130px;
  padding-bottom: 80px;
  background: radial-gradient(circle at 20% 20%, rgba(8, 115, 146, 0.2), transparent), radial-gradient(circle at 80% 60%, rgba(8, 115, 146, 0.15), transparent);
}

.hero-grid {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.hero-text p {
  margin-top: 15px;
  font-size: 18px;
}

.phone img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.stats {
  display: flex;
  gap: 40px;
  margin-top: 25px;
}

.stats span {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}

.section {
  padding: 90px 20px;
}

.light {
  background: var(--light);
}

.dark {
  background: var(--dark);
  color: white;
}

.center {
  text-align: center;
}

.narrow {
  max-width: 650px;
  margin: auto;
}

h2 {
  margin-bottom: 25px;
}

.features {
  max-width: 1100px;
  margin: auto;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.gallery {
  max-width: 1100px;
  margin: auto;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery img {
  width: 100%;
  border-radius: 15px;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gallery img:hover {
  transform: scale(1.05);
}

.stores img {
  height: 60px;
  margin: 20px;
  transition: 0.3s;
}

.stores img:hover {
  transform: scale(1.1);
}

#kontakt p {
  margin: 10px 0;
  font-size: 18px;
}

.funds {
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid #eee;
}

.funds-logo {
  margin-top: 40px;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.funds-logo img {
  filter: none;
  height: 70px;
  opacity: 1;
  transition: 0.3s;
}

.funds-logo img:hover {
  filter: grayscale(100%);
  opacity: 0.7;
  transform: scale(1.05);
}

.cta-sticky {
  position: fixed;
  bottom: 30px;
  right: 20px;
}

.cta-sticky a {
  background: var(--primary);
  color: white;
  padding: 18px 28px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

footer {
  text-align: center;
  padding: 40px;
  border-top: 1px solid #eee;
}

footer a {
  color: var(--primary);
  text-decoration: none;
}

.fade {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s;
}

.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  #logo_ebike {
    height: 32px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
    padding: 10px;
  }
  .hero {
    padding-top: 110px;
    padding-bottom: 50px;
  }
  .hero-text p {
    font-size: 16px;
    padding: 0 10px;
  }
  .stats {
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
  nav a {
    font-size: 13px;
    margin-left: 10px;
  }
  .phone img {
    max-width: 220px;
    margin: auto;
    display: block;
  }
}
.stores {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 22px;
  border-radius: 14px;
  background: white;
  border: 1px solid #ddd;
  text-decoration: none;
  color: var(--dark);
  transition: 0.3s;
  min-width: 200px;
}

.store-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.store-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  border-radius: 10px;
}

.store-icon svg {
  fill: #111111;
}

.store-small {
  font-size: 12px;
  opacity: 0.7;
}

.store-big {
  font-size: 18px;
  font-weight: 600;
}

.policy {
  max-width: 1024px;
  margin: auto;
  padding-top: 60px;
  line-height: 1.8;
}

.policy h1 {
  margin-bottom: 10px;
}

.policy-data {
  opacity: 0.7;
  margin-bottom: 20px;
}

.policy h2 {
  margin-top: 40px;
  margin-bottom: 15px;
}

.policy ul {
  margin: 15px 0 15px 20px;
}

.policy-line {
  margin: 35px 0;
  border: none;
  border-top: 1px solid #eee;
}

/*# sourceMappingURL=styles.css.map */
