/* WeCreateNext - Main Stylesheet */

:root {
  /* Pastel Palette */
  --pastel-mint: #B8E0D2;
  --pastel-lavender: #D4C1EC;
  --pastel-peach: #F8D5B4;
  --pastel-rose: #F2B5D4;
  --pastel-sky: #B5D8F7;
  --pastel-cream: #FFF8F0;
  
  /* Accent Colors */
  --accent-primary: #7C6AEF;
  --accent-secondary: #4ECDC4;
  --accent-warm: #F7B267;
  
  /* Neutrals */
  --dark: #2D3142;
  --dark-soft: #4F5565;
  --gray: #8D93A5;
  --gray-light: #C4C9D4;
  --light: #F7F8FA;
  --white: #FFFFFF;
  
  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #F7F8FA 0%, #E8F4F0 50%, #F0E8F4 100%);
  --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,255,255,0.6));
  --gradient-accent: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-mint) 100%);
  
  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(45, 49, 66, 0.08);
  --shadow-medium: 0 8px 32px rgba(45, 49, 66, 0.12);
  --shadow-lifted: 0 16px 48px rgba(45, 49, 66, 0.15);
  --shadow-glow: 0 0 40px rgba(124, 106, 239, 0.2);
  
  /* Spacing & Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: var(--accent-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45, 49, 66, 0.06);
  transition: all 0.3s ease;
}

.nav.scrolled {
  padding: 0.75rem 2rem;
  box-shadow: var(--shadow-soft);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--dark);
  text-decoration: none;
}

.nav-logo:hover {
  text-decoration: none;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  color: var(--dark-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  border-radius: var(--radius-full);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--dark);
  text-decoration: none;
}

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

.nav-cta {
  background: var(--dark);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  text-decoration: none;
  color: var(--white);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

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

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: float 20s ease-in-out infinite;
}

.hero-shape-1 {
  width: 500px;
  height: 500px;
  background: var(--pastel-lavender);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: var(--pastel-mint);
  bottom: -50px;
  left: -100px;
  animation-delay: -5s;
}

.hero-shape-3 {
  width: 300px;
  height: 300px;
  background: var(--pastel-peach);
  top: 40%;
  left: 30%;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(20px, 10px) scale(1.02); }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark-soft);
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.5rem;
  animation: slideUp 0.8s ease-out;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-secondary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
  animation: slideUp 0.8s ease-out 0.1s both;
}

.hero-title-highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--dark-soft);
  margin-bottom: 2.5rem;
  max-width: 520px;
  animation: slideUp 0.8s ease-out 0.2s both;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: slideUp 0.8s ease-out 0.3s both;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--dark);
  color: var(--white);
  box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lifted);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--dark);
  border: 2px solid var(--gray-light);
}

.btn-secondary:hover {
  border-color: var(--dark);
  transform: translateY(-2px);
  color: var(--dark);
}

.btn-accent {
  background: var(--accent-primary);
  color: var(--white);
  box-shadow: var(--shadow-medium);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  color: var(--white);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  animation: slideUp 0.8s ease-out 0.4s both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-primary);
}

.hero-stat-label {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: slideUp 0.8s ease-out 0.2s both;
}

.hero-visual-card {
  background: var(--gradient-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lifted);
  position: relative;
}

.hero-visual-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-visual-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-primary), var(--pastel-lavender));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.hero-visual-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.hero-visual-subtitle {
  font-size: 0.85rem;
  color: var(--gray);
}

.hero-code-preview {
  background: var(--dark);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  font-family: 'Monaco', 'Menlo', monospace;
  font-size: 0.8rem;
  color: var(--gray-light);
  overflow: hidden;
}

.code-line {
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: codeFadeIn 0.5s ease-out forwards;
}

.code-line:nth-child(1) { animation-delay: 0.5s; }
.code-line:nth-child(2) { animation-delay: 0.7s; }
.code-line:nth-child(3) { animation-delay: 0.9s; }
.code-line:nth-child(4) { animation-delay: 1.1s; }
.code-line:nth-child(5) { animation-delay: 1.3s; }

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

.code-keyword { color: var(--pastel-lavender); }
.code-string { color: var(--pastel-mint); }
.code-function { color: var(--pastel-peach); }
.code-comment { color: var(--gray); }

.hero-visual-floating {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: floatCard 6s ease-in-out infinite;
}

.floating-1 {
  top: -20px;
  right: -30px;
  animation-delay: 0s;
}

.floating-2 {
  bottom: 40px;
  left: -40px;
  animation-delay: -2s;
}

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

.floating-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.floating-icon.mint { background: var(--pastel-mint); }
.floating-icon.lavender { background: var(--pastel-lavender); }

.floating-text {
  font-size: 0.85rem;
  font-weight: 600;
}

.floating-subtext {
  font-size: 0.75rem;
  color: var(--gray);
}

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

/* Section Styling */
section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--pastel-lavender);
  color: var(--dark);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
  color: var(--dark);
}

