/* Nexor.ink - Selbstentwicklung in Deutschland */
/* Einzigartiges Design-System 2024 */

/* Einzigartige Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&family=DM+Sans:wght@400;500;600;700&display=swap');

/* CSS-Variablen für einzigartiges Design */
:root {
  /* Einzigartige Farbpalette - Tiefes Lila/Türkis/Bernstein */
  --primary: #8B5CF6;
  --primary-dark: #6D28D9;
  --primary-light: #A78BFA;
  --secondary: #14B8A6;
  --secondary-dark: #0F766E;
  --secondary-light: #5EEAD4;
  --accent: #F59E0B;
  --accent-dark: #D97706;
  --accent-light: #FCD34D;
  
  /* Gradienten */
  --gradient-primary: linear-gradient(135deg, #8B5CF6 0%, #14B8A6 100%);
  --gradient-secondary: linear-gradient(135deg, #F59E0B 0%, #8B5CF6 50%, #14B8A6 100%);
  --gradient-dark: linear-gradient(135deg, #1F2937 0%, #111827 100%);
  --gradient-glow: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.15), transparent 70%);
  
  /* Texfarben */
  --text-primary: #111827;
  --text-secondary: #4B5563;
  --text-light: #9CA3AF;
  --text-white: #FFFFFF;
  
  /* Hintergründe */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F9FAFB;
  --bg-dark: #0F172A;
  --bg-card: #FFFFFF;
  
  /* Einzigartiger Mesh-Gradient Hintergrund */
  --mesh-gradient: 
    radial-gradient(at 0% 0%, rgba(139, 92, 246, 0.15) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(20, 184, 166, 0.15) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(245, 158, 11, 0.15) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(139, 92, 246, 0.15) 0px, transparent 50%);
  
  /* Typografie */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-accent: 'DM Sans', sans-serif;
  
  /* Abstände */
  --section-padding: 140px;
  --container-width: 1280px;
  
  /* Schatten */
  --shadow-sm: 0 2px 12px rgba(139, 92, 246, 0.08);
  --shadow-md: 0 8px 32px rgba(139, 92, 246, 0.12);
  --shadow-lg: 0 16px 48px rgba(139, 92, 246, 0.16);
  --shadow-xl: 0 24px 72px rgba(139, 92, 246, 0.24);
  --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.3);
  
  /* Border-Radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --radius-full: 9999px;
}

/* Reset & Basis */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Mesh-Gradient-Hintergrund */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--mesh-gradient);
  z-index: -1;
  animation: meshMove 20s ease-in-out infinite;
}

@keyframes meshMove {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

/* Typografie */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: 1.125rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Container */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* Einzigartiger Header */
header {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: var(--radius-full);
  padding: 16px 32px;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
  top: 16px;
  box-shadow: var(--shadow-xl);
  background: rgba(255, 255, 255, 0.95);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.75rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 48px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-primary);
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-links a:hover::before,
.nav-links a.active::before {
  width: 100%;
}

/* Einzigartige Button-Stile */
.btn {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 17px;
  padding: 16px 40px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 400px;
  height: 400px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background: var(--bg-primary);
  color: var(--primary);
  border: 3px solid var(--primary);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--text-white);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  width: 32px;
  height: 3px;
  background: var(--primary);
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

/* Hero Section - Komplett einzigartig */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -30%;
  width: 1200px;
  height: 1200px;
  background: var(--gradient-glow);
  border-radius: 50%;
  animation: heroFloat 25s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle at 50% 50%, rgba(20, 184, 166, 0.12), transparent 70%);
  border-radius: 50%;
  animation: heroFloat 20s ease-in-out infinite reverse;
}

@keyframes heroFloat {
  0%, 100% { 
    transform: translate(0, 0) scale(1) rotate(0deg); 
  }
  33% { 
    transform: translate(50px, -40px) scale(1.1) rotate(120deg); 
  }
  66% { 
    transform: translate(-30px, 50px) scale(0.95) rotate(240deg); 
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  animation: slideInLeft 1s ease-out;
}

.hero-text h1 {
  margin-bottom: 32px;
  line-height: 1.05;
}

.hero-text h1 .gradient-text {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(20deg); }
}

