:root {
  --bg: #f8f7f4;
  --white: #ffffff;
  --ink: #0f0e0c;
  --ink2: #3a3834;
  --muted: #8c8880;
  --border: #e4e2dc;
  --accent: #1a6bff;
  --accent-light: #eff4ff;
  --accent-dark: #1258d4;
  --green: #00a878;
  --green-light: #edfaf5;
  --yellow: #f5c842;
  --yellow-light: #fef9e7;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.05);
  --r: 12px;
  --r-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── BG GLOW ─── */
.bg-glow {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.bg-glow::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,107,255,0.07) 0%, transparent 65%);
}
.bg-glow::after {
  content: '';
  position: absolute; bottom: -150px; left: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,200,66,0.06) 0%, transparent 65%);
}

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,247,244,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-size: 1.15rem; font-weight: 800;
  letter-spacing: -0.02em; color: var(--ink);
  display: flex; align-items: center; gap: 0.4rem;
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem; font-weight: 600;
  color: var(--ink2); transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  display: flex; align-items: center; gap: 0.75rem;
}
.btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.6rem 1.25rem; border-radius: 10px; font-size: 0.88rem; font-weight: 700; cursor: pointer; transition: all 0.15s; border: none; font-family: 'Plus Jakarta Sans', sans-serif; }
.btn-ghost { background: transparent; color: var(--ink2); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(26,107,255,0.3); }
.btn-primary:active { transform: translateY(0); }
.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; border-radius: 12px; }

/* ─── HERO ─── */
.hero {
  position: relative; z-index: 1;
  padding: 6rem 2rem 5rem;
  text-align: center;
}
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--accent-light); color: var(--accent);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 0.35rem 0.9rem; border-radius: 999px;
  margin-bottom: 1.75rem; text-transform: uppercase;
}
.badge-dot {
  width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.5rem);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  max-width: 650px; margin-left: auto; margin-right: auto;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: 1.1rem; color: var(--ink2); line-height: 1.7;
  max-width: 570px; margin: 0 auto 2.5rem;
}
.hero-cta {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem;
}
.hero-fine {
  font-size: 0.78rem; color: var(--muted);
}
.ai-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 1.25rem; margin: 3rem auto 0;
}
.ai-logos-label {
  font-size: 0.75rem; color: var(--muted); font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.ai-logos img {
  width: 32px; height: 32px; object-fit: contain; opacity: 0.8;
  transition: opacity 0.2s;
}
.ai-logos img:hover { opacity: 1; }

/* ─── SOCIAL PROOF STRIP ─── */
.proof-strip {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
  padding: 1.25rem 2rem;
}
.proof-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
.proof-stat { text-align: center; }
.proof-stat strong { display: block; font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.proof-stat span { font-size: 0.78rem; color: var(--muted); font-weight: 600; }
.proof-divider { width: 1px; height: 36px; background: var(--border); }

/* ─── SECTION TITLES ─── */
.section { position: relative; z-index: 1; padding: 6rem 2rem; }
.section-label {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.1; margin-bottom: 1rem;
}
.section-title em { font-style: normal; color: var(--accent); }
.section-sub {
  font-size: 1rem; color: var(--ink2); line-height: 1.7;
  max-width: 540px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ─── HOW IT WORKS ─── */
.how-section { background: var(--white); }
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem; margin-top: 4rem;
}
.step {
  position: relative;
  padding: 2rem; background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.step:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.step-num {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--accent); color: #fff;
  font-size: 0.9rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.step h3 { font-size: 1rem; font-weight: 800; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.step p { font-size: 0.88rem; color: var(--ink2); line-height: 1.65; }

/* ─── FEATURES ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 4rem;
}
.feat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.feat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feat-card.featured {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.feat-card.featured p { color: rgba(255,255,255,0.82); }
.feat-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-light); color: var(--accent);
  font-size: 1.25rem; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.feat-card.featured .feat-icon { background: rgba(255,255,255,0.2); color: #fff; }
.feat-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.feat-card p { font-size: 0.88rem; color: var(--ink2); line-height: 1.65; }

/* ─── PRICING ─── */
.pricing-section { background: var(--bg); }
.pricing-card {
  background: var(--white); color: var(--ink);
  border: 2px solid var(--accent); border-radius: var(--r-lg); padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 480px; margin: 4rem auto 0;
  position: relative; text-align: left;
}
.pricing-badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.04em;
  text-transform: uppercase; padding: 0.4rem 1.1rem; border-radius: 999px;
  white-space: nowrap;
}
.pricing-label {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 1rem;
}
.price-row { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 0.25rem; }
.price { font-size: 3.5rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; color: var(--ink); }
.price sup { font-size: 1.25rem; vertical-align: super; font-weight: 700; }
.price-was { font-size: 1.1rem; font-weight: 600; color: var(--muted); text-decoration: line-through; align-self: center; }
.price-mo { font-size: 1rem; color: var(--muted); align-self: flex-end; padding-bottom: 0.4rem; }
.price-sub { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.25rem; }
.trial-badge {
  display: inline-flex; align-items: center;
  background: var(--green-light); color: var(--green);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.35rem 0.9rem; border-radius: 999px;
  margin-bottom: 1.5rem;
}
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.9rem; color: var(--ink2); padding: 0.4rem 0;
}
.check { color: var(--green); font-weight: 700; font-size: 1rem; }
.btn-pricing {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; padding: 1rem; border-radius: 10px;
  background: var(--accent); color: #fff; border: none;
  font-weight: 700; font-size: 1rem; font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer; transition: all 0.15s;
}
.btn-pricing:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(26,107,255,0.3); }
.pricing-note {
  text-align: center; margin-top: 1.5rem;
  font-size: 0.82rem; color: var(--muted);
}
.multisite-note {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--green-light); color: var(--green);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: 999px;
  margin-top: 1.25rem;
}

