/* ========================================
   Andrea Görke - Statische Website
   Kinderzuschlag 2025 Informationen
   ======================================== */

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

/* ========== CSS Variables ========== */
:root {
  --primary: #3a3a3d;
  --primary-light: rgba(58, 58, 61, 0.05);
  --primary-foreground: #fafafa;
  --foreground: #1f1f21;
  --background: #ffffff;
  --muted: #6b6b70;
  --accent: #d4a574;
  --border: #e5e5e7;
  --card: #ffffff;
  
  --gradient-hero: linear-gradient(135deg, rgba(45, 106, 100, 0.92), rgba(180, 120, 80, 0.85));
  --gradient-section: linear-gradient(180deg, #faf9f7, #f5f3f0);
  
  --shadow-soft: 0 4px 20px -4px rgba(30, 50, 60, 0.08);
  --shadow-card: 0 10px 40px -10px rgba(30, 50, 60, 0.12);
  --shadow-elevated: 0 20px 60px -15px rgba(30, 50, 60, 0.15);
  
  --radius: 0.75rem;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

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

button {
  font-family: inherit;
}

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

.hidden {
  display: none !important;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: #2a2a2d;
  box-shadow: var(--shadow-card);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}

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

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-xl {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

/* Hero Buttons - Glassmorphism Style */
.btn-hero {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 200px;
}

.btn-hero:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-hero .btn-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
}

.btn-hero .btn-subtitle {
  font-size: 0.75rem;
  opacity: 0.8;
  font-weight: 400;
}

.btn-hero-outline {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 200px;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-hero-outline .btn-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
}

.btn-hero-outline .btn-subtitle {
  font-size: 0.75rem;
  opacity: 0.8;
  font-weight: 400;
}

/* ========== Navigation ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.5rem 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
}

.nav.scrolled .nav-logo-icon {
  background: var(--primary);
  color: var(--primary-foreground);
}

.nav-logo-text {
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  display: none;
  transition: var(--transition);
}

.nav.scrolled .nav-logo-text {
  color: var(--foreground);
}

@media (min-width: 640px) {
  .nav-logo-text {
    display: block;
  }
}

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

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-links button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.nav.scrolled .nav-links button {
  color: var(--foreground);
}

.nav-links button:hover {
  color: #fff;
}

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

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.nav.scrolled .mobile-menu-btn {
  color: var(--foreground);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-elevated);
  z-index: 90;
  padding: 1.5rem 0;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 0;
  background: none;
  border: none;
  color: var(--foreground);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-menu button:hover {
  color: var(--primary);
}

.mobile-menu .btn {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}

/* ========== Hero Section ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-floating {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: float 8s ease-in-out infinite;
}

.floating-1 {
  top: 5rem;
  left: 2.5rem;
  width: 8rem;
  height: 8rem;
  background: rgba(255, 255, 255, 0.05);
}

.floating-2 {
  bottom: 10rem;
  right: 5rem;
  width: 10rem;
  height: 10rem;
  background: rgba(212, 165, 116, 0.1);
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-20px) translateX(10px); }
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 6rem 1rem 3rem;
  width: 100%;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .hero-grid {
    flex-direction: row;
    justify-content: center;
    gap: 5rem;
  }
}

.hero-image-wrapper {
  position: relative;
  animation: fadeIn 0.8s ease-out;
}

.hero-image-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(212, 165, 116, 0.3));
  border-radius: 50%;
  filter: blur(20px);
  transform: scale(1.1);
}

.hero-image {
  position: relative;
  width: 16rem;
  height: 16rem;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-elevated);
}

@media (min-width: 768px) {
  .hero-image {
    width: 20rem;
    height: 20rem;
  }
}

.hero-text {
  text-align: center;
  max-width: 36rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

@media (min-width: 1024px) {
  .hero-text {
    text-align: left;
  }
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.hero-tagline {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.hero-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

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

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

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

/* ========== Sections ========== */
.section {
  padding: 6rem 0;
}

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

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

.bg-primary-light {
  background: var(--primary-light);
}

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

.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-divider {
  width: 5rem;
  height: 4px;
  background: var(--primary);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.section-description {
  color: var(--muted);
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========== About Section ========== */
.about-card {
  max-width: 56rem;
  margin: 0 auto;
  background: var(--card);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .about-card {
    padding: 3rem;
  }
}

.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.about-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.about-description {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--primary-light);
  border-radius: var(--radius);
  padding: 0.75rem;
}

.trust-badge-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(58, 58, 61, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.trust-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

/* ========== Why Section ========== */
.reasons-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .reasons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.reason-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: var(--transition);
}

.reason-card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-4px);
}

.reason-icon {
  width: 4rem;
  height: 4rem;
  background: var(--primary-light);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
}

.reason-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.reason-card p {
  color: var(--muted);
  line-height: 1.7;
}

/* ========== Eligibility Section ========== */
.eligibility-card {
  max-width: 48rem;
  margin: 0 auto;
  background: var(--card);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .eligibility-card {
    padding: 2.5rem;
  }
}

.eligibility-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.criteria-list {
  list-style: none;
  margin-bottom: 2rem;
}

.criteria-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.criteria-icon {
  width: 1.5rem;
  height: 1.5rem;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--primary);
}