.section-description {
  font-size: 1.1rem;
  color: var(--dark-soft);
}

/* Vision Section */
.vision-section {
  background: var(--white);
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.vision-card {
  background: var(--light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.vision-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lifted);
  border-color: var(--pastel-lavender);
}

.vision-card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.vision-card:nth-child(1) .vision-card-icon { background: var(--pastel-mint); }
.vision-card:nth-child(2) .vision-card-icon { background: var(--pastel-lavender); }
.vision-card:nth-child(3) .vision-card-icon { background: var(--pastel-peach); }

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

.vision-card-text {
  color: var(--dark-soft);
  font-size: 0.95rem;
}

/* About Section */
.about-section {
  background: var(--gradient-hero);
  position: relative;
}

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

.about-image-container {
  position: relative;
}

.about-image-frame {
  background: var(--gradient-accent);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-lifted);
}

.about-image-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.about-avatar {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, var(--pastel-sky), var(--pastel-lavender));
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  box-shadow: var(--shadow-medium);
}

.about-name {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.about-role {
  color: var(--accent-primary);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.about-location {
  color: var(--gray);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.about-text-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.about-text-content p {
  color: var(--dark-soft);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.about-value-tag {
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark-soft);
  border: 1px solid var(--gray-light);
  transition: all 0.3s ease;
}

.about-value-tag:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

/* Projects Section */
.projects-section {
  background: var(--white);
}

.project-showcase {
  background: var(--gradient-card);
  border: 1px solid rgba(45, 49, 66, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lifted);
}

.project-header {
  background: var(--dark);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.project-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.project-title {
  color: var(--white);
  font-size: 1.5rem;
}

.project-subtitle {
  color: var(--gray-light);
  font-size: 0.9rem;
}

.project-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(78, 205, 196, 0.2);
  color: var(--accent-secondary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
}

.project-status-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-secondary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.project-content {
  padding: 2.5rem;
}

.project-description {
  font-size: 1.1rem;
  color: var(--dark-soft);
  margin-bottom: 2rem;
  max-width: 800px;
}

.project-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.project-feature {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.project-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.project-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.project-feature:nth-child(1) .project-feature-icon { background: var(--pastel-mint); }
.project-feature:nth-child(2) .project-feature-icon { background: var(--pastel-lavender); }
.project-feature:nth-child(3) .project-feature-icon { background: var(--pastel-peach); }
.project-feature:nth-child(4) .project-feature-icon { background: var(--pastel-rose); }
.project-feature:nth-child(5) .project-feature-icon { background: var(--pastel-sky); }
.project-feature:nth-child(6) .project-feature-icon { background: var(--pastel-cream); border: 1px solid var(--gray-light); }

.project-feature-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.project-feature-text {
  font-size: 0.85rem;
  color: var(--gray);
}

.project-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.project-cta-note {
  color: var(--gray);
  font-size: 0.9rem;
  font-style: italic;
}

/* Blog Section */
.blog-section {
  background: var(--gradient-hero);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lifted);
  text-decoration: none;
}

.blog-card-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.blog-card-image.mint { background: var(--pastel-mint); }
.blog-card-image.lavender { background: var(--pastel-lavender); }
.blog-card-image.peach { background: var(--pastel-peach); }

.blog-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-tag {
  display: inline-block;
  background: var(--light);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 0.75rem;
  width: fit-content;
}

.blog-card-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--dark-soft);
  flex: 1;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-light);
  font-size: 0.8rem;
  color: var(--gray);
}

.blog-card-read {
  color: var(--accent-primary);
  font-weight: 600;
}

.blog-coming-soon {
  text-align: center;
  margin-top: 2rem;
}

.blog-coming-soon p {
  color: var(--gray);
  font-style: italic;
}

/* Team Section */
.team-section {
  background: var(--white);
}

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

.team-text h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.team-text p {
  color: var(--dark-soft);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.team-roles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.team-role {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.team-role:hover {
  border-color: var(--accent-primary);
  transform: translateX(8px);
}

.team-role-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.team-role:nth-child(1) .team-role-icon { background: var(--pastel-mint); }
.team-role:nth-child(2) .team-role-icon { background: var(--pastel-lavender); }
.team-role:nth-child(3) .team-role-icon { background: var(--pastel-peach); }
.team-role:nth-child(4) .team-role-icon { background: var(--pastel-sky); }

.team-role-title {
  font-weight: 600;
  font-size: 0.95rem;
}

.team-role-desc {
  font-size: 0.8rem;
  color: var(--gray);
}

.team-visual {
  position: relative;
}

.team-visual-card {
  background: var(--light);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-medium);
  text-align: center;
}

.team-visual-emoji {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.team-visual-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.team-visual-text {
  color: var(--gray);
  margin-bottom: 2rem;
}

.team-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.team-input {
  padding: 1rem 1.25rem;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--white);
}

.team-input:focus {
  outline: none;
  border-color: var(--accent-primary);
}

.team-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Contact Section */
.contact-section {
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
}

.contact-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
}

.contact-bg-1 {
  width: 400px;
  height: 400px;
  background: var(--pastel-lavender);
  top: -100px;
  right: -100px;
}

.contact-bg-2 {
  width: 300px;
  height: 300px;
  background: var(--pastel-mint);
  bottom: -50px;
  left: -50px;
}

.contact-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-description {
  color: var(--gray-light);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-link:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  text-decoration: none;
  color: var(--white);
}

.contact-link-icon {
  font-size: 1.5rem;
}

.contact-link-text {
  font-weight: 600;
}

.contact-link-subtext {
  font-size: 0.85rem;
  color: var(--gray-light);
}

/* Footer */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--white);
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.footer-text {
  color: var(--gray);
  font-size: 0.9rem;
}

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

