/* =============================================
   Fresh Mint Cleaning — style.css
   Primary:#10b981 Accent:#6ee7b7 Bg:#ecfdf5
   ============================================= */

:root {
  --primary: #10b981;
  --primary-dark: #059669;
  --primary-light: #34d399;
  --accent: #6ee7b7;
  --accent-light: #a7f3d0;
  --bg: #ecfdf5;
  --bg-white: #f0fdf4;
  --text: #065f46;
  --text-light: #047857;
  --text-muted: #0d9488;
  --white: #ffffff;
  --shadow: 0 2px 12px rgba(16,185,129,0.13);
  --shadow-md: 0 4px 24px rgba(16,185,129,0.18);
  --radius: 10px;
  --radius-lg: 18px;
  --font: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  padding-top: 40px;
}
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── DEMO BAR ── */
.demo-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--primary);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  padding: 0 16px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.03em;
}
.demo-bar a { color: var(--accent-light); text-decoration: underline; }
.demo-bar a:hover { color: var(--white); }

/* ── CHECKBOX HACK NAV ── */
#nav-toggle { display: none; }

header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 40px;
  z-index: 1000;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  position: relative;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--primary);
  text-decoration: none;
}
.nav-logo:hover { text-decoration: none; }
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-menu {
  list-style: none;
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-menu a {
  display: block;
  padding: 8px 14px;
  border-radius: 7px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: background 0.18s, color 0.18s;
}
.nav-menu a:hover, .nav-menu a.active {
  background: var(--bg);
  color: var(--primary);
  text-decoration: none;
}
.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--primary-dark) !important; }

.hamburger-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px 4px;
}
.hamburger-label span {
  display: block;
  width: 26px; height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.28s;
}
#nav-toggle:checked ~ header .hamburger-label span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
#nav-toggle:checked ~ header .hamburger-label span:nth-child(2) { opacity: 0; }
#nav-toggle:checked ~ header .hamburger-label span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── MOBILE NAV ── */
#nav-toggle:checked ~ header .nav-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 62px; left: 0; right: 0;
  background: var(--white);
  padding: 16px;
  gap: 8px;
  box-shadow: var(--shadow);
  border-radius: 0 0 10px 10px;
}
#nav-toggle:checked ~ header .nav-menu a {
  padding: 12px 16px;
  border-radius: 8px;
}

/* ── SECTION BASE ── */
.section { padding: 56px 20px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-title {
  font-size: 1.75rem; font-weight: 800;
  color: var(--primary); margin-bottom: 6px; text-align: center;
}
.section-subtitle { text-align: center; color: var(--text-light); font-size: 0.95rem; margin-bottom: 40px; }
.divider { width: 50px; height: 4px; background: var(--accent); border-radius: 2px; margin: 10px auto 32px; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 80px 20px;
  text-align: center;
  color: var(--white);
}
.hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.hero-icon-wrap {
  margin-bottom: 24px;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
.hero h1 {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.hero p {
  font-size: 1.08rem;
  margin-bottom: 28px;
  line-height: 1.7;
  opacity: 0.98;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 28px 0;
}
.badge {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.3);
}
.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  transition: all 0.22s;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(16,185,129,0.25);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(16,185,129,0.35);
  text-decoration: none;
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  font-weight: 800;
}
.btn-white:hover {
  background: var(--bg);
  text-decoration: none;
}
.btn-outline-white {
  border: 2px solid var(--white);
  background: transparent;
  color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
  text-decoration: none;
}

/* ── STATS ── */
.stats {
  background: var(--white);
  padding: 40px 20px;
  border-top: 2px solid var(--accent-light);
  border-bottom: 2px solid var(--accent-light);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.stat-item {
  text-align: center;
  padding: 12px;
}
.stat-item strong {
  font-size: 2.2rem;
  color: var(--primary);
  display: block;
  margin-bottom: 6px;
}
.stat-item span {
  font-size: 0.9rem;
  color: var(--text-light);
  display: block;
}

/* ── CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  box-shadow: var(--shadow);
  transition: all 0.25s;
  text-align: center;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-light), var(--bg));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.card h3 {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 10px;
}
.card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}
.card-price {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-top: 12px;
}

/* ── STEPS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.step {
  display: flex;
  gap: 16px;
  padding: 20px;
}
.step-num {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.step-body h4 {
  color: var(--text);
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.step-body p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  position: relative;
}
.testi-card::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 24px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid var(--accent-light);
}
.stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 8px;
}
.testi-quote {
  font-size: 2.4rem;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: 8px;
}
.testi-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.testi-author {
  display: flex;
  gap: 12px;
  align-items: center;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testi-name {
  font-weight: 700;
  color: var(--text);
  font-size: 0.95rem;
}
.testi-loc {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 56px 20px;
  text-align: center;
}
.cta-banner h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
.cta-banner p {
  font-size: 1.05rem;
  margin-bottom: 24px;
  opacity: 0.95;
}

/* ── FOOTER ── */
footer {
  background: var(--text);
  color: var(--white);
  padding: 48px 20px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto 32px;
}
.footer-brand p {
  color: var(--accent-light);
  font-size: 0.9rem;
  margin-top: 8px;
  line-height: 1.6;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  margin-bottom: 12px;
}
.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 14px;
  color: var(--accent);
  font-weight: 700;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col a {
  color: var(--accent-light);
  font-size: 0.88rem;
  transition: color 0.18s;
}
.footer-col a:hover {
  color: var(--accent);
  text-decoration: none;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 0.85rem;
  color: var(--accent-light);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  body { padding-top: 40px; }

  .nav-menu {
    display: none;
  }

  .hamburger-label {
    display: flex;
  }

  .hero h1 {
    font-size: 2rem;
  }

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

  .hero-badges {
    gap: 8px;
  }

  .badge {
    font-size: 0.75rem;
    padding: 6px 10px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-item strong {
    font-size: 1.8rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step {
    gap: 12px;
    padding: 16px;
  }

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

  .cta-banner h2 {
    font-size: 1.5rem;
  }

  .cta-banner p {
    font-size: 0.95rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .section { padding: 40px 16px; }

  .hero {
    padding: 60px 16px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero-icon-wrap svg {
    width: 36px;
    height: 36px;
  }

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

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

  .cta-banner {
    padding: 40px 16px;
  }

  .nav-inner {
    height: 52px;
  }

  .nav-logo {
    font-size: 0.95rem;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
  }
}
