@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: oklch(97% 0.012 95);
  --surface: oklch(99% 0.005 95);
  --border: oklch(90% 0.012 95);
  --text: oklch(23% 0.03 260);
  --text-muted: oklch(46% 0.02 260);
  --text-soft: oklch(56% 0.02 260);
  --accent: oklch(62% 0.14 165);
  --accent-dark: oklch(52% 0.14 165);
  --accent-soft: oklch(92% 0.05 165);
  --accent-soft-text: oklch(40% 0.12 165);
  --dark: oklch(24% 0.03 260);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  line-height: 1.5;
}

a { color: var(--accent-dark); text-decoration: none; }
a:hover { color: var(--accent); }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.wrap-narrow { max-width: 900px; margin: 0 auto; padding: 0 48px; }

/* Header */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 48px;
  max-width: 1280px; margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 30px; width: auto; display: block; }
nav.main { display: flex; align-items: center; gap: 32px; }
nav.main a { color: var(--text-muted); font-weight: 600; font-size: 15px; }
nav.main a.active { color: var(--text); }
.btn {
  display: inline-block;
  background: var(--accent);
  color: white !important;
  padding: 11px 22px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn:hover { background: var(--accent-dark); color: white !important; }
.btn-outline {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text) !important;
  padding: 15px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent-dark) !important; }
.btn-lg { padding: 15px 28px; border-radius: 10px; font-size: 16px; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; }

/* Hero */
.hero {
  display: flex; align-items: center; gap: 56px;
  padding: 84px 48px 96px;
  max-width: 1280px; margin: 0 auto;
}
.hero-copy { flex: 1; min-width: 0; }
.pill {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-soft-text);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 22px;
}
h1 { font-size: 50px; line-height: 1.12; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 22px; }
.hero-copy p { font-size: 19px; color: var(--text-muted); margin: 0 0 34px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-art {
  flex: 1; min-width: 0; align-self: stretch;
}
.art-block {
  height: 100%; min-height: 380px;
  border-radius: 20px;
  background: repeating-linear-gradient(135deg, var(--accent-soft), var(--accent-soft) 14px, oklch(88% 0.06 165) 14px, oklch(88% 0.06 165) 28px);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  padding: 20px;
  text-align: center;
}
.art-block span {
  font-family: monospace; font-size: 13px; color: var(--accent-soft-text);
  background: var(--bg); padding: 8px 16px; border-radius: 8px;
}

/* Sections */
section.section { padding: 0 48px 96px; max-width: 1280px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 52px; }
.section-head h2 { font-size: 32px; font-weight: 800; margin: 0 0 12px; letter-spacing: -0.02em; }
.section-head p { color: var(--text-muted); font-size: 17px; margin: 0; }

.intro { padding: 76px 48px 60px; max-width: 900px; margin: 0 auto; text-align: center; }
.intro h1 { font-size: 44px; margin-bottom: 18px; }
.intro p { font-size: 18px; color: var(--text-muted); margin: 0; }

/* Stats */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 44px;
}
.stat { text-align: center; border-right: 1px solid var(--border); padding: 0 12px; }
.stat:last-child { border-right: none; }
.stat .num { font-size: 38px; font-weight: 800; color: var(--accent-dark); }
.stat .desc { color: var(--text-muted); font-size: 15px; margin-top: 6px; }
.stats-note { text-align: center; color: var(--text-soft); font-size: 13px; margin-top: 14px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step { text-align: center; }
.step .n {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent-soft-text);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 20px; margin: 0 auto 18px;
}
.step h3 { font-size: 17px; font-weight: 700; margin: 0 0 8px; }
.step p { color: var(--text-muted); font-size: 15px; margin: 0; }

/* Feature cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 30px;
}
.card .icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--accent-soft); display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 18px;
}
.card h3 { font-size: 18px; font-weight: 700; margin: 0 0 8px; }
.card p { color: var(--text-muted); font-size: 15px; margin: 0; }

/* Feature blocks (alternating) */
.fblock {
  display: flex; gap: 56px; align-items: center;
  padding-bottom: 96px;
}
.fblock:last-of-type { padding-bottom: 0; }
.fblock .fimg, .fblock .ftext { flex: 1; min-width: 0; }
.fblock .fimg .art-block { height: 320px; min-height: 0; }
.fblock .ftext ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fblock .ftext li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: oklch(32% 0.02 260); }
.fblock .ftext li .check { color: var(--accent-dark); font-weight: 800; flex-shrink: 0; }
.fblock .ftext h2 { font-size: 28px; font-weight: 800; margin: 0 0 14px; letter-spacing: -0.02em; }
.fblock .ftext p.desc { color: var(--text-muted); font-size: 16px; margin: 0 0 20px; }

