:root {
  --blue: #2c6fe2;
  --blue-dark: #1f54b3;
  --ink: #11203b;
  --slate: #4a5a72;
  --bg: #ffffff;
  --bg-alt: #f4f7fc;
  --line: #e2e8f3;
  --radius: 14px;
  --shadow: 0 8px 30px rgba(17, 32, 59, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--blue); text-decoration: none; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--ink);
  font-size: 1.05rem;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--slate); font-weight: 500; }
.nav-links a:hover { color: var(--ink); }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 999px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-small { padding: 9px 18px; font-size: 0.92rem; }
.btn-large { padding: 16px 32px; font-size: 1.08rem; }
.btn-ghost {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-ghost:hover { background: var(--blue); color: #fff; }

/* Hero */
.hero {
  background: radial-gradient(1200px 500px at 50% -10%, #e8f0ff 0%, #ffffff 60%);
  padding: 96px 0 80px;
  text-align: center;
}
.hero-inner { max-width: 760px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--blue);
  margin: 0 0 16px;
}
h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.lead { font-size: 1.18rem; color: var(--slate); margin: 0 auto 28px; max-width: 620px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.trust { margin-top: 22px; color: var(--slate); font-size: 0.92rem; }

/* Sections */
.section { padding: 84px 0; }
.section-alt { background: var(--bg-alt); }
h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-align: center;
  margin: 0 0 48px;
}
h3 { font-size: 1.25rem; margin: 0 0 10px; }
p { color: var(--slate); }

/* Grid + cards */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
}
.card h3 { color: var(--ink); }
.step {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e8f0ff;
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 14px;
}

/* Pricing */
.price-card { display: flex; flex-direction: column; position: relative; }
.price { font-weight: 600; color: var(--blue); margin: 0 0 14px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 24px; flex-grow: 1; }
.price-card li { padding: 7px 0 7px 26px; position: relative; color: var(--slate); }
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}
.price-card.featured { border-color: var(--blue); box-shadow: 0 12px 40px rgba(44, 111, 226, 0.18); }
.badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  border-radius: 999px;
}

/* About */
.about { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; }
.about h2 { text-align: left; margin-bottom: 20px; }
.about-stats { display: grid; gap: 16px; }
.about-stats div {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.about-stats strong { display: block; font-size: 1.5rem; color: var(--blue); }
.about-stats span { color: var(--slate); font-size: 0.95rem; }
.about-side { display: grid; gap: 22px; }
.badge-card {
  background: var(--ink);
  background: radial-gradient(120% 120% at 50% 0%, #1b3358 0%, var(--ink) 70%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  display: grid;
  place-items: center;
}
.badge-card img { width: 200px; max-width: 70%; height: auto; display: block; }

/* Contact */
.contact { text-align: center; max-width: 640px; }
.contact .lead { margin-bottom: 30px; }
.contact-alt { margin-top: 24px; font-size: 0.95rem; }

/* Contact form */
.contact-form {
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 28px;
  display: grid;
  gap: 18px;
}
.form-row { display: grid; gap: 7px; }
.form-row label { font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.contact-form input,
.contact-form textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--bg-alt);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(44, 111, 226, 0.15);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { justify-self: start; cursor: pointer; border: none; }
.contact-form .btn:disabled { opacity: 0.6; cursor: default; transform: none; }
/* Honeypot — hidden from users, visible to naive bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.cf-status { margin: 0; font-size: 0.95rem; }
.cf-status.success { color: #1c7c4a; font-weight: 600; }
.cf-status.error { color: #c0392b; font-weight: 600; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding: 32px 0; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--slate);
  font-size: 0.88rem;
}
.footer-note { max-width: 480px; opacity: 0.85; }

/* Responsive */
@media (max-width: 820px) {
  .grid-3 { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .about h2 { text-align: center; }
  .nav-links a:not(.btn) { display: none; }
}
