/* DSGVO-konformes Tailwind CSS - Lokal kompiliert */
/* Wird später mit Tailwind CLI kompiliert */

/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Custom Colors */
:root {
  --darkblue: #1e3a8a;
  --lightgray: #f3f4f6;
  --neongreen: #10b981;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
}

/* Base */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--gray-50);
  color: var(--gray-900);
  margin: 0;
  padding: 0;
}

/* Layout */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Navigation - COMPLETLY NEW */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 9999;
  height: 80px;
}

.header-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--darkblue);
  text-decoration: none;
  transition: color 0.3s;
}

.header-logo:hover {
  color: var(--neongreen);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.header-link {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
  position: relative;
}

.header-link:hover {
  color: var(--neongreen);
}

.header-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neongreen);
  transition: width 0.3s;
}

.header-link:hover::after {
  width: 100%;
}

.header-cta {
  background: linear-gradient(135deg, var(--neongreen), #059669);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  border: none;
  cursor: pointer;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Mobile Menu Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
}

.mobile-menu-toggle svg {
  width: 32px;
  height: 32px;
  color: var(--gray-700);
  transition: all 0.3s ease;
}

.mobile-menu-toggle svg:first-child {
  display: block;
}

.mobile-menu-toggle svg:last-child {
  display: none;
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  
  .header-cta {
    display: none !important;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .header-wrapper {
    padding: 0 1rem;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--darkblue) 0%, #1e40af 50%, #2563eb 100%);
  color: white;
  padding: 10rem 0 8rem 0;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* Service Introduction */
.service-intro {
  margin-bottom: 2rem;
}

.service-intro-title {
  font-size: 1.5rem;
  font-weight: 300;
  color: #bfdbfe;
  margin-bottom: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .service-intro-title {
    font-size: 1.875rem;
  }
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.service-tag {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-tag-icon {
  color: #86efac;
  font-weight: 600;
}

.service-tag-text {
  color: white;
  font-weight: 500;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #dbeafe;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-cta {
  background-color: var(--neongreen);
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  text-decoration: none;
  outline: none;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.hero-cta:hover {
  background-color: #059669;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.hero-subtext {
  margin-top: 1rem;
  color: #bfdbfe;
  font-size: 0.875rem;
  text-align: center;
}

/* Services Section */
.services {
  background-color: var(--lightgray);
  padding: 5rem 0;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--darkblue);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .services-title {
    font-size: 2.5rem;
  }
}

.services-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
}

.services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.05);
  padding: 3rem 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--neongreen), #059669);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(16, 185, 129, 0.2);
}

.service-icon {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
  border: 3px solid #10b981;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon svg {
  width: 3rem;
  height: 3rem;
  color: #10b981;
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background: #ffffff;
  border-color: #059669;
  transform: scale(1.05);
}

.service-card:hover .service-icon svg {
  color: #059669;
  transform: scale(1.15);
}

.service-trust {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
}

.service-trust span {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
}

.service-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--darkblue);
  margin-bottom: 0.75rem;
  text-align: center;
  background: linear-gradient(135deg, var(--darkblue), #1e40af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-description {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
}

.service-price {
  font-size: 2.25rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--neongreen), #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.service-price::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--neongreen), #059669);
  border-radius: 2px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.service-feature {
  display: flex;
  align-items: center;
  color: var(--gray-700);
  margin-bottom: 1rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.service-feature:hover {
  background: rgba(16, 185, 129, 0.05);
  transform: translateX(4px);
}

.service-feature-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--neongreen);
  margin-right: 0.75rem;
  flex-shrink: 0;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  padding: 0.25rem;
}

