/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --green: #1a7a4a;
  --green-light: #e8f5ee;
  --gray: #f5f5f3;
  --gray-mid: #888;
  --text: #1a1a1a;
  --font: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* =====================
   LAYOUT
   ===================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 100px 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
  background: var(--black);
  color: var(--white);
  border-radius: 6px;
  font-weight: 700;
}

.btn-sm:hover { background: var(--green); }

.btn-primary {
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
}
.btn-primary:hover { background: #155e39; border-color: #155e39; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { border-color: var(--white); }

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-outline-dark:hover { background: var(--black); color: var(--white); }

/* =====================
   NAV
   ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--white);
}

/* =====================
   HERO
   ===================== */
.hero {
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 64px;
  overflow: hidden;
}

.hero-inner {
  padding: 80px 4rem 80px 2rem;
  max-width: 560px;
  margin-left: auto;
}

.badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  max-width: 440px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-img-wrap {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

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

.hero-img-wrap.no-img {
  background: linear-gradient(135deg, #1a7a4a 0%, #0a3d24 100%);
}

/* =====================
   VALUE PROPS
   ===================== */
.value-props {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
}

.props-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

.prop-icon { margin-right: 0.4rem; }

/* =====================
   SECTION LABELS
   ===================== */
.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

/* =====================
   WHY TAYYIB
   ===================== */
.why {
  background: var(--white);
}

.why p {
  font-size: 1.05rem;
  color: #444;
}

.bold-line {
  font-weight: 700;
  color: var(--text) !important;
  font-size: 1.1rem !important;
}

.col-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
}

.col-img.no-img,
.col-img img + .no-img {
  background: var(--green-light);
  border-radius: 12px;
  height: 480px;
}

/* =====================
   CAFETERIA CALLOUT
   ===================== */
.cafeteria-callout {
  background: #30EF8E;
  padding: 72px 0;
}
.cafeteria-callout-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.cafeteria-callout-text h2 {
  color: var(--black);
  margin-bottom: 1rem;
}
.cafeteria-callout-text p {
  color: rgba(0,0,0,0.65);
  max-width: 560px;
  font-size: 1.05rem;
  margin: 0;
}
.btn-white {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-white:hover { background: transparent; color: var(--black); }
@media (max-width: 768px) {
  .cafeteria-callout-inner { flex-direction: column; }
  .cafeteria-callout-inner .btn-white { width: 100%; text-align: center; }
}

/* =====================
   BENEFITS
   ===================== */
.benefits {
  background: var(--gray);
}

.benefits h2 { max-width: 600px; }

.benefits-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.benefits-list li {
  background: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.05rem;
  border-left: 4px solid var(--green);
}

/* =====================
   NO JUNK
   ===================== */
.no-junk {
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.no-junk h2 {
  color: var(--white);
  margin-bottom: 3rem;
}

.no-junk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.no-junk-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* =====================
   VIBE
   ===================== */
.vibe {
  background: var(--white);
}

.vibe p { font-size: 1.05rem; color: #444; }

/* =====================
   SOCIAL PROOF
   ===================== */
.social-proof {
  background: var(--green-light);
}

.social-proof h2 { margin-bottom: 3rem; }

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
}

.review p {
  font-size: 1rem;
  font-style: italic;
  color: #333;
  margin-bottom: 1rem;
}

.review span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-mid);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* =====================
   FINAL CTA
   ===================== */
.final-cta {
  background: var(--gray);
}

.cta-inner {
  text-align: center;
  max-width: 600px;
}

.cta-inner h2 { margin-bottom: 1rem; }

.cta-inner p {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 2.5rem;
}

.cta-inner .hero-ctas {
  justify-content: center;
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer .logo { color: var(--white); }

.footer p { font-size: 0.9rem; margin: 0; }

.footer-links {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-links a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-inner {
    padding: 80px 2rem 60px;
    max-width: 100%;
    margin: 0;
  }

  .hero-img-wrap {
    height: 60vw;
  }

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

  .two-col.reverse { direction: ltr; }

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

  .no-junk-grid { grid-template-columns: 1fr 1fr; }

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

  .props-list { gap: 1.5rem; }

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

@media (max-width: 480px) {
  .no-junk-grid { grid-template-columns: 1fr; }
}
