/* ══════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', 'Helvetica Neue', sans-serif;
  color: #1a1a1a; background: #fff; min-height: 100vh; overflow-x: hidden;
}

/* ══════════════════════════════════════════
   FADE-IN ANIMATIONS
══════════════════════════════════════════ */
.fade-in {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.fade-in.from-left { transform: translateX(40px); }
.fade-in.from-right { transform: translateX(-40px); }
.fade-in.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 48px; position: sticky; top: 0; z-index: 100;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1); background: transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,0.92); backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 30px rgba(0,0,0,0.06); padding: 12px 48px;
}
.nav-logo {
  font-size: 22px; font-weight: 700; letter-spacing: -0.5px;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo-img { width: 28px; height: 28px; object-fit: contain; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; width: 36px; height: 36px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px; background: #1a1a1a; border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1); transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background: #fff; z-index: 99; flex-direction: column; align-items: center;
  justify-content: center; gap: 32px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-size: 24px; font-weight: 600; color: #1a1a1a; text-decoration: none;
  transition: color 0.2s;
}
.nav-mobile-menu a:hover { color: #4A7C59; }
.nav-mobile-cta {
  background: #4A7C59 !important; color: #fff !important; padding: 14px 36px;
  border-radius: 10px; font-size: 16px !important; font-weight: 600 !important;
  margin-top: 8px;
}
.nav-links { display: flex; gap: 32px; font-size: 14px; font-weight: 500; color: #444; list-style: none; }
.nav-links a {
  cursor: pointer; position: relative; transition: color 0.2s;
  text-decoration: none; color: inherit;
}
.nav-links a::after {
  content: ""; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: #4A7C59; transition: width 0.3s cubic-bezier(0.16,1,0.3,1); border-radius: 1px;
}
.nav-links a:hover { color: #1a1a1a; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: #2d2d2d; color: #fff; padding: 10px 20px; border-radius: 8px;
  font-size: 13px; font-weight: 600; border: none; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1); text-decoration: none;
}
.nav-cta:hover { background: #4A7C59; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(74,124,89,0.3); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  padding: 80px 48px 60px; display: flex; align-items: center;
  justify-content: space-between; max-width: 1200px; margin: 0 auto; gap: 60px;
  position: relative;
}
.hero-left { flex: 1; max-width: 520px; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #f0f7f0; color: #4A7C59; font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 24px;
  border: 1px solid rgba(74,124,89,0.15);
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,124,89,0.15); }
  50% { box-shadow: 0 0 0 8px rgba(74,124,89,0); }
}
.hero h1 {
  font-family: 'DM Sans', sans-serif; font-size: 48px; font-weight: 700;
  line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 16px;
}
.hero h1 em {
  font-style: italic; color: #4A7C59; font-weight: 600; position: relative;
}
.hero p { color: #666; font-size: 16px; line-height: 1.6; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 12px; }
.hero-social-proof {
  display: flex; align-items: center; gap: 12px; margin-top: 28px;
  font-size: 13px; color: #666;
}
.hero-avatars { display: flex; }
.hero-avatar {
  width: 30px; height: 30px; border-radius: 50%; border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #444;
  margin-right: -8px; flex-shrink: 0;
}
.hero-avatars .hero-avatar:last-child { margin-right: 0; }
.hero-social-proof strong { color: #1a1a1a; font-weight: 600; }

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn-primary {
  background: #4A7C59; color: #fff; padding: 14px 28px; border-radius: 10px;
  font-size: 14px; font-weight: 600; border: none; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  position: relative; overflow: hidden; text-decoration: none; display: inline-block;
}
.btn-primary::before {
  content: ""; position: absolute; top: 50%; left: 50%; width: 0; height: 0;
  background: rgba(255,255,255,0.15); border-radius: 50%;
  transform: translate(-50%, -50%); transition: width 0.6s, height 0.6s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(74,124,89,0.3); }
.btn-primary:hover::before { width: 300px; height: 300px; }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: #fff; color: #1a1a1a; padding: 14px 28px; border-radius: 10px;
  font-size: 14px; font-weight: 600; border: 1.5px solid #ddd; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1); text-decoration: none; display: inline-block;
}
.btn-secondary:hover { border-color: #4A7C59; color: #4A7C59; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,0,0,0.06); }

/* ══════════════════════════════════════════
   PHONE MOCKUPS
══════════════════════════════════════════ */
.hero-right { flex: 1; display: flex; justify-content: center; position: relative; z-index: 2; }
.phone-mockup {
  width: 160px; height: 320px; background: #f8f8f8; border-radius: 24px;
  border: 0px solid #000000; overflow: hidden; position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
}
.phone-mockup:hover { transform: translateY(-8px) !important; box-shadow: 0 30px 80px rgba(0,0,0,0.12); }
.phone-mockup:nth-child(2) { transform: translateX(-20px) translateY(20px); }
.phone-screen {
  width: 100%; height: 100%; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.phone-screen img { width: 100%; height: 100%; object-fit: cover; }
.phone-screen--brand { background: #1e2235; flex-direction: column; gap: 0; }
.phone-screen--brand img { width: 40%; height: 40%; object-fit: contain; }
.phone-brand-name { color: #fff; font-family: 'DM Sans', sans-serif; font-size: 20px; font-weight: 600; letter-spacing: -0.5px; }
.phone-bar { width: 80%; height: 6px; background: #e8efe8; border-radius: 3px; animation: shimmer 2s ease-in-out infinite; }
.phone-bar.short { width: 50%; }
.phone-circle { width: 30px; height: 30px; background: #d4e8d4; border-radius: 50%; margin-bottom: 8px; }
@keyframes shimmer { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }


/* ══════════════════════════════════════════
   LOGOS BAND
══════════════════════════════════════════ */
.logos-band {
  border-top: 1px solid #eee; border-bottom: 1px solid #eee;
  padding: 20px 48px; display: flex; align-items: center;
  justify-content: center; gap: 32px; flex-wrap: wrap;
}
.logos-band-label {
  font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  color: #bbb; white-space: nowrap;
}
.logos-band-items { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; }
.logo-pill {
  font-size: 12px; font-weight: 600; color: #aaa; padding: 5px 14px;
  border: 1px solid #eee; border-radius: 20px; white-space: nowrap;
  transition: all 0.2s;
}
.logo-pill:hover { color: #4A7C59; border-color: rgba(74,124,89,0.3); }

/* ══════════════════════════════════════════
   SECTION HEADERS
══════════════════════════════════════════ */
.section-label {
  text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: #4A7C59; margin-bottom: 12px;
}
.section-title {
  text-align: center; font-size: 32px; font-weight: 700; letter-spacing: -0.5px;
  margin-bottom: 48px;
}

/* ══════════════════════════════════════════
   FEATURES
══════════════════════════════════════════ */
.features-section { padding: 80px 48px; max-width: 1200px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: #fff; border: 1px solid #eee; border-radius: 14px; padding: 28px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1); cursor: default;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, #4A7C59, #6BA37A); transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); transform-origin: left;
}
.feature-card:hover { border-color: #4A7C59; box-shadow: 0 12px 40px rgba(74,124,89,0.1); transform: translateY(-4px); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 48px; height: 48px; background: #f0f7f0; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; transition: all 0.3s;
}
.feature-icon svg { width: 22px; height: 22px; stroke: #4A7C59; }
.feature-card:hover .feature-icon { background: #4A7C59; transform: scale(1.05); }
.feature-card:hover .feature-icon svg { stroke: #fff; }
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: #777; line-height: 1.5; }

/* ══════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════ */
.how-section { padding: 80px 48px; background: #fff; }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-steps { display: flex; align-items: flex-start; gap: 0; }
.how-step {
  flex: 1; padding: 32px 28px; background: #fafafa; border: 1px solid #eee;
  border-radius: 18px; transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  position: relative;
}
.how-step:hover {
  background: #fff; border-color: rgba(74,124,89,0.35);
  box-shadow: 0 12px 40px rgba(74,124,89,0.1); transform: translateY(-5px);
}
.how-step-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.how-badge {
  background: #4A7C59; color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: 0.5px; width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.how-icon {
  width: 44px; height: 44px; background: #f0f7f0; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.how-icon svg { width: 20px; height: 20px; stroke: #4A7C59; }
.how-step:hover .how-icon { background: #4A7C59; }
.how-step:hover .how-icon svg { stroke: #fff; }
.how-step h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: #1a1a1a; }
.how-step p { font-size: 13px; color: #777; line-height: 1.65; margin-bottom: 16px; }
.how-checklist { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.how-checklist li {
  font-size: 12px; color: #4A7C59; font-weight: 500;
  display: flex; align-items: center; gap: 6px;
}
.how-checklist li::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: #4A7C59; flex-shrink: 0;
}
.how-arrow {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  width: 56px; padding-top: 52px; opacity: 0.5;
}

/* ══════════════════════════════════════════
   STATS
══════════════════════════════════════════ */
.stats-section {
  background: linear-gradient(0deg, #2d5038 0%, #4A7C59 100%);
  padding: 48px; display: flex; justify-content: center; position: relative; overflow: hidden;
}
.stat-item {
  flex: 1; text-align: center; color: #fff; padding: 20px 40px;
  border-right: 1px solid rgba(255,255,255,0.12); position: relative; z-index: 1;
}
.stat-item:last-child { border-right: none; }
.stat-value { font-size: 46px; font-weight: 700; letter-spacing: -1px; margin-bottom: 4px; }
.stat-label { font-size: 13px; opacity: 0.75; font-weight: 400; }

/* ══════════════════════════════════════════
   PRICING
══════════════════════════════════════════ */
.pricing-section { padding: 80px 48px; max-width: 1100px; margin: 0 auto; }
.billing-toggle {
  display: flex; justify-content: center; margin-bottom: 48px;
  background: #f3f3f3; border-radius: 10px; padding: 4px; width: fit-content;
  margin-left: auto; margin-right: auto;
}
.billing-btn {
  padding: 10px 24px; border-radius: 8px; font-size: 13px; font-weight: 600;
  border: none; cursor: pointer; transition: all 0.3s; background: transparent; color: #666;
  font-family: inherit;
}
.billing-btn.active { background: #fff; color: #1a1a1a; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.pricing-grid > * { display: flex; flex-direction: column; }
.pricing-card {
  background: #fff; border: 1.5px solid #eee; border-radius: 16px; padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  display: flex; flex-direction: column; flex: 1;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(0,0,0,0.08); }
.pricing-card.popular { border-color: #4A7C59; box-shadow: 0 8px 30px rgba(74,124,89,0.1); transform: scale(1.02); }
.pricing-card.accent { border: 2px solid #4A7C59; }
.pricing-card.popular:hover { transform: scale(1.02) translateY(-4px); }
.pricing-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 24px; }
.pricing-name { font-size: 18px; font-weight: 700; }
.pricing-price-wrap { display: flex; align-items: center; gap: 8px; }
.pricing-price { font-size: 16px; font-weight: 700; color: #4A7C59; }
.pricing-badge { display: none; font-size: 11px; font-weight: 700; color: #fff; background: #4A7C59; padding: 2px 8px; border-radius: 20px; white-space: nowrap; }
.pricing-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; flex: 1; }
.pricing-feature { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: #555; }
.pricing-feature .limit { font-size: 11px; color: #999; font-weight: 500; }

.pricing-cta {
  width: 100%; padding: 12px; border-radius: 10px; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all 0.3s; font-family: inherit;
}
.pricing-cta.outline { border: 1.5px solid #ddd; background: #fff; color: #1a1a1a; }
.pricing-cta.outline:hover { border-color: #4A7C59; color: #4A7C59; }
.pricing-cta.filled { border: none; background: #2d2d2d; color: #fff; }
.pricing-cta.filled:hover { background: #1a1a1a; box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.pricing-cta.accent { border: none; background: #4A7C59; color: #fff; }
.pricing-cta.accent:hover { background: #3d6a4b; box-shadow: 0 4px 16px rgba(74,124,89,0.3); }
.pricing-footer { margin-top: auto; display: flex; flex-direction: column; }
.pricing-note { font-size: 11px; color: #999; margin-bottom: 10px; line-height: 1.4; }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-section { padding: 80px 48px; }
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid #eee; }
.faq-item:first-child { border-top: 1px solid #eee; }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 15px; font-weight: 600; color: #1a1a1a;
  text-align: left; gap: 16px; transition: color 0.2s;
}
.faq-question:hover { color: #4A7C59; }
.faq-icon {
  font-size: 20px; font-weight: 300; color: #4A7C59; flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1); line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1);
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p { padding-bottom: 20px; font-size: 14px; color: #666; line-height: 1.7; }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials-section { padding: 80px 48px; background: #fafafa; }
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: #fff; border: 1px solid #eee; border-radius: 14px; padding: 28px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.testimonial-card:hover { border-color: #4A7C59; transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 14px; }
.testimonial-text { font-size: 13px; color: #555; line-height: 1.6; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 36px; height: 36px; background: linear-gradient(135deg, #d4e8d4, #b8d8b8); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
  font-weight: 600; color: #4A7C59; transition: transform 0.3s; flex-shrink: 0;
}
.testimonial-card:hover .testimonial-avatar { transform: scale(1.1); }
.testimonial-name { font-size: 13px; font-weight: 700; }
.testimonial-role { font-size: 11px; color: #999; }

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */
.cta-section {
  padding: 80px 48px; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f5f9f5 100%);
}
.cta-section::before {
  content: ""; position: absolute; top: 50%; left: 50%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(74,124,89,0.05) 0%, transparent 70%);
  transform: translate(-50%, -50%); pointer-events: none;
}
.cta-section h2 { font-size: 32px; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.5px; position: relative; }
.cta-section p { color: #777; font-size: 14px; margin-bottom: 32px; line-height: 1.6; position: relative; }
.cta-btns { display: flex; justify-content: center; gap: 12px; position: relative; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer { padding: 48px 48px 24px; border-top: 1px solid #eee; max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; margin-bottom: 40px; }
.footer-brand { max-width: 260px; }
.footer-brand h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.footer-brand p { font-size: 12px; color: #999; line-height: 1.6; }
.footer-cols { display: flex; gap: 80px; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #999; margin-bottom: 14px; }
.footer-col a {
  display: block; font-size: 13px; color: #555; text-decoration: none;
  margin-bottom: 10px; transition: all 0.2s;
}
.footer-col a:hover { color: #4A7C59; transform: translateX(4px); }
.footer-bottom { border-top: 1px solid #eee; padding-top: 20px; font-size: 11px; color: #bbb; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav { padding: 12px 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  .logos-band { padding: 16px 20px; gap: 16px; }
  .hero { flex-direction: column; padding: 40px 20px; }
  .hero h1 { font-size: 32px; }
  .hero h1 em { font-size: 38px; }
  .hero-right { display: none; }
  .features-grid, .pricing-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .how-steps { flex-direction: column; }
  .how-arrow { width: 100%; padding-top: 0; padding: 0; transform: rotate(90deg); height: 32px; }
  .stats-section { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stat-item:last-child { border-bottom: none; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-cols { flex-wrap: wrap; gap: 32px; }
  .section-title { font-size: 24px; }
  .features-section, .how-section, .pricing-section, .testimonials-section, .cta-section, .faq-section { padding: 60px 20px; }
}
