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

:root {
  /* Vibrant & Sexy Palette */
  --bg-white: #FFFFFF;
  --bg-off: #F8FAFC; 
  --bg-shade: #F1F5F9;
  --text-main: #0F172A;
  --text-muted: #475569;
  
  --primary: #2563EB;
  --primary-deep: #1E40AF;
  --primary-light: #EFF6FF;
  /* Super Sexy Gradient */
  --primary-gradient: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
  --gold-gradient: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
  
  --success: #10B981; 
  --success-light: #F0FDF4;
  --mint: #D1FAE5; /* Light green accent */
  --warning: #F59E0B; 
  --warning-light: #FFFBEB;
  --star-yellow: #FBBF24; /* Vibrant Yellow for stars */
  
  --border-light: #E2E8F0;
  
  --max-width: 1100px;
  --content-width: 850px;

  /* Spacing Scale - Compacted for less whitespace */
  --s-1: 8px;
  --s-2: 12px;
  --s-3: 20px;
  --s-4: 32px;
  --s-6: 40px;
  --s-8: 48px; /* Reduced from 64px */
  --s-12: 64px; /* Reduced from 96px */
  --s-16: 80px; /* Reduced from 128px */

  /* Depth & FX */
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-sexy: 0 20px 25px -5px rgba(37, 99, 235, 0.3), 0 10px 10px -5px rgba(37, 99, 235, 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-white);
  color: var(--text-main);
  line-height: 1.5; 
  font-size: 19px;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--s-3);
}

/* More compact sections */
section {
  padding: var(--s-8) 0;
}

.content-narrow {
  max-width: var(--content-width);
  margin: 0;
}

/* Vibrant Typography */
h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--s-3);
  color: var(--text-main);
  letter-spacing: -0.04em;
}

h2 {
  font-size: 32px;
  font-weight: 800;
  margin-top: var(--s-8);
  margin-bottom: var(--s-3);
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: var(--s-2);
}

h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: var(--s-2);
}

strong {
  font-weight: 700;
  color: var(--text-main);
}

p {
  margin-bottom: var(--s-3);
  color: var(--text-muted);
}

/* Sexy Labels / Badges */
.badge-row {
  display: flex;
  gap: var(--s-2);
  margin-bottom: var(--s-4);
  flex-wrap: wrap;
}

.badge-trust {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  background: var(--mint);
  color: #064E3B; /* Deep green */
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid #A7F3D0;
}

.badge-blue {
  background: #FEF3C7; /* Yellowish accent for trust */
  color: #92400E;
  border-color: #FDE68A;
}

/* Star Rating */
.star-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--star-yellow);
  margin-bottom: var(--s-2);
  font-size: 18px;
  font-weight: 700;
}

.star-rating .count {
  color: var(--text-muted);
  font-size: 15px;
  margin-left: 8px;
  font-weight: 500;
}

/* Super Sexy Magnetic Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  width: auto;
  min-width: 480px;
  background: var(--primary-gradient);
  color: white !important;
  padding: 24px 40px;
  border-radius: 18px;
  font-weight: 800;
  font-size: 22px;
  text-decoration: none;
  border: none;
  margin: var(--s-4) 0;
  transition: var(--transition);
  box-shadow: var(--shadow-sexy);
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-5px);
  filter: brightness(1.1);
  box-shadow: 0 30px 45px -10px rgba(37, 99, 235, 0.4);
}

.btn-pulse {
  animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37, 99, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

/* Nav with Hamburger */
nav {
  padding: var(--s-4) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-weight: 800;
  font-size: 22px;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
}

.nav-links {
  display: flex;
  gap: var(--s-6);
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
}

.nav-links a:hover { color: var(--primary); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-main);
  padding: 8px;
}

/* Icon Styling */
.icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 14px;
}

/* List Styling */
.step-list {
  list-style: none;
}

.step-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  margin-bottom: var(--s-3);
  padding: var(--s-3);
  background: var(--bg-off);
  border-radius: 16px;
  transition: var(--transition);
}

.step-list li:hover {
  background: white;
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

/* Grid & Cards */
.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--s-3);
}

.option-card {
  padding: var(--s-6);
  border-radius: 20px;
  background: white;
  border: 1px solid var(--border-light);
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.option-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.card-box {
  background: var(--bg-off);
  padding: var(--s-6);
  border-radius: 20px;
  margin: var(--s-6) 0;
}

.card-success { background: var(--success-light); border: 1px solid #A7F3D0; }

/* Mobile Adaptations */
@media (max-width: 768px) {
  h1 { font-size: 34px; }
  h2 { font-size: 24px; }
  section { padding: var(--s-6) 0; }
  
  .menu-toggle { display: block; }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: var(--s-4);
    gap: var(--s-4);
    box-shadow: var(--shadow-md);
    z-index: 100;
    border-radius: 16px;
    margin-top: 10px;
  }
  
  .nav-links.active { display: flex; }
  
  .btn-primary {
    min-width: 100%;
    padding: 20px;
    font-size: 18px;
  }
}

.hidden { display: none !important; }
.progress-container { width: 100%; background: #E2E8F0; height: 12px; border-radius: 10px; overflow: hidden; margin: 20px 0; }
.progress-bar { height: 100%; background: var(--primary-gradient); width: 0%; transition: width 0.5s; }

/* Footer Professional Styling */
footer {
  margin-top: var(--s-12);
  padding: var(--s-8) 0;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: var(--s-6);
  margin-bottom: var(--s-3);
  flex-wrap: wrap;
}

.footer-nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--primary);
}

footer p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0;
}
