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

:root {
  /* Color Palette */
  --color-primary: #0a2540;          /* Deep European Navy/Blue - Trust & Seriousness */
  --color-primary-light: #163d6b;
  --color-primary-rgb: 10, 37, 64;
  --color-secondary: #ff5a36;        /* Vibrant Coral/Orange - Youth Energy & Actions */
  --color-secondary-hover: #e04a27;
  --color-accent: #ffd700;           /* European Yellow/Gold */
  --color-accent-rgb: 255, 215, 0;
  --color-success: #10b981;
  --color-error: #ef4444;
  
  /* Neutral Palette */
  --color-bg-light: #f8fafc;
  --color-bg-white: #ffffff;
  --color-text-dark: #0f172a;
  --color-text-muted: #475569;
  --color-text-light: #f1f5f9;
  --color-border: #e2e8f0;
  
  /* Fonts */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 12px 24px -4px rgba(0, 0, 0, 0.08), 0 4px 12px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 32px -6px rgba(10, 37, 64, 0.12), 0 8px 16px -4px rgba(10, 37, 64, 0.06);
  --shadow-inset: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
  
  /* Max width */
  --max-width-content: 1200px;
  --header-height: 80px;
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Headings & Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-primary);
}

h1 {
  font-size: 2.75rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 4px;
  background-color: var(--color-secondary);
  border-radius: var(--radius-full);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.25rem;
  color: var(--color-text-muted);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utilities */
.container {
  width: 100%;
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-bg {
  background-color: var(--color-bg-white);
}

.text-center { text-align: center; }
.text-center h2::after { left: 50%; transform: translateX(-50%); }

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  gap: 0.5rem;
}

.btn:active {
  transform: scale(0.98);
}

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

.btn-primary:hover {
  background-color: var(--color-secondary-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background-color: var(--color-primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

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

.btn-accent:hover {
  background-color: #ffd000;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--color-border);
  color: var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-bg-white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  border-color: var(--color-bg-white);
  color: var(--color-bg-white);
}

.btn-outline-white:hover {
  background-color: var(--color-bg-white);
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* Badges */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}

.badge-finance { background: #fee2e2; color: #ef4444; }
.badge-pr { background: #fef3c7; color: #d97706; }
.badge-it { background: #dbeafe; color: #2563eb; }
.badge-admin { background: #e0f2fe; color: #0284c7; }
.badge-education { background: #dcfce7; color: #16a34a; }

/* Header & Navigation */
header {
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 3rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-primary);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-weight: 800;
  font-size: 1.25rem;
  border: 2px solid var(--color-bg-white);
  box-shadow: var(--shadow-sm);
}

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

.nav-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-menu a {
  font-weight: 500;
  color: var(--color-text-muted);
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--color-primary);
}

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

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

/* Language and CTA Controls */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switch {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  color: var(--color-text-muted);
}

.lang-switch:hover {
  background: var(--color-border);
  color: var(--color-primary);
}

/* Hamburger Menu Icon */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-primary);
  margin: 5px 0;
  border-radius: 3px;
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  position: relative;
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  padding: 6rem 0 7rem 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,90,54,0.15) 0%, rgba(255,90,54,0) 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero-content h1 {
  color: var(--color-bg-white);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-content h1 span {
  color: var(--color-accent);
}

.hero-content p {
  font-size: 1.25rem;
  color: rgba(241, 245, 249, 0.85);
  margin-bottom: 2.5rem;
}

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

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255, 255, 255, 0.1);
  transform: rotate(2deg);
  transition: var(--transition-smooth);
}

.hero-img:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-badge {
  position: absolute;
  background: var(--color-secondary);
  color: var(--color-bg-white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-family: var(--font-headings);
  font-weight: 700;
  bottom: -20px;
  left: 20px;
  box-shadow: var(--shadow-md);
  transform: rotate(-3deg);
  font-size: 0.9rem;
}

/* Cards & Content Blocks */
.card {
  background-color: var(--color-bg-white);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10, 37, 64, 0.1);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background-color: rgba(255, 90, 54, 0.1);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.card-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.card-link {
  margin-top: auto;
  color: var(--color-secondary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.card-link:hover {
  color: var(--color-secondary-hover);
}

.card-link::after {
  content: '→';
  transition: var(--transition-fast);
}

.card-link:hover::after {
  transform: translateX(4px);
}

/* Features grid specific styling */
.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* Team section styles */
.team-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.team-card {
  padding: 1.5rem;
  text-align: center;
  align-items: center;
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(10,37,64,0.05) 0%, rgba(255,90,54,0.05) 100%);
  border: 3px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  transition: var(--transition-smooth);
}

.team-card:hover .team-avatar {
  border-color: var(--color-secondary);
  transform: scale(1.05);
}

.team-name {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

/* MEP countdown banner */
.countdown-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-bg-white);
  padding: 4rem 0;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.countdown-section h3 {
  color: var(--color-bg-white);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.countdown-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.countdown-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  min-width: 100px;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.countdown-number {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.countdown-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.75);
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--color-border);
  transform: translateX(-50%);
  border-radius: var(--radius-full);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 2.5rem;
  margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  border: 4px solid var(--color-bg-white);
  top: 0;
  box-shadow: var(--shadow-sm);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -10px;
}

.timeline-card {
  background: var(--color-bg-white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: inline-block;
  text-align: left;
  max-width: 100%;
}

.timeline-date {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem;
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--color-secondary);
  transition: var(--transition-smooth);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: var(--transition-smooth);
  color: var(--color-text-muted);
}

.faq-item.active {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-md);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  padding-bottom: 1.5rem;
  max-height: 300px; /* high enough for standard text */
}

/* News Feed Grid & Gallery */
.news-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.news-card {
  overflow: hidden;
  padding: 0;
}

.news-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: 1.5rem;
}

.news-date {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
  display: block;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 220px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 37, 64, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg-white);
  font-family: var(--font-headings);
  font-weight: 600;
  opacity: 0;
  transition: var(--transition-smooth);
  padding: 1.5rem;
  text-align: center;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

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

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  transition: var(--transition-smooth);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  background-color: var(--color-bg-white);
  box-shadow: 0 0 0 4px rgba(255, 90, 54, 0.1);
}

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-checkbox {
  width: 20px;
  height: 20px;
  accent-color: var(--color-secondary);
  margin-top: 0.2rem;
  cursor: pointer;
}

.form-checkbox-label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  cursor: pointer;
}

.form-checkbox-label a {
  color: var(--color-secondary);
  font-weight: 600;
}

/* Pricing Grid (Mitmachen) */
.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-bottom: 3rem;
}

