:root {
  --bg-1: #081120;
  --bg-2: #0e1a2f;
  --border: rgba(255,255,255,0.12);
  --text: #eef4ff;
  --muted: #b8c5e0;
  --accent: #5ea6ff;
  --accent-2: #22c55e;
  --shadow: 0 24px 60px rgba(0,0,0,0.35);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --wrap: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(94,166,255,0.22), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(34,197,94,0.14), transparent 22%),
    linear-gradient(140deg, var(--bg-1) 0%, var(--bg-2) 48%, #0a1324 100%);
  min-height: 100vh;
}

a {
  color: inherit;
}

.site-shell {
  width: min(calc(100% - 24px), var(--wrap));
  margin: 0 auto;
  padding: clamp(14px, 2vw, 22px) 0 clamp(26px, 4vw, 42px);
}

.trust-strip,
.services-panel,
.footer-note {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  width: 100%;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 12px 24px rgba(22, 163, 74, 0.22);
}

.btn-secondary {
  color: #fff;
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}