@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');

:root {
  --primary-pink: #ffdee3;
  --accent-purple: #b993d6;
  --accent-blue: #8ca6db;
  --white: #fff;
  --text-dark: #36323b;
  --text-light: #6a6a6a;
}

body {
  background: var(--primary-pink);
  color: var(--text-dark);
  font-family: 'Poppins', 'Roboto', Arial, sans-serif;
  transition: background 0.5s;
}

h1, h2, h3, h4, h5, h6, .serif-heading {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif !important;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.section, .incubator-section, .incubation-process-section, .success-section, .consultation-section {
  background: linear-gradient(120deg, var(--primary-pink) 0%, var(--accent-purple) 100%);
  border-radius: 24px;
  margin: 32px auto;
  box-shadow: 0 4px 32px rgba(185,147,214,0.10);
  animation: fadeIn 1.2s cubic-bezier(.4,0,.2,1);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.button-cta, .incubation-cta-btn, .btn, .contact-btn {
  background: linear-gradient(90deg, var(--primary-pink), var(--accent-blue));
  color: var(--white);
  border: none;
  border-radius: 30px;
  padding: 14px 36px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(185,147,214,0.18);
  transition: box-shadow 0.3s, background 0.3s;
}
.button-cta:hover, .incubation-cta-btn:hover, .btn:hover, .contact-btn:hover {
  box-shadow: 0 8px 32px rgba(185,147,214,0.18);
  background: linear-gradient(90deg, var(--accent-blue), var(--primary-pink));
}

/* Figma-like animated pastel blobs */
.animated-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  z-index: 0;
  animation: blobMove 12s infinite alternate cubic-bezier(.4,0,.2,1);
}
.animated-blob.pink {
  background: var(--primary-pink);
  width: 220px; height: 220px;
  top: -60px; left: -80px;
}
.animated-blob.purple {
  background: var(--accent-purple);
  width: 160px; height: 160px;
  bottom: -40px; right: -60px;
}
.animated-blob.blue {
  background: var(--accent-blue);
  width: 120px; height: 120px;
  top: 40%; left: 80%;
}
@keyframes blobMove {
  0% { transform: scale(1) translateY(0) translateX(0); }
  100% { transform: scale(1.15) translateY(30px) translateX(40px); }
}

/* Card and badge pastel styling */
.incubator-badge, .success-badge, .success-card-tag, .consultation-badge {
  background: linear-gradient(90deg, var(--primary-pink) 0%, var(--accent-purple) 100%);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 16px;
  padding: 6px 24px;
  margin-bottom: 18px;
  margin-top: 0;
  box-shadow: 0 2px 8px rgba(185,147,214,0.10);
}

.success-card, .incubation-step, .consultation-section, .incubator-section {
  box-shadow: 0 4px 32px rgba(255,222,227,0.10), 0 2px 8px rgba(185,147,214,0.08);
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .section, .incubator-section, .incubation-process-section, .success-section, .consultation-section {
    padding: 24px 8px;
    margin: 16px 0;
  }
  .animated-blob { display: none; }
}
@media (max-width: 600px) {
  .section, .incubator-section, .incubation-process-section, .success-section, .consultation-section {
    border-radius: 12px;
    padding: 12px 2px;
  }
}

.incubation-process-section {
  background: var(--white);
  border-radius: 24px;
  margin: 32px auto;
  box-shadow: 0 4px 32px rgba(185,147,214,0.10);
  animation: fadeIn 1.2s cubic-bezier(.4,0,.2,1);
  padding: 32px 0 20px 0;
  max-width: 100vw;
}
.incubation-process-section h2 {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
}
.incubation-steps {
  max-width: 1400px;
  margin: 0 auto 32px auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.incubation-step {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(185,147,214,0.08);
  padding: 18px 18px 12px 18px;
  gap: 18px;
  transition: box-shadow 0.2s;
}
.incubation-step:hover {
  box-shadow: 0 8px 32px rgba(185,147,214,0.16);
}
.incubation-step-number {
  min-width: 40px;
  min-height: 40px;
  background: var(--primary-pink);
  color: var(--accent-purple);
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  box-shadow: 0 2px 8px rgba(185,147,214,0.10);
}
.incubation-step-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.incubation-step-content p {
  color: var(--text-light);
  font-size: 1rem;
  margin: 0;
}
.incubation-cta {
  display: flex;
  justify-content: flex-start;
  margin-left: 0;
  margin-top: 18px;
}
.incubation-cta-btn {
  background: linear-gradient(90deg, var(--primary-pink) 0%, var(--accent-purple) 100%);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(185,147,214,0.18);
  transition: box-shadow 0.3s, background 0.3s;
}
.incubation-cta-btn:hover {
  box-shadow: 0 8px 32px rgba(185,147,214,0.18);
  background: linear-gradient(90deg, var(--accent-purple), var(--primary-pink));
}
@media (max-width: 900px) {
  .incubation-process-section {
    padding: 16px 0 8px 0;
  }
  .incubation-steps {
    gap: 10px;
  }
  .incubation-step {
    padding: 10px 4px 8px 4px;
    gap: 10px;
    border-radius: 8px;
  }
  .incubation-step-number {
    min-width: 28px;
    min-height: 28px;
    font-size: 0.9rem;
  }
  .incubation-step-content h3 {
    font-size: 1rem;
  }
  .incubation-step-content p {
    font-size: 0.95rem;
  }
  .incubation-cta {
    margin-left: 0;
    justify-content: center;
  }
}

.hero {
  background: linear-gradient(120deg, #ffe3ec 0%, #b8c6ff 100%);
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 80px 0 60px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero .animated-blob {
  z-index: 0;
  opacity: 0.18;
  animation: blobMove 16s infinite alternate cubic-bezier(.4,0,.2,1);
}
.hero .animated-blob.pink {
  background: linear-gradient(135deg, #ffdee3 0%, #ffb6b9 100%);
  width: 320px; height: 320px;
  top: -100px; left: -120px;
  animation-delay: 0s;
}
.hero .animated-blob.purple {
  background: linear-gradient(135deg, #b993d6 0%, #8ca6db 100%);
  width: 180px; height: 180px;
  bottom: -60px; right: 10vw;
  animation-delay: 4s;
}
.hero .animated-blob.blue {
  background: linear-gradient(135deg, #8ca6db 0%, #b8c6ff 100%);
  width: 140px; height: 140px;
  top: 30%; left: 70vw;
  animation-delay: 8s;
}
@keyframes blobMove {
  0% { transform: scale(1) translateY(0) translateX(0); }
  100% { transform: scale(1.15) translateY(40px) translateX(60px) rotate(8deg); }
}
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  opacity: 0.22;
  animation: waveMove 10s infinite linear alternate;
}
@keyframes waveMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(20px); }
}
.hero-content {
  max-width: 700px;
  margin-left: 80px;
  color: #2d2d2d;
  text-align: left;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1.2s cubic-bezier(.4,0,.2,1);
}
.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #b993d6 0%, #8ca6db 50%, #00d2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  animation: fadeInUp 1.4s cubic-bezier(.4,0,.2,1);
}
.hero-content p {
  font-size: 1.3rem;
  color: #4a4a4a;
  margin-bottom: 32px;
  font-family: 'Poppins', 'Roboto', Arial, sans-serif;
  animation: fadeInUp 1.6s cubic-bezier(.4,0,.2,1);
}
.hero-content .btn, .hero-content .button-cta {
  background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 100%);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 14px 36px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(58,123,213,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin-right: 18px;
  animation: fadeInUp 1.8s cubic-bezier(.4,0,.2,1);
}
.hero-content .btn:hover, .hero-content .button-cta:hover {
  background: linear-gradient(90deg, #3a7bd5 0%, #00d2ff 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(58,123,213,0.18);
}
.hero-content .btn.secondary {
  background: transparent;
  color: var(--accent-blue);
  border: 2px solid var(--accent-blue);
  margin-left: 0;
}
.hero-content .btn.secondary:hover {
  background: var(--primary-pink);
  color: var(--accent-purple);
  border-color: var(--accent-purple);
}
.hero-content .hero-avatars {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeInUp 2s cubic-bezier(.4,0,.2,1);
}
.hero-content .hero-avatars .avatar {
  background: var(--accent-purple);
  color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-left: 0;
  box-shadow: 0 2px 8px rgba(185,147,214,0.10);
}
.hero-content .hero-avatars .avatar:nth-child(2) {
  background: var(--accent-blue);
}
.hero-content .hero-avatars .avatar:nth-child(3) {
  background: var(--primary-pink);
  color: var(--accent-blue);
}
.hero-content .hero-avatars .avatar:nth-child(4) {
  background: #fff;
  color: var(--accent-purple);
  border: 1.5px solid var(--accent-purple);
}
.hero-content .hero-avatars .students {
  color: var(--accent-purple);
  font-weight: 700;
  margin-left: 12px;
}
@media (max-width: 900px) {
  .hero-content { margin-left: 24px; }
  .hero-content h1 { font-size: 2.2rem; }
}
@media (max-width: 700px) {
  .hero { padding: 40px 0 30px 0; }
  .hero-content { margin-left: 8px; }
  .hero-content h1 { font-size: 1.5rem; }
} 