:root {
  --bg: #f4efe7;
  --bg-alt: #efe7da;
  --card: #fffaf2;
  --ink: #111827;
  --muted: #4b5563;
  --accent: #0f766e;
  --accent-strong: #0b5a52;
  --accent-2: #f97316;
  --accent-3: #1d4ed8;
  --border: #e4d9cc;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --font-body: 'Space Grotesk', sans-serif;
  --font-heading: 'Fraunces', serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  padding-top: 78px;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(600px 600px at 10% 10%, rgba(15, 118, 110, 0.18), transparent 60%),
    radial-gradient(520px 520px at 85% 0%, rgba(249, 115, 22, 0.16), transparent 60%),
    radial-gradient(520px 520px at 85% 90%, rgba(29, 78, 216, 0.12), transparent 60%);
  z-index: -1;
}

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

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

.container {
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px 0;
  background: rgba(244, 239, 231, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 210px;
  height: auto;
}

.brand-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.nav nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-link {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fdf6ed;
  box-shadow: 0 12px 26px rgba(15, 118, 110, 0.28);
}

.btn.primary:hover {
  transform: translateY(-1px);
  background: var(--accent-strong);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.btn.ghost:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.btn.small {
  padding: 8px 14px;
  font-size: 13px;
}

.w-full {
  width: 100%;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 11px;
  color: var(--muted);
  margin: 0 0 8px;
}

.hero-wrap {
  position: relative;
  padding: 44px 0 70px;
}

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

.hero-text h1 {
  font-family: var(--font-heading);
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.1;
  margin: 8px 0 16px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 18px;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.12);
  border: 1px solid rgba(15, 118, 110, 0.3);
  color: #0f3d39;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-visual {
  display: grid;
  gap: 16px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.card-title {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-card img {
  border-radius: 14px;
}

.hero-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.85);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-stats {
  display: grid;
  gap: 12px;
}

.mini-stats strong {
  font-size: 20px;
  font-family: var(--font-heading);
}

.mini-stats span {
  display: block;
  font-size: 13px;
  color: var(--muted);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.stat-value {
  font-size: 22px;
  font-family: var(--font-heading);
  margin-bottom: 4px;
}

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

.section {
  padding: 80px 0;
}

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

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 2.6vw, 34px);
  margin: 0 0 12px;
}

.text {
  color: var(--muted);
  margin: 0 0 12px;
}

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

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid.four {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.bullet-list li {
  padding-left: 16px;
  position: relative;
}

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

.module-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(15, 118, 110, 0.12);
  border: 1px solid rgba(15, 118, 110, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #0f3d39;
  margin-bottom: 12px;
}

.kpi-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: #8a3d10;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.checklist {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.checklist li {
  padding-left: 18px;
  position: relative;
}

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

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.logo-pill {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px dashed var(--border);
  font-size: 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
}

.cta-panel {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.14), rgba(249, 115, 22, 0.12));
  border: 1px solid rgba(15, 118, 110, 0.2);
}

.form-card {
  position: relative;
}

.form-card input,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  margin-bottom: 10px;
  font-family: inherit;
}

.form-card label {
  font-size: 13px;
  color: var(--muted);
  margin: 4px 0;
  display: block;
}

.form-status {
  font-size: 13px;
  margin-top: 6px;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.captcha-question {
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(15, 118, 110, 0.08);
  color: var(--ink);
  font-size: 13px;
}

.captcha-row input {
  flex: 1 1 140px;
  width: auto;
  margin-bottom: 0;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #efe7da;
  padding: 40px 0 24px;
}

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

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  color: var(--muted);
}

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

.text-secondary {
  color: var(--muted);
}

.small {
  font-size: 12px;
}

.text-center {
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn {
    transition: none;
  }
}

@media (max-width: 900px) {
  .hero-wrap {
    padding: 32px 0 56px;
  }

  .hero-text h1 {
    font-size: clamp(30px, 7vw, 40px);
  }
}

@media (max-width: 768px) {
  .nav nav {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }
}
