* { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; } body { background-color: #f9f9f9; color: #222; line-height: 1.6; } .container { max-width: 1000px; margin: 0 auto; padding: 20px; } header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  align-content: space-between;
  text-align: center;
}
.logo { display: flex; align-items: center; } .logo-grid { display: grid; grid-template-columns: repeat(5, 1fr); grid-template-rows: repeat(5, 1fr); gap: 2px; width: 24px; height: 24px; margin-right: 10px; } .logo-grid-item { width: 4px; height: 4px; border-radius: 1px; } .logo-text { font-size: 24px; font-weight: bold; text-align: center; width: 100%; } .logo-text span { color: #b48a5a; } .social-icons { display: flex; gap: 15px; } .social-icons a { color: white; font-size: 20px; text-decoration: none; } .hero { text-align: center; padding: 60px 0 40px; } .hero h1 { font-size: 36px; margin-bottom: 20px; } .hero-highlight { background-color: #b48a5a; color: white; padding: 5px 15px; border-radius: 50px; } .hero p { max-width: 700px; margin: 0 auto 30px; } .app-buttons { display: flex; justify-content: center; gap: 15px; margin-bottom: 50px; } .app-button { background-color: #fff; color: #b48a5a; border: 1px solid #b48a5a; border-radius: 8px; padding: 8px 20px; display: flex; align-items: center; text-decoration: none; } .app-screenshots { display: flex; justify-content: center; gap: 15px; margin-bottom: 50px; overflow-x: auto; } .app-screenshot {
  width: 180px;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  border: 1px solid #e0e0e0;
  display: block;
} .ratings { display: flex; justify-content: center; gap: 80px; margin-bottom: 50px; } .rating { display: flex; flex-direction: column; align-items: center; gap: 10px; } .stars { color: #FFD700; } .reviews-count { font-size: 14px; color: #aaa; } .testimonials {
  max-width: 1000px;
  margin: 0 auto 50px auto;
  padding: 0 12px;
}
.testimonials-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 32px;
  color: #b48a5a;
  font-weight: 700;
}
.testimonial-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.testimonial {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 24px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 180px;
}
.testimonial-stars {
  color: #FFD700;
  font-size: 1.2em;
  margin-bottom: 10px;
}
.testimonial-text {
  font-size: 1.08em;
  color: #444;
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-author {
  font-size: 0.98em;
  color: #888;
  font-weight: 500;
}
@media screen and (max-width: 900px) {
  .testimonial-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .testimonials {
    margin-bottom: 30px;
  }
}
.testimonial-header { display: flex; justify-content: space-between; margin-bottom: 15px; } .testimonial-stars { color: #FFD700; } .testimonial-author { display: flex; align-items: center; gap: 10px; margin-top: 15px; font-size: 14px; color: #aaa; } .flag { width: 20px; height: 15px; border-radius: 2px; } .features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 50px; } .feature { background-color: #5F1B9E; border-radius: 10px; padding: 20px; display: flex; flex-direction: column; } .feature-title { font-size: 20px; margin-bottom: 5px; } .feature-subtitle { font-size: 14px; color: rgba(255, 255, 255, 0.8); margin-bottom: 20px; } .feature-image { border-radius: 20px; width: 80%; margin: 0 auto; } .features-list { display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 50px; padding: 0 12px; } .features-list > .features-title {
  grid-column: 1 / -1;
  margin-bottom: 0px;
}
@media screen and (min-width: 769px) {
  .features-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 50px;
    padding: 0 12px;
  }
  .features-list > .features-title {
    grid-column: 1 / -1;
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 768px) {
  .features-list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
    padding: 0 12px;
  }
  .features-list > .features-title {
    margin-bottom: 0px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 22px 20px 22px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  align-items: flex-start;
  min-height: 180px;
} .feature-item-icon { width: 30px; height: 30px; background-color: #f3e9db; border-radius: 50%; display: flex; align-items: center; justify-content: center; } .feature-item-title { font-size: 18px; font-weight: bold; color: #b48a5a; } .feature-item-description { color: #555; font-size: 14px; } footer { border-top: 1px solid #e0e0e0; padding-top: 30px; margin-bottom: 20px; } .footer-links { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-bottom: 20px; } .footer-links a { color: #b48a5a; text-decoration: none; font-size: 14px; } .footer-copyright { text-align: center; color: #aaa; font-size: 14px; } .color-grid-item-1 { background-color: #FF5733; } .color-grid-item-2 { background-color: #33FF57; } .color-grid-item-3 { background-color: #3357FF; } .color-grid-item-4 { background-color: #F033FF; } .color-grid-item-5 { background-color: #FF33F0; } .color-grid-item-6 { background-color: #33FFF0; } .color-grid-item-7 { background-color: #FFF033; } a { text-decoration: none; color: #b48a5a; } a:hover, a:focus, a:active { text-decoration: none; color: #8c6a3f; }
@media screen and (max-width: 768px) {
  .container {
    padding: 10px 12px;
  }
  header {
    /* flex-direction: column; */
    align-items: center;
    padding: 10px 0;
    width: 100%;
    text-align: center;
  }
  .logo-text {
    font-size: 20px;
    text-align: center;
    width: 100%;
  }
  .hero {
    padding: 30px 0 20px;
  }
  .hero h1 {
    font-size: 24px;
  }
  .hero p {
    font-size: 15px;
    padding: 0 5px;
  }
  .app-screenshots {
    gap: 8px;
    margin-bottom: 30px;
  }
  .app-screenshot {
    width: 110px;
    max-width: 100%;
    border-radius: 12px;
  }
  .features-list {
    gap: 20px;
    margin-bottom: 30px;
    padding: 0 12px;
  }
  .feature-item-title {
    font-size: 16px;
  }
  .feature-item-description {
    font-size: 13px;
  }
  .footer-links {
    gap: 15px;
    font-size: 13px;
  }
  .footer-copyright {
    font-size: 12px;
  }
  .feature-item {
    padding: 14px;
  }
}
@media screen and (max-width: 480px) {
  .container {
    padding: 4px 6px;
  }
  .hero h1 {
    font-size: 18px;
  }
  .app-screenshot {
    width: 80px;
    max-width: 100%;
    border-radius: 8px;
  }
  .logo-text {
    font-size: 16px;
  }
}
.app-screenshots-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.slider-btn {
  background: #fff;
  border: 1px solid #b48a5a;
  color: #b48a5a;
  font-size: 22px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  margin: 0 8px;
  display: none;
  z-index: 2;
}
.slider-img-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .app-screenshots-slider {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    padding-left: 8px;
    padding-right: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .slider-btn {
    display: block;
  }
  .slider-img-wrapper {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .slider-img {
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: block;
    border-radius: 12px;
    box-sizing: border-box;
  }
  .slider-indicators {
    margin-top: 16px;
    margin-bottom: 0;
    width: 100%;
    justify-content: center;
  }
}
@media screen and (min-width: 769px) {
  .slider-btn {
    display: none !important;
  }
  .slider-img-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 16px;
  }
  .slider-img {
    display: block !important;
    width: calc(25% - 12px);
    max-width: none;
    margin: 0;
    border-radius: 20px;
    box-sizing: border-box;
    object-fit: cover;
  }
}
.slider-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  gap: 8px;
}
.slider-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e0e0e0;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.slider-indicator.active {
  background: #b48a5a;
  transform: scale(1.2);
}
@media screen and (min-width: 769px) {
  .slider-indicators {
    display: none;
  }
}
.logo-icon {
  width: 100px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 22%;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border: 1.5px solid #eee;
  background: #fff;
}
.appstore-download {
  width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.features-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0px;
  color: #b48a5a;
  font-weight: 700;
}