/* Fullscreen Hero Section */
.fullscreen-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(64, 64, 64, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(64, 64, 64, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #000 0%, #0a0a0a 50%, #000 100%);
}

.fullscreen-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 10rem;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
  pointer-events: none;
}

.fullscreen-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
  z-index: 1;
  animation: overlayPulse 8s ease-in-out infinite;
}

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

.fullscreen-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1200px;
  padding: 2rem;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(3rem);
  animation: fullscreenHeroFadeIn 1.2s ease forwards;
}

.fullscreen-hero-profile {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  animation: fullscreenHeroImageZoom 1s ease 0.3s forwards;
}

@keyframes fullscreenHeroImageZoom {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fullscreen-hero-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.fullscreen-hero-image:hover {
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
}

@keyframes fullscreenHeroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fullscreen-hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(30px);
  animation: fullscreenHeroBadgeFadeIn 1.2s ease 0.1s forwards, fullscreenHeroBadgePulse 3s ease-in-out 1.5s infinite;
}

@keyframes fullscreenHeroBadgeFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fullscreenHeroBadgePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
}

.fullscreen-hero-title {
  font-size: 5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.1;
  opacity: 1;
  transform: translateY(0);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  perspective: 1000px;
}

.fullscreen-hero-title .split-char {
  display: inline-block;
  will-change: transform, opacity;
  transform-style: preserve-3d;
}

.fullscreen-hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  line-height: 1.4;
  animation: fullscreenHeroDescFade 1s ease 0.3s forwards;
  opacity: 0;
  transform: translateY(2rem);
}

@keyframes fullscreenHeroTitleSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fullscreen-hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 3rem;
  animation: fullscreenHeroDescFade 1s ease 0.4s forwards;
  opacity: 0;
  transform: translateY(2rem);
}

@keyframes fullscreenHeroDescFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fullscreen-hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fullscreenHeroActionsFade 1s ease 0.6s forwards;
  opacity: 0;
  transform: translateY(2rem);
}

@keyframes fullscreenHeroActionsFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fullscreen-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.fullscreen-hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.fullscreen-hero-btn:hover::before {
  left: 100%;
}

.fullscreen-hero-btn.primary {
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  color: #000;
  border: 2px solid #fff;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.fullscreen-hero-btn.primary:hover {
  background: #fff;
  color: #000;
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
  border-color: #fff;
}

.fullscreen-hero-btn.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.fullscreen-hero-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.fullscreen-hero-btn svg {
  transition: transform 0.3s ease;
}

.fullscreen-hero-btn:hover svg {
  transform: translateX(0.5rem);
}

.fullscreen-hero-scroll {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  z-index: 10;
  animation: fullscreenHeroScrollBounce 2s ease-in-out infinite;
  opacity: 0;
  animation: fullscreenHeroScrollFadeIn 1s ease 1.5s forwards, fullscreenHeroScrollBounce 2s ease-in-out 2s infinite;
}

@keyframes fullscreenHeroScrollFadeIn {
  to {
    opacity: 1;
  }
}

@keyframes fullscreenHeroScrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(0.5rem);
  }
}

.fullscreen-hero-scroll svg {
  animation: fullscreenHeroScrollArrow 2s ease-in-out infinite;
}

@keyframes fullscreenHeroScrollArrow {
  0%, 100% {
    opacity: 0.7;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(0.25rem);
  }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .fullscreen-hero-title {
    font-size: 5rem;
  }
}

@media (max-width: 768px) {
  .fullscreen-hero {
    background-attachment: scroll;
  }

  .fullscreen-hero-title {
    font-size: 3.5rem;
  }

  .fullscreen-hero-description {
    font-size: 1.1rem;
  }

  .fullscreen-hero-actions {
    flex-direction: column;
    width: 100%;
    padding: 0 1rem;
  }

  .fullscreen-hero-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .fullscreen-hero-title {
    font-size: 2.5rem;
    letter-spacing: 0;
    white-space: normal;
    word-break: break-word;
  }

  .fullscreen-hero-title span[data-translate] {
    display: block;
    width: 100%;
  }

  .fullscreen-hero-title .split-char {
    letter-spacing: 0.05em;
    display: inline-block !important;
  }

  .fullscreen-hero-description {
    font-size: 1rem;
  }

  .fullscreen-hero-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1.5rem;
  }

  .fullscreen-hero-btn {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }

  .fullscreen-hero-image {
    width: 120px;
    height: 120px;
  }
}


/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 1.6;
  color: #000;
  background-color: #fff;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Hide scrollbar for webkit browsers */
::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for Firefox */
html {
  scrollbar-width: none;
}

/* Background Elements */
.background-elements {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.floating-element {
  position: absolute;
  background: rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite;
}

.element-1 {
  top: 5rem;
  left: 2.5rem;
  width: 0.5rem;
  height: 0.5rem;
  transform: rotate(45deg);
  animation-delay: 0s;
}

.element-2 {
  top: 10rem;
  right: 5rem;
  width: 0.25rem;
  height: 2rem;
  animation-delay: 1s;
}

.element-3 {
  bottom: 10rem;
  left: 5rem;
  width: 1rem;
  height: 0.25rem;
  animation-delay: 2s;
}

.element-4 {
  top: 15rem;
  left: 33%;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
  animation-delay: 3s;
}

.element-5 {
  bottom: 15rem;
  right: 33%;
  width: 0.75rem;
  height: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transform: rotate(45deg);
  animation: spin 8s linear infinite;
}

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

@keyframes ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes spin {
  from {
    transform: rotate(45deg);
  }
  to {
    transform: rotate(405deg);
  }
}

/* Hero Section */
.hero-section {
  padding-top: 7rem;
  padding-bottom: 5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.02), transparent 70%);
}

.hero-container {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  width: 100%;
}

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

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  order: 2;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #000;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: all 1s ease;
  opacity: 0;
  transform: translateY(2.5rem);
  animation: slideInUp 1s ease forwards;
}