/* ─── INTEGRATIONS ─── */
.integrations-section { background: var(--white); }
.integration-pills {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 1rem;
  margin-top: 3rem;
}
.integration-pill {
  display: flex; align-items: center; gap: 0.65rem;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 999px; padding: 0.65rem 1.5rem;
  font-size: 1rem; font-weight: 700; color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.integration-pill:hover {
  border-color: var(--accent); box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.integration-pill img { display: block; flex-shrink: 0; }

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 4rem;
}
.testimonial-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.stars { color: var(--yellow); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 0.92rem; color: var(--ink2); line-height: 1.7;
  margin-bottom: 1.25rem; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 0.8rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.author-name { font-size: 0.85rem; font-weight: 700; }
.author-title { font-size: 0.75rem; color: var(--muted); }

/* ─── FAQ ─── */
.faq-list { max-width: 680px; margin: 4rem auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border); overflow: hidden;
}
.faq-question {
  width: 100%; background: none; border: none;
  text-align: left; padding: 1.25rem 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem; font-weight: 700; color: var(--ink);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.faq-chevron { font-size: 0.75rem; color: var(--muted); transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.faq-answer p {
  padding: 0 0 1.25rem;
  font-size: 0.9rem; color: var(--ink2); line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ─── FINAL CTA ─── */
.cta-section {
  position: relative; z-index: 1;
  padding: 6rem 2rem;
  background: var(--ink);
  text-align: center;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -200px; right: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,107,255,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute; bottom: -150px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,200,66,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: #fff; margin-bottom: 1rem; position: relative;
}
.cta-section h2 em { font-style: normal; color: var(--yellow); }
.cta-section p {
  font-size: 1rem; color: rgba(255,255,255,0.65);
  max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.7;
  position: relative;
}
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; position: relative; }
.btn-yellow { background: var(--yellow); color: var(--ink); border: none; }
.btn-yellow:hover { background: #f0be30; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,200,66,0.4); }
.btn-white-ghost {
  background: transparent; color: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.25);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem; font-weight: 700;
  padding: 0.9rem 2rem; border-radius: 10px; cursor: pointer;
  transition: all 0.15s;
}
.btn-white-ghost:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

/* ─── FOOTER ─── */
footer {
  position: relative; z-index: 1;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo { font-size: 1rem; font-weight: 800; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 0.4rem; }
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-ghost { display: none; }
  .proof-divider { display: none; }
  .proof-inner { gap: 1.5rem; }
  .hero { padding: 4rem 1.5rem 3rem; }
  .section { padding: 4rem 1.5rem; }
}
@media (max-width: 500px) {
  .hero-cta { flex-direction: column; }
  .cta-actions { flex-direction: column; }
}
