/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #1f2937;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* Container */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Header */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8, 28, 40, 0.95); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-size: 1.5rem; font-weight: 700; }
.logo-thyr { color: #2dd4bf; }
.logo-aid { color: #ffffff; }
.logo-scan { color: #5eead4; }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a { color: rgba(255,255,255,0.7); font-size: 0.875rem; transition: color 0.2s; }
.nav a:hover { color: #fff; }
.lang-btn {
  background: transparent; border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.8);
  padding: 4px 12px; border-radius: 6px; cursor: pointer; font-size: 0.875rem; transition: all 0.2s;
}
.lang-btn:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

/* Hero */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, #081c28 0%, #0c3547 50%, #0f4c5c 100%);
  text-align: center; color: #fff;
}
.hero h1 { font-size: 2.5rem; font-weight: 700; max-width: 700px; margin: 0 auto; line-height: 1.3; }
.hero-subtitle { color: rgba(255,255,255,0.6); margin-top: 16px; font-size: 1.1rem; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; margin-top: 40px; }

/* Buttons */
.btn {
  display: inline-block; padding: 12px 32px; border-radius: 10px;
  font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: all 0.2s;
  border: none; text-align: center;
}
.btn-primary { background: #0f766e; color: #fff; }
.btn-primary:hover { background: #0d9488; transform: translateY(-1px); }
.btn-outline { border: 2px solid rgba(255,255,255,0.3); color: #fff; background: transparent; }
.btn-outline:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }

/* Sections */
.section { padding: 80px 0; }
.section-gray { background: #f9fafb; }
.section-title { font-size: 2rem; font-weight: 700; text-align: center; margin-bottom: 48px; color: #111827; }

/* Steps */
.steps { display: flex; align-items: flex-start; justify-content: center; gap: 24px; flex-wrap: wrap; }
.step {
  text-align: center; max-width: 280px; padding: 24px;
  background: #fff; border-radius: 16px; border: 1px solid #e5e7eb; transition: transform 0.2s;
}
.step:hover { transform: translateY(-4px); }
.step-icon { width: 56px; height: 56px; margin: 0 auto 16px; color: #0f766e; }
.step-icon svg { width: 100%; height: 100%; }
.step h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 0.875rem; color: #6b7280; }
.step-arrow { font-size: 2rem; color: #d1d5db; padding-top: 40px; }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature-card {
  padding: 28px; border-radius: 16px; border-left: 4px solid;
  background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.feature-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.feature-card p { font-size: 0.875rem; color: #6b7280; line-height: 1.6; }
.feature-teal { border-color: #0d9488; }
.feature-teal h3 { color: #0f766e; }
.feature-blue { border-color: #3b82f6; }
.feature-blue h3 { color: #2563eb; }
.feature-purple { border-color: #8b5cf6; }
.feature-purple h3 { color: #7c3aed; }
.feature-amber { border-color: #f59e0b; }
.feature-amber h3 { color: #d97706; }

/* Disclaimer */
.disclaimer {
  background: #f3f4f6; border: 1px solid #e5e7eb; border-radius: 12px;
  padding: 24px; max-width: 800px; margin: 0 auto;
}
.disclaimer h3 { font-size: 1rem; font-weight: 600; color: #374151; margin-bottom: 8px; }
.disclaimer p { font-size: 0.8rem; color: #6b7280; line-height: 1.7; }

/* Form */
.access-form { max-width: 600px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.875rem; color: #374151; margin-bottom: 4px; font-weight: 500; }
.form-group input {
  width: 100%; padding: 10px 14px; border: 1px solid #d1d5db; border-radius: 8px;
  font-size: 0.9rem; transition: border-color 0.2s; outline: none;
}
.form-group input:focus { border-color: #0d9488; box-shadow: 0 0 0 3px rgba(13,148,136,0.1); }
.form-message { margin-top: 16px; text-align: center; font-size: 0.9rem; }
.form-message.success { color: #059669; }
.form-message.error { color: #dc2626; }

/* Footer */
.footer { padding: 40px 0; border-top: 1px solid #e5e7eb; }
.footer-inner { text-align: center; }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 16px; }
.footer-links a { color: #6b7280; font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: #0f766e; }
.footer-copy { color: #9ca3af; font-size: 0.8rem; text-align: center; }

/* Mobile */
@media (max-width: 768px) {
  .hero h1 { font-size: 1.75rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav a:not(.lang-btn) { display: none; }
}