.info-box {
  display: flex;
  gap: 1rem;
  background: var(--primary-light);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.info-box svg {
  flex-shrink: 0;
  color: var(--primary);
}

.info-box p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

.info-box strong {
  color: var(--foreground);
}

/* ========== Tips Section ========== */
.tips-container {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tip-card {
  display: flex;
  gap: 1.25rem;
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.tip-card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateX(4px);
}

.tip-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(212, 165, 116, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.tip-content h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.tip-content h3 svg {
  color: var(--primary);
}

.tip-content p {
  color: var(--muted);
  line-height: 1.7;
}

/* ========== CTA Section ========== */
.cta-card {
  max-width: 56rem;
  margin: 0 auto;
  background: var(--card);
  border-radius: 1.5rem;
  padding: 2rem 2rem 3rem;
  box-shadow: var(--shadow-elevated);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}

@media (min-width: 768px) {
  .cta-card {
    padding: 3rem 3rem 4rem;
  }
}

.cta-icon {
  width: 5rem;
  height: 5rem;
  background: var(--primary-light);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--primary);
}

.cta-card h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.cta-description {
  color: var(--muted);
  max-width: 40rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.benefits-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
}

.benefit svg {
  color: var(--primary);
  flex-shrink: 0;
}

.benefit span {
  font-size: 0.875rem;
  color: var(--foreground);
}

.cta-note {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 1rem;
}

/* ========== Testimonials Section ========== */
.testimonial-container {
  max-width: 56rem;
  margin: 0 auto;
}

.testimonial-card {
  position: relative;
  background: var(--card);
  border-radius: 1.5rem;
  padding: 2rem 2rem 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .testimonial-card {
    padding: 3rem;
  }
}

.testimonial-quote-icon {
  position: absolute;
  top: -1.5rem;
  left: 2rem;
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.testimonial-card blockquote {
  font-size: 1.1rem;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--foreground);
  font-style: italic;
}

@media (min-width: 768px) {
  .testimonial-card blockquote {
    font-size: 1.25rem;
  }
}

.testimonial-author {
  text-align: center;
  margin-bottom: 2rem;
}

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

.author-role {
  color: var(--muted);
  font-size: 0.875rem;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.nav-btn {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--foreground);
}

.nav-btn:hover {
  background: var(--primary-light);
  border-color: var(--primary);
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 9999px;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  width: 2rem;
  background: var(--primary);
}

.dot:hover:not(.active) {
  background: rgba(58, 58, 61, 0.3);
}

/* ========== Footer ========== */
.footer {
  background: var(--foreground);
  padding: 4rem 0;
  color: var(--background);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo span {
  font-weight: 600;
  font-size: 1.1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

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

.footer-legal button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
}

.footer-legal button:hover {
  color: #fff;
}

/* ========== Cookie Banner ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1rem 1.5rem;
  animation: slideUp 0.4s ease-out;
}

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

.cookie-content {
  max-width: 56rem;
  margin: 0 auto;
  background: var(--card);
  border-radius: 1rem;
  box-shadow: var(--shadow-elevated);
  border: 1px solid var(--border);
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    align-items: center;
  }
}

.cookie-icon {
  width: 3rem;
  height: 3rem;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.cookie-text {
  flex: 1;
}

.cookie-text h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--foreground);
}

.cookie-text p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

.cookie-link {
  background: none;
  border: none;
  color: var(--primary);
  font-weight: 500;
  cursor: pointer;
}

.cookie-link:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  width: 100%;
}

@media (min-width: 768px) {
  .cookie-buttons {
    width: auto;
  }
}

.cookie-buttons .btn {
  flex: 1;
}

@media (min-width: 768px) {
  .cookie-buttons .btn {
    flex: none;
  }
}

/* ========== Modals ========== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 300;
  animation: fadeIn 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal {
  background: var(--card);
  border-radius: 1rem;
  max-width: 40rem;
  width: 100%;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: modalIn 0.3s ease-out;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.modal-header h2 {
  font-size: 1.5rem;
  color: var(--foreground);
}

.modal-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  transition: var(--transition);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: var(--foreground);
}

.modal-body {
  padding: 1.5rem;
  overflow-y: auto;
}

.modal-body h3 {
  font-size: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.modal-body h3:first-child {
  margin-top: 0;
}

.modal-body h4 {
  font-size: 0.9rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.modal-body p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.modal-body ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.modal-body li {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 0.25rem;
}

.modal-body strong {
  color: var(--foreground);
}

.cookie-table {
  width: 100%;
  font-size: 0.75rem;
  margin: 1rem 0;
  background: #f9f9f9;
  border-radius: 0.5rem;
  overflow: hidden;
}

.cookie-table th,
.cookie-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.cookie-table th {
  font-weight: 500;
  color: var(--foreground);
}

.contact-info {
  background: #f9f9f9;
  border-radius: var(--radius);
  padding: 1rem;
  margin: 1rem 0;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.contact-info-item div p:first-child {
  font-size: 0.75rem;
  color: var(--muted);
}

.contact-info-item div p:last-child {
  font-weight: 500;
  color: var(--foreground);
}

/* ========== Utility Classes ========== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========== Print Styles ========== */
@media print {
  .nav,
  .cookie-banner,
  .scroll-indicator {
    display: none !important;
  }
  
  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
}
