/* ===================================
   ParetoPoint - Static Website Styles
   =================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #ffffff;
  color: #1E293B;
  line-height: 1.6;
}

/* CSS Custom Properties */
:root {
  /* Colors */
  --color-space-blue: #0A0E27;
  --color-electric-indigo: #6366F1;
  --color-vibrant-purple: #8B5CF6;
  --color-cyber-cyan: #06B6D4;
  --color-slate-text: #1E293B;
  --color-subtle-grey: #F1F5F9;

  /* Fonts */
  --font-display: 'Space Grotesk', sans-serif;
  --font-sans: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --spacing: 0.25rem;
  --radius: 0.75rem;

  /* Shadows */
  --shadow-sm: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 6px 10px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Typography Utilities */
.font-display {
  font-family: var(--font-display);
}

.text-gradient {
  background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===================================
   Navigation
   =================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(10, 14, 39, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(99, 102, 241, 0.2);
  animation: navFadeIn 0.6s ease-out;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  transition: opacity 0.3s;
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-logo-img {
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.025em;
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--color-electric-indigo), var(--color-vibrant-purple));
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}

.nav-cta:hover {
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.25);
  transform: translateY(-1px);
}

.nav-cta-icon {
  transition: transform 0.3s;
}

.nav-cta:hover .nav-cta-icon {
  transform: translateX(2px);
}

@media (min-width: 768px) {
  .nav-cta {
    display: flex;
  }
}

@keyframes navFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

/* ===================================
   Hero Section
   =================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: none;
}

.hero-slide.active {
  animation: heroZoom 5s ease-in-out forwards;
}

@keyframes heroZoom {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 14, 39, 0.9), rgba(10, 14, 39, 0.7), rgba(10, 14, 39, 0.4));
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0A0E27, transparent, rgba(10, 14, 39, 0.3));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem 1.5rem 5rem;
}

.hero-subtitle {
  color: #CBD5E1;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 2.5rem;
  max-width: 56rem;
}

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

.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 20;
}

.indicator {
  height: 6px;
  width: 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.5s;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.5);
}

.indicator.active {
  width: 2.5rem;
  background: linear-gradient(to right, var(--color-electric-indigo), var(--color-vibrant-purple));
}

/* Hero Animations */
.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.animate-fade-in-delayed {
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* Responsive Hero */
@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1rem;
  }

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

  .hero-content {
    padding: 8rem 3rem 5rem;
  }

  .hero-indicators {
    left: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

/* ===================================
   Buttons
   =================================== */
.btn-primary {
  display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.75rem 1.5rem;
border-radius: var(--radius);
background: linear-gradient(to right, var(--color-electric-indigo), var(--color-vibrant-purple));
color: white;
font-size: 0.875rem;
font-weight: 600;
text-decoration: none;
transition: all 0.3s;
}

.btn-primary:hover {
box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
transform: translateY(-1px);
}

.btn-icon {
transition: transform 0.3s;
}

.btn-primary:hover .btn-icon {
transform: translateX(4px);
}

/* ===================================
Services Section
=================================== */
.services {
padding: 8rem 0;
background: #1e1233;
position: relative;
overflow: hidden;
}

.services-bg {
position: absolute;
inset: 0;
background-image:
linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
background-size: 60px 60px;
opacity: 0.2;
}

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

.section-title {
font-family: var(--font-display);
font-size: 1.875rem;
font-weight: 700;
color: white;
letter-spacing: -0.025em;
}

.services-grid {
display: flex;
flex-direction: column;
gap: 6rem;
}

.service-card {
position: relative;
transition: transform 0.3s;
}

.service-card:hover {
transform: scale(1.01);
}

.service-grid {
display: grid;
grid-template-columns: 1fr;
gap: 0;
}

.service-grid.reverse .service-image {
order: 0;
}

.service-grid.reverse .service-content {
order: 1;
}

.service-image {
position: relative;
height: 16rem;
overflow: visible;
border: 2px solid #0f1433;
background-size: cover;
background-position: center;
transition: transform 0.5s ease-out;
z-index: 1;
}

.service-card:hover .service-image {
transform: scale(1.05);
}

.service-image::before {
content: '';
position: absolute;
inset: -22px;
border-radius: 1.5rem;
background: radial-gradient(circle at 15% 20%, rgba(99, 102, 241, 0.25), transparent 55%),
  radial-gradient(circle at 85% 80%, rgba(6, 182, 212, 0.18), transparent 60%);
filter: blur(32px);
opacity: 0.7;
z-index: -1;
pointer-events: none;
}

.service-image-overlay {
position: absolute;
inset: 0;
background: linear-gradient(to bottom, rgba(10, 14, 39, 0.7), transparent, transparent);
}

.service-image-title {
position: absolute;
top: 1.5rem;
left: 0;
right: 0;
text-align: center;
padding: 0 1.5rem;
font-family: var(--font-display);
font-size: 1.5rem;
font-weight: 700;
color: white;
filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.service-content {
background: #0f1433;
padding: 2rem;
display: flex;
flex-direction: column;
justify-content: center;
position: relative;
z-index: 1;
overflow: visible;
}

.service-content::before {
content: '';
position: absolute;
inset: -24px;
border-radius: 1.5rem;
background: radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.22), transparent 55%),
  radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.18), transparent 60%);
