/* ========== RESET ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Arial, sans-serif;
  background: #050b1a;
  color: #e6ecff;
  line-height: 1.6;
}

/* ========== GLOBAL ========== */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ========== BUTTON ========== */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff4ecd, #ff9a3c);
  color: #000;
  font-weight: 700;
  text-align: center;
}

.btn.small {
  padding: 8px 16px;
  font-size: 14px;
}

.btn.ghost {
  background: transparent;
  border: 2px solid #ff4ecd;
  color: #ff4ecd;
}

/* ========== HEADER ========== */
.site-header {
  background: rgba(5, 11, 26, 0.9);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 99;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.top-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

.top-nav a {
  font-weight: 600;
}

/* ========== HERO ========== */
.hero {
  padding: 80px 0;
  background: radial-gradient(circle at top, #0c1a44, #050b1a);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.lead {
  opacity: 0.9;
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.trust {
  list-style: none;
}

.trust li {
  margin-bottom: 6px;
  font-size: 14px;
}

/* ========== SECTION ========== */
.section {
  padding: 70px 0;
}

.section.alt {
  background: #070f28;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

/* ========== GRID ========== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ========== CARD ========== */
.card {
  background: linear-gradient(180deg, #0c1a44, #050b1a);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 24px;
}

.card h3 {
  margin-bottom: 10px;
  color: #ff9a3c;
}

.list {
  margin-top: 12px;
  padding-left: 18px;
}

/* ========== CTA BAND ========== */
.cta-band {
  background: linear-gradient(135deg, #ff4ecd, #ff9a3c);
  color: #000;
}

.cta-inner {
  text-align: center;
}

.cta-inner h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

/* ========== FOOTER ========== */
.site-footer {
  background: #020612;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  opacity: 0.85;
}

/* ========== FLOATING BUTTONS ========== */
.floating-actions {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.float-btn {
  padding: 12px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  background: linear-gradient(135deg, #ff4ecd, #ff9a3c);
  color: #000;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.45);
}

.float-btn.rtp {
  background: linear-gradient(135deg, #00eaff, #00ff9c);
}