.hero-status:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.status-indicator {
  width: 1rem;
  height: 1rem;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(2.5rem);
  animation: slideInUp 1s ease 0.2s forwards;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #666;
  letter-spacing: 0.2em;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  transition: all 0.7s ease;
  position: relative;
}

.hero-title:hover {
  transform: scale(1.05);
  letter-spacing: 0.1em;
}

.hero-brand {
  color: #000;
  position: relative;
}

.hero-brand::before {
  content: "";
  position: absolute;
  inset: -0.25rem;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  filter: blur(2px);
}

.hero-brand:hover::before {
  opacity: 1;
}

.hero-divider {
  width: 5rem;
  height: 2px;
  background: #000;
  animation: pulse 2s infinite;
}

.hero-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(2.5rem);
  animation: slideInUp 1s ease 0.4s forwards;
}

.hero-name {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  transition: color 0.5s ease;
}

.hero-name:hover {
  color: #333;
}

.hero-description {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 1.125rem;
  color: #333;
  line-height: 1.6;
}

.hero-description p:first-child {
  letter-spacing: 0.025em;
  transition: all 0.3s ease;
}

.hero-description p:first-child:hover {
  letter-spacing: 0.05em;
}

/* About Me Parallax Section */
.about-parallax-section {
  position: relative;
  background: #000;
  color: #fff;
  padding: 15rem 1.5rem 12rem;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  margin-top: -10rem;
  padding-top: 20rem;
}

.about-parallax-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 15rem;
  background: linear-gradient(to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 25%,
    rgba(0, 0, 0, 0.7) 50%,
    rgba(0, 0, 0, 0.9) 75%,
    #000 100%);
  z-index: 5;
  pointer-events: none;
}

.about-parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  background:
    radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.06) 0%, transparent 60%),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
  z-index: 1;
  will-change: transform;
  backface-visibility: hidden;
  perspective: 1000px;
}

.about-parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #000 0%, transparent 20%, transparent 80%, #000 100%);
  z-index: 2;
  pointer-events: none;
}

.about-parallax-section::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  height: 80%;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(99, 102, 241, 0.04) 0%, transparent 40%),
    radial-gradient(ellipse at 70% 60%, rgba(16, 185, 129, 0.04) 0%, transparent 40%);
  z-index: 3;
  pointer-events: none;
  will-change: transform;
  transition: transform 0.15s ease-out;
}

.about-parallax-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

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

.about-parallax-left {
  opacity: 0;
  transform: translateX(-3rem);
  animation: aboutSlideInLeft 1s ease 0.3s forwards;
}

@keyframes aboutSlideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-parallax-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(16, 185, 129, 0.15));
  border: 1px solid rgba(99, 102, 241, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.about-parallax-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-parallax-description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 3rem;
  max-width: 600px;
}

.about-parallax-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.about-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about-stat-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #6366f1 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-stat-label {
  font-size: 0.875rem;
  color: #888;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-parallax-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.about-cta-btn.primary {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #fff;
  border: 2px solid #6366f1;
}

.about-cta-btn.primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.about-cta-btn.primary:hover::before {
  left: 100%;
}

.about-cta-btn.primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.about-cta-btn.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.about-cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-4px) scale(1.05);
}

.about-parallax-right {
  position: relative;
  opacity: 0;
  transform: translateX(3rem);
  animation: aboutSlideInRight 1s ease 0.5s forwards;
}

@keyframes aboutSlideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-floating-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  will-change: transform;
  backface-visibility: hidden;
}

.about-floating-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-floating-card:hover::before {
  opacity: 1;
}

.about-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.about-card-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.about-card-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.about-card-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-feature-icon {
  width: 2rem;
  height: 2rem;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  flex-shrink: 0;
}

.about-feature-text {
  font-size: 0.95rem;
  color: #fff;
}

/* Parallax floating elements */
.about-floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.about-floating-element {
  position: absolute;
  opacity: 0.1;
  will-change: transform, opacity;
  backface-visibility: hidden;
  perspective: 1000px;
}

.about-floating-element:nth-child(1) {
  top: 10%;
  left: 10%;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
  border-radius: 50%;
  filter: blur(40px);
}

.about-floating-element:nth-child(2) {
  top: 60%;
  right: 15%;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.15));
  border-radius: 40%;
  filter: blur(35px);
}

.about-floating-element:nth-child(3) {
  bottom: 20%;
  left: 20%;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(217, 119, 6, 0.15));
  border-radius: 30%;
  filter: blur(38px);
}

@keyframes aboutFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  33% {
    transform: translateY(-40px) rotate(120deg) scale(1.1);
  }
  66% {
    transform: translateY(20px) rotate(240deg) scale(0.9);
  }
}

/* Responsive */
@media (max-width: 639px) {
  .about-parallax-section {
    padding: 10rem 1rem 8rem;
    min-height: auto;
    margin-top: -5rem;
    padding-top: 12rem;
  }

  .about-parallax-section::before {
    height: 10rem;
  }

  .about-parallax-title {
    font-size: 2.5rem;
  }

  .about-parallax-description {
    font-size: 1rem;
  }

  .about-parallax-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-stat-number {
    font-size: 2.5rem;
  }

  .about-parallax-cta {
    flex-direction: column;
    width: 100%;
  }

  .about-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .about-floating-card {
    padding: 2rem;
  }

  .about-card-icon {
    width: 60px;
    height: 60px;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .about-parallax-section {
    padding: 12rem 2rem 10rem;
    margin-top: -8rem;
    padding-top: 16rem;
  }

  .about-parallax-section::before {
    height: 13rem;
  }

  .about-parallax-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .about-parallax-content {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }

  .about-parallax-title {
    font-size: 5rem;
  }

  .about-parallax-description {
    font-size: 1.35rem;
  }

  .about-parallax-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .about-parallax-section {
    padding: 18rem 3rem 15rem;
  }
}

  letter-spacing: 0.05em;
}

.hero-description p:last-child {
  font-size: 1rem;
  color: #666;
}