filter: blur(36px);
opacity: 0.7;
z-index: -1;
pointer-events: none;
}

.service-content.from-right,
.service-content.from-left {
opacity: 0;
transform: translateX(50%);
transition: opacity 0.8s ease-out, transform 0.8s ease-out;
will-change: transform, opacity;
}

.service-content.from-left {
transform: translateX(-50%);
}

.service-card.animate-in .service-content.from-right,
.service-card.animate-in .service-content.from-left {
opacity: 1;
transform: translateX(0);
}

.service-text {
color: #CBD5E1;
margin-bottom: 1.5rem;
line-height: 1.7;
}

.service-tagline {
font-weight: 700;
color: white;
}

.service-features {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
}

.feature-tag {
padding: 0.375rem 0.75rem;
border-radius: 9999px;
background: rgba(255, 255, 255, 0.1);
color: #CBD5E1;
font-size: 0.875rem;
font-weight: 500;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s;
cursor: default;
}

.service-features .feature-tag {
opacity: 0;
transform: translateY(10px);
transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.service-card.animate-in .service-features .feature-tag {
opacity: 1;
transform: translateY(0);
}

.service-card.animate-in .service-features .feature-tag:nth-child(1) {
transition-delay: 0.25s;
}

.service-card.animate-in .service-features .feature-tag:nth-child(2) {
transition-delay: 0.45s;
}

.service-card.animate-in .service-features .feature-tag:nth-child(3) {
transition-delay: 0.65s;
}

.feature-tag:hover {
background: rgba(255, 255, 255, 0.15);
transform: scale(1.1);
}

/* Responsive Services */
@media (min-width: 768px) {
.section-title {
font-size: 2.25rem;
}

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

.service-image {
height: 20rem;
}

.service-image-title {
font-size: 1.875rem;
}

.service-grid.reverse .service-image {
order: 2;
}

.service-grid.reverse .service-content {
order: 1;
}
}

@media (min-width: 1024px) {
.section-title {
font-size: 3rem;
}
}

/* ===================================
About Section
=================================== */
.about {
padding: 8rem 0;
background: #1e1233;
position: relative;
overflow: hidden;
}

.about-bg {
position: absolute;
inset: 0;
background-image:
linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
background-size: 60px 60px;
opacity: 0.3;
}

.about-glow-left {
position: absolute;
top: 50%;
left: 0;
width: 600px;
height: 600px;
background: rgba(99, 102, 241, 0.1);
border-radius: 50%;
filter: blur(150px);
transform: translateY(-50%);
}

.about-glow-right {
position: absolute;
bottom: 0;
right: 0;
width: 400px;
height: 400px;
background: rgba(139, 92, 246, 0.1);
border-radius: 50%;
filter: blur(100px);
}

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

.about-badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1rem;
border-radius: 9999px;
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.1);
margin-bottom: 1.5rem;
}

.about-badge-icon {
color: var(--color-cyber-cyan);
}

.about-badge span {
font-size: 0.875rem;
color: #CBD5E1;
}

.about-title {
font-family: var(--font-display);
font-size: 2.25rem;
font-weight: 700;
color: white;
line-height: 1.1;
letter-spacing: -0.025em;
margin-bottom: 2rem;
}

.about-text-bold {
font-size: 1.125rem;
color: white;
font-weight: 700;
margin-bottom: 1rem;
}

.about-text {
color: #94A3B8;
margin-bottom: 1rem;
line-height: 1.7;
}

.about-text-emphasis {
color: #CBD5E1;
margin-bottom: 2rem;
line-height: 1.7;
font-weight: 500;
}

.about-features {
position: relative;
}

.features-card {
position: relative;
z-index: 1;
border-radius: 1.5rem;
overflow: hidden;
background: rgba(10, 14, 39, 0.8);
backdrop-filter: blur(20px);
border: 1px solid rgba(99, 102, 241, 0.2);
padding: 2rem;
}

.feature-item {
display: flex;
align-items: flex-start;
gap: 1rem;
margin-bottom: 1.5rem;
transition: transform 0.2s;
}

.feature-item:last-child {
margin-bottom: 0;
}

