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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Notification Banner */
.notification-banner {
    background: linear-gradient(135deg, #1BB5E5, #0EA5D3);
    color: white;
    padding: 12px 0;
    text-align: center;
    position: relative;
    font-size: 14px;
    font-weight: 500;
}

.close-banner {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0 8px;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.close-banner:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo svg {
    fill: #1BB5E5;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.2s;
    position: relative;
}

.nav a:hover {
    color: #1BB5E5;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1BB5E5;
    transition: width 0.3s;
}

.nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-btn {
    background: none;
    border: none;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s;
}

.icon-btn:hover {
    background-color: #f5f5f5;
}

.cta-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.cta-btn:hover {
    background: #45a049;
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Features */
.hero-features {
    background: #f8f9fa;
    padding: 40px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e3f2fd;
    border-radius: 50%;
}

.feature span {
    font-weight: 500;
    color: #333;
}

/* Main Hero */
.main-hero {
    text-align: center;
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.main-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.2;
}

.main-hero p {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.blue-circle {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #1BB5E5;
    border-radius: 50%;
    margin: 0 4px;
    vertical-align: middle;
}

/* Bike Cards */
.bike-cards {
    padding: 80px 0;
    background: #f8f9fa;
}

.bikes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.bike-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.bike-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.bike-badge {
    background: #1BB5E5;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
}

.bike-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.bike-card p {
    color: #666;
    margin-bottom: 24px;
    line-height: 1.5;
    font-size: 17px;
}

.bike-image {
    height: 200px;
    margin: 24px 0;
    border-radius: 12px;
    overflow: hidden;
}

.bike-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.bike-card:hover .bike-image img {
    transform: scale(1.05);
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.details-btn {
  background: none;
      border: 1px solid #74eeb8;
      color: #333333;
      padding: 12px 24px;
      border-radius: 24px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s;
      width: 100%;
      font-size: 19px;
      margin-top: 10px;
}

.details-btn:hover {
    background: #1BB5E5;
    color: white;
    transform: translateY(-1px);
}

/* Service Cards */
.service-cards {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.service-cards::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100px;
    width: 200%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, #1BB5E5 20%, transparent 40%);
    opacity: 0.1;
    z-index: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 48px;
    position: relative;
    z-index: 1;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-image {
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    color: #1BB5E5;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.service-link:hover {
    color: #0EA5D3;
}

/* Sustainability */
.sustainability {
    background: linear-gradient(135deg, #e8f5f3 0%, #f0f9f7 100%);
    padding: 80px 0;
    text-align: center;
}

.b-corp-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.badge-circle {
    width: 60px;
    height: 60px;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.sustainability h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2e7d5e;
    margin-bottom: 60px;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.sustainability-item {
    text-align: center;
}

.sustainability-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.sustainability-item h4 {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.4;
}

.sustainability-btn {
    background: none;
    border: 2px solid #4CAF50;
    color: #4CAF50;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.sustainability-btn:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-2px);
}

/* Reviews */
.reviews {
    padding: 80px 0;
    background: white;
}

.reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.review-card {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stars {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffd700;
}

.review-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.reviewer strong {
    color: #333;
    font-weight: 600;
}

.reviewer span {
    color: #999;
    font-size: 14px;
    display: block;
    margin-top: 4px;
}

/* Mobile App */
.mobile-app {
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    padding: 80px 0;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-logo {
    margin-bottom: 24px;
}

.app-logo .blue-circle {
    width: 60px;
    height: 60px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-app h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 32px;
    line-height: 1.2;
}

.app-features {
    list-style: none;
    margin-bottom: 40px;
}

.app-features li {
    padding: 12px 0;
    color: #666;
    font-weight: 500;
}

.app-features li:before {
    content: '✓';
    color: #4CAF50;
    font-weight: bold;
    margin-right: 12px;
}

.app-buttons {
    display: flex;
    gap: 16px;
}

.app-buttons img {
    height: 50px;
    cursor: pointer;
    transition: transform 0.2s;
}

.app-buttons img:hover {
    transform: scale(1.05);
}

.app-phones img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: white;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.faq-question:hover {
    color: #1BB5E5;
}

.faq-icon {
    transition: transform 0.3s;
    color: #1BB5E5;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

.faq-contact {
    text-align: center;
    margin-top: 60px;
    padding: 18px;
    background: #f2f3f5;
    border-radius: 16px;
}

.faq-contact h3 {
    font-size: 1.5rem;
    color: #333;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .app-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-actions {
        gap: 8px;
    }

    .main-hero h1 {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .bikes-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .sustainability-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .app-buttons {
        flex-direction: column;
        align-items: center;
    }

    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .main-hero h1 {
        font-size: 2rem;
    }

    .bike-card,
    .review-card {
        padding: 20px;
    }

    .service-content h3 {
        font-size: 1.5rem;
    }

    .sustainability h2,
    .reviews h2,
    .faq h2 {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bike-card,
.service-card,
.review-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

.footer {
  background-color: #00B5B8;
  color: white;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer__left, .footer__center, .footer__right {
  flex: 1;
}

.footer__logo {
  max-width: 100px;
}

.footer__certified {
  font-size: 0.9rem;
  margin: 10px 0;
}

.footer__list {
  list-style: none;
}

.footer__list li {
  margin-bottom: 8px;
}

.footer__list a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.footer__list a:hover {
  color: #F4F4F4;
}

.newsletter {
  margin-top: 20px;
}

.newsletter__input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 5px;
}

.newsletter__button {
  background-color: #00B5B8;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.newsletter__button:hover {
  background-color: #009f9d;
}

.privacy-policy {
  font-size: 0.9rem;
  margin-top: 10px;
}

.footer__bottom {
  border-top: 1px solid #ffffff;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__payments img {
  width: 40px;
  margin-right: 10px;
}

.footer__bottom-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.footer__bottom-links li a {
  color: white;
  text-decoration: none;
}

.footer__socials a img {
  width: 20px;
  margin-right: 10px;
}
.review-block {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  width: fit-content;
  font-family: Arial, sans-serif;
}

.google-logo {
  font-weight: bold;
  color: #4285F4;
  font-size: 1.5rem;
  margin-right: 8px;
}

.rating {
  font-size: 1.2rem;
  font-weight: bold;
  margin-right: 8px;
}

.stars {
  font-size: 1rem;
  color: #ffba00;
  margin-right: 8px;
}

.reviews {
  font-size: 0.9rem;
  color: #757575;
}
.bike-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.bike-card:hover {
  transform: translateY(-10px);
}

.bike-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.bike-badge {
  font-size: 1.1rem;
  background-color: #ff6600;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.price {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 15px 0;
}

.details-btn {
  background-color: #ffffff;
      color: #333333;
      padding: 14px 16px;
      border-radius: 30px;
      cursor: pointer;
      transition: background-color 0.3s;
}

.details-btn:hover {
  background-color: #0056b3;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Promotional Banner */
.promo-banner {
  background: linear-gradient(90deg, #2EAAE1 0%, #1A9BD1 100%);
  color: white;
  text-align: center;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
}

/* Navigation */
.navbar {
  background: white;
  border-bottom: 1px solid #e5e5e5;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.nav-logo .logo-svg {
  height: 40px;
  width: 120px;
}

.nav-menu {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
  display: block;
  padding: 10px 0;
}

.nav-link:hover {
  color: #2EAAE1;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 30px;
  min-width: 800px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1001;
  margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.dropdown-bikes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.dropdown-bike-card {
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.dropdown-bike-card:hover {
  background-color: #f8f9fa;
}

.dropdown-bike-badge {
  background: #fff3cd;
  color: #856404;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}

.dropdown-bike-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c3e50;
}

.dropdown-bike-image {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.dropdown-bike-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

.dropdown-details-btn {
  background: transparent;
  color: #2EAAE1;
  border: 1px solid #2EAAE1;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dropdown-details-btn:hover {
  background: #2EAAE1;
  color: white;
}

.dropdown-links {
  display: flex;
  gap: 30px;
  justify-content: center;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
}

.dropdown-link {
  color: #2EAAE1;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.dropdown-link:hover {
  color: #1A9BD1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-icon {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.nav-icon:hover {
  background-color: #f5f5f5;
}

.cta-button {
  background: #4AE5A5;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #3DD396;
  transform: translateY(-1px);
}

/* Features Bar */
.features-bar {
  background: #f8f9fa;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #666;
}

.feature-icon {
  font-size: 20px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.blue-circle {
  color: #2EAAE1;
  font-size: 24px;
  vertical-align: middle;
}

/* Bikes Section */
.bikes-section {
  padding: 80px 0;
  background: white;
}

.bikes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.bike-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.bike-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.bike-badge {
  background: #fff3cd;
  color: #856404;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}

.bike-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2c3e50;
}

.bike-card p {
  color: #666;
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 1.5;
}

.bike-image {
  margin: 30px 0;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bike-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.bike-price {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.availability-btn {
  background-color: #74EEB5;
  border-radius: 50px;
  color: #121212;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6em;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.availability-btn:hover {
  background-color: #5FE6A8;
  transform: translateY(-2px);
}

.availability-btn svg {
  width: 20px;
  height: 20px;
}

.details-btn {
  background: transparent;
      color: #333333;
      border: 1px solid #74eeb8;
      padding: 15px 24px;
      border-radius: 35px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 100%;
}

.details-btn:hover {
  background: #2EAAE1;
  color: white;
}

/* Service Section */
.service-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.service-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100"><path d="M0,50 Q250,0 500,50 T1000,50 L1000,100 L0,100 Z" fill="%232EAAE1" opacity="0.1"/></svg>') repeat-x;
  animation: wave 20s linear infinite;
}

@keyframes wave {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
  position: relative;
  z-index: 2;
}

.service-item {
  text-align: center;
}

.service-image {
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.05);
}

.service-item h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2c3e50;
}

.service-item p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.service-link {
  color: #2EAAE1;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: #1A9BD1;
}

/* Sustainability Section */
.sustainability-section {
  padding: 80px 0;
  background: #e8f5f3;
  text-align: center;
}

.b-corp-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.badge-circle {
  width: 50px;
  height: 50px;
  background: #2d5730;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 24px;
}

.badge-text {
  font-size: 12px;
  font-weight: 600;
  color: #2d5730;
  text-align: left;
}

.sustainability-section h2 {
  font-size: 42px;
  font-weight: 700;
  color: #2d5730;
  margin-bottom: 50px;
}

.sustainability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.sustainability-item {
  text-align: center;
}

.sustainability-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.sustainability-item h4 {
  color: #2d5730;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
}

.sustainability-btn {
  background: transparent;
  color: #2d5730;
  border: 2px solid #2d5730;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sustainability-btn:hover {
  background: #2d5730;
  color: white;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: white;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #2c3e50;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.testimonial {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
}

.stars {
  font-size: 16px;
  margin-bottom: 15px;
}

.testimonial p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  color: #333;
}

.testimonial-author span {
  font-weight: 400;
  color: #999;
  font-size: 14px;
}

/* App Section */
.app-section {
  padding: 80px 0;
  background: #f0f0f0;
}

.app-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.app-icon {
  color: #2EAAE1;
  font-size: 60px;
  margin-bottom: 20px;
}

.app-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #2c3e50;
}

.app-features {
  list-style: none;
  margin-bottom: 30px;
}

.app-features li {
  padding: 8px 0;
  color: #666;
  font-weight: 500;
}

.app-buttons {
  display: flex;
  gap: 15px;
}

.app-store-btn {
  height: 50px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.app-store-btn:hover {
  transform: translateY(-2px);
}

.phone-mockup {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: white;
}

.faq-section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #2c3e50;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 20px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #2EAAE1;
}

.faq-toggle {
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 0 20px 0;
  color: #666;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.contact-section {
  text-align: center;
  margin-top: 60px;
}

.contact-section h3 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .dropdown-menu {
    min-width: 600px;
  }

  .dropdown-bikes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 20px;
  }

  .nav-menu {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    min-width: auto;
    width: 100%;
    margin-top: 0;
  }

  .dropdown-bikes {
    grid-template-columns: 1fr;
  }

  .dropdown-links {
    flex-direction: column;
    gap: 15px;
  }

  .features-bar {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .hero h1 {
    font-size: 32px;
  }

  .bikes-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .app-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sustainability-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .app-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 28px;
  }

  .bikes-section,
  .service-section,
  .sustainability-section,
  .testimonials-section,
  .app-section,
  .faq-section {
    padding: 60px 0;
  }
}css

.specifications {
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.spec-category {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.spec-category h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
    color: #333;
}

.spec-list {
    margin-top: 15px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 16px;
    color: #666;
}

.spec-name {
    font-weight: bold;
}

.spec-detail {
    color: #333;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    color: #333;
}

.payment-container {
    max-width: 1300px;
    margin: 0 auto;
    background-color: white;
    min-height: 100vh;
}

.payment-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.logo-img {
    height: 40px;
}

.payment-content {
    display: flex;
    padding: 20px;
}

.product-section {
    flex: 1;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
}

.product-image {
    margin-bottom: 20px;
}

.product-img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.form-section {
    flex: 1;
    max-width: 500px;
}

.product-title {
    font-size: 24px;
    color: #000;
    margin: 0 0 20px 0;
}

.subscription-section h2,
.usage-section h2,
.cost-section h2 {
    font-size: 18px;
    color: #000;
    margin: 25px 0 15px 0;
}

.subscription-options {
    margin-bottom: 25px;
}

.subscription-option {
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 8px;
    position: relative;
}

.subscription-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.subscription-label {
    display: block;
    cursor: pointer;
}

.subscription-type {
    font-weight: bold;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
}

.type-price {
    color: #666;
    font-weight: normal;
}

.subscription-description {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}

.usage-description {
    margin-bottom: 15px;
    color: #333;
}

.usage-options {
    margin-bottom: 25px;
}

.usage-option {
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 8px;
    position: relative;
}

.usage-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.usage-label {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.usage-price {
    color: #666;
}

.cost-breakdown {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    margin-bottom: 25px;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

.cost-label {
    font-weight: bold;
}

.order-btn {
    width: 100%;
    padding: 15px;
    background-color: #74eeb5;
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    margin: 30px 0;
    cursor: pointer;
}

.benefits {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    text-align: center;
    margin-top: 20px;
}

.highlight {
    color: #000;
    font-weight: bold;
}
.info-block {
display: flex;
justify-content: space-around;
padding: 3px;
border-radius: 10px;
}

.info-item {
<!-- text-align: center; -->
max-width: 150px;
}

.info-item h3 {
font-size: 1.2rem;
color: #333;
margin: 10px 0;
}

.info-item p {
font-size: 0.9rem;
color: #666;
}

.icon {
width: 50px;
height: 50px;
margin-bottom: 10px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #f8f9fa;
  min-height: 100vh;
}

.header {
  background: white;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00bcd4;
  font-style: italic;
}

.flag {
  width: 24px;
  height: 16px;
  background: linear-gradient(to bottom, #ff0000 33%, white 33%, white 66%, #0066cc 66%);
  border: 1px solid #ddd;
}


.form-section {
  flex: 1;
  max-width: 500px;
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  height: fit-content;
}

.image-section {
  flex: 1;
  position: relative;
  min-height: 600px;
  background-image: url('/public/Снимок экрана (28548) copy.png');
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
}

.stepper-container {
  position: absolute;
      top: 3rem;
      right: 28rem;
      background: white;
      padding: 1.5rem;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
      z-index: 10;
      min-width: 250px;
}

.stepper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: white;
  background-color: #e0e0e0;
}

.step.active .step-circle {
  background-color: #00bcd4;
}

.step-label {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.step.active .step-label {
  color: #00bcd4;
  font-weight: 600;
}

h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #1a1a1a;
}

h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem 0;
  color: #1a1a1a;
}

.form-group {
  margin-bottom: 1rem;
}

.form-row {
  display: flex;
  gap: 0.75rem;
}

.form-row .form-group {
  flex: 1;
}

input, select {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  background-color: #fafafa;
  transition: all 0.2s ease;
}

input:focus, select:focus {
  outline: none;
  border-color: #00bcd4;
  background-color: white;
  box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

input::placeholder {
  color: #999;
}

input:disabled {
  background-color: #f0f0f0;
  color: #666;
}

.gender-options {
  display: flex;
  gap: 1.5rem;
  margin: 1rem 0;
}

.gender-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.gender-option input[type="radio"] {
  width: auto;
  margin: 0;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
  margin-top: 2px;
}

.checkbox-group label {
  font-size: 14px;
  line-height: 1.4;
  color: #555;
}

.checkbox-group a {
  color: #00bcd4;
  text-decoration: none;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.phone-input {
  display: flex;
  gap: 0.5rem;
}

.country-code {
  width: 80px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fafafa;
  font-size: 14px;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #00bcd4, #0097a7);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1.5rem;
  transition: all 0.2s ease;
}

.submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 188, 212, 0.3);
}

.info-icon {
  width: 16px;
  height: 16px;
  background-color: #00bcd4;
  border-radius: 50%;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-left: 0.5rem;
  cursor: help;
}

.length-input-container {
  position: relative;
}

@media (max-width: 768px) {
  .container {
    /* flex-direction: column; */
    padding: 1rem;
  }

  .stepper-container {
    position: static;
    margin-bottom: 1rem;
  }

  .form-row {
    flex-direction: column;
  }

  .gender-options {
    flex-direction: column;
    gap: 0.75rem;
  }
}
.subscription-option input[type="radio"] {
    display: none; /* Скрываем оригинальный radio button */
}

.subscription-option input[type="radio"]:checked + label {
    border: 1px solid #0066cc;
    background-color: #f0f8ff; /* Очень светлый синий фон для выделения */
}
.subscription-option {
    margin-bottom: 10px;
    border-radius: 4px;
}

.subscription-option input[type="radio"]:checked + label {
    border-color: #0066cc; /* Синий цвет обводки */
    box-shadow: 0 0 0 1px #0066cc; /* Добавляем синюю обводку */
}

.subscription-label {
    display: block;
    padding: 15px;
    cursor: pointer;
    border: 1px solid transparent; /* Прозрачная граница по умолчанию */
    border-radius: 4px;
}

.subscription-option input[type="radio"]:checked + .subscription-label {
    border: 1px solid #0066cc; /* Синяя граница при выборе */
}

.usage-option {
    margin-bottom: 10px;
}

.usage-label {
    display: block;
    padding: 15px;
    cursor: pointer;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.2s; /* Плавное изменение цвета границы */
}

.usage-option input[type="radio"] {
    display: none; /* Скрываем оригинальный radio button */
}

.usage-option input[type="radio"]:checked + .usage-label {
    border: 1px solid #0066cc; /* Синяя граница при выборе */
    background-color: #f0f8ff; /* Светло-синий фон для выделения (опционально) */
    box-shadow: 0 0 0 1px #0066cc; /* Дополнительное выделение (опционально) */
}
.view-bikes {
  background: none;
  border: none;
  color: #2ebfd1;
  cursor: pointer;
  font-weight: 500;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
}

.view-bikes:hover {
  text-decoration: underline;
}
/* Modal Overlay */
.region-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 18, 18, 0.6);
  justify-content: center;
  align-items: center;
}

/* Modal Content Box */
.region-modal-content {
  background: white;
  border-radius: 12px;
  padding: 30px 24px;
  width: 90%;
  max-width: 400px;
  position: relative;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* Close Button */
.close-modal {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Search Input */
.search-container {
  display: flex;
  margin: 24px 0;
  gap: 8px;
}

.search-container input {
  flex: 1;
  padding: 10px 14px;
  font-size: 16px;
  border-radius: 24px;
  border: 1px solid #ccc;
  outline: none;
}

.search-container button {
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

/* Confirm Button */
.view-bikes-btn {
  background-color: #74eeb5;
  color: #121212;
  border: none;
  border-radius: 9999px;
  font-size: 16px;
  padding: 12px 24px;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

.view-bikes-btn:hover {
  background-color: #5ed6a0;
}