.hero-portfolio {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-left: 2px solid rgba(0, 0, 0, 0.3);
  padding-left: 1.5rem;
  transition: all 1s ease;
  opacity: 0;
  transform: translateY(2.5rem);
  animation: slideInUp 1s ease 0.6s forwards;
}

.hero-portfolio:hover {
  border-left-color: rgba(0, 0, 0, 0.6);
}

.portfolio-title {
  font-size: 1.25rem;
  color: #666;
  letter-spacing: 0.05em;
  animation: pulse 2s infinite;
}

.portfolio-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.portfolio-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #000;
  transition: all 0.5s ease;
  cursor: default;
}

.portfolio-item:hover {
  transform: translateX(1rem);
}

.portfolio-item svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.portfolio-item:hover svg {
  transform: none;
}

.portfolio-item span:nth-child(2) {
  letter-spacing: 0.025em;
  font-size: 1.125rem;
}

.portfolio-status {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  transition: all 0.3s ease;
}

.portfolio-status.active {
  color: #059669;
  background: #d1fae5;
}

.portfolio-status.active:hover {
  background: #a7f3d0;
}

.portfolio-status.investment {
  color: #2563eb;
  background: #dbeafe;
}

.portfolio-status.investment:hover {
  background: #bfdbfe;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 2rem;
  opacity: 0;
  transform: translateY(2.5rem);
  animation: slideInUp 1s ease 0.8s forwards;
}

.btn-primary,
.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: #000;
  color: #fff;
}

.btn-primary:hover {
  background: #333;
  transform: scale(1.1);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover svg {
  transform: translateX(0.5rem);
}

.btn-secondary {
  border: 1px solid rgba(0, 0, 0, 0.4);
  background: transparent;
  color: #000;
}

.btn-secondary:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
}

.btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.btn-secondary:hover::before {
  opacity: 1;
}

.hero-connect {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(2.5rem);
  animation: slideInUp 1s ease 1s forwards;
}

.hero-connect span {
  font-size: 1.25rem;
  color: #666;
  letter-spacing: 0.05em;
}

.connect-links {
  display: flex;
  gap: 1rem;
}

.connect-link {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  text-decoration: none;
  transition: all 0.5s ease;
}

.connect-link:hover {
  background: #000;
  color: #fff;
  transform: scale(1.25);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
}

.hero-right {
  position: relative;
  order: 1;
  opacity: 0;
  transform: translateX(2.5rem);
  animation: slideInRight 1s ease 0.3s forwards;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
}

.corner-element {
  position: absolute;
  width: 3rem;
  height: 3rem;
  border: 2px solid rgba(0, 0, 0, 0.6);
  animation: pulse 2s infinite;
}

.corner-tl {
  top: -1.5rem;
  left: -1.5rem;
  border-right: none;
  border-bottom: none;
}

.corner-tr {
  top: -1.5rem;
  right: -1.5rem;
  border-left: none;
  border-bottom: none;
  animation-delay: 0.5s;
}

.corner-bl {
  bottom: -1.5rem;
  left: -1.5rem;
  border-right: none;
  border-top: none;
  animation-delay: 1s;
}

.corner-br {
  bottom: -1.5rem;
  right: -1.5rem;
  border-left: none;
  border-top: none;
  animation-delay: 1.5s;
}

.hero-image-wrapper {
  position: relative;
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(2px);
  transition: all 0.5s ease;
  overflow: hidden;
  height: 16rem;
}

.hero-image-wrapper:hover {
  border-color: rgba(0, 0, 0, 0.6);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.1) brightness(1.1);
  transition: transform 0.7s ease;
}

.hero-image-wrapper:hover .hero-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.7), transparent, rgba(255, 255, 255, 0.3));
  transition: all 0.5s ease;
}

.hero-image-wrapper:hover .image-overlay {
  background: linear-gradient(to top, rgba(255, 255, 255, 0.5), transparent, rgba(255, 255, 255, 0.2));
}

.scanning-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.scan-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.5), transparent);
  animation: pulse 2s infinite;
}

.scan-top {
  top: 0;
}

.scan-bottom {
  bottom: 0;
  animation-delay: 1s;
}

.quote-box {
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(0, 0, 0, 0.4);
  padding: 1.5rem;
  max-width: 28rem;
  backdrop-filter: blur(2px);
  transition: all 0.5s ease;
}

.quote-box:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(1.05);
}

.quote-label {
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 1rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  animation: pulse 2s infinite;
}

.quote-text {
  color: #000;
  line-height: 1.6;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.quote-box:hover .quote-text {
  color: #333;
}

/* About Jasper Section */
.about-jasper-section {
  padding: 10rem 1.5rem;
  background: #000;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-jasper-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.8;
}

.about-jasper-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.about-jasper-header {
  text-align: left;
  margin-bottom: 5rem;
  opacity: 0;
  transform: translateY(2rem);
  animation: fadeInUp 1s ease 0.2s forwards;
}

.about-jasper-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.about-jasper-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  max-width: 600px;
  overflow: hidden;
}

.typewriter-text {
  display: inline-block;
  position: relative;
  max-width: 600px;
  opacity: 0;
}

.typewriter-text.typing {
  opacity: 1;
}

.typewriter-text::after {
  content: '';
  position: absolute;
  right: -3px;
  width: 3px;
  height: 1.2em;
  background: #fff;
  animation: blink 0.75s step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

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

.about-jasper-photos {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-3rem);
  animation: fadeInLeft 1s ease 0.4s forwards;
}

.jasper-photo-frame {
  position: absolute;
  background: linear-gradient(135deg, rgba(255, 182, 193, 0.3) 0%, rgba(255, 105, 180, 0.3) 100%);
  border: 3px solid rgba(255, 255, 255, 0.8);
  padding: 1rem;
  transform-origin: center;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.jasper-photo-frame:hover {
  transform: scale(1.05) !important;
  z-index: 10 !important;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.jasper-photo-frame.frame-1 {
  width: 300px;
  height: 400px;
  left: 0;
  top: 0;
  transform: rotate(-8deg);
  z-index: 2;
  border-radius: 40px 20px 40px 20px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
}

.jasper-photo-frame.frame-2 {
  width: 280px;
  height: 380px;
  right: 0;
  top: 60px;
  transform: rotate(6deg);
  z-index: 1;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(5, 150, 105, 0.3) 100%);
}

.jasper-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.1);
  transition: filter 0.3s ease;
}