.footer-link {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--white);
  text-decoration: none;
}

/* Legal Pages */
.legal-page {
  padding-top: 120px;
  padding-bottom: 4rem;
  min-height: 100vh;
  background: var(--light);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--dark);
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.legal-content h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--dark-soft);
}

.legal-content p {
  margin-bottom: 1rem;
  color: var(--dark-soft);
}

.legal-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  color: var(--dark-soft);
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--accent-primary);
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-meta {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-light);
  font-size: 0.9rem;
  color: var(--gray);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 6rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-light);
}

.mobile-nav-link:hover {
  text-decoration: none;
  color: var(--accent-primary);
}

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: var(--light);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta-group {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-visual {
    display: none;
  }
  
  .vision-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .about-content,
  .team-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-image-container {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .project-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .nav-mobile-toggle {
    display: flex;
  }
  
  .hero {
    padding-top: 100px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .project-features {
    grid-template-columns: 1fr;
  }
  
  .project-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .project-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .team-roles {
    grid-template-columns: 1fr;
  }
  
  .contact-links {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .legal-content {
    padding: 2rem;
  }
  
  .legal-content h1 {
    font-size: 2rem;
  }
}

/* Logo als Bild (statt Emoji) */
img.nav-logo-icon,
img.footer-logo-icon {
  object-fit: contain;
  background: transparent;
}
