/* ============================================================
   STYLES.CSS — Kitchen+
   ============================================================
   TABLE OF CONTENTS
   -----------------
    1.  Reset & Root Variables
    2.  Base
    3.  Scroll Animations
    4.  Nav
    5.  Shared Inner Container
    6.  Hero
    7.  Tagline
    8.  Features
    9.  Grow
   10.  Free
   11.  Onboarding & Handyman
   12.  Footer
   13.  Responsive
   ============================================================ */


/* ============================================================
   1. RESET & ROOT VARIABLES
   ============================================================ */

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

:root {
  --green: #1D9E75;
  --dark:  #111111;
  --grey:  #f5f5f5;
  --pink:  #D4537E;
}

html { scroll-behavior: smooth; }


/* ============================================================
   2. BASE
   ============================================================ */

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  background: #fff;
  color: #333;
  -webkit-font-smoothing: antialiased;
}

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


/* ============================================================
   3. SCROLL ANIMATIONS
   ============================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

.d1 { transition-delay: 0ms; }
.d2 { transition-delay: 100ms; }
.d3 { transition-delay: 200ms; }
.d4 { transition-delay: 300ms; }


/* ============================================================
   4. NAV
   ============================================================ */

#nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #eee;
  transition: box-shadow 0.2s;
  padding: 0 48px;
}
#nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }

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

.nav-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--dark);
}

.nav-plus { color: var(--green); }

.nav-cta {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  background: var(--green);
  padding: 10px 22px;
  border-radius: 6px;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }


/* ============================================================
   5. SHARED INNER CONTAINERS
   .section-inner  — full width, for grid sections (features)
   .text-inner     — narrow centered, for prose sections
   ============================================================ */

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Shared section labels and headings */
.section-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #aaa;
  display: block;
  margin-bottom: 14px;
}

.section-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.05;
  letter-spacing: -1.2px;
  color: var(--dark);
  margin-bottom: 48px;
}


/* ============================================================
   6. HERO
   ============================================================ */

#hero {
  padding: 64px 48px;
  background: #fff;
}

.hero-h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(38px, 5.5vw, 60px);
  line-height: 1.2;
  letter-spacing: -2px;
  color: var(--dark);
  margin-bottom: 28px;
}

.hero-h1 em {
  font-style: normal;
  color: var(--green);
}

.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #555;
  line-height: 1.75;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

.hero-btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: #fff;
  background: var(--green);
  padding: 14px 32px;
  border-radius: 7px;
  transition: opacity 0.2s, transform 0.15s;
}
.hero-btn:hover { opacity: 0.88; transform: translateY(-2px); }


/* ============================================================
   7. TAGLINE
   ============================================================ */

#tagline {
  padding: 64px 48px;
  background: var(--dark);
}

.tagline-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.8px;
  color: #fff;
}


/* ============================================================
   8. FEATURES
   ============================================================ */

#features {
  padding: 64px 48px;
  background: #fff;
}

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

.feature-card {
  background: var(--grey);
  border-radius: 12px;
  padding: 36px 32px;
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 16px;
  line-height: 1;
}

.feature-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.3px;
  color: var(--dark);
  margin-bottom: 10px;
}

.feature-body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}


/* ============================================================
   9. GROW
   ============================================================ */

#grow {
  padding: 64px 48px;
  background: var(--grey);
  border-top: 1px solid #eee;
}

.grow-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -1.2px;
  color: var(--dark);
  margin-bottom: 20px;
}

.grow-body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 19px;
  color: #555;
  line-height: 1.8;
  letter-spacing: -0.01em;
}


/* ============================================================
   10. FREE
   ============================================================ */

#free {
  padding: 64px 48px;
  background: var(--dark);
  color: #fff;
}

.free-tag {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-bottom: 16px;
}

.free-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 9vw, 96px);
  line-height: 1.0;
  letter-spacing: -3px;
  color: #fff;
  margin-bottom: 36px;
}

.free-personal {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 21px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 28px;
}

.free-body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 16px;
}

.free-btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: #fff;
  background: var(--green);
  padding: 14px 32px;
  border-radius: 7px;
  margin-top: 28px;
  transition: opacity 0.2s, transform 0.15s;
}
.free-btn:hover { opacity: 0.88; transform: translateY(-2px); }

.beta-notice {
  margin-top: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 24px 28px;
}

.beta-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 10px;
}

.beta-fine {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}


/* ============================================================
   11. ONBOARDING & HANDYMAN
   ============================================================ */

#onboarding {
  padding: 64px 48px;
  background: var(--grey);
}

#handyman {
  padding: 64px 48px;
  background: var(--pink);
}

#handyman .section-label      { color: rgba(255,255,255,0.45); }
#handyman .services-heading   { color: #fff; }
#handyman .services-credentials { color: rgba(255,255,255,0.9); }
#handyman .services-body      { color: rgba(255,255,255,0.82); }
#handyman .services-note      { color: rgba(255,255,255,0.55); }
#handyman .services-btn {
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
#handyman .services-btn:hover {
  background: #fff;
  color: var(--pink);
  border-color: #fff;
}

.services-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--dark);
  margin-bottom: 20px;
}

.services-credentials {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--green);
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  display: block;
}

.services-body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 12px;
}

.services-note {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #999;
  margin-bottom: 28px;
}

.services-btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--green);
  border: 2px solid var(--green);
  padding: 12px 28px;
  border-radius: 7px;
  margin-top: 16px;
  transition: background 0.2s, color 0.2s;
}
.services-btn:hover { background: var(--green); color: #fff; }


/* ============================================================
   12. FOOTER
   ============================================================ */

#footer {
  background: #0a0a0a;
  padding: 32px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

.footer-plus { color: var(--green); }

.footer-copy {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}


/* ============================================================
   13. RESPONSIVE  (breakpoint: 768px)
   ============================================================ */

@media (max-width: 768px) {

  #nav                { padding: 0 20px; }
  .nav-brand          { font-size: 15px; }
  .nav-cta            { font-size: 13px; padding: 9px 16px; }

  #hero,
  #tagline,
  #features,
  #grow,
  #free,
  #onboarding,
  #handyman           { padding: 60px 24px; }

  .hero-h1            { letter-spacing: -1.2px; }
  .hero-sub           { font-size: 17px; }

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

  .grow-body          { font-size: 17px; }

  .tagline-text       { font-size: 19px; letter-spacing: -0.4px; }

  .free-heading       { letter-spacing: -2px; }
  .free-personal      { font-size: 18px; }
  .free-body          { font-size: 16px; }
  .beta-notice        { padding: 20px 18px; }

  .services-body      { font-size: 16px; }

  #footer             { padding: 24px; }

}
