:root {
  --bg-body: #050712;
  --bg-elevated: #0b0f1f;
  --bg-elevated-alt: #0f1326;
  --border-subtle: rgba(255, 255, 255, 0.04);
  --accent: #4f46e5;
  --accent-soft: rgba(79, 70, 229, 0.12);
  --accent-strong: rgba(79, 70, 229, 0.25);
  --accent-secondary: #22c55e;
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --text-softer: #6b7280;
  --danger: #f97373;
  --warning: #facc15;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.45);
  --shadow-subtle: 0 1px 0 rgba(255, 255, 255, 0.04);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #0b1120 0, #020617 55%, #000 100%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
}

.container {
  width: min(1120px, 100% - 40px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.86), transparent);
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: radial-gradient(circle at 30% 0, #22c55e 0, #22c55e 10%, #4f46e5 55%, #0ea5e9 100%);
  color: #e5e7eb;
  font-size: 14px;
  box-shadow: 0 14px 40px rgba(79, 70, 229, 0.4);
}

.logo-text .accent {
  color: #a5b4fc;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.main-nav a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease, transform 0.12s ease;
}

.main-nav a:hover {
  color: var(--text-main);
  background: rgba(148, 163, 184, 0.12);
  transform: translateY(-1px);
}

.main-nav .nav-cta {
  background: linear-gradient(135deg, var(--accent), #6366f1);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 14px 30px rgba(79, 70, 229, 0.55);
}

.main-nav .nav-cta:hover {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.hero {
  padding: 56px 0 40px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}

.hero-copy p {
  margin: 0 0 24px;
  color: var(--text-muted);
  max-width: 34rem;
  font-size: 15px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 10px 20px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.12s ease,
    box-shadow 0.18s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #6366f1);
  color: #f9fafb;
  box-shadow: 0 18px 40px rgba(79, 70, 229, 0.6);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(79, 70, 229, 0.75);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.7);
  color: var(--text-main);
  border-color: rgba(148, 163, 184, 0.5);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.95);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.meta-item {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.35);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.meta-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-softer);
}

.meta-value {
  font-size: 13px;
}

.hero-panel {
  position: relative;
}

.panel-card {
  border-radius: 22px;
  padding: 20px 18px;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.14), transparent 50%),
    radial-gradient(circle at bottom right, rgba(79, 70, 229, 0.22), transparent 60%),
    linear-gradient(to bottom right, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-soft);
}

.panel-card h2 {
  margin: 0 0 12px;
  font-size: 18px;
}

.panel-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: grid;
  gap: 10px;
}

.panel-list li {
  padding: 10px 10px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.panel-note {
  margin: 0;
  font-size: 12px;
  color: var(--text-softer);
}

.section {
  padding: 48px 0;
}

.section-alt {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 1));
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.section-header {
  text-align: center;
  margin-bottom: 28px;
}

.section-header.align-left {
  text-align: left;
}

.section-header h2 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  max-width: 32rem;
}

.section-header p,
.section-header.align-left p {
  margin-left: auto;
  margin-right: auto;
}

.section-header.align-left p {
  margin-left: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.95));
  border-radius: var(--radius-lg);
  padding: 18px 16px 16px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-subtle);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.card p {
  margin: 0 0 10px;
  color: var(--text-muted);
  font-size: 13px;
}

.card ul {
  margin: 0 0 10px;
  padding-left: 18px;
  color: var(--text-softer);
  font-size: 13px;
}

.card-meta {
  margin: 0;
  font-size: 12px;
  color: var(--accent-secondary);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.step {
  background: rgba(15, 23, 42, 0.9);
  border-radius: var(--radius-md);
  padding: 14px 12px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 13px;
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-strong);
  color: #e5e7eb;
  font-size: 11px;
  margin-bottom: 6px;
}

.step h3 {
  margin: 0 0 4px;
  font-size: 14px;
}

.step p {
  margin: 0;
  color: var(--text-softer);
  font-size: 12px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pill-outline {
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: var(--text-muted);
  background: rgba(15, 23, 42, 0.85);
}

.pill-high {
  background: rgba(248, 113, 113, 0.22);
  border: 1px solid rgba(248, 113, 113, 0.9);
  color: #fecaca;
}

.pill-medium {
  background: rgba(250, 204, 21, 0.14);
  border: 1px solid rgba(234, 179, 8, 0.9);
  color: #fef9c3;
}

.pill-low {
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.9);
  color: #bbf7d0;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.resource {
  padding: 16px 14px;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.9);
  border: 1px dashed rgba(148, 163, 184, 0.6);
}

.resource h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.resource p {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(56, 189, 248, 0.14);
  color: #e0f2fe;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.about-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 13px;
}

.about-highlight {
  background: radial-gradient(circle at top, rgba(79, 70, 229, 0.5), transparent 65%),
    rgba(15, 23, 42, 0.96);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  border: 1px solid rgba(129, 140, 248, 0.7);
  box-shadow: var(--shadow-soft);
  font-size: 13px;
}

.about-highlight h3 {
  margin: 0 0 8px;
}

.about-highlight ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-main);
}

.contact-section {
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: flex-start;
}

.contact-highlights {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 13px;
}

.contact-form {
  padding: 18px 16px 16px;
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-soft);
}

.field-group {
  margin-bottom: 12px;
}

.field-group label {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
  color: var(--text-muted);
}

input,
select,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.96);
  padding: 8px 10px;
  font-size: 13px;
  color: var(--text-main);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(148, 163, 184, 0.8);
}

input:focus,
select:focus,
textarea:focus {
  border-color: #818cf8;
  box-shadow: 0 0 0 1px rgba(129, 140, 248, 0.5);
  background: rgba(15, 23, 42, 0.99);
}

.form-note {
  margin: 8px 0 0;
  font-size: 11px;
  color: var(--text-softer);
}

.site-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.95), #020617);
  padding: 18px 0 22px;
  font-size: 12px;
  color: var(--text-softer);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: var(--text-softer);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text-main);
}

.footer-meta {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    order: -1;
  }

  .service-grid,
  .steps-grid,
  .compliance-grid,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid {
    gap: 12px;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-meta {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 560px);
  }

  .hero {
    padding-top: 40px;
  }

  .service-grid,
  .steps-grid,
  .compliance-grid,
  .resource-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section {
    padding: 40px 0;
  }
}

