/* ==================== RESET & VARIABLES ==================== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --blue-900: #0C1B3A;
  --blue-800: #112244;
  --blue-700: #1A3355;
  --blue-600: #1A56DB;
  --blue-500: #2563EB;
  --blue-400: #60A5FA;
  --blue-100: #DBEAFE;
  --gold: #C9A84C;
  --gold-light: #E8D48B;
  --white: #FFFFFF;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-800: #1F2937;
  --red: #DC2626;
  --green: #16A34A;
  --font-display: 'DM Serif Display', serif;
  --font-body: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ==================== NAV ==================== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(12, 27, 58, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand img { height: 32px; width: 32px; border-radius: 8px; }

.nav-links { display: flex; gap: 2rem; align-items: center; }

.nav-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

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

.nav-cta {
  background: var(--blue-600) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 500 !important;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--blue-500) !important; }

/* ==================== HERO ==================== */
.hero {
  background: linear-gradient(170deg, var(--blue-900) 0%, var(--blue-800) 55%, var(--blue-700) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 2rem 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--gold-light);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero p {
  font-size: 1.15rem;
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 3rem;
  font-weight: 300;
}

/* ==================== SCAN BOX ==================== */
.scan-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem;
  max-width: 560px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
}

.scan-box h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.scan-input-row {
  display: flex;
  gap: 10px;
}

.scan-input-row input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}

.scan-input-row input::placeholder { color: var(--gray-400); }
.scan-input-row input:focus { border-color: var(--blue-400); }

.scan-btn {
  padding: 14px 28px;
  background: var(--gold);
  color: var(--blue-900);
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
  white-space: nowrap;
}

.scan-btn:hover { background: var(--gold-light); transform: translateY(-1px); }

.scan-note {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==================== RESULT PREVIEW ==================== */
.result-preview {
  display: none;
  margin-top: 1.5rem;
  text-align: center;
}

.result-preview.active { display: block; animation: fadeUp 0.5s ease; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.score-display {
  font-family: var(--font-display);
  font-size: 4rem;
  margin-bottom: 0.25rem;
}

.score-low { color: var(--red); }
.score-mid { color: var(--gold); }
.score-high { color: var(--green); }

.score-label {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.problems-teaser {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  color: #FCA5A5;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.blurred-details {
  filter: blur(6px);
  user-select: none;
  pointer-events: none;
  padding: 12px;
  color: var(--gray-400);
  font-size: 0.85rem;
  line-height: 1.8;
}

.cta-unlock {
  margin-top: 1rem;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-unlock a {
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.cta-app {
  background: var(--blue-600);
  color: var(--white);
}
.cta-app:hover { background: var(--blue-500); }

.cta-email {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
}
.cta-email:hover { border-color: rgba(255,255,255,0.4); }

/* ==================== LOADING ==================== */
.scan-loading {
  display: none;
  margin-top: 1.5rem;
  text-align: center;
  color: var(--gray-400);
}

.scan-loading.active { display: block; }

.spinner {
  width: 36px; height: 36px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 12px;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loading-text {
  font-size: 0.9rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ==================== TRUST BAR ==================== */
.trust-bar {
  background: var(--gray-100);
  padding: 2.5rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
}

.trust-bar p {
  font-size: 0.8rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 500;
}

.trust-item svg { width: 20px; height: 20px; color: var(--blue-600); }

/* ==================== FEATURES ==================== */
.features {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--blue-900);
  margin-bottom: 1rem;
}

.features-header p {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.feature-card:hover {
  border-color: var(--blue-400);
  box-shadow: 0 8px 30px rgba(26, 86, 219, 0.08);
  transform: translateY(-2px);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 44px; height: 44px;
  background: var(--blue-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  color: var(--blue-900);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  font-weight: 300;
}

/* ==================== HOW IT WORKS ==================== */
.how-it-works {
  background: var(--blue-900);
  padding: 6rem 2rem;
  position: relative;
}

.how-content {
  max-width: 900px;
  margin: 0 auto;
}

.how-header {
  text-align: center;
  margin-bottom: 4rem;
}

.how-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.how-header p {
  color: var(--gray-400);
  font-size: 1.05rem;
  font-weight: 300;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-num {
  width: 48px; height: 48px;
  min-width: 48px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
}

.step-text h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.step-text p {
  color: var(--gray-400);
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 300;
}

/* ==================== PRICING ==================== */
.pricing {
  padding: 6rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.pricing-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--blue-900);
  margin-bottom: 1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.price-card {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s;
}

.price-card:hover { border-color: var(--blue-400); }

.price-card.featured {
  border-color: var(--blue-600);
  box-shadow: 0 8px 30px rgba(26, 86, 219, 0.12);
}

.price-card.featured::after {
  content: 'Beliebt';
  position: absolute;
  top: -12px; right: 20px;
  background: var(--blue-600);
  color: var(--white);
  font-size: 0.7rem;
  padding: 4px 12px;
  border-radius: 100px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue-900);
  margin-bottom: 0.25rem;
}

.price-desc {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--blue-900);
  margin-bottom: 0.25rem;
}

.price-amount span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-400);
  font-weight: 300;
}

.price-features {
  list-style: none;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.price-features li {
  font-size: 0.88rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
}

.price-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 0.8rem;
}

.price-btn {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
}

.price-btn-outline {
  background: transparent;
  border: 1px solid var(--gray-200);
  color: var(--gray-800);
}
.price-btn-outline:hover { border-color: var(--blue-600); color: var(--blue-600); }

.price-btn-filled {
  background: var(--blue-600);
  color: var(--white);
}
.price-btn-filled:hover { background: var(--blue-500); }

/* ==================== CTA FINAL ==================== */
.cta-final {
  background: linear-gradient(170deg, var(--blue-900), var(--blue-800));
  padding: 5rem 2rem;
  text-align: center;
}

.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-final p {
  color: var(--gray-400);
  margin-bottom: 2rem;
  font-size: 1rem;
  font-weight: 300;
}

.cta-final a {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--blue-900);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s;
}

.cta-final a:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ==================== FOOTER ==================== */
footer {
  background: var(--blue-900);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem 2rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 640px) {
  nav { padding: 0 1rem; }
  .nav-links { display: none; }
  .hero { padding: 100px 1.25rem 60px; }
  .scan-input-row { flex-direction: column; }
  .scan-btn { width: 100%; }
  .trust-items { gap: 1.5rem; }
  .features, .pricing { padding: 4rem 1.25rem; }
  .step { flex-direction: column; gap: 0.75rem; }
  .cta-unlock { flex-direction: column; align-items: center; }
  .cta-unlock a { width: 100%; text-align: center; }
}
