/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at center, #0b1220, #020409);
  color: #e5e7eb;
}

/* ================= NAVBAR ================= */
.navbar {
  height: 72px;
  padding: 0 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10,15,30,0.8);
  backdrop-filter: blur(18px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
}

.logo small {
  font-size: 10px;
  letter-spacing: 3px;
  opacity: 0.7;
}

.logo-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ff3b3b;
  box-shadow: 0 0 18px #ff3b3b;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: #e5e7eb;
}

.nav-btn {
  background: linear-gradient(135deg, #ff3b3b, #ff6a6a);
  padding: 10px 18px;
  border-radius: 12px;
}

/* ================= GET STARTED ================= */
.get-started {
  position: relative;
  padding: 110px 24px;
  display: flex;
  justify-content: center;
}

.bg-glow {
  position: absolute;
  filter: blur(140px);
  opacity: 0.35;
}

.bg-glow.blue {
  width: 520px;
  height: 520px;
  background: #3b82f6;
  left: 8%;
  top: 20%;
}

.bg-glow.red {
  width: 380px;
  height: 380px;
  background: #ff3b3b;
  right: 12%;
  bottom: 20%;
}

.content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  text-align: center;
}

/* ================= HEADINGS ================= */
.content h1 {
  font-size: 40px;
  font-weight: 800;
}

.subtitle {
  margin: 16px auto 60px;
  max-width: 640px;
  font-size: 16px;
  color: #cbd5f5;
}

/* ================= ACTION GRID ================= */
.action-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ================= CARD BASE ================= */
.action-card {
  background: rgba(10,15,30,0.7);
  border-radius: 20px;
  padding: 36px 30px;
  border: 1px solid rgba(147,197,253,0.25);
  box-shadow: 0 0 25px rgba(147,197,253,0.15);
  text-align: left;
  transition: all 0.35s ease;
}

/* 🔥 CARD HOVER GLOW */
.action-card:hover {
  border-color: rgba(255,59,59,0.7);
  box-shadow:
    0 0 35px rgba(255,59,59,0.6),
    0 0 60px rgba(255,59,59,0.25);
  transform: translateY(-6px);
}

.icon {
  font-size: 34px;
  margin-bottom: 16px;
}

.action-card h2 {
  font-size: 20px;
  margin-bottom: 12px;
}

.action-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5f5;
}

/* ================= BUTTONS ================= */
.card-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 22px;
  background: linear-gradient(135deg, #ff3b3b, #ff6a6a);
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 0 18px rgba(255,59,59,0.5);
  transition: all 0.3s ease;
}

/* 🔥 BUTTON HOVER GLOW */
.card-btn:hover {
  box-shadow:
    0 0 30px rgba(255,59,59,0.9),
    0 0 60px rgba(255,59,59,0.4);
  transform: translateY(-2px);
}

.card-btn.outline {
  background: transparent;
  border: 1px solid rgba(147,197,253,0.6);
  color: #e5e7eb;
  box-shadow: 0 0 14px rgba(147,197,253,0.25);
}

.card-btn.outline:hover {
  box-shadow:
    0 0 28px rgba(147,197,253,0.8),
    0 0 50px rgba(147,197,253,0.3);
}

/* ================= TRUST ================= */
.trust {
  margin-top: 70px;
  font-size: 13px;
  color: #cbd5f5;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