.jasper-photo-frame.frame-1 .jasper-photo {
  border-radius: 32px 12px 32px 12px;
}

.jasper-photo-frame.frame-2 .jasper-photo {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.jasper-photo-frame:hover .jasper-photo {
  filter: grayscale(0%) contrast(1.2);
}

.photo-label {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border: 2px solid #fff;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.photo-handwritten-text {
  position: absolute;
  top: 15%;
  right: -8%;
  font-family: 'Pacifico', 'Dancing Script', 'Brush Script MT', cursive;
  font-size: 2.8rem;
  color: #fff;
  text-shadow:
    3px 3px 8px rgba(0, 0, 0, 0.9),
    0 0 20px rgba(0, 0, 0, 0.7),
    -1px -1px 0 rgba(0, 0, 0, 0.3);
  transform: rotate(-12deg);
  z-index: 10;
  font-weight: 400;
  letter-spacing: 0.1em;
  pointer-events: none;
  animation: handwrittenFloat 3s ease-in-out infinite;
  -webkit-font-smoothing: antialiased;
}

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

.about-jasper-text {
  opacity: 0;
  transform: translateX(3rem);
  animation: fadeInRight 1s ease 0.6s forwards;
}

.about-jasper-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.about-jasper-story {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.about-jasper-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-jasper-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.4s ease;
}

.about-jasper-cta:hover::before {
  left: 100%;
}

.about-jasper-cta:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(0.5rem);
}

.about-jasper-cta svg {
  transition: transform 0.3s ease;
}

.about-jasper-cta:hover svg {
  transform: translateX(0.25rem);
}

.about-jasper-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

.decoration-icon,
.decoration-flag {
  position: absolute;
  color: rgba(255, 255, 255, 0.08);
  animation: float 6s ease-in-out infinite;
}

.decoration-icon.icon-1 {
  top: 20%;
  right: 15%;
  animation-delay: 0s;
}

.decoration-flag {
  bottom: 25%;
  right: 25%;
  animation-delay: 1.5s;
}

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

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* What I Do Section */
.what-i-do-section {
  padding: 6rem 1.5rem;
  background: #000;
  position: relative;
  overflow: hidden;
}

.what-i-do-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.what-i-do-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.what-i-do-header {
  text-align: center;
  margin-bottom: 4rem;
}

.what-i-do-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.what-i-do-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.15em;
  text-transform: lowercase;
  font-weight: 400;
}

.what-i-do-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.do-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  --mouse-x: 50%;
  --mouse-y: 50%;
}

.do-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    600px circle at var(--mouse-x) var(--mouse-y),
    rgba(16, 185, 129, 0.15),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.do-card.expandable {
  cursor: pointer;
}

.do-card.expandable:hover::before {
  opacity: 1;
}

.do-card.expandable:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.do-card-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem 2rem;
  position: relative;
  z-index: 2;
}

.do-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  transition: all 0.4s ease;
}

.do-card:hover .do-icon {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.1) rotate(5deg);
}

.do-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.4;
  flex: 1;
  text-align: left;
}

.expand-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.do-card[data-expanded="true"] .expand-icon {
  transform: rotate(180deg);
  color: #fff;
}

.do-card-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
  position: relative;
  z-index: 2;
}

.do-card[data-expanded="true"] .do-card-content {
  max-height: 500px;
  opacity: 1;
  padding: 0 2rem 2.5rem;
}


/* Magic Bento Projects Section */
.magic-projects-section {
  padding: 6rem 1.5rem;
  background: #000;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.magic-projects-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* Blob decorations container */
.magic-projects-section::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: 
    radial-gradient(circle 400px at 15% 20%, rgba(16, 185, 129, 0.12) 0%, transparent 60%),
    radial-gradient(circle 350px at 85% 30%, rgba(99, 102, 241, 0.08) 0%, transparent 60%),
    radial-gradient(circle 300px at 25% 70%, rgba(139, 92, 246, 0.06) 0%, transparent 60%),
    radial-gradient(circle 320px at 70% 80%, rgba(16, 185, 129, 0.07) 0%, transparent 60%),
    radial-gradient(circle 280px at 50% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 60%),
    radial-gradient(circle 250px at 90% 60%, rgba(245, 158, 11, 0.04) 0%, transparent 60%);
  filter: blur(60px);
  animation: blob-morph 25s ease-in-out infinite;
}

@keyframes blob-morph {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1) rotate(0deg);
  }
  25% {
    opacity: 0.85;
    transform: scale(1.05) rotate(90deg);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.95) rotate(180deg);
  }
  75% {
    opacity: 0.8;
    transform: scale(1.03) rotate(270deg);
  }
}

.magic-projects-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.magic-projects-header {
  text-align: center;
  margin-bottom: 2rem;
}

.magic-projects-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 4px;
  color: rgba(16, 185, 129, 1);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.magic-projects-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.magic-projects-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
}

.magic-bento-grid {
  display: grid;
  gap: 0.5rem;
  padding: 0;
  position: relative;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(180px, auto);
  z-index: 3;
}

.magic-project-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  background: rgba(10, 20, 15, 0.6);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-intensity: 0;
  --glow-radius: 300px;
}

.magic-project-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(16, 185, 129, 0.2);
}

.magic-project-card::after {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  background: radial-gradient(
    var(--glow-radius) circle at var(--glow-x) var(--glow-y),
    rgba(16, 185, 129, calc(var(--glow-intensity) * 0.8)) 0%,
    rgba(16, 185, 129, calc(var(--glow-intensity) * 0.4)) 30%,
    transparent 60%
  );
  border-radius: inherit;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: subtract;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.magic-project-card:hover::after {
  opacity: 1;
}

.magic-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  position: relative;
  z-index: 2;
}

