.elementor-1671 .elementor-element.elementor-element-e3e6b58{--display:flex;}/* Start custom CSS for html, class: .elementor-element-73edda4 *//* =============================================
   ZenMaid Blog — style.css
   Simple, clean, easy to edit
   ============================================= */


/* ---- 1. FONTS ---- */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=DM+Sans:wght@400;500;600;700&display=swap');


/* ---- 2. COLORS & SETTINGS ---- */
:root {
  --green       : #1E6B4A;
  --green-mid   : #2D8A62;
  --green-light : #EAF5EF;
  --amber       : #F59E0B;
  --dark        : #0F1F17;
  --body-text   : #2C3E31;
  --muted       : #607870;
  --border      : #D6E8DC;
  --bg          : #F7FAF8;
  --white       : #FFFFFF;

  --font-title  : 'DM Serif Display', Georgia, serif;
  --font-body   : 'DM Sans', system-ui, sans-serif;

  --radius      : 12px;
  --max-width   : 860px;
}


/* ---- 3. RESET ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: var(--body-text);
  background: var(--bg);
}

a {
  color: var(--green);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }


/* ---- 4. NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 99;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 66px;
}

.navbar .logo {
  font-family: var(--font-title);
  font-size: 22px;
  color: var(--green);
}

.navbar nav {
  display: flex;
  gap: 32px;
}
.navbar nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
}
.navbar nav a:hover {
  color: var(--green);
  text-decoration: none;
}

.navbar .nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 100px;
  font-weight: 700 !important;
}
.navbar .nav-cta:hover { background: var(--dark); }


/* ---- 5. HERO ---- */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: 96px 24px 86px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(46,138,98,.32) 0%, transparent 70%);
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero .tag {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.07);
  color: #9DDBBD;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 30px;
}

.hero h1 {
  font-family: var(--font-title);
  font-size: clamp(32px, 5.5vw, 60px);
  line-height: 1.13;
  max-width: 830px;
  margin: 0 auto 26px;
  letter-spacing: -1px;
}

.hero h1 em {
  font-style: normal;
  color: #6EDBA8;
}

.hero .lead {
  font-size: 18px;
  color: rgba(255,255,255,.70);
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

.hero .meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
}
.hero .meta span { display: flex; align-items: center; gap: 6px; }


/* ---- 6. MAIN WRAPPER ---- */
.wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 24px 108px;
}


/* ---- 7. INTRO TEXT ---- */
.intro-text {
  font-size: 20px;
  line-height: 1.9;
  color: var(--muted);
  border-left: 4px solid var(--green-mid);
  padding-left: 26px;
  margin-bottom: 70px;
}


/* ---- 8. SECTION ---- */
.section {
  margin-bottom: 76px;
}

.section h2 {
  font-family: var(--font-title);
  font-size: 33px;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section h2 .icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--green-light);
  border-radius: 12px;
  font-size: 21px;
  flex-shrink: 0;
}

.section p {
  margin-bottom: 18px;
  color: var(--body-text);
}
.section p:last-child { margin-bottom: 0; }


/* ---- 9. STAT STRIP ---- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0;
}

.stat-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
}

.stat-box .big {
  font-family: var(--font-title);
  font-size: 50px;
  color: var(--green);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-box .desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}


/* ---- 10. CALLOUT BOX ---- */
.callout {
  background: var(--green-light);
  border-left: 5px solid var(--green-mid);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 28px;
  margin: 32px 0;
  color: var(--dark);
}

.callout .callout-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.callout p { margin: 0; font-size: 16px; }

.callout.amber {
  background: #FFFBEB;
  border-color: var(--amber);
}
.callout.amber .callout-label { color: #92400E; }


/* ---- 11. CARD LIST ---- */
.card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
}

.card-list li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: box-shadow .2s, transform .2s;
}

.card-list li:hover {
  box-shadow: 0 6px 28px rgba(30,107,74,.1);
  transform: translateY(-2px);
}

