:root {
  color-scheme: light;
  --bg: #ffffff;
  --ink: #0b1220;
  --muted: #5b6678;
  --accent: #1a4fd8;
  --accent-2: #0f2f8a;
  --line: #e7e9ee;
  --soft: #f6f7fb;
  --max: 1120px;
  --radius: 16px;
  --shadow: 0 18px 40px rgba(14, 25, 40, 0.08);
}

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

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

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(92vw, var(--max));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--muted);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 22px rgba(26, 79, 216, 0.24);
}

.button.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(26, 79, 216, 0.28);
}

.button.secondary {
  border-color: #9aa3b2;
  color: var(--ink);
  background: #f7f8fb;
  box-shadow: 0 6px 14px rgba(15, 31, 62, 0.08);
}

.button.secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15, 31, 62, 0.12);
}

.hero {
  padding: 96px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.eyebrow {
  color: var(--accent-2);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.6px;
}

h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  margin: 12px 0 16px;
}

h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin: 0 0 12px;
}

h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.lead {
  font-size: 18px;
  color: var(--ink);
}

.hero-card {
  background: var(--soft);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.image-placeholder {
  width: 100%;
  min-height: 220px;
  border-radius: var(--radius);
  border: 1px dashed #c9cfdd;
  background: linear-gradient(135deg, #f1f3f8, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.2px;
  text-align: center;
  padding: 16px;
}

.image-placeholder.small {
  min-height: 160px;
}

.image {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

.image.tight {
  box-shadow: none;
  border: 1px solid var(--line);
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--soft);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.pricing-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pricing-header {
  padding: 20px;
  color: #fff;
}

.pricing-header.light {
  background: #5aa6ff;
}

.pricing-header.mid {
  background: #1f6eea;
}

.pricing-header.dark {
  background: #0b3f8a;
}

.pricing-header h3 {
  margin: 0 0 6px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.price span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.pricing-body {
  padding: 20px;
}

.pricing-body h4 {
  margin: 0 0 10px;
  font-size: 18px;
}

.pricing-body .label {
  font-weight: 700;
  margin-top: 16px;
  color: var(--ink);
}

.pricing-backdrop {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin: 16px 0 28px;
}

.testimonials {
  display: grid;
  gap: 22px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.testimonial-card {
  border-radius: 18px;
  padding: 20px;
  background: #fff;
  border: 2px solid var(--line);
}

.testimonial-card.blue {
  border-color: #1f6eea;
}

.testimonial-card.green {
  border-color: #4c7c2b;
}

.testimonial-card p {
  color: var(--ink);
  margin-bottom: 12px;
}

.testimonial-source {
  font-weight: 700;
  color: var(--muted);
  font-size: 14px;
}

.card .tag {
  display: inline-block;
  padding: 6px 12px;
  background: var(--soft);
  border-radius: 999px;
  color: var(--accent-2);
  font-weight: 600;
  font-size: 12px;
}

.list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.list li {
  padding-left: 22px;
  position: relative;
  color: var(--muted);
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.elephant-section {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 280px) minmax(220px, 1fr);
  gap: 26px;
  align-items: center;
}

.elephant-image {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
}

.cta {
  padding: 60px 0;
  text-align: center;
}

.cta-box {
  background: linear-gradient(135deg, #0f2f8a, #1a4fd8);
  color: #fff;
  padding: 48px 32px;
  border-radius: 24px;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.8);
}

.footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  align-items: start;
}

.form {
  display: grid;
  gap: 12px;
}

.form input,
.form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.note {
  font-size: 13px;
  color: var(--muted);
}

.cf-turnstile {
  margin: 16px 0;
}

.legal {
  display: grid;
  gap: 16px;
}

.legal h2 {
  margin-top: 16px;
}

@media (max-width: 720px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 64px;
  }

  .elephant-section {
    grid-template-columns: 1fr;
  }
}
