/* Plantico — shared site styles */
:root {
  --green-900: #14361f;
  --green-800: #1b4332;
  --green-700: #2d6a4f;
  --green-600: #40916c;
  --green-500: #22c55e;
  --green-100: #d8f3e3;
  --green-50: #eefaf3;
  --mint: #a7e8c9;
  --ink: #1f2a24;
  --muted: #55645c;
  --bg: #ffffff;
  --card: #f6faf7;
  --border: #dcebe2;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(20, 54, 31, .10);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--green-700); }
h1, h2, h3, h4 { line-height: 1.2; color: var(--green-900); font-weight: 800; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 780px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex; align-items: center; gap: 20px;
  height: 64px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.15rem; color: var(--green-900); text-decoration: none; }
.brand img { width: 36px; height: 36px; border-radius: 9px; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.site-nav a { text-decoration: none; color: var(--ink); font-weight: 600; font-size: .95rem; }
.site-nav a:hover { color: var(--green-700); }
.nav-cta {
  background: var(--green-800); color: #fff !important;
  padding: 9px 18px; border-radius: 999px;
}
.nav-cta:hover { background: var(--green-700); }
@media (max-width: 720px) { .site-nav a:not(.nav-cta) { display: none; } }

/* Buttons */
.btn {
  display: inline-block; text-decoration: none; font-weight: 700;
  border-radius: 999px; padding: 14px 28px; transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: var(--green-800); color: #fff; }
.btn-ghost { background: #fff; color: var(--green-800); border: 2px solid var(--green-800); }
.appstore-badge { display: inline-flex; align-items: center; gap: 12px; background: #000; color: #fff; border-radius: 14px; padding: 10px 22px; text-decoration: none; }
.appstore-badge svg { width: 28px; height: 28px; }
.appstore-badge .small { display: block; font-size: .68rem; opacity: .85; }
.appstore-badge .big { display: block; font-size: 1.25rem; font-weight: 700; line-height: 1.1; }
.appstore-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* Article layout */
.page-hero {
  background: linear-gradient(160deg, var(--green-100), var(--green-50) 70%);
  padding: 56px 0 40px;
}
.page-hero h1 { margin: 0 0 10px; font-size: clamp(1.7rem, 4vw, 2.6rem); }
.page-hero .meta { color: var(--muted); font-size: .92rem; }
.breadcrumbs { font-size: .85rem; margin-bottom: 18px; color: var(--muted); }
.breadcrumbs a { color: var(--green-700); text-decoration: none; }
.article-body { padding: 40px 0 24px; }
.article-body h2 { margin-top: 2.2em; font-size: 1.5rem; }
.article-body h3 { margin-top: 1.8em; font-size: 1.18rem; }
.article-body p, .article-body li { color: #2c3a32; font-size: 1.04rem; }
.article-body img { border-radius: var(--radius); }
.article-body ul, .article-body ol { padding-left: 1.3em; }
.article-body .wp-block-image { margin: 1.5em 0; text-align: center; }
.article-body .aligncenter { margin-left: auto; margin-right: auto; display: block; }
.article-body .wp-block-gallery { display: flex; gap: 14px; flex-wrap: wrap; padding: 0; list-style: none; }
.article-body .wp-block-gallery figure { flex: 1 1 280px; margin: 0; }

/* App CTA card (in articles/guides) */
.app-cta {
  display: flex; gap: 20px; align-items: center;
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  color: #fff; border-radius: 20px; padding: 26px 28px; margin: 44px 0;
  box-shadow: var(--shadow);
}
.app-cta img { width: 72px; height: 72px; border-radius: 16px; flex-shrink: 0; }
.app-cta h3 { color: #fff; margin: 0 0 6px; font-size: 1.2rem; }
.app-cta p { margin: 0 0 12px; color: #d9efe3; font-size: .95rem; }
.app-cta .btn { background: #fff; color: var(--green-800); padding: 10px 22px; }
@media (max-width: 600px) { .app-cta { flex-direction: column; text-align: center; } }

/* Cards / grids */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; text-decoration: none; color: var(--ink); display: block;
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card h3 { margin: 0 0 8px; font-size: 1.08rem; color: var(--green-900); }
.card p { margin: 0; color: var(--muted); font-size: .93rem; }
.card .tag { display: inline-block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--green-600); margin-bottom: 10px; }

/* Related posts */
.related { padding: 8px 0 56px; }
.related h2 { font-size: 1.4rem; }

/* Footer */
.site-footer { background: var(--green-900); color: #cfe6d8; padding: 48px 0 32px; margin-top: 40px; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.footer-grid h4 { color: #fff; margin: 0 0 12px; font-size: .95rem; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 8px; font-size: .92rem; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; color: #fff; font-size: 1.1rem; margin-bottom: 12px; }
.footer-brand img { width: 34px; height: 34px; border-radius: 8px; }
.footer-note { border-top: 1px solid rgba(255,255,255,.15); margin-top: 36px; padding-top: 20px; font-size: .85rem; color: #9fc4ae; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ============ Landing page ============ */
.hero {
  background: linear-gradient(165deg, #bdeed6 0%, #e7f9ef 55%, #ffffff 100%);
  padding: 72px 0 0; overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.3rem); margin: 0 0 18px; letter-spacing: -.02em; }
.hero h1 em { font-style: normal; color: var(--green-600); }
.hero .sub { font-size: 1.18rem; color: #33463b; max-width: 34em; margin: 0 0 28px; }
.hero-badges { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 18px; }
.hero-proof { color: var(--muted); font-size: .9rem; display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-proof strong { color: var(--green-900); }
.hero-phone { text-align: center; }
.hero-phone img {
  width: min(320px, 80%); border-radius: 36px;
  box-shadow: 0 30px 60px rgba(20,54,31,.25);
}
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-phone { order: -1; }
  .hero-phone img { width: min(240px, 70%); }
}

.section { padding: 72px 0; }
.section-alt { background: var(--green-50); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin: 0 0 12px; }
.section-head p { color: var(--muted); margin: 0; font-size: 1.05rem; }

/* Screenshots strip */
.shots { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.shots figure { margin: 0; text-align: center; }
.shots img { border-radius: 22px; box-shadow: 0 12px 28px rgba(20,54,31,.16); }
.shots figcaption { font-size: .88rem; color: var(--muted); margin-top: 10px; font-weight: 600; }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 26px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; position: relative; }
.step .num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--green-800); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; margin-bottom: 16px;
}
.step h3 { margin: 0 0 8px; font-size: 1.1rem; }
.step p { margin: 0; color: var(--muted); font-size: .95rem; }

/* Features */
.feature-icon { font-size: 1.6rem; margin-bottom: 10px; }

/* FAQ */
.faq { max-width: 780px; margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 4px 22px; margin-bottom: 12px;
}
.faq summary { cursor: pointer; font-weight: 700; padding: 14px 0; color: var(--green-900); font-size: 1.02rem; }
.faq details[open] { box-shadow: var(--shadow); }
.faq .answer { padding: 0 0 16px; color: #2c3a32; }
.faq .answer a { font-weight: 700; }

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  border-radius: 28px; padding: 56px 40px; text-align: center; color: #fff;
}
.final-cta h2 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin: 0 0 12px; }
.final-cta p { color: #cfe6d8; max-width: 36em; margin: 0 auto 28px; }
.final-cta img.icon { width: 88px; height: 88px; border-radius: 20px; margin-bottom: 20px; box-shadow: 0 10px 24px rgba(0,0,0,.3); }

/* Ratings stars */
.stars { color: #f5b301; letter-spacing: 2px; }

/* Guide list page */
.guide-hero p { max-width: 46em; }

/* Legal pages */
.legal .article-body { font-size: .98rem; }

/* Utility */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
