/* SETAEI landing pages — shared style */
:root {
  --primary: #246bff;
  --primary-dark: #1a55d4;
  --ink: #0e1a30;
  --ink-soft: #44556f;
  --muted: #66758f;
  --line: #e4e9f2;
  --bg: #f7f9fc;
  --card: #ffffff;
  --success: #1e9b62;
  --accent: #ffc757;
  --gradient: linear-gradient(135deg, #246bff 0%, #1855d6 100%);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; }

/* Top nav */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px; background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.nav .brand-link { display: inline-flex; align-items: center; text-decoration: none; }
.nav .brand-logo { height: 30px; width: auto; display: block; border: 0; }
.nav .brand { font-weight: 800; font-size: 20px; letter-spacing: -0.4px; color: var(--ink); }
.nav .brand .tag { color: var(--muted); font-weight: 500; font-size: 13px; margin-left: 6px; }
.nav .nav-cta { font-weight: 600; font-size: 14px; padding: 9px 18px; background: var(--ink); color: #fff; border-radius: 8px; }
/* Honeypot — hidden field bots fill in, real users don't see it */
.form-wrap .hp { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* Hero */
.hero {
  background: var(--gradient); color: #fff;
  padding: 80px 24px 90px; text-align: center;
  position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.hero .eyebrow {
  display: inline-block; background: rgba(255,255,255,0.16);
  padding: 6px 14px; border-radius: 100px; font-size: 13px;
  font-weight: 500; margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 2.8rem); letter-spacing: -1px;
  line-height: 1.15; margin-bottom: 18px; font-weight: 800;
}
.hero p.subhead { font-size: 1.15rem; opacity: 0.92; max-width: 580px; margin: 0 auto 32px; }
.hero .cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--primary); font-weight: 700;
  padding: 15px 32px; border-radius: 12px; font-size: 1rem;
  box-shadow: 0 4px 20px rgba(17,33,72,0.18);
  transition: transform .15s, box-shadow .15s;
}
.cta-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(17,33,72,0.24); }
.cta-btn.ghost { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.3); box-shadow: none; }
.trust-row {
  margin-top: 28px; font-size: 13px; opacity: 0.85;
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
}
.trust-row span::before { content: '✓ '; color: var(--accent); font-weight: 700; }

/* Sections */
.section { max-width: 1000px; margin: 0 auto; padding: 64px 24px; }
.section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px;
  letter-spacing: -0.5px; font-weight: 700;
}
.section .lede { color: var(--ink-soft); max-width: 600px; font-size: 1.05rem; margin-bottom: 36px; }
.section-center { text-align: center; }
.section-center .lede { margin-left: auto; margin-right: auto; }

/* Benefit grid */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.benefit-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 28px; transition: transform .2s, box-shadow .2s;
}
.benefit-card:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(17,33,72,0.08); }
.benefit-card .icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 11px;
  background: rgba(36,107,255,0.1); color: var(--primary);
  font-size: 22px; margin-bottom: 14px;
}
.benefit-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.benefit-card p { color: var(--ink-soft); font-size: 0.95rem; }

/* Process steps */
.process-list { display: grid; gap: 14px; counter-reset: step; max-width: 720px; }
.process-step {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 20px 24px 20px 70px; position: relative;
}
.process-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; left: 22px; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gradient); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
}
.process-step h4 { font-size: 1.05rem; margin-bottom: 4px; }
.process-step p  { color: var(--ink-soft); font-size: 0.93rem; }

/* Pricing card */
.pricing-card {
  background: var(--card); border: 2px solid var(--primary); border-radius: 16px;
  padding: 36px; text-align: center; max-width: 460px; margin: 0 auto;
  box-shadow: 0 10px 40px rgba(36,107,255,0.12);
}
.pricing-card .from { font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.pricing-card .price { font-size: 2.5rem; font-weight: 800; color: var(--ink); letter-spacing: -1px; }
.pricing-card .price small { font-size: 1rem; font-weight: 500; color: var(--muted); }
.pricing-card ul { list-style: none; margin: 24px 0; padding: 0; text-align: left; }
.pricing-card ul li { padding: 8px 0; padding-left: 26px; position: relative; color: var(--ink-soft); }
.pricing-card ul li::before {
  content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 700;
}

/* Contact form */
.form-wrap {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: 36px; max-width: 560px; margin: 0 auto;
  box-shadow: 0 4px 20px rgba(17,33,72,0.05);
}
.form-wrap form { display: grid; gap: 14px; }
.form-wrap label { font-size: 13px; color: var(--ink-soft); font-weight: 500; }
.form-wrap input, .form-wrap textarea {
  padding: 13px 14px; border: 1px solid var(--line); border-radius: 10px;
  font-size: 15px; width: 100%; font-family: inherit;
  transition: border-color .15s, box-shadow .15s;
}
.form-wrap input:focus, .form-wrap textarea:focus {
  outline: 0; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(36,107,255,0.12);
}
.form-wrap textarea { resize: vertical; min-height: 100px; }
.form-wrap button[type="submit"] {
  background: var(--gradient); color: #fff; border: 0; border-radius: 10px;
  padding: 15px; font-size: 1rem; cursor: pointer; font-weight: 700;
  transition: transform .15s, box-shadow .15s;
}
.form-wrap button[type="submit"]:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(36,107,255,0.28); }
#formStatus { font-size: 14px; margin-top: 4px; }

/* Footer */
.footer {
  text-align: center; padding: 40px 24px;
  font-size: 13px; color: var(--muted); border-top: 1px solid var(--line);
}
.footer a { color: var(--ink-soft); margin: 0 8px; }
.footer .footer-org { font-size: 11px; color: #aab0bb; margin-top: 8px; }

/* Mobile tuning */
@media (max-width: 640px) {
  .nav { padding: 14px 18px; }
  .nav .brand .tag { display: none; }
  .hero { padding: 60px 20px 70px; }
  .section { padding: 48px 20px; }
  .pricing-card, .form-wrap { padding: 24px; }
}
