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

:root {
  --purple: #6c4de6;
  --purple-dark: #5438c4;
  --purple-light: #f0edff;
  --text: #2d2d2d;
  --text-light: #666;
  --white: #fff;
  --gray-bg: #f8f6ff;
  --border: #e5e5e5;
}

body {
  color-scheme: light only;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  background: #ffffff;
}

section { background: #ffffff; }

a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* NAV */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 24px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo img { height: 48px; width: auto; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: var(--text); font-size: 15px; font-weight: 500; }
.nav-links a:hover { color: var(--purple); text-decoration: none; }
.nav-cta {
  background: var(--purple);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--purple-dark); text-decoration: none !important; }

/* HERO */
.hero {
  background: linear-gradient(135deg, #f0edff 0%, #e8e0ff 100%);
  padding: 80px 24px;
  text-align: center;
}
.hero-inner { max-width: 900px; margin: 0 auto; }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero-proof {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 24px 0 40px;
  flex-wrap: wrap;
}
.hero-proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.proof-number { font-size: 2rem; font-weight: 800; color: var(--purple); }
.proof-label { font-size: 14px; color: var(--text-light); }
.hero-img {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(108,77,230,0.15);
}
.hero-cta {
  display: inline-block;
  background: var(--purple);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 32px;
  transition: background 0.2s;
}
.hero-cta:hover { background: var(--purple-dark); text-decoration: none; }

/* SECTIONS */
section { padding: 72px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-tag {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.section-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.25;
}
.section-desc { font-size: 17px; color: var(--text-light); max-width: 520px; line-height: 1.7; }

/* FEATURES */
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.features-grid.reverse { direction: rtl; }
.features-grid.reverse > * { direction: ltr; }
.feature-img { border-radius: 12px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.platform-icons { display: flex; gap: 16px; margin-top: 24px; }
.platform-icons img { width: 48px; height: 48px; }

/* SOCIAL PROOF */
.reviews-section { background: var(--gray-bg); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 40px; }
.review-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.review-card img { width: 100%; }

/* BADGES */
.badges-section { text-align: center; background: var(--white); }
.badges-inner { max-width: 700px; margin: 0 auto; }
.badges-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 32px; align-items: center; }
.badges-grid img { max-height: 70px; width: auto; }

/* BLOG */
.blog-section { background: var(--gray-bg); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; margin-top: 40px; }
.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.blog-card-body { padding: 24px; }
.blog-meta { font-size: 13px; color: var(--text-light); margin-bottom: 10px; }
.blog-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.blog-card p { font-size: 15px; color: var(--text-light); line-height: 1.6; }
.read-more { display: inline-block; margin-top: 16px; color: var(--purple); font-weight: 600; font-size: 14px; }

/* POST PAGE */
.post-hero { background: var(--purple-light); padding: 60px 24px 40px; }
.post-hero-inner { max-width: 760px; margin: 0 auto; }
.post-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 16px; }
.post-meta { font-size: 14px; color: var(--text-light); }
.post-body { max-width: 760px; margin: 0 auto; padding: 48px 24px 80px; }
.post-body h2 { font-size: 1.5rem; font-weight: 700; margin: 36px 0 12px; }
.post-body p { margin-bottom: 18px; font-size: 17px; line-height: 1.8; }
.post-body ul, .post-body ol { margin: 0 0 18px 24px; }
.post-body li { font-size: 17px; line-height: 1.8; margin-bottom: 6px; }

/* PRIVACY */
.policy-body { max-width: 800px; margin: 0 auto; padding: 60px 24px 80px; }
.policy-body h1 { font-size: 2rem; font-weight: 800; margin-bottom: 32px; }
.policy-body h2 { font-size: 1.3rem; font-weight: 700; margin: 28px 0 10px; }
.policy-body p { margin-bottom: 16px; color: var(--text-light); line-height: 1.8; }

/* FOOTER */
footer {
  background: var(--text);
  color: #ccc;
  padding: 40px 24px;
  text-align: center;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-logo { height: 40px; margin: 0 auto 20px; filter: brightness(0) invert(1); }
.footer-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 20px; list-style: none; }
.footer-links a { color: #ccc; font-size: 14px; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 13px; color: #888; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; gap: 32px; }
  .features-grid.reverse { direction: ltr; }
  .nav-links { display: none; }
  .hero { padding: 48px 24px; }
  .hero-proof { gap: 24px; }
}
