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

html {
  scroll-behavior: smooth;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 1);
  backdrop-filter: blur(10px);
  z-index: 1000;
  height: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .container {
  display: flex;
  align-items: center;
  gap: 15px;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: white;
  height: 100%;
}

.logo-link img {
  height: 80%;
  object-fit: contain;
}

.logo-text {
  font-size: 2rem;
  font-weight: 600;
  color: white;
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #f59e0b, #d97706);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%), url(/public_content/pukomc-hero-background.avif);
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  opacity: 0.5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.6rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, #f59e0b, #d97706);
  color: white;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

/* Benefits Section */
.benefits {
  padding: 100px 0;
  background: #f8fafc;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 60px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.benefit-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(245, 158, 11, 0.1);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #0f172a, #1e293b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.7rem;
}

.benefit-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 15px;
}

.benefit-card p {
  color: #64748b;
  line-height: 1.7;
}

/* Products Section */
.products {
  padding: 100px 0;
  background: white;
  color: #333;
}

.products .section-title {
  color: #0f172a;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.product-card.selected {
  border: 2px solid #ff9900;
  /*transform: scale(1.05);*/
}

.product-card-badge {
  position: absolute;
  top: 15px;
  right: 20px;
  background: linear-gradient(45deg, #ff9900, #ff6600);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
  z-index: 2;
}

.product-image {
  width: 350px;
  object-fit: cover;
  background: #f1f5f9;
}

.product-content {
  padding: 30px;
}

.product-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 15px;
  text-align: center;
}

.product-card p {
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.6;
}

.product-features {
  list-style: none;
  margin-bottom: 25px;
}

.product-features li {
  padding: 5px 0;
  color: #475569;
  font-size: 0.95rem;
}

.product-features li::before {
  content: "✓";
  color: #f59e0b;
  font-weight: bold;
  margin-right: 10px;
}

.amazon-btn {
  display: inline-block;
  background: linear-gradient(45deg, #f59e0b, #d97706);
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
}

.amazon-btn:hover {
  background: linear-gradient(45deg, #d97706, #b45309);
  transform: translateY(-2px);
}

/* Trust Section */
.trust {
  padding: 80px 0;
  background: #0f172a;
  color: white;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 40px;
}

.trust-item {
  text-align: center;
  padding: 20px;
}

.trust-number {
  font-size: 3rem;
  font-weight: 800;
  color: #f59e0b;
  margin-bottom: 10px;
  display: block;
}

.trust-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
}

.trust-description {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Reviews Section */
.reviews {
  padding: 100px 0;
  background: #f8fafc;
}

.reviews .section-title {
  color: #0f172a;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.review-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.reviewer-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(45deg, #0f172a, #1e293b);
}

.review-info h4 {
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.stars {
  color: #f59e0b;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.review-verified {
  color: #64748b;
  font-size: 0.9rem;
}

.review-text {
  color: #475569;
  line-height: 1.7;
  font-style: italic;
}

/* About Section */
.about {
  padding: 100px 0;
  background: white;
}

.about .section-title {
  color: #0f172a;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 25px;
}

/* Footer */
.footer {
  background: #0f172a;
  color: white;
  padding: 10px 0;
}

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

.footer-links {
  display: flex;
  gap: 25px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #f59e0b;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: #7184a2;
  text-align: center;
  line-height: 1.5;
  padding: 10px;
}

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

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .review-header {
    flex-direction: column;
    text-align: center;
  }

  .reviewer-avatar {
    width: 80px;
    height: 80px;
  }

  .logo-text {
    font-size: 1.5rem;
  }

  .hero::before {
    opacity: 0.8;
  }
  
}
