/* POPPA CLEAN™ Retail V3
   Color system based on packaging:
   Teal + White + Dark Charcoal
*/

:root {
  --pc-teal: #4CC7C1;        /* primary teal */
  --pc-teal-dark: #34A59F;   /* hover teal */
  --pc-dark: #222426;        /* deep charcoal */
  --pc-black: #000000;
  --pc-white: #FFFFFF;
  --pc-light: #F5F5F5;
  --pc-border: #E2E2E2;
  --pc-muted: #666666;
}

/* GLOBAL */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  background: var(--pc-white);
  color: var(--pc-black);
  line-height: 1.6;
}

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

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 {
  margin: 0;
}

/* HEADER / NAV */

.site-header {
  border-bottom: 1px solid var(--pc-border);
  background: var(--pc-white);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 52px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 800;
  font-size: 16px;
  color: var(--pc-dark);
}

.brand-tagline {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pc-muted);
}

.nav {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
}

.nav-link {
  text-decoration: none;
  color: var(--pc-muted);
}

.nav-link:hover {
  color: var(--pc-teal);
}

.nav-link-cta {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--pc-teal);
  color: var(--pc-teal);
}

/* HERO */

.hero {
  padding: 40px 0 50px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-chip {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--pc-muted);
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.1;
  color: var(--pc-dark);
  font-weight: 900;
  margin-bottom: 14px;
}

.hero-sub {
  font-size: 17px;
  color: #444;
  max-width: 540px;
  margin-bottom: 18px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.hero-note {
  font-size: 13px;
  color: var(--pc-muted);
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--pc-muted);
}

.hero-bullets span {
  background: var(--pc-light);
  border-radius: 999px;
  padding: 4px 10px;
}

.hero-media {
  min-width: 0;
}

.hero-image-wrap {
  border-radius: 20px;
  border: 1px solid var(--pc-border);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.hero-image {
  width: 100%;
  display: block;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 26px;
  border: none;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.16s ease;
}

.btn-primary {
  background: var(--pc-teal);
  color: var(--pc-white);
  box-shadow: 0 10px 24px rgba(76, 199, 193, 0.4);
}

.btn-primary:hover {
  background: var(--pc-teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(76, 199, 193, 0.45);
}

.btn-light {
  background: var(--pc-white);
  color: var(--pc-teal);
  border: 1px solid var(--pc-white);
}

.btn-light:hover {
  background: #f0fffd;
}

/* BENEFIT STRIP */

.benefit-strip {
  border-top: 1px solid var(--pc-border);
  border-bottom: 1px solid var(--pc-border);
  background: var(--pc-light);
}

.benefit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 0;
  justify-content: center;
}

.benefit-pill {
  background: var(--pc-white);
  border-radius: 999px;
  border: 1px solid var(--pc-border);
  padding: 6px 14px;
  font-size: 13px;
  color: #444;
}

/* SECTION BASE */

.section {
  padding: 58px 0;
}

.section-alt {
  background: var(--pc-light);
}

.section h2 {
  text-align: center;
  font-size: 28px;
  color: var(--pc-dark);
  margin-bottom: 10px;
}

.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 26px;
  font-size: 16px;
  color: var(--pc-muted);
}

.section-intro.left {
  text-align: left;
}

.section-intro.white {
  color: #f0ffff;
}

/* FEATURES GRID */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  background: var(--pc-white);
  border-radius: 14px;
  border: 1px solid var(--pc-border);
  padding: 18px 20px;
}

.feature-card h3 {
  margin-bottom: 6px;
  font-size: 18px;
  color: var(--pc-dark);
}

.feature-card p {
  margin: 0;
  font-size: 15px;
  color: var(--pc-muted);
}

/* HOW IT WORKS */

.steps-list {
  max-width: 650px;
  margin: 0 auto 26px;
  padding-left: 20px;
  font-size: 15px;
  color: var(--pc-muted);
}

.steps-list li {
  margin-bottom: 6px;
}

.before-after {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: center;
}

.ba-column {
  max-width: 340px;
  text-align: center;
}

.ba-image {
  border-radius: 16px;
  border: 1px solid var(--pc-border);
  margin-bottom: 10px;
}

.ba-text {
  font-size: 14px;
  color: var(--pc-muted);
}

/* PACKAGING */

.packaging-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.checklist {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  font-size: 15px;
  color: var(--pc-muted);
}

.checklist li {
  margin-bottom: 6px;
}

.checklist li::before {
  content: "✓";
  color: var(--pc-teal);
  margin-right: 8px;
}

.packaging-images {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.packaging-img {
  border-radius: 16px;
  border: 1px solid var(--pc-border);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
}

/* USE CASES */

.use-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.use-card {
  background: var(--pc-white);
  border-radius: 14px;
  border: 1px solid var(--pc-border);
  padding: 16px 18px;
  font-size: 15px;
  color: var(--pc-muted);
}

.use-card h3 {
  margin-bottom: 6px;
  color: var(--pc-dark);
}

/* PREORDER */

.preorder {
  background: linear-gradient(135deg, var(--pc-teal), #5bd4ce);
  color: var(--pc-white);
}

.preorder-inner {
  max-width: 720px;
}

.preorder h2 {
  color: var(--pc-white);
}

.pre-box {
  background: rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 20px 22px;
  margin-top: 10px;
}

.pre-price {
  font-size: 24px;
  font-weight: 800;
  margin: 4px 0 6px;
}

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

.pre-note {
  font-size: 13px;
  color: #e6fffd;
}

/* FAQ */

.section-faq .faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.faq-item {
  background: var(--pc-white);
  border-radius: 14px;
  border: 1px solid var(--pc-border);
  padding: 16px 18px;
  font-size: 14px;
  color: var(--pc-muted);
}

.faq-item h3 {
  margin-bottom: 6px;
  color: var(--pc-dark);
}

/* FOOTER */

.footer {
  background: var(--pc-dark);
  color: var(--pc-white);
  padding: 20px 0;
  font-size: 13px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-logo {
  height: 38px;
  width: auto;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero-grid,
  .packaging-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media {
    order: -1;
  }

  .feature-grid,
  .use-grid,
  .section-faq .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 32px;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .benefit-row {
    justify-content: flex-start;
  }
}