.feature-item:hover {
    transform: translateX(8px);
  }

  .feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
  }

  .feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
  }

  .feature-icon svg {
    color: white;
  }

  .gradient-indigo {
    background: linear-gradient(to bottom right, var(--color-electric-indigo), var(--color-vibrant-purple));
  }

  .gradient-purple {
    background: linear-gradient(to bottom right, var(--color-vibrant-purple), var(--color-cyber-cyan));
  }

  .gradient-cyan {
    background: linear-gradient(to bottom right, var(--color-cyber-cyan), var(--color-electric-indigo));
  }

  .feature-title {
    font-family: var(--font-display);
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
  }

  .feature-desc {
    font-size: 0.875rem;
    color: #94A3B8;
  }

  .features-glow-top {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(to bottom right, var(--color-electric-indigo), var(--color-vibrant-purple));
    border-radius: 1rem;
    opacity: 0.2;
    filter: blur(40px);
    animation: pulse 4s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
  }

  .features-glow-bottom {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(to bottom right, var(--color-cyber-cyan), var(--color-electric-indigo));
    border-radius: 1rem;
    opacity: 0.2;
    filter: blur(40px);
    animation: pulse 5s ease-in-out infinite 1s;
    z-index: 0;
    pointer-events: none;
  }

  @keyframes pulse {

    0%,
    100% {
      transform: scale(1);
      opacity: 0.2;
    }

    50% {
      transform: scale(1.2);
      opacity: 0.3;
    }
  }

  /* Responsive About */
  @media (min-width: 1024px) {
    .about-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .about-title {
      font-size: 3rem;
    }
  }

  /* ===================================
   Contact Section
   =================================== */
  .contact {
    padding: 8rem 0;
    background: white;
    position: relative;
    overflow: hidden;
  }

  .contact-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
  }

  .contact-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 500px;
    background: linear-gradient(to top, rgba(99, 102, 241, 0.05), transparent);
    border-radius: 50%;
    filter: blur(60px);
  }

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

  .contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(6, 182, 212, 0.1);
    margin-bottom: 1.5rem;
  }

  .contact-badge-icon {
    color: var(--color-cyber-cyan);
  }

  .contact-badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #0E7490;
  }

  .section-title-center {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-slate-text);
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
  }

  .section-subtitle {
    font-size: 1.125rem;
    color: #64748B;
    max-width: 42rem;
    margin: 0 auto;
  }

  .contact-form-wrapper {
    max-width: 64rem;
    margin: 0 auto;
  }

  .contact-form-container {
    background: var(--color-subtle-grey);
    border-radius: 1.5rem;
    padding: 2rem;
    max-width: 42rem;
    margin: 0 auto;
    box-shadow:
      0 24px 60px rgba(15, 23, 42, 0.16),
      0 0 60px rgba(99, 102, 241, 0.14),
      0 0 90px rgba(6, 182, 212, 0.1);
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .form-success {
    margin-top: 1rem;
    font-size: 1.05rem;
    color: #0E7490;
    font-weight: 700;
  }

  .form-error {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: #F87171;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .form-group {
    display: flex;
    flex-direction: column;
  }

  .form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
    margin-bottom: 0.5rem;
  }

  .form-input,
  .form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    border: 1px solid #E2E8F0;
    background: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    outline: none;
  }

  .form-input:focus,
  .form-textarea:focus {
    border-color: var(--color-electric-indigo);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
  }

  .form-textarea {
    resize: none;
  }

  .btn-submit {
    width: 100%;
    padding: 1rem;
    border-radius: var(--radius);
    background: linear-gradient(to right, var(--color-electric-indigo), var(--color-vibrant-purple));
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
  }

  .btn-submit:hover {
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
    transform: scale(1.02);
  }

  .btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
  }

  .btn-submit:disabled:hover {
    transform: none;
  }

  .btn-submit-icon {
    transition: transform 0.3s;
  }

  .btn-submit:hover .btn-submit-icon {
    transform: translateX(2px);
  }

  /* Responsive Contact */
  @media (min-width: 640px) {
    .form-row {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 768px) {
    .section-title-center {
      font-size: 3rem;
    }
  }

  @media (min-width: 1024px) {
    .section-title-center {
      font-size: 3.75rem;
    }
  }

  /* ===================================
   Imprint Page
   =================================== */
  .imprint-body {
    background: var(--color-space-blue);
    color: #E2E8F0;
  }

  .imprint-nav {
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
  }

  .imprint-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s;
  }

  .imprint-back:hover {
    color: white;
  }

  .imprint-back-icon {
    width: 16px;
    height: 16px;
  }

  .imprint-main {
    padding: 8rem 1.5rem 5rem;
  }

  .imprint-container {
    max-width: 48rem;
    margin: 0 auto;
  }

  .imprint-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3rem;
    line-height: 1.1;
  }

  .imprint-section {
    margin-bottom: 3rem;
  }

  .imprint-section-title {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
  }

  .imprint-section-subtitle {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
  }

  .imprint-subtitle {
    font-size: 0.875rem;
    color: #94A3B8;
    margin-bottom: 1.5rem;
  }

  .imprint-text {
    color: #CBD5E1;
    line-height: 1.7;
  }

  .imprint-block {
    margin-bottom: 1rem;
  }

  .imprint-strong {
    font-weight: 600;
    color: white;
  }

  .imprint-strong-light {
    font-weight: 600;
    color: #E2E8F0;
  }

  .imprint-link {
    color: var(--color-cyber-cyan);
    text-decoration: none;
  }

  .imprint-link:hover {
    text-decoration: underline;
  }

  .imprint-list {
    list-style: disc;
    padding-left: 1.25rem;
    margin-bottom: 1rem;
    color: #CBD5E1;
    line-height: 1.7;
  }

  .imprint-legal {
    font-size: 0.875rem;
    color: #94A3B8;
  }

  .imprint-divider {
    border: 0;
    border-top: 1px solid #334155;
    margin: 3rem 0;
  }

  @media (min-width: 768px) {
    .imprint-title {
      font-size: 3rem;
    }
  }

  /* ===================================
   Footer
   =================================== */
  .footer {
    padding: 3rem 0;
    background: #1e1233;
    border-top: 1px solid #334155;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
  }

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

  .footer-link {
    font-size: 0.875rem;
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-link:hover {
    color: white;
  }

  .footer-copyright {
    font-size: 0.875rem;
    color: #64748B;
  }

  @media (min-width: 768px) {
    .footer-content {
      flex-direction: row;
    }
  }

  /* ===================================
   Scroll Animations
   =================================== */
  .scroll-animate {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }

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

  /* Scroll animation from right */
  .scroll-animate-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }

  .scroll-animate-right.animate-in {
    opacity: 1;
    transform: translateX(0);
  }

  /* Scroll animation from top (for service image titles) */
  .scroll-animate-down {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.6s ease-out 0.3s, transform 0.6s ease-out 0.3s;
  }

  .scroll-animate-down.animate-in {
    opacity: 1;
    transform: translateY(0);
  }

  /* Scroll animation from left */
  .scroll-animate-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }

  .scroll-animate-left.animate-in {
    opacity: 1;
    transform: translateX(0);
  }

  /* Stagger delays for About section - Left side (from bottom) */
  .stagger-1 {
    transition-delay: 0s;
  }

  .stagger-2 {
    transition-delay: 0.1s;
  }

  .stagger-3 {
    transition-delay: 0.2s;
  }

  .stagger-4 {
    transition-delay: 0.3s;
  }

  .stagger-5 {
    transition-delay: 0.4s;
  }

  .stagger-6 {
    transition-delay: 0.5s;
  }

  .stagger-7 {
    transition-delay: 0.6s;
  }

  .stagger-8 {
    transition-delay: 0.7s;
  }

  /* Stagger delays for About section - Right side (from right) */
  .stagger-right-1 {
    transition-delay: 0.2s;
  }

  .stagger-right-2 {
    transition-delay: 0.35s;
  }

  .stagger-right-3 {
    transition-delay: 0.5s;
  }

  /* Stagger delays for service cards */
  .service-card:nth-child(1) {
    transition-delay: 0s;
  }

  @media (max-width: 767px) {
    .about .scroll-animate {
      transition-duration: 0.4s;
    }

    .about .scroll-animate-right,
    .about .scroll-animate-left {
      transition-duration: 0.54s;
    }

    .about .scroll-animate-down {
      transition: opacity 0.4s ease-out 0.2s, transform 0.4s ease-out 0.2s;
    }

    .about .stagger-1 {
      transition-delay: 0s;
    }

    .about .stagger-2 {
      transition-delay: 0.07s;
    }

    .about .stagger-3 {
      transition-delay: 0.13s;
    }

    .about .stagger-4 {
      transition-delay: 0.2s;
    }

    .about .stagger-5 {
      transition-delay: 0.27s;
    }

    .about .stagger-6 {
      transition-delay: 0.33s;
    }

    .about .stagger-7 {
      transition-delay: 0.4s;
    }

    .about .stagger-8 {
      transition-delay: 0.47s;
    }

    .about .stagger-right-1 {
      transition-delay: 0.13s;
    }

    .about .stagger-right-2 {
      transition-delay: 0.23s;
    }

    .about .stagger-right-3 {
      transition-delay: 0.33s;
    }
  }

  .service-card:nth-child(2) {
    transition-delay: 0.1s;
  }

  .service-card:nth-child(3) {
    transition-delay: 0.2s;
  }
