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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  background-color: #000;
  color: #fff;
  padding: 16px 0;
}

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

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.logo-icon {
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 2px;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

.nav-left a,
.nav-right a {
  transition: color 0.2s;
}

.nav-left a:hover,
.nav-right a:hover {
  color: #ccc;
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

.btn-primary {
  background-color: #ff6b4a;
  color: #fff;
}

.btn-primary:hover {
  background-color: #ff5533;
}

.btn-dark {
  background-color: #000;
  color: #fff;
}

.btn-dark:hover {
  background-color: #333;
}

.btn-outline {
  background-color: transparent;
  color: #000;
  border: 2px solid #000;
}

.btn-outline:hover {
  background-color: #000;
  color: #fff;
}

.btn-light {
  background-color: #fff;
  color: #000;
}

.btn-light:hover {
  background-color: #f0f0f0;
}

.btn-full {
  width: 100%;
}

/* Hero Section */
.hero {
  background-color: #ff6b4a;
  color: #fff;
  padding: 80px 0;
}

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

.hero h1 {
  font-size: 48px;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 450px;
}

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

.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.profile-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.profile-image {
  aspect-ratio: 1;
  background-color: #000;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-card h3 {
  color: #000;
  margin-bottom: 8px;
}

.profile-subtitle {
  color: #666;
  font-size: 14px;
  margin-bottom: 16px;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}

.stat-value {
  color: #000;
  font-weight: 600;
}

.stat-label {
  color: #999;
  font-size: 12px;
}

.hero-cards-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-info {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.product-thumbnail {
  width: 80px;
  height: 80px;
  background-color: #ff6b4a;
  border-radius: 8px;
  flex-shrink: 0;
  overflow: hidden;
}

.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-details {
  flex: 1;
  min-width: 0;
}

.product-label {
  background-color: #000;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  margin-bottom: 8px;
}

.product-price {
  color: #000;
  font-size: 14px;
}

.related-products {
  background-color: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.related-products h4 {
  color: #000;
  margin-bottom: 12px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.related-item {
  aspect-ratio: 1;
  background-color: #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
}

.related-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Features Section */
.features {
  background-color: #fff;
  padding: 64px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-item {
  display: flex;
  gap: 16px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background-color: #ffe8e3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ff6b4a;
}

.feature-content h3 {
  color: #000;
  margin-bottom: 8px;
}

.feature-content p {
  color: #666;
}

/* Testimonial Section */
.testimonial {
  background-color: #000;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.testimonial-brand {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 32px;
}

.testimonial-quote {
  margin-bottom: 32px;
}

.testimonial-quote p {
  font-size: 32px;
  line-height: 1.5;
  margin-bottom: 32px;
}

.testimonial-name {
  margin-bottom: 4px;
}

.testimonial-title {
  color: #999;
  font-size: 14px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #666;
  padding: 0;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #fff;
}

/* Landing Pages Section */
.landing-pages {
  background-color: #fff;
  padding: 80px 0;
}

.landing-pages h2 {
  color: #000;
  font-size: 36px;
  margin-bottom: 48px;
}

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

.page-card {
  cursor: pointer;
}

.page-image {
  background-color: #000;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 4/5;
  position: relative;
}

.page-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
}

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

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

.page-badge-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
}

.page-badge {
  background-color: #ff6b4a;
  color: #fff;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 12px;
}

.page-label {
  background-color: #fff;
  color: #000;
  padding: 8px 16px;
  border-radius: 6px;
}

.page-card h3 {
  color: #000;
}

/* Footer */
.footer {
  background-color: #000;
  color: #fff;
  padding: 48px 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  gap: 32px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
}

.footer-nav a:hover {
  color: #ccc;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid #333;
  gap: 16px;
}

.footer-credits {
  font-size: 14px;
  color: #999;
}

.footer-credits span {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 32px;
  height: 32px;
  background-color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.social-icon:hover {
  background-color: #555;
}

.footer-copyright {
  font-size: 14px;
  color: #999;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content,
  .hero-cards {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 768px) {
  .header-left,
  .header-right {
    gap: 16px;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

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

  .hero-cards {
    grid-template-columns: 1fr;
  }

  .testimonial-quote p {
    font-size: 24px;
  }

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

  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
