:root {
  --primary: #1e3a8a;
  --secondary: #f59e0b;
  --background: #ffffff;
  --surface: #f3f4f6;
  --text: #1f2937;
  --text-light: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 10px 25px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-family); color: var(--text); background: var(--background); line-height: 1.6; }
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { opacity: 0.8; }
button { cursor: pointer; border: none; font-family: inherit; }

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

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  width: 0%;
  z-index: 1000;
  transition: width 0.1s ease;
}

header.sticky-header {
  position: sticky;
  top: 0;
  background: var(--background);
  z-index: 100;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

header.sticky-header.scrolled { box-shadow: var(--shadow); }

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
  letter-spacing: -0.5px;
}

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

.nav-menu a {
  color: var(--text);
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after { width: 100%; }

.burger-menu { display: none; width: 30px; height: 24px; flex-direction: column; justify-content: space-around; background: none; }
.burger-menu span { width: 100%; height: 2px; background: var(--text); border-radius: 2px; }

header.minimal-header { background: var(--background); padding: 1.5rem 0; border-bottom: 1px solid var(--border); }

.breadcrumb {
  background: var(--surface);
  padding: 1rem 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

.breadcrumb a { color: var(--primary); }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 25%, #06b6d4 50%, #1e3a8a 75%, #1e3a8a 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  z-index: -1;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.typewriter-text { border-right: 3px solid var(--secondary); padding-right: 10px; }

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
  font-size: 1rem;
  cursor: pointer;
  border: none;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.btn-primary {
  background: var(--secondary);
  color: var(--primary);
}

.btn-primary:hover {
  background: #f08c00;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
  background: rgba(255,255,255,0.2);
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.stats-section {
  padding: 4rem 0;
  background: var(--surface);
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: var(--background);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary);
}

.stat-suffix {
  font-size: 1.5rem;
  color: var(--secondary);
  font-weight: bold;
}

.stat-label {
  color: var(--text-light);
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

.about-section, .benefits-section, .process-section, .faq-section, .contact-section, .testimonials-section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.feature-grid, .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card, .benefit-item {
  padding: 2rem;
  background: var(--background);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover, .benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 50px;
  height: 50px;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.feature-card h3, .benefit-item h3 {
  color: var(--primary);
  margin: 1rem 0;
  font-size: 1.3rem;
}

.feature-card p, .benefit-item p {
  color: var(--text-light);
  line-height: 1.8;
}

.benefit-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

.testimonial-card {
  padding: 2rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--secondary);
}

.rating {
  color: var(--secondary);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.quote {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  color: var(--text);
}

.author-role {
  font-size: 0.85rem;
  color: var(--text-light);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  padding: 2rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--secondary);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-weight: bold;
  margin-bottom: 1rem;
}

.step h3 {
  color: var(--primary);
  margin: 1rem 0;
}

.step p {
  color: var(--text-light);
  line-height: 1.8;
}

.faq-container {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: var(--surface);
  text-align: left;
  font-weight: 600;
  color: var(--primary);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover { background: var(--border); }

.faq-question::after {
  content: '+';
  float: right;
  font-size: 1.5rem;
}

.faq-item.active .faq-question::after { content: '−'; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1.5rem;
  background: var(--background);
  border-top: 1px solid var(--border);
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.8;
}

.contact-section { background: var(--surface); }

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.form-group input {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.error-message {
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 0.3rem;
  display: none;
}

.form-group input.error { border-color: #ef4444; }
.form-group input.error ~ .error-message { display: block; }

.cta-banner {
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

footer {
  background: var(--primary);
  color: white;
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: rgba(255,255,255,0.8);
}

.footer-col a:hover { color: var(--secondary); }

.footer-logo {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.minimal-footer {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 1rem;
  padding: 2rem 0;
}

.minimal-footer p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.minimal-footer a { color: var(--secondary); }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: white;
  padding: 1.5rem;
  display: none;
  gap: 1rem;
  align-items: center;
  z-index: 999;
  box-shadow: var(--shadow-lg);
}

.cookie-banner.show { display: flex; }

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  width: 100%;
}

.cookie-content p {
  flex: 1;
  min-width: 250px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.btn-cookie-accept, .btn-cookie-decline {
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-cookie-accept {
  background: var(--secondary);
  color: var(--primary);
}

.btn-cookie-accept:hover { background: #f08c00; }

.btn-cookie-decline {
  background: rgba(255,255,255,0.2);
  color: white;
  border: 1px solid white;
}

.btn-cookie-decline:hover { background: rgba(255,255,255,0.3); }

.legal-page { padding: 3rem 0; }

.legal-page h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.last-updated {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.legal-section p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.cookie-table-wrapper { overflow-x: auto; margin: 1.5rem 0; }

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}

.cookie-table th {
  background: var(--primary);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.cookie-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
}

.cookie-table tr:last-child td { border-bottom: none; }

.thank-you-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.thank-you-card {
  text-align: center;
  padding: 3rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  max-width: 500px;
  box-shadow: var(--shadow-lg);
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  color: var(--secondary);
  margin: 0 auto 1.5rem;
}

.thank-you-card h1 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.thank-you-card p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.about-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: white;
  text-align: center;
}

.hero-bg-variant {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(245,158,11,0.2), transparent 50%), radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1), transparent 50%);
  z-index: 0;
}

.about-hero-badge {
  position: relative;
  z-index: 1;
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: var(--secondary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.about-hero h1 {
  position: relative;
  z-index: 1;
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.about-hero p {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.95;
}

.about-mission {
  padding: 5rem 0;
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.mission-text h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.mission-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.mission-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-icon {
  width: 300px;
  height: 300px;
  color: var(--secondary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  text-align: center;
  padding: 2rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.team-member:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.member-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 2rem;
  margin: 0 auto 1rem;
}

.team-member h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.member-role {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.member-bio {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.fade-up { animation: fadeUp 0.6s ease-out forwards; }

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

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .burger-menu { display: flex; }

  .nav-menu.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background);
    padding: 1rem;
    gap: 1rem;
    box-shadow: var(--shadow);
  }

  .hero { min-height: 60vh; padding: 2rem 0; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }

  .section-title { font-size: 1.8rem; }

  .feature-grid, .benefits-grid, .testimonials-grid, .process-steps, .team-grid {
    grid-template-columns: 1fr;
  }

  .mission-content { grid-template-columns: 1fr; }
  .mission-icon { width: 200px; height: 200px; }

  .cookie-banner { flex-direction: column; }
  .cookie-content { flex-direction: column; text-align: center; }
  .btn-cookie-accept, .btn-cookie-decline { width: 100%; }

  .cta-content h2 { font-size: 1.8rem; }

  .faq-question { padding: 1rem; }

  .breadcrumb { padding: 0.75rem 0; }

  .about-hero h1 { font-size: 2rem; }

  .footer-content { grid-template-columns: 1fr; }

  .thank-you-card { padding: 2rem; }

  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; }
}
