@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,700;1,9..144,400&family=Plus+Jakarta+Sans:wght@300;400;600&display=swap');

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

body { font-family: 'Plus Jakarta Sans', sans-serif; background: #F9F5F0; color: #1A2E1A; }

.pp-hero {
  background: linear-gradient(160deg, #1B4332 0%, #2D6A4F 60%, #3a8c60 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}
.pp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 120%, rgba(116,198,157,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.pp-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.pp-orb1 { width: 320px; height: 320px; background: rgba(116,198,157,0.12); top: -80px; right: -60px; }
.pp-orb2 { width: 200px; height: 200px; background: rgba(183,228,199,0.09); bottom: 40px; left: -40px; }

.pp-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
  margin-bottom: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pp-hero-tag {
  display: inline-block;
  background: rgba(116,198,157,0.18);
  border: 1px solid rgba(116,198,157,0.35);
  color: #B7E4C7;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.pp-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.15;
  max-width: 680px;
  margin-bottom: 20px;
}
.pp-hero h1 em {
  font-style: italic;
  color: #74C69D;
}

.pp-hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  text-align: center;
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 44px;
  font-weight: 300;
}

.pp-form-wrap {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 480px;
  flex-wrap: wrap;
  justify-content: center;
}
.pp-form-wrap input {
  flex: 1;
  min-width: 220px;
  padding: 15px 20px;
  border-radius: 12px;
  border: 1.5px solid rgba(116,198,157,0.35);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.pp-form-wrap input::placeholder { color: rgba(255,255,255,0.45); }
.pp-form-wrap input:focus { border-color: #74C69D; background: rgba(255,255,255,0.12); }

.pp-btn-primary {
  padding: 15px 28px;
  background: #74C69D;
  color: #1B4332;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.pp-btn-primary:hover { background: #B7E4C7; transform: translateY(-1px); }
.pp-btn-primary:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.pp-hero-social {
  margin-top: 36px;
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  text-align: center;
}
.pp-hero-social span { color: rgba(255,255,255,0.7); font-weight: 600; }

/* Sections */
.pp-section { padding: 80px 24px; max-width: 1100px; margin: 0 auto; }
.pp-section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2D6A4F;
  margin-bottom: 12px;
}
.pp-section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #1B4332;
  line-height: 1.2;
  margin-bottom: 16px;
}
.pp-section-sub {
  font-size: 1.05rem;
  color: #5A7A5A;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 52px;
  font-weight: 300;
}

/* How it works */
.pp-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.pp-step {
  background: #EEE8DE;
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  border: 1px solid rgba(45,106,79,0.08);
}
.pp-step-num {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(45,106,79,0.12);
  line-height: 1;
  margin-bottom: 16px;
}
.pp-step h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1B4332;
  margin-bottom: 10px;
}
.pp-step p { font-size: 0.92rem; color: #5A7A5A; line-height: 1.65; }
.pp-step-icon { font-size: 1.8rem; margin-bottom: 14px; }

/* Benefits */
.pp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.pp-benefit {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  border: 1px solid rgba(45,106,79,0.09);
  transition: box-shadow 0.2s, transform 0.2s;
}
.pp-benefit:hover { box-shadow: 0 8px 32px rgba(45,106,79,0.1); transform: translateY(-2px); }
.pp-benefit-icon { font-size: 2rem; margin-bottom: 16px; }
.pp-benefit h3 { font-size: 1rem; font-weight: 600; color: #1B4332; margin-bottom: 8px; }
.pp-benefit p { font-size: 0.92rem; color: #5A7A5A; line-height: 1.6; }

/* Categories */
.pp-cats-bg { background: #1B4332; }
.pp-cats { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
.pp-cat {
  background: rgba(116,198,157,0.12);
  border: 1px solid rgba(116,198,157,0.25);
  color: #B7E4C7;
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: default;
  transition: background 0.2s;
}
.pp-cat:hover { background: rgba(116,198,157,0.22); }
.pp-cats-title { color: #fff; }
.pp-cats-sub { color: rgba(255,255,255,0.55); }
.pp-cats-label { color: #74C69D; }

/* Why us */
.pp-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 700px;
}
@media (max-width: 500px) { .pp-compare { grid-template-columns: 1fr; } }
.pp-compare-col { border-radius: 18px; padding: 32px 28px; }
.pp-compare-col.them { background: #EEE8DE; }
.pp-compare-col.us { background: #2D6A4F; }
.pp-compare-col h4 { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; }
.pp-compare-col.them h4 { color: #5A7A5A; }
.pp-compare-col.us h4 { color: #B7E4C7; }
.pp-compare-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 0.92rem; }
.pp-compare-col.them .pp-compare-item { color: #5A7A5A; }
.pp-compare-col.us .pp-compare-item { color: rgba(255,255,255,0.9); }
.pp-check { flex-shrink: 0; margin-top: 1px; }

/* Trust */
.pp-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.pp-trust-card {
  text-align: center;
  padding: 36px 20px;
  border-radius: 18px;
  background: #EEE8DE;
  border: 1px solid rgba(45,106,79,0.08);
}
.pp-trust-card .icon { font-size: 2.2rem; margin-bottom: 14px; }
.pp-trust-card h3 { font-size: 0.95rem; font-weight: 600; color: #1B4332; margin-bottom: 8px; }
.pp-trust-card p { font-size: 0.82rem; color: #5A7A5A; line-height: 1.6; }

/* Testimonials */
.pp-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.pp-testimonial {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(45,106,79,0.09);
  position: relative;
}
.pp-testimonial::before {
  content: '"';
  font-family: 'Fraunces', serif;
  font-size: 5rem;
  color: #74C69D;
  opacity: 0.3;
  position: absolute;
  top: 10px; left: 24px;
  line-height: 1;
}
.pp-testimonial p { font-size: 0.95rem; line-height: 1.7; color: #1A2E1A; font-style: italic; padding-top: 28px; margin-bottom: 20px; }
.pp-testimonial-author { display: flex; align-items: center; gap: 12px; }
.pp-avatar { width: 40px; height: 40px; border-radius: 50%; background: #B7E4C7; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.pp-author-name { font-size: 0.92rem; font-weight: 600; color: #1B4332; }
.pp-author-loc { font-size: 0.82rem; color: #5A7A5A; }
.pp-stars { color: #f5a623; font-size: 0.82rem; margin-bottom: 4px; }

/* FAQ */
.pp-faq { max-width: 680px; }
.pp-faq-item {
  border-bottom: 1px solid rgba(45,106,79,0.12);
  padding: 20px 0;
}
.pp-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}
.pp-faq-q span { font-size: 1rem; font-weight: 600; color: #1B4332; line-height: 1.4; }
.pp-faq-toggle { color: #2D6A4F; font-size: 1.4rem; flex-shrink: 0; line-height: 1; transition: transform 0.2s; }
.pp-faq-toggle.open { transform: rotate(45deg); }
.pp-faq-a { font-size: 0.92rem; color: #5A7A5A; line-height: 1.7; padding-top: 14px; }

/* Final CTA */
.pp-cta-bg {
  background: linear-gradient(160deg, #1B4332 0%, #2D6A4F 60%, #3a8c60 100%);
  text-align: center;
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}
.pp-cta-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 120%, rgba(116,198,157,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.pp-cta-bg h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.pp-cta-bg p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 480px; margin: 0 auto 40px; line-height: 1.65; font-weight: 300; }
.pp-cta-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; max-width: 480px; margin: 0 auto; }
.pp-cta-form input {
  flex: 1; min-width: 210px;
  padding: 15px 20px;
  border-radius: 12px;
  border: 1.5px solid rgba(116,198,157,0.35);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  outline: none;
}
.pp-cta-form input::placeholder { color: rgba(255,255,255,0.4); }
.pp-cta-form input:focus { border-color: #74C69D; }

/* Footer */
.pp-footer {
  background: #EEE8DE;
  padding: 36px 24px;
  text-align: center;
  border-top: 1px solid rgba(45,106,79,0.1);
}
.pp-footer-logo { font-family: 'Fraunces', serif; font-size: 1.2rem; color: #2D6A4F; font-weight: 700; margin-bottom: 10px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.pp-footer p { font-size: 0.82rem; color: #5A7A5A; }
.pp-footer-links { display: flex; justify-content: center; gap: 24px; margin-top: 14px; }
.pp-footer-links a { font-size: 0.82rem; color: #5A7A5A; text-decoration: none; }
.pp-footer-links a:hover { color: #2D6A4F; }
.pp-footer-social { display: flex; justify-content: center; gap: 16px; margin-top: 20px; }
.pp-social-icon { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(45,106,79,0.08); color: #5A7A5A; transition: background 0.2s, color 0.2s; }
.pp-social-icon:hover { background: #2D6A4F; color: #F9F5F0; }

/* Success / Error messages */
.pp-success {
  background: rgba(116,198,157,0.15);
  border: 1px solid rgba(116,198,157,0.4);
  color: #B7E4C7;
  padding: 15px 24px;
  border-radius: 12px;
  font-size: 0.95rem;
  text-align: center;
  width: 100%;
}
.pp-error {
  background: rgba(255,100,100,0.15);
  border: 1px solid rgba(255,100,100,0.4);
  color: #ffaaaa;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 0.95rem;
  margin-top: 16px;
  text-align: center;
}

/* AI Features */
.pp-ai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.pp-ai-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  border: 1px solid rgba(45,106,79,0.09);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.pp-ai-card:hover { box-shadow: 0 8px 32px rgba(45,106,79,0.1); transform: translateY(-2px); }
.pp-ai-icon { font-size: 2rem; margin-bottom: 14px; }
.pp-ai-card h3 { font-size: 1rem; font-weight: 600; color: #1B4332; margin-bottom: 8px; }
.pp-ai-card p { font-size: 0.92rem; color: #5A7A5A; line-height: 1.6; flex: 1; margin-bottom: 18px; }
.pp-phase-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  align-self: flex-start;
}
.pp-phase-launch { background: rgba(45,106,79,0.1); color: #2D6A4F; }
.pp-phase-soon { background: rgba(116,198,157,0.18); color: #2a7a50; }
.pp-phase-roadmap { background: rgba(107,79,58,0.1); color: #6B4F3A; }

/* Divider */
.pp-divider { width: 48px; height: 3px; background: #74C69D; border-radius: 2px; margin-bottom: 32px; }

/* Field Notes preview */
.pp-fn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.pp-fn-card {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  height: 500px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pp-fn-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.28); transform: translateY(-2px); }
.pp-fn-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}
.pp-fn-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 10%, rgba(27,67,50,0.85) 50%, #1B4332 100%);
}
.pp-fn-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
}
.pp-fn-meta {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #74C69D;
  margin-bottom: 10px;
}
.pp-fn-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #F9F5F0;
  line-height: 1.25;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.pp-fn-card:hover .pp-fn-title { color: #74C69D; }
.pp-fn-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  color: rgba(249,245,240,0.75);
  line-height: 1.6;
  margin-bottom: 18px;
}
.pp-fn-read {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #F9F5F0;
}
.pp-fn-cta {
  text-align: center;
  margin-top: 40px;
}
.pp-fn-cta-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: #2D6A4F;
  text-decoration: none;
  border-bottom: 2px solid #74C69D;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.pp-fn-cta-link:hover { color: #1B4332; border-color: #2D6A4F; }

@media (max-width: 900px) {
  .pp-fn-grid { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 640px) {
  .pp-section { padding: 60px 20px; }
  .pp-hero { padding: 60px 20px 50px; }
}

.pp-float {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  z-index: 200;
  background: #1B4332;
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 8px 32px rgba(27,67,50,0.35);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s, transform 0.3s;
  white-space: nowrap;
}
.pp-float.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(12px);
}
.pp-float input {
  flex: 1;
  min-width: 220px;
  padding: 15px 20px;
  border-radius: 12px;
  border: 1.5px solid rgba(116,198,157,0.35);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.pp-float input::placeholder { color: rgba(255,255,255,0.45); }
.pp-float input:focus { border-color: #74C69D; background: rgba(255,255,255,0.12); }
.pp-float-cta {
  padding: 15px 28px;
  background: #74C69D;
  color: #1B4332;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.pp-float-cta:hover { background: #B7E4C7; }
.pp-float-cta:disabled { opacity: 0.7; cursor: not-allowed; }
.pp-float-success {
  padding: 13px 22px;
  color: #74C69D;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
}