.magic-card-label {
  font-size: 0.65rem;
  color: rgba(16, 185, 129, 1);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.magic-card-icon {
  width: 32px;
  height: 32px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(16, 185, 129, 1);
  flex-shrink: 0;
}

.magic-card-icon svg {
  width: 18px;
  height: 18px;
}

.magic-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  z-index: 2;
}

.magic-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.magic-card-description {
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.magic-card-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.4rem;
}

.magic-tech-tag {
  font-size: 0.65rem;
  padding: 0.2rem 0.6rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 10px;
  color: rgba(16, 185, 129, 1);
  font-weight: 500;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 1);
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
  pointer-events: none;
  z-index: 100;
}

.particle::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  z-index: -1;
}

.global-spotlight {
  position: fixed;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle,
    rgba(16, 185, 129, 0.15) 0%,
    rgba(16, 185, 129, 0.08) 15%,
    rgba(16, 185, 129, 0.04) 25%,
    rgba(16, 185, 129, 0.02) 40%,
    rgba(16, 185, 129, 0.01) 65%,
    transparent 70%
  );
  z-index: 200;
  opacity: 0;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  transition: opacity 0.3s ease;
}

@media (max-width: 639px) {
  .magic-projects-section {
    padding: 4rem 1rem;
  }

  .magic-projects-title {
    font-size: 1.75rem;
  }

  .magic-bento-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    grid-auto-rows: minmax(160px, auto);
  }

  .magic-project-card {
    padding: 1rem;
  }

  .magic-projects-section::after,
  .magic-projects-container::before,
  .magic-projects-container::after {
    display: none;
  }
}

@media (min-width: 640px) {
  .magic-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    grid-auto-rows: minmax(180px, auto);
  }
}

@media (min-width: 1024px) {
  .magic-projects-section {
    padding: 6rem 2rem;
  }

  .magic-bento-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    grid-auto-rows: minmax(200px, auto);
  }
}

.do-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.do-list li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  padding-left: 2rem;
  position: relative;
}

.do-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

@media (max-width: 639px) {
  .what-i-do-section {
    padding: 4rem 1rem;
  }

  .what-i-do-title {
    font-size: 1.75rem;
  }

  .what-i-do-subtitle {
    font-size: 0.8rem;
  }

  .do-card-header {
    padding: 2rem 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .do-card h3 {
    text-align: center;
  }

  .expand-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
  }

  .do-icon {
    width: 56px;
    height: 56px;
  }

  .do-icon svg {
    width: 28px;
    height: 28px;
  }

  .do-card h3 {
    font-size: 1.1rem;
  }

  .do-card[data-expanded="true"] .do-card-content {
    padding: 0 1.5rem 2rem;
  }

  .do-list li {
    font-size: 0.9rem;
  }
}

@media (min-width: 640px) {
  .what-i-do-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .what-i-do-section {
    padding: 8rem 3rem;
  }

  .what-i-do-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .what-i-do-title {
    font-size: 3rem;
  }

  .do-card-header {
    padding: 3rem 2.5rem;
  }

  .do-icon {
    width: 72px;
    height: 72px;
  }

  .do-card h3 {
    font-size: 1.35rem;
  }

  .do-card[data-expanded="true"] .do-card-content {
    padding: 0 2.5rem 3rem;
  }

  .do-list li {
    font-size: 1rem;
  }
}

/* Extra Info Section */
.extra-info-section {
  padding: 8rem 1.5rem;
  background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.extra-info-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.extra-info-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.extra-info-content {
  text-align: center;
}

.extra-info-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.extra-info-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.extra-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.info-card:hover::before {
  transform: translateX(100%);
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.info-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #fff;
  transition: all 0.3s ease;
}

.info-card:hover .info-icon {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.1) rotate(5deg);
}

.info-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.info-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

@media (max-width: 639px) {
  .extra-info-section {
    padding: 6rem 1rem;
  }

  .extra-info-title {
    font-size: 2rem;
  }

  .info-card {
    padding: 2rem 1.5rem;
  }

  .info-card h3 {
    font-size: 1.25rem;
  }

  .info-card p {
    font-size: 0.95rem;
  }
}

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

@media (min-width: 1024px) {
  .extra-info-section {
    padding: 10rem 3rem;
  }

  .extra-info-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }

  .extra-info-title {
    font-size: 3.5rem;
  }
}

/* Responsive */
@media (max-width: 639px) {
  .about-jasper-section {
    padding: 6rem 1rem;
  }

  .about-jasper-title {
    font-size: 2rem;
  }

  .about-jasper-photos {
    min-height: 400px;
  }

  .jasper-photo-frame.frame-1 {
    width: 200px;
    height: 280px;
    left: 10%;
    border-radius: 30px 15px 30px 15px;
  }

  .jasper-photo-frame.frame-1 .jasper-photo {
    border-radius: 24px 8px 24px 8px;
  }

  .jasper-photo-frame.frame-2 {
    width: 180px;
    height: 260px;
    right: 10%;
    top: 80px;
  }

  .about-jasper-story {
    font-size: 1rem;
  }

  .photo-handwritten-text {
    font-size: 1.8rem;
    top: 10%;
    right: -5%;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .about-jasper-title {
    font-size: 2.5rem;
  }

  .jasper-photo-frame.frame-1 {
    width: 250px;
    height: 350px;
    border-radius: 35px 18px 35px 18px;
  }

  .jasper-photo-frame.frame-1 .jasper-photo {
    border-radius: 28px 10px 28px 10px;
  }

  .jasper-photo-frame.frame-2 {
    width: 230px;
    height: 330px;
  }

  .photo-handwritten-text {
    font-size: 2.2rem;
    top: 12%;
    right: -7%;
  }
}

@media (min-width: 1024px) {
  .about-jasper-section {
    padding: 12rem 3rem;
  }

  .about-jasper-content {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }

  .about-jasper-title {
    font-size: 3.5rem;
  }

  .jasper-photo-frame.frame-1 {
    width: 350px;
    height: 480px;
    border-radius: 45px 22px 45px 22px;
  }

  .jasper-photo-frame.frame-1 .jasper-photo {
    border-radius: 36px 14px 36px 14px;
  }

  .jasper-photo-frame.frame-2 {
    width: 320px;
    height: 440px;
  }
}

/* Mijn Bedrijven Section */
.mijn-bedrijven-section {
  padding: 12rem 1.5rem;
  background: #000;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(64, 64, 64, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(64, 64, 64, 0.1) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

.mijn-bedrijven-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
  z-index: 1;
  animation: overlayPulse 8s ease-in-out infinite;
}

.mijn-bedrijven-section .section-container {
  position: relative;
  z-index: 10;
}

.mijn-bedrijven-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
}

