:root {
  --mint: #ecf9f4;
  --accent: #10b981;
  --text-dark: #0b0b0b;
  --muted: #7a7a7a;
  --container: 1180px;
  --radius: 16px;
  --card-radius: 20px;
  font-family: "Poppins", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
}
body {
  background: var(--mint);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  font-weight: 400;
}

.container {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}
.site-header {
  background: transparent;
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}
.logo {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.4rem;
}
.nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}
.nav a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.75);
  font-weight: 500;
}
.nav li.active a {
  color: var(--accent);
  position: relative;
}
.nav li.active a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -18px;
}
.hero {
  padding: 60px 0 30px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 40px;
  align-items: center;
  min-height: 620px;
}
.hero-left h1 {
  font-size: 4.2rem;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 18px;
  font-weight: 800;
  color: var(--text-dark);
}
.hero-left h1 span {
  display: block;
}
.lead {
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 28px;
  font-size: 1rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.12);
}
.partners {
  margin-top: 48px;
  display: flex;
  gap: 36px;
  align-items: center;
  opacity: 0.45;
}
.hero-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  border-radius: var(--card-radius);
  overflow: hidden;
  background: #fff;
  padding: 18px;
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.06);
}
.hero-img {
  width: 100%;
  display: block;
  border-radius: 12px;
  transform-origin: center;
}
.badge {
  position: absolute;
  background: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  font-weight: 600;
  font-size: 0.95rem;
}
.badge img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.badge-rating {
  left: 5%;
  bottom: 12%;
  transform: translateX(0);
  white-space: nowrap;
}
.badge-quality {
  right: 4%;
  top: 8%;
}
.dots-pattern {
  position: absolute;
  right: -26px;
  bottom: -24px;
  width: 130px;
  height: 130px;
  background-image: radial-gradient(
    rgba(16, 185, 129, 0.12) 12%,
    transparent 13%
  );
  background-size: 20px 20px;
  opacity: 0.6;
  transform: rotate(12deg);
}
.features {
  padding: 28px 0 18px;
  background: transparent;
}
.features-row {
  display: flex;
  gap: 28px;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 20px 0;
}
.feat {
  display: flex;
  gap: 18px;
  align-items: center;
  width: 25%;
}
.feat-ico {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #f3fff6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.feat h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.feat p {
  color: var(--muted);
  font-size: 0.9rem;
}
.benefit {
  padding: 60px 0;
  background: #fff;
}
.benefit-grid {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 60px;
  align-items: center;
}
.image-wrap {
  background: var(--mint);
  padding: 28px;
  border-radius: 16px;
  max-width: 520px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.image-wrap img {
  display: block;
  width: 100%;
  border-radius: 8px;
}
.kicker {
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 8px;
}
.big {
  font-size: 3.2rem;
  line-height: 1.05;
  margin-bottom: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.checklist {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 12px;
}
.checklist li {
  position: relative;
  padding-left: 34px;
  color: var(--text-dark);
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
  background: transparent;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  border-radius: 6px;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fff;
}

.hero-section {
  background-image: url(img/4734847b5bd31c1a9cdcd022e9265cf12aca7e6b.png);
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 1000px;
  margin: 30px auto;
  border-radius: 4px;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  text-align: center;
  color: #fff;
  z-index: 2;
  padding: 20px;
}

.hero-content h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}
.cta-button {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  background-color: #3cb86e;
  color: white;
  padding: 12px 25px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #2e9c5a;
}

.cta-button i {
  margin-left: 10px;
}

.banner {
  width: 100%;
  max-width: 900px;
  background-color: white;
  border-radius: 15px;
  padding: 40px;
  color: black;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  margin-left: 300px;
}

.banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.banner::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.header {
  margin-bottom: 30px;
}

.stars {
  font-size: 14px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.stars span {
  color: #ffd700;
  margin-right: 5px;
}

.title {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 5px;
}

.subtitle {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 30px;
}

.stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  opacity: 0.9;
}

.promo-button {
  display: inline-block;
  background-color: white;
  color: #2e7d32;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.promo-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .banner {
    padding: 30px 20px;
  }

  .title {
    font-size: 28px;
  }

  .subtitle {
    font-size: 18px;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-number {
    font-size: 28px;
  }
}

.foodies-footer {
  background-color: #fff;
  padding: 40px 0 20px 0;
  color: #333;
  border-top: 1px solid #eee;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 30px;
}

.footer-column {
  flex: 1;
  min-width: 150px;
}
.brand-info {
  flex: 1.5;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #3cb86e;
  margin-bottom: 15px;
}
.brand-info p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #777;
}
.social-links a {
  color: #000;
  font-size: 16px;
  margin-right: 15px;
  transition: color 0.2s;
}

.social-links a:hover {
  color: #3cb86e;
}

.footer-column h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #000;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column li a {
  text-decoration: none;
  color: #777;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-column li a:hover {
  color: #3cb86e;
}

.newsletter p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #777;
}

.subscribe-form {
  display: flex;
  width: 100%;
}

.subscribe-form input[type="email"] {
  flex-grow: 1;
  padding: 10px 15px;
  border: none;
  background-color: #f3f3f3;
  font-size: 14px;
  border-radius: 4px 0 0 4px;
  color: #333;
}

.subscribe-form button {
  padding: 10px 20px;
  border: none;
  background-color: #3cb86e;
  color: white;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  transition: background-color 0.2s;
}

.subscribe-form button:hover {
  background-color: #2e9c5a;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  margin-top: 40px;
  border-top: 1px solid #eee;
  max-width: 1000px;
  margin: 40px auto 0 auto;
}

.copyright p {
  margin: 0;
  font-size: 13px;
  color: #777;
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 30px;
  }
  .footer-container {
    flex-wrap: wrap;
  }
  .footer-column {
    flex: 1 1 45%;
    margin-bottom: 30px;
  }
  .brand-info,
  .newsletter {
    flex: 1 1 100%;
  }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr 420px;
  }
  .benefit-grid {
    grid-template-columns: 420px 1fr;
  }
}
@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 0;
  }
  .hero-right {
    order: -1;
    margin-bottom: 30px;
  }
  .hero-left h1 {
    font-size: 2.4rem;
  }
  .hero-left .lead {
    max-width: 100%;
  }
  .partners {
    justify-content: flex-start;
    gap: 24px;
  }
  .features-row {
    flex-direction: column;
    gap: 18px;
  }
  .feat {
    width: 100%;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 28px;
  }
  .image-wrap {
    max-width: 100%;
  }
  .big {
    font-size: 2rem;
  }
}
@media (max-width: 420px) {
  .logo {
    font-size: 1.1rem;
  }
  .nav ul {
    gap: 12px;
  }
  .hero-left h1 {
    font-size: 1.8rem;
  }
  .btn {
    padding: 12px 18px;
  }
  .badge {
    font-size: 0.85rem;
    padding: 8px 10px;
  }
}
