:root {
  --zp-bg: #f0fdf4;
  --zp-text: #064e3b;
  --zp-text-muted: #166534;
  --zp-primary: #047857;
  --zp-primary-hover: #065f46;
  --zp-secondary: #a7f3d0;
  --zp-white: #ffffff;
  --zp-font-head: 'Oswald', sans-serif;
  --zp-font-body: 'Inter', sans-serif;
  --zp-radius: 4px;
  --zp-trans: 0.3s;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body.zp-main { font-family: var(--zp-font-body); color: var(--zp-text); background-color: var(--zp-bg); line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: color var(--zp-trans); }
.zp-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.zp-topbar { background: var(--zp-primary); color: var(--zp-white); position: sticky; top: 0; z-index: 100; padding: 1rem 0; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.zp-flex-header { display: flex; justify-content: space-between; align-items: center; }
.zp-logo-text { font-family: var(--zp-font-head); font-size: 2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--zp-white); }
.zp-nav-links { display: flex; gap: 1.5rem; }
.zp-link-item { font-weight: 600; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.5px; opacity: 0.9; }
.zp-link-item:hover { opacity: 1; color: var(--zp-secondary); }
.zp-hamburger-btn { display: none; background: transparent; border: none; color: var(--zp-white); font-size: 1.5rem; cursor: pointer; }

.zp-banner { background: var(--zp-white); padding-top: 6rem; text-align: center; border-bottom: 2px solid var(--zp-secondary); }
.zp-banner-inner { max-width: 800px; margin: 0 auto; padding-bottom: 5rem; }
.zp-h1-big { font-family: var(--zp-font-head); font-size: 4rem; text-transform: uppercase; line-height: 1.1; margin-bottom: 1.5rem; color: var(--zp-primary-hover); }
.zp-banner-p { font-size: 1.2rem; color: var(--zp-text-muted); margin-bottom: 2.5rem; }

.zp-btn-primary { background: var(--zp-primary); color: var(--zp-white); border: none; padding: 1rem 2rem; font-family: var(--zp-font-head); text-transform: uppercase; font-size: 1.1rem; letter-spacing: 1px; cursor: pointer; transition: background var(--zp-trans); border-radius: var(--zp-radius); display: inline-block; }
.zp-btn-primary:hover { background: var(--zp-primary-hover); }
.zp-btn-outline { background: transparent; color: var(--zp-primary); border: 2px solid var(--zp-primary); padding: 0.9rem 1.9rem; font-family: var(--zp-font-head); text-transform: uppercase; font-size: 1.1rem; letter-spacing: 1px; cursor: pointer; transition: all var(--zp-trans); border-radius: var(--zp-radius); display: inline-block; }
.zp-btn-outline:hover { background: var(--zp-primary); color: var(--zp-white); }

.zp-trust-strip { background: var(--zp-secondary); padding: 1rem 0; font-weight: 700; color: var(--zp-primary-hover); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.zp-trust-flex { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }

.zp-h2-title { font-family: var(--zp-font-head); font-size: 2.5rem; text-transform: uppercase; text-align: center; margin-bottom: 3rem; color: var(--zp-primary-hover); }

.zp-highlights { padding: 5rem 0; }
.zp-highlights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.zp-highlight-card { background: var(--zp-white); padding: 2rem; border-top: 4px solid var(--zp-primary); box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.zp-h3-sub { font-family: var(--zp-font-head); font-size: 1.5rem; text-transform: uppercase; margin-bottom: 1rem; color: var(--zp-primary); }

.zp-contact-form { padding: 5rem 0; background: var(--zp-primary); color: var(--zp-white); }
.zp-form-wrapper { max-width: 600px; margin: 0 auto; background: var(--zp-primary-hover); padding: 3rem; border-radius: var(--zp-radius); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.zp-input-group { margin-bottom: 1.5rem; }
.zp-input-group label { display: block; margin-bottom: 0.5rem; font-weight: 700; text-transform: uppercase; font-size: 0.9rem; }
.zp-input-group input, .zp-input-group textarea { width: 100%; padding: 1rem; border: none; border-radius: var(--zp-radius); font-family: var(--zp-font-body); }
.zp-input-group input:focus, .zp-input-group textarea:focus { outline: 2px solid var(--zp-secondary); }
.zp-status-alert { background: var(--zp-secondary); color: var(--zp-primary-hover); padding: 1rem; text-align: center; font-weight: 700; margin-top: 1.5rem; border-radius: var(--zp-radius); }
.zp-legal-note { font-size: 0.8rem; text-align: center; margin-top: 2rem; opacity: 0.7; }

.zp-tiers { padding: 5rem 0; }
.zp-tiers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; align-items: flex-start; }
.zp-tier-card { background: var(--zp-white); padding: 3rem 2rem; border-radius: var(--zp-radius); text-align: center; border: 1px solid #d1fae5; }
.zp-tier-pro { border-color: var(--zp-primary); box-shadow: 0 10px 20px rgba(4, 120, 87, 0.1); transform: scale(1.02); }
.zp-tier-name { font-family: var(--zp-font-head); font-size: 2rem; text-transform: uppercase; color: var(--zp-primary); margin-bottom: 0.5rem; }
.zp-tier-desc { color: var(--zp-text-muted); margin-bottom: 2rem; }
.zp-tier-features { list-style: none; text-align: left; margin-bottom: 2rem; }
.zp-tier-features li { padding: 0.5rem 0; border-bottom: 1px dashed #d1fae5; }
.zp-tier-features li::before { content: '✓'; color: var(--zp-primary); font-weight: bold; margin-right: 0.5rem; }

.zp-testimonials { padding: 5rem 0; background: var(--zp-white); }
.zp-testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.zp-review-block { background: var(--zp-bg); padding: 2rem; border-radius: var(--zp-radius); }
.zp-review-stars { color: var(--zp-primary); font-size: 1.2rem; margin-bottom: 1rem; }
.zp-review-block p { font-style: italic; margin-bottom: 1rem; }
.zp-review-block strong { font-family: var(--zp-font-head); text-transform: uppercase; }

.zp-faq { padding: 5rem 0; }
.zp-faq-accordion { max-width: 800px; margin: 0 auto; }
.zp-faq-item { margin-bottom: 1rem; border: 1px solid #d1fae5; background: var(--zp-white); border-radius: var(--zp-radius); overflow: hidden; }
.zp-faq-btn { width: 100%; text-align: left; padding: 1.5rem; background: none; border: none; font-family: var(--zp-font-head); font-size: 1.2rem; text-transform: uppercase; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--zp-text); }
.zp-faq-btn::after { content: '+'; color: var(--zp-primary); font-size: 1.5rem; }
.zp-faq-btn.zp-open::after { content: '-'; }
.zp-faq-content { max-height: 0; overflow: hidden; transition: max-height var(--zp-trans) ease; padding: 0 1.5rem; }
.zp-faq-content.zp-show { padding-bottom: 1.5rem; max-height: 500px; }

.zp-footer { background: var(--zp-text); color: #d1fae5; padding: 4rem 0 1rem; }
.zp-footer-wrap { display: flex; flex-wrap: wrap; gap: 3rem; justify-content: space-between; margin-bottom: 3rem; }
.zp-footer-brand h3 { font-family: var(--zp-font-head); font-size: 2rem; text-transform: uppercase; margin-bottom: 1rem; color: var(--zp-white); }
.zp-footer-col h4 { font-family: var(--zp-font-head); text-transform: uppercase; color: var(--zp-secondary); margin-bottom: 1.5rem; }
.zp-footer-col a { display: block; margin-bottom: 0.5rem; transition: color var(--zp-trans); }
.zp-footer-col a:hover { color: var(--zp-white); }
.zp-footer-bottom { text-align: center; border-top: 1px solid #065f46; padding-top: 1.5rem; font-size: 0.9rem; }

.zp-cookie-consent { position: fixed; bottom: 0; left: 0; right: 0; background: var(--zp-text); color: var(--zp-white); padding: 1rem; display: flex; justify-content: center; align-items: center; gap: 2rem; transform: translateY(100%); transition: transform var(--zp-trans); z-index: 1000; }
.zp-cookie-consent.zp-active { transform: translateY(0); }
.zp-cookie-consent a { color: var(--zp-secondary); text-decoration: underline; }

.zp-page-view { padding: 5rem 0; min-height: 65vh; }
.zp-page-view .zp-h1-big { font-size: 3rem; margin-bottom: 2rem; text-align: left; }
.zp-page-body { max-width: 800px; font-size: 1.1rem; }
.zp-page-body p { margin-bottom: 1.5rem; }
.zp-page-body h2 { font-family: var(--zp-font-head); text-transform: uppercase; font-size: 2rem; margin: 3rem 0 1rem; color: var(--zp-primary); }
.zp-page-body ul { padding-left: 2rem; margin-bottom: 2rem; }

@media (max-width: 768px) {
  .zp-hamburger-btn { display: block; }
  .zp-nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--zp-primary); flex-direction: column; padding: 1rem; text-align: center; }
  .zp-nav-links.zp-nav-open { display: flex; }
  .zp-h1-big { font-size: 2.5rem; }
  .zp-trust-flex { flex-direction: column; gap: 0.5rem; align-items: center; }
  .zp-trust-flex span:nth-child(even) { display: none; }
  .zp-cookie-consent { flex-direction: column; text-align: center; gap: 1rem; }
}