/* Testimonial / CTA banner */
.banner {
  background: var(--dark); border-radius: 24px; padding: 56px;
  display: flex; gap: 48px; align-items: center; justify-content: space-between;
}
.banner blockquote { color: oklch(96% 0.01 90); font-size: 22px; font-weight: 600; line-height: 1.5; margin: 0 0 20px; }
.banner cite { color: oklch(75% 0.02 90); font-size: 15px; font-style: normal; }
.banner h2 { color: white; font-size: 28px; font-weight: 800; margin: 0 0 10px; letter-spacing: -0.02em; }
.banner p { color: oklch(75% 0.02 90); font-size: 16px; margin: 0; }
.banner .btn { flex-shrink: 0; white-space: nowrap; }

/* Pricing */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; padding-bottom: 72px; }
.plan {
  background: var(--surface); border-radius: 20px; padding: 36px;
  display: flex; flex-direction: column; border: 1px solid var(--border);
}
.plan.featured { border: 2px solid var(--accent); }
.plan .badge {
  display: inline-block; align-self: flex-start;
  background: var(--accent); color: white; padding: 5px 12px;
  border-radius: 100px; font-size: 12px; font-weight: 700; margin-bottom: 16px;
}
.plan h2 { font-size: 22px; font-weight: 800; margin: 0 0 8px; }
.plan .audience { color: var(--text-muted); font-size: 15px; margin: 0 0 20px; }
.plan .price { font-size: 26px; font-weight: 800; margin: 0 0 24px; }
.plan ul { margin: 0 0 28px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.plan li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: oklch(32% 0.02 260); }
.plan li .check { color: var(--accent-dark); font-weight: 800; flex-shrink: 0; }
.plan .cta { text-align: center; padding: 14px 20px; border-radius: 10px; font-weight: 700; font-size: 15px; }
.plan .cta.primary { background: var(--accent); color: white !important; border: none; }
.plan .cta.primary:hover { background: var(--accent-dark); }
.plan .cta.secondary { background: var(--bg); color: var(--text) !important; border: 1px solid var(--border); }
.plan .cta.secondary:hover { border-color: var(--accent); }

/* FAQ */
.faqs { display: flex; flex-direction: column; gap: 18px; }
.faq { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 22px 26px; }
.faq .q { font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.faq .a { color: var(--text-muted); font-size: 15px; }

/* Contact */
.contact-grid { display: flex; gap: 48px; align-items: flex-start; padding: 56px 0 96px; max-width: 1100px; margin: 0 auto; }
.contact-form {
  flex: 1.2; background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px;
}
.field { margin-bottom: 18px; }
.field:last-of-type { margin-bottom: 0; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; box-sizing: border-box; padding: 13px 16px; border-radius: 10px;
  border: 1px solid var(--border); font-size: 15px; background: var(--surface);
  font-family: inherit;
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
form.contact-form-el { display: flex; flex-direction: column; gap: 0; }
.contact-side { flex: 1; display: flex; flex-direction: column; gap: 22px; }
.info-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 26px; }
.info-card .label { font-size: 13px; color: var(--text-muted); margin-bottom: 6px; }
.info-card .value { font-size: 17px; font-weight: 700; }
.success-box { text-align: center; padding: 40px 0; }
.success-box .mark { font-size: 40px; margin-bottom: 16px; color: var(--accent-dark); }
.success-box h2 { font-size: 22px; font-weight: 800; margin: 0 0 10px; }
.success-box p { color: var(--text-muted); font-size: 15px; margin: 0; }
.hidden { display: none !important; }

/* Footer */
footer.site {
  padding: 44px 48px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1280px; margin: 0 auto; flex-wrap: wrap; gap: 16px;
}
footer.site .brand img { height: 24px; }
footer.site nav { display: flex; gap: 28px; }
footer.site nav a { color: var(--text-muted); font-size: 14px; }
footer.site .copy { color: var(--text-soft); font-size: 14px; }

/* Responsive */
@media (max-width: 900px) {
  .hero { flex-direction: column; padding: 48px 24px 64px; }
  .hero-art { width: 100%; }
  .art-block { min-height: 260px; }
  .fblock { flex-direction: column; }
  .fblock .fimg { order: 1 !important; width: 100%; }
  .fblock .ftext { order: 2 !important; width: 100%; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
  .stat:last-child { border-bottom: none; padding-bottom: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; }
  .banner { flex-direction: column; text-align: center; }
  .contact-grid { flex-direction: column; }
  .wrap, .wrap-narrow, section.section, .intro { padding-left: 24px; padding-right: 24px; }
  h1 { font-size: 36px; }
}

@media (max-width: 680px) {
  .header-inner { padding: 14px 20px; }
  nav.main { position: fixed; top: 62px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); flex-direction: column; align-items: flex-start; gap: 0; padding: 8px 20px 16px; display: none; }
  nav.main.open { display: flex; }
  nav.main a { padding: 10px 0; width: 100%; }
  .menu-toggle { display: block; }
  .header-inner .btn.desktop-only { display: none; }
  .steps { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: 1fr; }
  .banner { padding: 32px; }
}
