@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Outfit:wght@700&display=swap');

:root {
  --bg-dark: #0a0a0f;
  --bg-card: rgba(255, 255, 255, 0.03);
  --border-glass: rgba(255, 255, 255, 0.08);
  --accent-gold: #D4AF37;
  --accent-glow: rgba(212, 175, 55, 0.3);
  --text-main: #f0f0f0;
  --text-muted: #a0a0a5;
  --success: #2ecc71;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Background Glow Effects */
.bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}
.glow-1 { top: -200px; left: -200px; }
.glow-2 { bottom: -200px; right: -200px; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
}
.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo span {
  color: var(--accent-gold);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80vh;
  gap: 50px;
  margin-top: 40px;
}

.hero-content {
  flex: 1;
}

.badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 24px;
}
h1 span {
  background: linear-gradient(90deg, #fff, var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
}

.benefits {
  list-style: none;
  margin-bottom: 40px;
}
.benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 18px;
  color: #ccc;
}
.benefits li svg {
  color: var(--success);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Glassmorphism Form Card */
.hero-form-wrapper {
  flex: 0.8;
  perspective: 1000px;
}

.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}
.glass-card:hover {
  transform: translateY(-5px);
}

.card-header {
  text-align: center;
  margin-bottom: 30px;
}
.card-header h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.card-header p {
  color: var(--text-muted);
  font-size: 14px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

input {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-glass);
  color: #fff;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}
input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.cta-button {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #B8860B 100%);
  color: #000;
  border: none;
  padding: 18px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

.cta-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-25deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

.cta-button:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
}
.secure-note svg {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
}

/* Trust Bar */
.trust-bar {
  margin-top: 80px;
  padding-bottom: 60px;
  text-align: center;
}
.trust-bar p {
  color: var(--text-muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
}
.logos {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}
.logos:hover {
  opacity: 0.8;
}
.logos span {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 968px) {
  .hero {
    flex-direction: column;
    text-align: center;
    margin-top: 20px;
  }
  .subtitle {
    margin: 0 auto 40px auto;
  }
  .benefits li {
    justify-content: center;
  }
  h1 {
    font-size: 42px;
  }
  .hero-form-wrapper {
    width: 100%;
    max-width: 500px;
  }
}