.mijn-bedrijven-section .section-title {
  font-size: 5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 80px rgba(255, 255, 255, 0.1);
}

.mijn-bedrijven-section .section-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.mijn-bedrijven-section .business-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.mijn-bedrijven-section .business-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.mijn-bedrijven-section .business-icon {
  background: #fff;
  color: #000;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.mijn-bedrijven-section .business-card:hover .business-icon {
  background: #e0e0e0;
}

.mijn-bedrijven-section .business-info h3 {
  color: #fff;
  font-weight: 700;
}

.mijn-bedrijven-section .business-period {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.mijn-bedrijven-section .business-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.mijn-bedrijven-section .services-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  font-weight: 600;
}

.mijn-bedrijven-section .service-tag {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.mijn-bedrijven-section .service-tag:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 639px) {
  .mijn-bedrijven-section {
    padding: 8rem 1rem;
  }

  .mijn-bedrijven-section .section-title {
    font-size: 2.5rem;
  }

  .mijn-bedrijven-section .section-description {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .mijn-bedrijven-section {
    padding: 15rem 3rem;
  }
}



.quote-author {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #666;
}

.status-badges {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.status-badge {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.3);
  padding: 0.5rem 1rem;
  color: #000;
  transition: all 0.3s ease;
}

.status-badge:hover {
  background: rgba(0, 0, 0, 0.05);
}

.status-badge.entrepreneur {
  border-color: rgba(34, 197, 94, 0.5);
  color: #059669;
  animation: pulse 2s infinite;
}

.status-badge.entrepreneur:hover {
  background: rgba(34, 197, 94, 0.1);
}

/* Sections */
.businesses-section,
.skills-section {
  padding: 5rem 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.businesses-section {
  background: #f9fafb;
}

.skills-section {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.skills-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 20%,
    rgba(255, 255, 255, 0.3) 40%,
    rgba(255, 255, 255, 0.5) 60%,
    rgba(255, 255, 255, 0.7) 80%,
    rgba(255, 255, 255, 1) 100%);
  z-index: 1;
  pointer-events: none;
}

.skills-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3));
  z-index: 1;
  opacity: 0.7;
  pointer-events: none;
}

.section-container {
  max-width: 1600px;
  margin: 0 auto;
}

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

.section-subtitle {
  font-size: 1.25rem;
  color: #666;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}

.section-title {
  font-size: 3.75rem;
  font-weight: 900;
  color: #000;
  margin-bottom: 2rem;
  transition: transform 0.7s ease;
}

.section-title:hover {
  transform: scale(1.05);
}

.section-description {
  font-size: 1.25rem;
  color: #333;
  max-width: 64rem;
  margin: 0 auto;
  line-height: 1.6;
}

.businesses-grid,
.skills-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.business-card,
.skill-card {
  background: #fff;
  border: 2px solid rgba(0, 0, 0, 0.2);
  padding: 2rem;
  transition: all 0.7s ease;
}

.business-card:hover,
.skill-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-color: rgba(0, 0, 0, 0.4);
}

.business-header,
.skill-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.business-icon,
.skill-icon {
  width: 4rem;
  height: 4rem;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.5s ease;
}

.business-card:hover .business-icon,
.skill-card:hover .skill-icon {
  background: #333;
}

.business-info h3,
.skill-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
}

.business-period,
.skill-period {
  font-weight: 500;
  font-size: 1rem;
}

.business-description,
.skill-description {
  color: #333;
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.business-services {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.services-label {
  font-size: 0.875rem;
  color: #666;
}

.services-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.service-tag {
  background: #f3f4f6;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  transition: all 0.5s ease;
  cursor: default;
}

.service-tag:hover {
  background: #000;
  color: #fff;
}

/* Projects Section - Modern Brick Layout */
.projects-section {
  padding: 5rem 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.projects-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.projects-brick-layout {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.75rem;
  grid-template-rows: repeat(2, 1fr);
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* Unique widths for tablet */
.project-card:nth-child(1) {
  grid-column: span 3;
  grid-row: 1;
}

.project-card:nth-child(2) {
  grid-column: span 2;
  grid-row: 1;
}

.project-card:nth-child(3) {
  grid-column: span 1;
  grid-row: 1;
}

.project-card:nth-child(4) {
  grid-column: span 2;
  grid-row: 2;
}

.project-card:nth-child(5) {
  grid-column: span 3;
  grid-row: 2;
}

.project-card:nth-child(6) {
  grid-column: span 1;
  grid-row: 2;
}

.project-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0;
  transform: translateY(3rem) scale(0.95);
  cursor: pointer;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.05);
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.project-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, transparent, rgba(99, 102, 241, 0.1), transparent);
  border-radius: 22px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.project-card.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.project-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: rgba(99, 102, 241, 0.2);
}

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

.project-card:hover::after {
  opacity: 1;
}

.project-card.featured {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.03) 0%, rgba(255, 255, 255, 0.98) 100%);
  border: 2px solid rgba(16, 185, 129, 0.2);
  box-shadow:
    0 8px 32px rgba(16, 185, 129, 0.15),
    0 2px 8px rgba(16, 185, 129, 0.1);
}

.project-card.featured::after {
  background: linear-gradient(45deg, transparent, rgba(16, 185, 129, 0.15), transparent);
}

