body {
  margin: 0;
  background: #020617;
  color: #e5e7eb;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px 24px;
}

.site-nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-nav .logo {
  margin-bottom: 0;
}

.site-links,
.legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.site-links a,
.legal-links a,
footer a {
  color: #cbd5e1;
  text-decoration: none;
}

.site-links a:hover,
.legal-links a:hover,
footer a:hover {
  color: #fff;
}

.site-footer {
  border-top: 1px solid #1e293b;
  padding: 28px 24px;
  text-align: center;
  color: #94a3b8;
  font-size: 0.85rem;
}

.site-footer .legal-links {
  margin-top: 12px;
}

.logo {
  height: 40px;
  width: auto;
  margin-bottom: 40px;
}

h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.3rem, 6vw, 4.25rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.25rem;
}

h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1rem;
}

p {
  color: #cbd5e1;
  line-height: 1.7;
}

.lead {
  max-width: 760px;
  margin-top: 20px;
  font-size: 1.15rem;
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 36px;
  align-items: center;
}

.hero-media {
  border: 1px solid #1e293b;
  border-radius: 18px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.48);
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

.eyebrow {
  display: inline-flex;
  border: 1px solid #334155;
  border-radius: 999px;
  color: #bfdbfe;
  background: rgba(30, 41, 59, 0.72);
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 18px;
}

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

.feature-band {
  margin-top: 42px;
  padding: 28px;
  border: 1px solid #1e293b;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.68));
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.metric {
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 16px;
  background: rgba(2, 6, 23, 0.5);
}

.metric strong {
  display: block;
  color: #fff;
  font-size: 1.35rem;
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  counter-reset: step;
}

.step {
  position: relative;
  border: 1px solid #1e293b;
  border-radius: 14px;
  padding: 18px 18px 18px 58px;
  background: rgba(15, 23, 42, 0.72);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #4f46e5;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
}

.code-panel {
  overflow: auto;
  border: 1px solid #1e293b;
  border-radius: 14px;
  background: #020617;
  color: #dbeafe;
  padding: 18px;
  font-size: 0.86rem;
  line-height: 1.6;
}

.visual-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.visual-tile {
  min-height: 118px;
  border: 1px solid #1e293b;
  border-radius: 16px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(14, 165, 233, 0.12)),
    #0f172a;
}

.visual-tile span {
  color: #93c5fd;
  font-size: 0.78rem;
  font-weight: 800;
}

.visual-tile strong {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: 1.05rem;
}

.card {
  border: 1px solid #1e293b;
  background: rgba(15, 23, 42, 0.72);
  border-radius: 12px;
  padding: 20px;
}

.content-section {
  border-top: 1px solid #1e293b;
  padding-top: 32px;
  margin-top: 36px;
}

.content-section a,
.card a,
.breadcrumbs a {
  color: #a5b4fc;
}

.breadcrumbs {
  margin-bottom: 22px;
  color: #94a3b8;
  font-size: 0.9rem;
}

.check-list,
.faq-list {
  color: #cbd5e1;
  line-height: 1.7;
  padding-left: 22px;
}

.check-list li,
.faq-list li {
  margin: 8px 0;
}

.comparison-table,
.status-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  color: #cbd5e1;
}

.comparison-table th,
.comparison-table td,
.status-table th,
.status-table td {
  border: 1px solid #1e293b;
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.comparison-table th,
.status-table th {
  background: #0f172a;
  color: #fff;
}

.status-pill {
  display: inline-flex;
  border: 1px solid #065f46;
  border-radius: 999px;
  background: rgba(6, 95, 70, 0.22);
  color: #86efac;
  padding: 3px 10px;
  font-size: 0.8rem;
  font-weight: 700;
}

.contact-panel {
  margin-top: 40px;
  border-top: 1px solid #1e293b;
  padding-top: 32px;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 28px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #cbd5e1;
  font-weight: 700;
  font-size: 0.82rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #334155;
  background: #0f172a;
  color: #fff;
  border-radius: 10px;
  padding: 12px 13px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hidden {
  display: none !important;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 270px;
  border-color: #334155;
}

.pricing-card.featured {
  border-color: rgba(79, 70, 229, 0.8);
  box-shadow: 0 22px 70px rgba(79, 70, 229, 0.18);
}

.plan-badge {
  align-self: flex-start;
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.14);
  color: #5eead4;
  padding: 6px 10px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price {
  margin: 8px 0 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
}

.price span {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  margin-top: 40px;
  border-radius: 12px;
  background: #4f46e5;
  color: #fff;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.button:hover {
  background: #6366f1;
}

.legal {
  max-width: 860px;
}

.legal section {
  border-top: 1px solid #1e293b;
  padding-top: 28px;
  margin-top: 28px;
}

.legal ul {
  color: #cbd5e1;
  line-height: 1.7;
  padding-left: 22px;
}

.legal li {
  margin: 8px 0;
}

.muted {
  color: #94a3b8;
  font-size: 0.92rem;
}

.cookie-consent {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid #334155;
  background: rgba(2, 6, 23, 0.96);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  border-radius: 16px;
  padding: 18px;
}

.cookie-consent strong {
  color: #fff;
}

.cookie-consent p {
  margin: 6px 0;
  color: #cbd5e1;
  font-size: 0.9rem;
}

.cookie-consent a {
  color: #a5b4fc;
}

.cookie-consent__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-consent button {
  border: 1px solid #475569;
  background: #0f172a;
  color: #e5e7eb;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
}

.cookie-consent button.primary {
  border-color: #4f46e5;
  background: #4f46e5;
  color: #fff;
}

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

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

  .contact-panel,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .cookie-consent {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent__actions {
    flex-direction: column;
  }
}