.service-cta {
  width: 100%;
  background: linear-gradient(135deg, var(--darkblue), #1e40af);
  color: white;
  padding: 1rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
  text-align: center;
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
  position: relative;
  overflow: hidden;
}

.service-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.service-cta:hover::before {
  left: 100%;
}

.service-cta:hover {
  background: linear-gradient(135deg, #1e40af, #1e3a8a);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(30, 58, 138, 0.4);
}

/* Final CTA Section */
.final-cta {
  background-color: var(--darkblue);
  color: white;
  padding: 4rem 0;
}

.final-cta-container {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.final-cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .final-cta-title {
    font-size: 2.5rem;
  }
}

.final-cta-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #dbeafe;
}

.final-cta-button {
  background-color: var(--neongreen);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.final-cta-button:hover {
  background-color: #059669;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

/* Newsletter Form Styles */
.newsletter-form {
  margin: 2rem 0;
}

.newsletter-input-group {
  display: flex;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 1.5rem 2rem;
  border: 3px solid #e2e8f0;
  border-radius: 1rem;
  font-size: 1.125rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-align: left;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--neongreen);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.2), 0 0 0 4px rgba(16, 185, 129, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.newsletter-input::placeholder {
  color: #94a3b8;
  font-weight: 500;
  text-align: left;
}

.newsletter-button {
  background: linear-gradient(135deg, var(--neongreen), #059669);
  color: white;
  padding: 1.5rem 2.5rem;
  border: none;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.newsletter-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(16, 185, 129, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.newsletter-button:hover::before {
  left: 100%;
}

.newsletter-button:active {
  transform: translateY(-1px);
}

.final-cta-subtext {
  margin-top: 1rem;
  color: #bfdbfe;
  font-size: 0.875rem;
}

/* Footer */
.footer {
  background-color: var(--gray-900);
  color: var(--gray-300);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.footer-text {
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.footer-title {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link {
  margin-bottom: 0.5rem;
}

.footer-link a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link a:hover {
  color: var(--neongreen);
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: var(--gray-400);
}

/* Benefits */
.benefit-card {
  background-color: var(--gray-50);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}

.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.benefit-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.benefit-card-description {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Service Details */
.service-description {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.service-benefits li {
  display: flex;
  align-items: center;
  color: var(--gray-700);
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: var(--darkblue);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.service-link:hover {
  color: var(--neongreen);
}

/* Utilities */
.flag-icon {
  display: inline-block;
  width: 1.5rem;
  height: 1rem;
  border-radius: 2px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.flag-de {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'%3E%3Crect width='3' height='2' fill='%23ffce00'/%3E%3Crect width='3' height='0.6667' y='0.6667' fill='%23dd0000'/%3E%3Crect width='3' height='0.6667' fill='%23000000'/%3E%3C/svg%3E");
}

.flag-uk {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 20'%3E%3Crect width='30' height='20' fill='%23001f74'/%3E%3Cpath d='M0 0l30 20m0-20L0 20' stroke='%23ffffff' stroke-width='4'/%3E%3Cpath d='M0 0l30 20m0-20L0 20' stroke='%23cf142b' stroke-width='2'/%3E%3Crect x='12' width='6' height='20' fill='%23ffffff'/%3E%3Crect y='7' width='30' height='6' fill='%23ffffff'/%3E%3Crect x='13' width='4' height='20' fill='%23cf142b'/%3E%3Crect y='8' width='30' height='4' fill='%23cf142b'/%3E%3C/svg%3E");
}

.flag-es {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'%3E%3Crect width='3' height='2' fill='%23c60b1e'/%3E%3Crect width='3' height='1' y='0.5' fill='%23ffc400'/%3E%3C/svg%3E");
}

.flag-pl {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'%3E%3Crect width='3' height='2' fill='%23ffffff'/%3E%3Crect width='3' height='1' y='1' fill='%23d4213d'/%3E%3C/svg%3E");
}

.flag-tr {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 20'%3E%3Crect width='30' height='20' fill='%23e30a17'/%3E%3Ccircle cx='12' cy='10' r='6' fill='%23ffffff'/%3E%3Ccircle cx='14' cy='10' r='5' fill='%23e30a17'/%3E%3Cpath d='M18.5 10l3.5 1.2-2.2-3.2 2.2-3.2-3.5 1.2-1.1-3.4-1.1 3.4-3.5-1.2 2.2 3.2-2.2 3.2 3.5-1.2 1.1 3.4z' fill='%23ffffff'/%3E%3C/svg%3E");
}

.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }
.transition-colors { transition: color 0.3s; }
.transition-shadow { transition: box-shadow 0.3s; }
.transition-all { transition: all 0.3s; }
.transform { transform: translateZ(0); }
.hover\:scale-105:hover { transform: scale(1.05); }

/* Responsive */
@media (max-width: 767px) {
  .hidden-md { display: none; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .md\:hidden { display: none; }
  .md\:text-4xl { font-size: 2.25rem; }
  .md\:text-6xl { font-size: 3.75rem; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
}