.project-card.featured:hover {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow:
    0 25px 80px rgba(16, 185, 129, 0.25),
    0 12px 35px rgba(16, 185, 129, 0.15);
}

/* Staggered animations for brick items */
.project-card:nth-child(1) { animation-delay: 0.1s; }
.project-card:nth-child(2) { animation-delay: 0.2s; }
.project-card:nth-child(3) { animation-delay: 0.3s; }
.project-card:nth-child(4) { animation-delay: 0.4s; }
.project-card:nth-child(5) { animation-delay: 0.5s; }
.project-card:nth-child(6) { animation-delay: 0.6s; }

.project-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  position: relative;
  flex-shrink: 0;
}

.project-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.project-icon::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 ease;
}

.project-card:hover .project-icon::before {
  left: 100%;
}

.project-card.featured .project-icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
}

.project-card:hover .project-icon {
  transform: scale(1.05) rotate(3deg);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.project-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.project-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.2;
  transition: color 0.3s ease;
  margin: 0;
}

.project-card:hover .project-info h3 {
  color: #6366f1;
}

.project-card.featured:hover .project-info h3 {
  color: #10b981;
}

.project-period {
  font-weight: 500;
  font-size: 0.8rem;
  color: #6b7280;
  background: rgba(107, 114, 128, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 8px;
  display: inline-block;
  transition: all 0.3s ease;
  width: fit-content;
}

.project-card:hover .project-period {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
}

.project-card.featured .project-period {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.project-description {
  color: #4b5563;
  line-height: 1.5;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.project-card:hover .project-description {
  color: #374151;
}

.tech-stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.tech-stack-label {
  font-size: 0.75rem;
  color: #6b7280;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}

.tech-stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.tech-stack-tag {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  color: #374151;
  padding: 0.25rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: default;
  border: 1px solid rgba(0, 0, 0, 0.05);
  white-space: nowrap;
}

.tech-stack-tag:hover {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.project-card.featured .tech-stack-tag {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
  color: #047857;
  border-color: rgba(16, 185, 129, 0.2);
}

.project-card.featured .tech-stack-tag:hover {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
}

.project-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
  flex-shrink: 0;
}

.project-btn {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.project-btn-primary {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.project-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.project-btn-secondary {
  background: rgba(107, 114, 128, 0.1);
  color: #374151;
  border: 1px solid rgba(107, 114, 128, 0.2);
}

.project-btn-secondary:hover {
  background: rgba(107, 114, 128, 0.2);
  transform: translateY(-2px);
}

/* Update large screen layout for unique card widths */
@media (min-width: 640px) {
  .projects-brick-layout {
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    grid-template-rows: repeat(2, 1fr);
  }

  .project-card {
    min-height: 380px;
    padding: 2.5rem;
  }

  /* Unique widths for tablet */
  .project-card:nth-child(1) {
    grid-column: span 3;
    grid-row: 1;
  }

  .project-card:nth-child(2) {
    grid-column: span 2;
    grid-row: 1;
  }

  .project-card:nth-child(3) {
    grid-column: span 1;
    grid-row: 1;
  }

  .project-card:nth-child(4) {
    grid-column: span 2;
    grid-row: 2;
  }

  .project-card:nth-child(5) {
    grid-column: span 3;
    grid-row: 2;
  }

  .project-card:nth-child(6) {
    grid-column: span 1;
    grid-row: 2;
  }
}

@media (min-width: 1024px) {
  .projects-brick-layout {
    grid-template-columns: repeat(10, 1fr);
    gap: 2.5rem;
    grid-template-rows: repeat(2, 1fr);
  }

  .project-card {
    min-height: 420px;
    padding: 3rem;
  }

  /* Unique widths for desktop */
  .project-card:nth-child(1) {
    grid-column: span 4;
    grid-row: 1;
  }

  .project-card:nth-child(2) {
    grid-column: span 3;
    grid-row: 1;
  }

  .project-card:nth-child(3) {
    grid-column: span 3;
    grid-row: 1;
  }

  .project-card:nth-child(4) {
    grid-column: span 5;
    grid-row: 2;
  }

  .project-card:nth-child(5) {
    grid-column: span 2;
    grid-row: 2;
  }

  .project-card:nth-child(6) {
    grid-column: span 3;
    grid-row: 2;
  }
}

@media (min-width: 1280px) {
  .projects-brick-layout {
    grid-template-columns: repeat(12, 1fr);
    gap: 3rem;
    grid-template-rows: repeat(2, 1fr);
  }

  .project-card {
    min-height: 460px;
    padding: 3.5rem;
  }

  /* Unique widths for extra large screens */
  .project-card:nth-child(1) {
    grid-column: span 5;
    grid-row: 1;
  }

  .project-card:nth-child(2) {
    grid-column: span 3;
    grid-row: 1;
  }

  .project-card:nth-child(3) {
    grid-column: span 4;
    grid-row: 1;
  }

  .project-card:nth-child(4) {
    grid-column: span 6;
    grid-row: 2;
  }

  .project-card:nth-child(5) {
    grid-column: span 2;
    grid-row: 2;
  }

  .project-card:nth-child(6) {
    grid-column: span 4;
    grid-row: 2;
  }
}

/* Remove dynamic height variations for consistent layout */

/* Floating elements */
.projects-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-project-element {
  position: absolute;
  opacity: 0.1;
  animation: projectFloat 8s ease-in-out infinite;
}

.floating-project-element:nth-child(1) {
  top: 10%;
  left: 10%;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #6366f1, #8b5cf6);
  border-radius: 50%;
  animation-delay: 0s;
}

.floating-project-element:nth-child(2) {
  top: 60%;
  right: 15%;
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #10b981, #059669);
  border-radius: 30%;
  animation-delay: 2s;
}

.floating-project-element:nth-child(3) {
  bottom: 20%;
  left: 20%;
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #f59e0b, #d97706);
  border-radius: 20%;
  animation-delay: 4s;
}

@keyframes projectFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(10px) rotate(240deg);
  }
}

/* CTA Section - Strak en rustig design */
.cta-section {
  padding: 8rem 1.5rem;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.cta-content.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.cta-badge svg {
  color: #10b981;
}

.cta-title {
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  color: #fff;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  flex-shrink: 0;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.cta-btn-primary {
  background: #10b981;
  color: #000;
  border: 2px solid #10b981;
}

.cta-btn-primary:hover {
  background: #059669;
  border-color: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.cta-btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

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

@media (max-width: 639px) {
  .cta-section {
    padding: 4rem 1rem;
  }

  .cta-title {
    font-size: 2.5rem;
  }

  .cta-description {
    font-size: 1rem;
  }

  .cta-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
  }

  .cta-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }
}

@media (min-width: 1024px) {
  .cta-section {
    padding: 10rem 3rem;
  }

  .cta-title {
    font-size: 5rem;
  }

  .cta-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* Stats Section */
.stats-section {
  padding: 5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 10;
}

.stat-card {
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  transition: all 0.7s ease;
  border-radius: 12px;
}

.stat-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
}

.stat-number {
  font-size: 3.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  transition: color 0.5s ease;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card:hover .stat-number {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card:nth-child(2):hover .stat-number {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card:nth-child(3):hover .stat-number {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card:nth-child(4):hover .stat-number {
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.2em;
  transition: color 0.3s ease;
}

.stat-card:hover .stat-label {
  color: rgba(255, 255, 255, 0.9);
}

/* Animations */
@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Footer styles moved to footer.css */

/* Mobile First Responsive Design */
@media (max-width: 639px) {
  .hero-section {
    padding-top: 5rem;
    padding-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    min-height: auto;
  }

  .hero-content {
    gap: 2rem;
  }

  .hero-left {
    gap: 1.5rem;
  }

  .hero-status {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.1;
  }

  .hero-name {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-description p:last-child {
    font-size: 0.875rem;
  }

  .portfolio-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .portfolio-item span:nth-child(2) {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .businesses-section,
  .skills-section,
  .stats-section {
    padding: 2.5rem 1rem;
  }

  .business-card,
  .skill-card {
    padding: 1.25rem;
  }

  .business-header,
  .skill-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .business-icon,
  .skill-icon {
    width: 3rem;
    height: 3rem;
  }

  .stat-card {
    padding: 1.25rem;
  }

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

  .quote-box {
    margin-top: 1.5rem;
    padding: 1rem;
    max-width: 100%;
  }

  .status-badges {
    position: static;
    margin-top: 1rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .status-badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }

  .hero-image-wrapper {
    height: 14rem;
  }

  .services-tags {
    gap: 0.5rem;
  }

  .service-tag {
    font-size: 0.75rem;
    padding: 0.375rem 0.5rem;
  }

  .projects-brick-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .project-card {
    padding: 1.5rem;
    min-height: 280px;
    max-height: 350px;
  }

  .project-header {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }

  .project-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .project-info h3 {
    font-size: 1.1rem;
  }

  .project-description {
    font-size: 0.825rem;
    -webkit-line-clamp: 2;
  }

  .tech-stack-tags {
    gap: 0.25rem;
  }

  .tech-stack-tag {
    font-size: 0.65rem;
    padding: 0.2rem 0.4rem;
  }

  .project-actions {
    flex-direction: row;
    gap: 0.5rem;
  }
}

/* Extra small devices */
@media (max-width: 374px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-name {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .hero-status {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
  }

  .status-indicator {
    width: 0.75rem;
    height: 0.75rem;
  }

  .hero-image-wrapper {
    height: 12rem;
  }

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

/* Medium devices */
@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }

  .businesses-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-image-wrapper {
    height: 24rem;
  }

  .quote-box {
    position: absolute;
    bottom: -4rem;
    left: -4rem;
    margin-top: 0;
  }

  .section-header {
    flex-direction: row;
    align-items: flex-end;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
}

/* Large devices */
@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }

  .hero-left {
    order: 1;
    gap: 4rem;
  }

  .hero-right {
    order: 2;
  }

  .hero-title {
    font-size: 5rem;
  }

  .hero-name {
    font-size: 3.75rem;
  }

  .section-title {
    font-size: 4.5rem;
  }

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

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

  .skill-card.full-width {
    grid-column: span 2;
  }

  .hero-image-wrapper {
    height: 37.5rem;
  }

  .hero-background {
    background-size: 80px 80px;
  }

  .hero-section {
    padding-top: 10rem;
    padding-bottom: 8rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .businesses-section,
  .skills-section,
  .stats-section {
    padding: 8rem 3rem;
  }

  .section-header {
    margin-bottom: 5rem;
  }

  .business-card,
  .skill-card {
    padding: 3rem;
  }

  .stat-card {
    padding: 3rem;
  }

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

  .section-title {
    font-size: 4rem;
  }
}

/* Extra large devices */
@media (min-width: 1280px) {
  .hero-title {
    font-size: 6rem;
  }

  .section-title {
    font-size: 4.5rem;
  }

  .hero-image-wrapper {
    height: 43.75rem;
  }

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

/* Language Transition Wave Overlay */
.language-wave-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  pointer-events: none;
  overflow: hidden;
}

.language-wave-layer-light,
.language-wave-layer-dark {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: left 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.language-wave-layer-light {
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.8), rgba(240, 240, 240, 0.9));
  z-index: 1;
}

.language-wave-layer-dark {
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05));
  z-index: 2;
  transition-delay: 0.1s;
}

.language-wave-overlay.is-transitioning .language-wave-layer-light {
  left: 0%;
}

.language-wave-overlay.is-transitioning .language-wave-layer-dark {
  left: 0%;
}

.language-wave-overlay.is-closing .language-wave-layer-light,
.language-wave-overlay.is-closing .language-wave-layer-dark {
  left: 100%;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%);
  backdrop-filter: blur(10px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  opacity: 0;
}

.navbar.scrolled::before {
  opacity: 1;
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
}

.navbar.scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Animated border bottom */
.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.navbar.scrolled::after {
  opacity: 1;
}