.card-list .card-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.card-list strong {
  display: block;
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 4px;
}

.card-list span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}


/* ---- 12. STEP LIST (timeline) ---- */
.steps {
  list-style: none;
  border-left: 2px solid var(--border);
  padding-left: 36px;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.steps li {
  position: relative;
  padding-bottom: 36px;
}
.steps li:last-child { padding-bottom: 0; }

.steps li::before {
  content: attr(data-n);
  position: absolute;
  left: -51px;
  top: 0;
  width: 32px;
  height: 32px;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps li h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  padding-top: 4px;
}

.steps li p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}


/* ---- 13. COMPARISON TABLE ---- */
.table-wrap {
  overflow-x: auto;
  margin: 32px 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: var(--white);
}

thead tr {
  background: var(--dark);
  color: var(--white);
}

thead th {
  padding: 16px 22px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .5px;
}

tbody tr { border-top: 1px solid var(--border); }
tbody tr:nth-child(even) { background: var(--bg); }
tbody td { padding: 14px 22px; }

.yes { color: var(--green); font-weight: 700; }
.no  { color: #B91C1C;      font-weight: 700; }


/* ---- 14. TESTIMONIAL ---- */
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px 44px;
  margin: 44px 0;
  position: relative;
  box-shadow: 0 4px 20px rgba(30,107,74,.07);
}

.testimonial .quote-mark {
  font-family: var(--font-title);
  font-size: 100px;
  line-height: 1;
  color: var(--green-light);
  position: absolute;
  top: 6px;
  left: 26px;
}

.testimonial blockquote {
  font-size: 19px;
  font-style: italic;
  color: var(--dark);
  line-height: 1.8;
  padding-top: 30px;
  margin-bottom: 22px;
}

.testimonial .who {
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
}

.testimonial .role {
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
}


/* ---- 15. DIVIDER ---- */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 64px 0;
}


/* ---- 16. CTA BANNER ---- */
.cta {
  background: var(--dark);
  color: var(--white);
  border-radius: 22px;
  padding: 72px 52px;
  text-align: center;
  margin-top: 76px;
  position: relative;
  overflow: hidden;
}

.cta::after {
  content: '';
  position: absolute;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(46,138,98,.28) 0%, transparent 68%);
  bottom: -240px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.cta h2 {
  font-family: var(--font-title);
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.cta p {
  font-size: 17px;
  color: rgba(255,255,255,.68);
  max-width: 500px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

.cta .trial-note {
  font-size: 13px;
  color: rgba(255,255,255,.38);
  margin-top: 18px;
  margin-bottom: 0;
}

.btn-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}

.btn-primary {
  background: var(--green-mid);
  color: var(--white);
}
.btn-primary:hover {
  background: #1f6245;
  text-decoration: none;
}

.btn-ghost {
  border: 2px solid rgba(255,255,255,.28);
  color: var(--white);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.08);
  text-decoration: none;
}


/* ---- 17. FOOTER ---- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.42);
  text-align: center;
  padding: 44px 24px;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,.05);
  line-height: 2;
}
.footer strong { color: rgba(255,255,255,.8); }
.footer a { color: rgba(255,255,255,.5); }
.footer a:hover { color: #fff; }


/* ---- 18. MOBILE ---- */
@media (max-width: 680px) {
  .navbar { padding: 0 20px; }
  .navbar nav { display: none; }

  .hero { padding: 62px 20px 58px; }

  .wrapper { padding: 44px 18px 76px; }

  .stat-strip { grid-template-columns: 1fr; }

  .section h2 { font-size: 26px; }

  .cta { padding: 46px 24px; }

  .testimonial { padding: 30px 24px; }
  .testimonial blockquote { font-size: 17px; }

  .btn-group { flex-direction: column; align-items: stretch; }
  .btn { text-align: center; }
}/* End custom CSS */