:root {
  --bg: #0b0d12;
  --panel: #11151c;
  --text: #e6edf3;
  --muted: #9fb0c0;
  --accent: #2fd37a;
  --accent-2: #25b06a;
  --border: #222a35;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #ffffff;
    --panel: #f7f9fc;
    --text: #0b1220;
    --muted: #516173;
    --accent: #0ca678;
    --accent-2: #099268;
    --border: #e6ebf2;
  }
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

/* Accessibility: Skip to main content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent);
  color: #0b0d12;
  padding: 8px 12px;
  text-decoration: none;
  font-weight: 700;
  z-index: 100;
}
.skip-link:focus {
  top: 0;
}

.container { max-width: 1024px; padding: 0 24px; margin: 0 auto; }

.site-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; border-bottom: 1px solid var(--border);
}
.brand { display: flex; gap: 10px; align-items: center; color: var(--text); text-decoration: none; font-weight: 700; letter-spacing: 0.2px; }
.brand .pulse { width: 14px; height: 14px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(47,211,122,.8); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(47,211,122,.7);} 70% { box-shadow: 0 0 0 12px rgba(47,211,122,0);} 100% { box-shadow: 0 0 0 0 rgba(47,211,122,0);} }

.nav { display: flex; gap: 18px; align-items: center; }
.nav a { color: var(--muted); text-decoration: none; font-weight: 600; }
.nav a:hover { color: var(--text); }
.nav .cta { color: #0b0d12; background: var(--accent); padding: 8px 14px; border-radius: 8px; }
.nav .cta:hover { background: var(--accent-2); color: #0b0d12; }

.hero { padding: 64px 24px 32px; text-align: center; }
.hero h1 { font-size: clamp(28px, 4vw, 44px); line-height: 1.1; margin: 0 0 16px; }
.hero p { max-width: 800px; margin: 0 auto 24px; color: var(--muted); }
.actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn { border: 1px solid var(--border); color: var(--text); text-decoration: none; padding: 10px 16px; border-radius: 10px; font-weight: 700; }
.btn:hover { border-color: var(--accent); }
.btn.primary { background: var(--accent); border-color: var(--accent); color: #0b0d12; }
.btn.primary:hover { background: var(--accent-2); border-color: var(--accent-2); }

.section { padding: 40px 24px; }
.section h2 { font-size: clamp(22px, 3vw, 30px); margin-bottom: 12px; }
.section p { color: var(--muted); }

.grid { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid li { background: var(--panel); border: 1px solid var(--border); padding: 16px; border-radius: 12px; }
.grid > div { background: var(--panel); border: 1px solid var(--border); padding: 16px; border-radius: 12px; }
.grid h3 { margin: 0 0 8px; font-size: 16px; }
.grid ul { list-style: none; padding: 0; margin: 8px 0 0; }
.grid ul li { background: transparent; border: 0; padding: 4px 0; border-radius: 0; color: var(--muted); font-size: 14px; }
.grid ul li:before { content: "•"; color: var(--accent); margin-right: 8px; }

.bullets { list-style: none; padding: 0; margin: 12px 0 0; }
.bullets li { padding: 8px 0; border-bottom: 1px dashed var(--border); }
.bullets li:last-child { border-bottom: 0; }

.metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; margin: 18px 0; }
.metrics > div { background: var(--panel); border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
.metric { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.value { font-weight: 800; font-size: 24px; margin-top: 6px; }
.note { color: var(--muted); font-style: italic; }

.steps { padding-left: 18px; margin: 10px 0 0; }
.steps li { margin: 6px 0; }

.faq-list { margin: 18px 0 0; }
.faq-list dt { font-weight: 700; margin: 18px 0 8px; color: var(--text); }
.faq-list dt:first-child { margin-top: 0; }
.faq-list dd { margin: 0 0 12px 0; color: var(--muted); line-height: 1.6; }

.site-footer { padding: 36px 24px; color: var(--muted); border-top: 1px solid var(--border); text-align: center; }
.sep { opacity: .4; margin: 0 8px; }

/* Focus indicators for keyboard navigation */
a:focus, button:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 24px auto 0;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(47, 211, 122, 0.1);
}

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

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

.form-actions {
  margin-top: 18px;
}

.form-actions .btn {
  width: 100%;
  cursor: pointer;
  border: none;
}

.form-actions .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-status {
  margin-top: 12px;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(47, 211, 122, 0.1);
  border: 1px solid var(--accent);
  color: var(--accent);
}

.form-status.error {
  display: block;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid #dc2626;
  color: #fca5a5;
}

@media (max-width: 640px) {
  .nav a:not(.cta) { display: none; }
  .contact-form { padding: 18px; }
}