.hero-text p {
  font-size: 1.35rem;
  line-height: 1.9;
  margin-bottom: 48px;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  animation: slideInRight 1s ease-out;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform-style: preserve-3d;
  animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
  0%, 100% { transform: translateY(0) rotateY(0deg); }
  50% { transform: translateY(-20px) rotateY(5deg); }
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Services Section - Einzigartiges Card-Design */
.services {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 100px;
}

.section-header h2 {
  margin-bottom: 24px;
}

.section-header p {
  font-size: 1.25rem;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: var(--gradient-primary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.service-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 32px;
  position: relative;
}

.service-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  opacity: 0.1;
  z-index: -1;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon::before {
  inset: -12px;
  opacity: 0.2;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card h3 {
  margin-bottom: 20px;
  font-size: 1.875rem;
  transition: all 0.3s ease;
}

.service-card:hover h3 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
  font-size: 1.0625rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-accent);
  font-size: 1.0625rem;
  transition: all 0.3s ease;
}

.service-link:hover {
  gap: 16px;
  color: var(--primary-dark);
}

/* About Section */
.about {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
  position: relative;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text h2 {
  margin-bottom: 28px;
}

.about-text p {
  font-size: 1.125rem;
  line-height: 1.9;
  margin-bottom: 32px;
}

.about-text ul {
  list-style: none;
  margin: 40px 0;
}

.about-text li {
  padding: 20px 0 20px 60px;
  position: relative;
  color: var(--text-secondary);
  font-size: 1.125rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.about-text li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.about-text li:hover {
  color: var(--primary);
  transform: translateX(8px);
}

.about-text li:hover::before {
  transform: translateY(-50%) scale(1.1) rotate(360deg);
  box-shadow: var(--shadow-glow);
}

/* Stats Section */
.stats {
  padding: 100px 0;
  background: var(--gradient-dark);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-glow);
  opacity: 0.3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item {
  position: relative;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.stat-item h3 {
  font-size: 4.5rem;
  color: var(--text-white);
  margin-bottom: 12px;
  font-weight: 900;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-accent);
  font-weight: 600;
}

/* CTA Section */
.cta {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
  text-align: center;
  position: relative;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.cta h2 {
  color: var(--text-white);
  margin-bottom: 28px;
}

.cta p {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 48px;
  line-height: 1.8;
}

.cta .btn-primary {
  background: var(--bg-primary);
  color: var(--primary);
  font-size: 1.125rem;
  padding: 20px 56px;
}

.cta .btn-primary:hover {
  background: var(--text-white);
  transform: translateY(-4px) scale(1.05);
}

/* Einzigartige Kontaktform */
.contact-section {
  padding: var(--section-padding) 0;
  position: relative;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 80px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(139, 92, 246, 0.1);
}

.contact-info h3 {
  margin-bottom: 40px;
  font-size: 2.5rem;
}

.contact-info p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 48px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.contact-item-text h4 {
  font-size: 1.125rem;
  margin-bottom: 6px;
  font-family: var(--font-accent);
  font-weight: 700;
}

.contact-item-text p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 1.0625rem;
}

/* Sehr ungewöhnliche Form */
.unique-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 24px 28px;
  border: 3px solid var(--bg-secondary);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 17px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--bg-primary);
  font-weight: 500;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 6px rgba(139, 92, 246, 0.12);
  transform: translateY(-2px);
}

.form-group label {
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--bg-card);
  padding: 4px 16px;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-accent);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.form-group textarea {
  min-height: 160px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 500;
}

.form-checkbox input {
  width: 24px;
  height: 24px;
  margin-top: 4px;
  cursor: pointer;
  accent-color: var(--primary);
}

.submit-btn {
  width: 100%;
  padding: 24px;
  font-size: 1.125rem;
  margin-top: 16px;
}

/* Footer */
footer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 100px 0 40px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-primary);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}

.footer-about h3 {
  color: var(--text-white);
  margin-bottom: 24px;
  font-size: 2rem;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
  font-size: 1.0625rem;
}

