:root {
  --primary-color: #67A0D2;
  --secondary-color: #1D1D1B;
  --accent-color: #B3CFE8;
  --light-bg: #f8fafc;
  --text-primary: #1D1D1B;
  --text-secondary: #545454;
  --border-color: #e2e8f0;
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 40px rgba(103, 160, 210, 0.15);
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.7;
  background-color: #ffffff;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ═══════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════
   NAVIGATION - Glass Morphism
   ═══════════════════════════════════════ */
.navbar {
  background-color: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.25rem 0;
  box-shadow: none;
  border-bottom: 1px solid rgba(226, 232, 240, 0.5) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar.scrolled {
  padding: 0.75rem 0;
  background-color: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.navbar.scrolled .navbar-brand img {
  height: 32px;
}

.navbar-brand {
  font-weight: 600;
  font-size: 1.75rem;
  color: var(--primary-color) !important;
  letter-spacing: -0.5px;
  transition: transform 0.3s ease;
  padding: 0;
}

.navbar-brand img {
  height: 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.nav-link {
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--text-primary) !important;
  margin: 0 0.25rem;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 1px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.nav-link.active {
  color: var(--primary-color) !important;
  font-weight: 500;
}

/* ═══════════════════════════════════════
   HERO SECTION - Premium Dark with Animation
   ═══════════════════════════════════════ */
.hero-section {
  background: linear-gradient(135deg, #0f0f0f 0%, #1D1D1B 30%, #2a2a28 60%, #1D1D1B 100%);
  color: white;
  padding: 10rem 2rem 8rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(103, 160, 210, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(179, 207, 232, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(103, 160, 210, 0.05) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes heroGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(2%, -2%) scale(1.05); }
}

/* Floating geometric shapes */
.hero-section::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(103, 160, 210, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

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

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  color: white;
  font-size: 3.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-section .lead {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  max-width: 650px;
  margin: 0 auto;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(103, 160, 210, 0.15);
  border: 1px solid rgba(103, 160, 210, 0.3);
  color: var(--accent-color);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  letter-spacing: 0.5px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* Hero CTA Buttons */
.hero-cta {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 1rem 2.25rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(103, 160, 210, 0.3);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(103, 160, 210, 0.4);
  color: white;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 2.25rem;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════
   HERO IMAGE
   ═══════════════════════════════════════ */
.hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(103, 160, 210, 0.12);
  aspect-ratio: 3 / 2;
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.45),
    0 0 100px rgba(103, 160, 210, 0.18);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(103, 160, 210, 0.2) 0%,
    transparent 40%,
    transparent 60%,
    rgba(29, 29, 27, 0.35) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-image-border {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(103, 160, 210, 0.2);
  pointer-events: none;
  z-index: 2;
}

/* ═══════════════════════════════════════
   SECTION IMAGES
   ═══════════════════════════════════════ */
.section-image {
  position: relative;
  border-radius: 16px;
  overflow: visible;
  aspect-ratio: 3 / 2;
}

.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  position: relative;
  z-index: 1;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(103, 160, 210, 0.08);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  filter: saturate(0.9);
}

.section-image:hover img {
  transform: scale(1.03);
  filter: saturate(1);
}

.section-image__accent {
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  border: 2px solid var(--primary-color);
  border-radius: 16px;
  opacity: 0.2;
  z-index: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.section-image--right .section-image__accent {
  left: -16px;
  right: 16px;
}

.section-image:hover .section-image__accent {
  opacity: 0.4;
  top: 12px;
  bottom: -12px;
}

.section-image:not(.section-image--right):hover .section-image__accent {
  left: 12px;
  right: -12px;
}

.section-image--right:hover .section-image__accent {
  left: -12px;
  right: 12px;
}

/* ═══════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.animate-delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.animate-delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.animate-delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.animate-delay-4 { transition-delay: 0.4s; }

.animate-slide-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-left.animated,
.animate-slide-right.animated {
  opacity: 1;
  transform: translateX(0);
}

.animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-scale.animated {
  opacity: 1;
  transform: scale(1);
}

/* ═══════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-label {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  position: relative;
  padding: 0 1rem;
}

.section-header .section-label::before,
.section-header .section-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--primary-color);
}

.section-header .section-label::before { left: -30px; }
.section-header .section-label::after { right: -30px; }

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════
   FEATURE CARDS - Glass Effect
   ═══════════════════════════════════════ */
.feature-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gradient-primary);
  transition: height 0.4s ease;
  border-radius: 0 0 4px 0;
}

.feature-card:hover::before {
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(103, 160, 210, 0.3);
}

.feature-card .card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(103, 160, 210, 0.1), rgba(179, 207, 232, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover .card-icon {
  background: linear-gradient(135deg, rgba(103, 160, 210, 0.2), rgba(179, 207, 232, 0.2));
  transform: scale(1.05);
}

.feature-card .card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}

.feature-card .card-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   STATS SECTION
   ═══════════════════════════════════════ */
.stats-section {
  background: linear-gradient(135deg, #0f0f0f 0%, #1D1D1B 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(103, 160, 210, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(179, 207, 232, 0.06) 0%, transparent 50%);
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 400;
}

/* ═══════════════════════════════════════
   CONTENT SECTIONS
   ═══════════════════════════════════════ */
.content-section {
  padding: 5rem 0;
}

.content-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}

.content-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.content-section h3 {
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* ═══════════════════════════════════════
   INFO BOXES
   ═══════════════════════════════════════ */
.info-box {
  background: var(--light-bg);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  border-left: 4px solid var(--primary-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-box:hover {
  background: white;
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.info-box h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(103, 160, 210, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(103, 160, 210, 0.35);
  background: linear-gradient(135deg, #5890c2, #a3bfd8);
}

.btn-outline-light {
  border-radius: 12px;
  padding: 0.875rem 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* ═══════════════════════════════════════
   FORMS
   ═══════════════════════════════════════ */
.form-control {
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--light-bg);
}

.form-control:hover {
  border-color: var(--accent-color);
  background: white;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(103, 160, 210, 0.1);
  outline: none;
  background: white;
}

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

/* ═══════════════════════════════════════
   CONTACT FORM CARD
   ═══════════════════════════════════════ */
.contact-form-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
}

/* ═══════════════════════════════════════
   THANK YOU PAGE
   ═══════════════════════════════════════ */
.thank-you-section {
  text-align: center;
  padding: 4rem 2rem;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(34, 197, 94, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.thank-you-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.thank-you-section p {
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* ═══════════════════════════════════════
   TEAM CARDS - Premium
   ═══════════════════════════════════════ */
.team-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(103, 160, 210, 0.3);
}

.team-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--light-bg);
  position: relative;
}

.team-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, rgba(0,0,0,0.05));
  pointer-events: none;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-image img {
  transform: scale(1.08);
}

.team-info {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.team-info h3 {
  color: var(--secondary-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.team-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
}

/* ═══════════════════════════════════════
   FOUNDER CARDS (Impressum)
   ═══════════════════════════════════════ */
.founder-card {
  background: var(--light-bg);
  padding: 1rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  cursor: pointer;
}

.founder-card:hover {
  background: white;
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.founder-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  transition: transform 0.4s ease;
}

.founder-card:hover img {
  transform: scale(1.05);
}

/* ═══════════════════════════════════════
   PROJECT CARDS - Premium
   ═══════════════════════════════════════ */
.project-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.project-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.project-card:hover::after {
  transform: scaleX(1);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(103, 160, 210, 0.3);
}

.project-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(103, 160, 210, 0.1), rgba(179, 207, 232, 0.1));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.project-card:hover .project-icon {
  background: linear-gradient(135deg, rgba(103, 160, 210, 0.2), rgba(179, 207, 232, 0.15));
  transform: scale(1.05);
}

.project-card h3 {
  color: var(--secondary-color);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.project-category {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-card > p {
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.project-tags .tag {
  background: var(--light-bg);
  color: var(--text-secondary);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.project-card:hover .tag {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* ═══════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.85) 0%, rgba(29, 29, 27, 0.88) 50%, rgba(42, 42, 40, 0.85) 100%),
              url('/images/modern-office.jpg') center/cover no-repeat;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(103, 160, 210, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(179, 207, 232, 0.08) 0%, transparent 50%);
}

.cta-section h2 {
  color: white;
  font-size: 2.75rem;
  font-weight: 700;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
}

/* ═══════════════════════════════════════
   TECH STACK / LOGO TICKER
   ═══════════════════════════════════════ */
.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.tech-item {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tech-item:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ═══════════════════════════════════════
   MAIN CONTENT
   ═══════════════════════════════════════ */
main {
  flex: 1;
}

/* ═══════════════════════════════════════
   FOOTER - Modern
   ═══════════════════════════════════════ */
.footer {
  background: #fafbfc;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-brand img {
  height: 35px;
  margin-bottom: 1rem;
}

.footer-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer h6 {
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(3px);
}

.footer-tech {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-tech li {
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-tech li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin: 0;
}

/* ═══════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(29, 29, 27, 0.97);
  backdrop-filter: blur(20px);
  padding: 1.25rem 2rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid rgba(103, 160, 210, 0.2);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
}

.cookie-banner a {
  color: var(--primary-color);
}

.cookie-btn {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(103, 160, 210, 0.3);
}

/* ═══════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════ */
.section-spacing {
  padding: 6rem 0;
}

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

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

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

/* ═══════════════════════════════════════
   LEGAL / TEXT PAGES
   ═══════════════════════════════════════ */
.legal-page {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem 3.5rem;
}

.legal-page h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border-color);
}

.legal-page h2:first-child {
  margin-top: 0;
}

.legal-page h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.legal-page p,
.legal-page li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

.legal-page ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-page li {
  margin-bottom: 0.35rem;
}

.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.legal-page td {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border-color);
  vertical-align: top;
}

.legal-page td:first-child {
  font-weight: 600;
  color: var(--text-primary);
  width: 200px;
  padding-right: 1.5rem;
}

.legal-page td:last-child {
  color: var(--text-secondary);
}

.legal-page .company-name {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 700;
}

.legal-page a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

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

.legal-page .founder-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .legal-page {
    padding: 2rem 1.5rem;
  }

  .legal-page td:first-child {
    width: 140px;
  }

  .legal-page .founder-row {
    flex-direction: column;
  }
}

/* ═══════════════════════════════════════
   ACCESSIBILITY
   ═══════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  z-index: 10000;
  text-decoration: none;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
  color: white;
}

*:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
}

button:focus-visible,
.btn:focus-visible,
.btn-primary:focus-visible,
.btn-hero-primary:focus-visible,
.btn-hero-secondary:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(103, 160, 210, 0.2);
}

.nav-link:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
  border-radius: 8px;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 991px) {
  .hero-section h1 {
    font-size: 2.75rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .stats-section {
    padding: 3rem 0;
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .hero-image {
    transform: none;
  }

  .hero-image:hover {
    transform: none;
  }

  .section-image__accent {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 6rem 1.5rem 5rem;
  }

  .hero-section h1 {
    font-size: 2.25rem;
  }

  .hero-cta {
    justify-content: center !important;
  }

  .hero-section .lead {
    font-size: 1.1rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .section-spacing {
    padding: 4rem 0;
  }

  .content-section {
    padding: 3rem 0;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .stat-item {
    margin-bottom: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .navbar {
    padding: 0.75rem 0;
  }

  .feature-card, .project-card {
    padding: 1.75rem;
  }

  .section-header .section-label::before,
  .section-header .section-label::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 1.85rem;
  }

  .cookie-banner .d-flex {
    flex-direction: column;
    gap: 0.75rem !important;
  }
}