.pricing-card {
  text-align: center;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--color-secondary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pricing-featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-secondary);
  color: var(--color-bg-white);
  font-size: 0.8rem;
  font-family: var(--font-headings);
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
}

.price {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  margin: 1rem 0;
}

.price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.pricing-features {
  list-style: none;
  margin: 1.5rem 0 2rem 0;
}

.pricing-features li {
  margin-bottom: 0.75rem;
  color: var(--color-text-muted);
}

/* Interactive Donation Slider */
.donation-interactive {
  background: var(--color-bg-white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  max-width: 700px;
  margin: 0 auto;
}

.slider-container {
  margin: 2rem 0;
}

.donation-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-border);
  outline: none;
  margin-bottom: 1.5rem;
}

.donation-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.donation-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  background: var(--color-secondary-hover);
}

.donation-values {
  display: flex;
  justify-content: space-between;
  color: var(--color-text-muted);
  font-family: var(--font-headings);
  font-weight: 600;
}

.donation-amount-display {
  font-family: var(--font-headings);
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 1rem;
}

.donation-impact {
  text-align: center;
  font-size: 1.1rem;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-bottom: 2rem;
  min-height: 3rem;
}

/* Footer Section */
footer {
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  padding: 5rem 0 2rem 0;
  margin-top: auto;
  border-top: 4px solid var(--color-secondary);
}

.footer-grid {
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  margin-bottom: 4rem;
}

.footer-col h4 {
  color: var(--color-bg-white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 30px;
  height: 3px;
  background-color: var(--color-secondary);
  border-radius: var(--radius-full);
}

.footer-about p {
  color: rgba(241, 245, 249, 0.7);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(241, 245, 249, 0.7);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg-white);
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background-color: var(--color-secondary);
  color: var(--color-bg-white);
  transform: translateY(-3px);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-bg-white);
  font-family: var(--font-body);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--color-secondary);
  background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
  background-color: var(--color-secondary);
  color: var(--color-bg-white);
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: rgba(241, 245, 249, 0.5);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(241, 245, 249, 0.5);
}

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

/* GDPR Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 600px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  z-index: 1000;
  display: none;
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.cookie-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.cookie-content p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.cookie-options {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.cookie-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* Mobile Menu Active States & Styling */
@media (max-width: 992px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.85rem; }
  
  .hamburger {
    display: block;
  }
  
  nav {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--color-bg-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    z-index: 99;
  }
  
  nav.active {
    left: 0;
  }
  
  .nav-menu {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .nav-menu a {
    font-size: 1.25rem;
  }
  
  .nav-actions {
    flex-direction: column;
    width: 80%;
    gap: 1.5rem;
  }
  
  .nav-actions .btn {
    width: 100%;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-img {
    max-width: 80%;
    margin: 0 auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  /* Hamburger active transformation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 3rem;
    padding-right: 0;
    text-align: left !important;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
  }
  
  .timeline-dot {
    left: 10px !important;
    right: auto !important;
  }
  
  .timeline-card {
    display: block;
  }
}