.footer-links h4 {
  color: var(--text-white);
  font-size: 1.25rem;
  margin-bottom: 24px;
  font-family: var(--font-accent);
  font-weight: 700;
}

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

.footer-links li {
  margin-bottom: 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.0625rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--text-white);
  transform: translateX(6px);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 15px;
}

.footer-links-bottom {
  display: flex;
  gap: 32px;
}

.footer-links-bottom a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
}

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

/* Page Header */
.page-header {
  padding: 200px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 1000px;
  background: var(--gradient-glow);
  border-radius: 50%;
}

.page-header h1 {
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.page-header p {
  font-size: 1.35rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.content-section {
  padding: 100px 0;
}

.content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.content-wrapper h2 {
  margin-top: 60px;
  margin-bottom: 32px;
}

.content-wrapper h3 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.content-wrapper ul, 
.content-wrapper ol {
  margin: 32px 0;
  padding-left: 40px;
  color: var(--text-secondary);
}

.content-wrapper li {
  margin-bottom: 16px;
  line-height: 1.9;
  font-size: 1.0625rem;
}

/* Thanks Page */
.thanks-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0;
}

.thanks-content {
  max-width: 700px;
}

.thanks-icon {
  width: 160px;
  height: 160px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  color: var(--text-white);
  font-size: 64px;
  box-shadow: var(--shadow-glow);
  animation: scaleIn 0.6s ease-out;
}

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

/* Process Timeline */
.process-timeline {
  position: relative;
  padding: 60px 0;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 48px;
  margin-bottom: 80px;
  align-items: flex-start;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 60px;
  top: 120px;
  width: 4px;
  height: calc(100% + 20px);
  background: var(--gradient-primary);
  opacity: 0.3;
  border-radius: var(--radius-full);
}

.step-number {
  width: 120px;
  height: 120px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--font-heading);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.step-number:hover {
  transform: scale(1.1) rotate(360deg);
  box-shadow: var(--shadow-glow);
}

.step-content {
  background: var(--bg-card);
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(139, 92, 246, 0.1);
  flex: 1;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
}

.step-content:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-xl);
  transform: translateX(12px);
}

.step-content h3 {
  margin-bottom: 16px;
  color: var(--text-primary);
  font-size: 2rem;
}

.step-content p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.9;
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 48px;
  margin-top: 80px;
}

.portfolio-item {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(139, 92, 246, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.portfolio-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.portfolio-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.portfolio-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-image::before {
  opacity: 0.1;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.portfolio-content {
  padding: 40px;
}

.portfolio-content h3 {
  margin-bottom: 16px;
  font-size: 1.75rem;
}

.portfolio-content p {
  margin-bottom: 24px;
  font-size: 1.0625rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  :root {
    --section-padding: 100px;
  }
  
  header {
    width: calc(100% - 32px);
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  
  .hero-image {
    order: -1;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 60px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}

@media (max-width: 768px) {
  header {
    top: 16px;
    padding: 12px 24px;
  }
  
  .nav-links {
    position: fixed;
    top: 100px;
    left: -100%;
    width: calc(100% - 32px);
    max-width: 400px;
    height: auto;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 40px;
    gap: 32px;
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-lg);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 16px;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .hero {
    padding: 140px 0 80px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-wrapper {
    padding: 32px;
  }
  
  .cta-content {
    padding: 60px 32px;
  }
  
  .process-step {
    gap: 24px;
  }
  
  .step-number {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
  
  .process-step:not(:last-child)::after {
    left: 40px;
    top: 80px;
  }
  
  .step-content {
    padding: 32px;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }
  
  .container {
    padding: 0 20px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .service-card {
    padding: 32px;
  }
  
  .about-text li {
    padding-left: 52px;
  }
  
  .about-text li::before {
    width: 36px;
    height: 36px;
  }
}

/* Animationen */
.animate-in {
  animation: fadeInUp 0.8s ease-out forwards;
}

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

/* Smooth Transitions */
* {
  transition: background-color 0.3s ease, color 0.3s ease;
}
