/* ===== CSS RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1a202c;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

.highlight {
  color: #667eea;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
}

.btn--primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.btn--outline {
  background: transparent;
  color: #667eea;
  border: 2px solid #667eea;
}

.btn--outline:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn--large {
  padding: 1.125rem 2.5rem;
  font-size: 1rem;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.nav {
  padding: 1rem 0;
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-image {
  height: 40px;
  width: auto;
  transition: all 0.3s ease;
}

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

.nav__list {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav__link {
  color: #475569;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav__link:hover {
  color: #667eea;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: width 0.3s ease;
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white !important;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  margin-left: 1rem;
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.nav__toggle {
  display: none;
  font-size: 1.5rem;
  color: #475569;
  cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(148,163,184,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.hero__content {
  animation: fadeInUp 1s ease-out;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.hero__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #1a202c;
}

.hero__title--gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__description {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero__stats {
  display: flex;
  gap: 2rem;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #1a202c;
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero__ai-elements {
  position: relative;
  width: 400px;
  height: 400px;
}

.ai-element {
  position: absolute;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
  animation: float 6s ease-in-out infinite;
}

.ai-element--1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.ai-element--2 {
  top: 10%;
  right: 20%;
  animation-delay: 1.5s;
}

.ai-element--3 {
  bottom: 30%;
  left: 20%;
  animation-delay: 3s;
}

.ai-element--4 {
  bottom: 10%;
  right: 10%;
  animation-delay: 4.5s;
}

.hero__quote {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}

.hero__quote blockquote {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  border-radius: 16px;
  font-style: italic;
  color: #475569;
  border: 1px solid rgba(102, 126, 234, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-down {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid #667eea;
  border-radius: 50%;
  color: #667eea;
  text-decoration: none;
  animation: bounce 2s infinite;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header__badge {
  display: inline-block;
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.section-header__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-header__description {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 6rem 0;
  background: white;
}

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

.about__text p {
  font-size: 1.125rem;
  color: #475569;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

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

.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.125rem;
}

.feature__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 0.25rem;
}

.feature__description {
  color: #64748b;
  font-size: 0.95rem;
}

.about__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__principles {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.principle-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.principle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: rgba(102, 126, 234, 0.2);
}

.principle-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.125rem;
}

.principle-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.principle-description {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===== AGENTIC AI EDUCATION SECTION ===== */
.agentic-ai-education {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.agentic-ai__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.agentic-ai__definition {
  margin-bottom: 3rem;
}

.agentic-ai__definition h3,
.agentic-ai__capabilities h3,
.agentic-ai__comparison h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 1.5rem;
}

.agentic-ai__definition p {
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.7;
}

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

.capability-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.capability-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.125rem;
}

.capability-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.capability-content p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

.agentic-ai__video {
  position: sticky;
  top: 2rem;
}

.video-container {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-caption {
  padding: 1.5rem;
  text-align: center;
}

.video-caption h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.video-caption p {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.95rem;
}

.video-placeholder-demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border: 2px dashed #cbd5e0;
  border-radius: 8px;
}

.video-placeholder-demo i {
  font-size: 3rem;
  color: #667eea;
  margin-bottom: 1rem;
}

.video-placeholder-demo h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.video-placeholder-demo p {
  color: #64748b;
  margin-bottom: 1rem;
}

.conversion-note {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
}

.agentic-ai__comparison {
  margin-top: 4rem;
}

.comparison-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.comparison-row:first-child {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.comparison-row:not(:first-child):nth-child(even) {
  background: #f8fafc;
}

.comparison-header,
.comparison-cell {
  padding: 1rem 1.5rem;
  text-align: left;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-row:first-child .comparison-header:last-child,
.comparison-row:not(:first-child) .comparison-cell:last-child {
  border-right: none;
}

.comparison-header {
  font-weight: 600;
  font-size: 1rem;
}

.comparison-cell {
  font-size: 0.95rem;
  color: #475569;
  border-right: 1px solid #e2e8f0;
}

.comparison-cell strong {
  color: #1a202c;
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: 6rem 0;
  background: #f8fafc;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-card__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 1rem;
}

.service-card__description {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.service-feature {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.service-card__number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}

/* ===== INSIGHTS SECTION ===== */
.insights {
  padding: 6rem 0;
  background: white;
}

.insights__tabs {
  max-width: 1000px;
  margin: 0 auto;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-button {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  color: #64748b;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-button--active,
.tab-button:hover {
  background: #667eea;
  border-color: #667eea;
  color: white;
}

.tab-content {
  display: none;
}

.tab-content--active {
  display: block;
}

.insights__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.insight-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.insight-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.insight-card__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.125rem;
}

.insight-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a202c;
}

.insight-card__description {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.insight-card__stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.stat {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.insight-card__source {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.insight-card__source a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.insight-card__source a:hover {
  color: #667eea;
}

.insight-card__source a::after {
  content: '↗';
  font-size: 0.75rem;
  opacity: 0.7;
}

/* ===== TEAM SECTION ===== */
.team {
  padding: 6rem 0;
  background: #f8fafc;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.team-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-card__image {
  margin-bottom: 1.5rem;
}

.team-card__avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  margin: 0 auto;
}

.team-card__name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.team-card__role {
  color: #667eea;
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.team-card__bio {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.team-card__social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}

.team__note {
  margin-top: 3rem;
  text-align: center;
}

.team__note-content {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.team__note-content i {
  font-size: 1.25rem;
}

/* ===== CTA SECTION ===== */
.cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta__content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta__description {
  font-size: 1.125rem;
  opacity: 0.9;
  line-height: 1.6;
}

.cta__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}

.cta__actions .btn--primary {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta__actions .btn--primary:hover {
  background: white;
  color: #667eea;
}

.cta__actions .btn--outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.cta__actions .btn--outline:hover {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
}

.cta__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.cta__particles {
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white"/><circle cx="80" cy="40" r="1.5" fill="white"/><circle cx="40" cy="80" r="1" fill="white"/><circle cx="90" cy="20" r="1" fill="white"/><circle cx="10" cy="90" r="1.5" fill="white"/></svg>');
  animation: float 20s ease-in-out infinite;
}

/* ===== CAREERS PAGES ===== */

/* Careers Hero Section */
.careers-hero {
  padding: 8em 2em 6em;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  color: white;
  position: relative;
  overflow: hidden;
}

.careers-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.careers-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.careers-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.careers-hero__title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.careers-hero__title--gradient {
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.careers-hero__description {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0.95;
}

.careers-hero__stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.careers-hero__stat {
  text-align: center;
}

.careers-hero__stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.careers-hero__stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Job Listings Section */
.job-listings {
  padding: 5em 2em;
  background: #f8fafc;
}

.job-listings__header {
  text-align: center;
  margin-bottom: 4rem;
}

.job-listings__title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.job-listings__subtitle {
  font-size: 1.2rem;
  color: #64748b;
}

.job-listings__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Job Cards */
.job-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.job-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.job-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.job-card__icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.job-card__icon--large {
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.job-card__meta {
  text-align: right;
  font-size: 0.875rem;
  color: #64748b;
}

.job-card__department {
  display: block;
  font-weight: 500;
  color: #667eea;
}

.job-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.job-card__description {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.job-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.job-card__tag {
  padding: 0.25rem 0.75rem;
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.job-card__details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.job-card__detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #64748b;
}

.job-card__detail i {
  color: #667eea;
}

.job-card__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.job-card--coming-soon {
  text-align: center;
  border: 2px dashed #e2e8f0;
  background: #f8fafc;
}

.job-card--coming-soon::before {
  display: none;
}

/* Job Detail Pages */
.job-detail-hero {
  padding: 8em 2em 4em;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
}

.job-detail-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.breadcrumb-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.breadcrumb-current {
  color: white;
  font-weight: 500;
}

.job-detail-hero__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.job-detail-hero__icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  backdrop-filter: blur(10px);
}

.job-detail-hero__meta {
  text-align: right;
  font-size: 0.9rem;
  opacity: 0.9;
}

.job-detail-hero__department {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.job-detail-hero__title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.job-detail-hero__description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.job-detail-hero__details {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.job-detail-hero__detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.job-detail-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Job Detail Content */
.job-detail-content {
  padding: 5em 2em;
  background: white;
}

.job-detail-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.job-detail-main {
  max-width: none;
}

.job-detail-sidebar {
  position: sticky;
  top: 2rem;
  height: fit-content;
}

.job-sidebar-card {
  background: #f8fafc;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid #e2e8f0;
}

.job-sidebar-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.job-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.job-summary-item:last-child {
  border-bottom: none;
}

.job-summary-item strong {
  color: #1e293b;
  font-weight: 500;
}

.job-summary-item span {
  color: #64748b;
}

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

.skill-tag {
  padding: 0.5rem 1rem;
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.share-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  background: white;
  color: #64748b;
  cursor: pointer;
}

.share-btn:hover {
  background: #f1f5f9;
  color: #1e293b;
}

.share-btn--linkedin:hover {
  background: #0077b5;
  color: white;
  border-color: #0077b5;
}

.share-btn--email:hover {
  background: #667eea;
  color: white;
  border-color: #667eea;
}

/* Why Join Us Section */
.why-join-us {
  padding: 5em 2em;
  background: white;
}

.why-join-us__header {
  text-align: center;
  margin-bottom: 4rem;
}

.why-join-us__title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.why-join-us__subtitle {
  font-size: 1.2rem;
  color: #64748b;
}

.why-join-us__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}

.benefit-card__title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.benefit-card__description {
  color: #64748b;
  line-height: 1.6;
}

/* Ready to Apply Section */
.ready-to-apply {
  padding: 5em 2em;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.ready-to-apply::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.ready-to-apply__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.ready-to-apply__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.ready-to-apply__description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0.95;
}

.ready-to-apply__steps {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: left;
}

.ready-to-apply__steps-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
  text-align: center;
}

.ready-to-apply__list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step-counter;
}

.ready-to-apply__list li {
  counter-increment: step-counter;
  padding: 1rem 0;
  padding-left: 3rem;
  position: relative;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ready-to-apply__list li:last-child {
  border-bottom: none;
}

.ready-to-apply__list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 1rem;
  width: 2rem;
  height: 2rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.ready-to-apply__action {
  text-align: center;
}

.ready-to-apply__action .btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  color: white;
  font-weight: 600;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ready-to-apply__action .btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Ready to Apply */
@media screen and (max-width: 768px) {
  .ready-to-apply {
    padding: 3em 1em;
  }
  
  .ready-to-apply__title {
    font-size: 2rem;
  }
  
  .ready-to-apply__steps {
    padding: 2rem 1.5rem;
  }
  
  .ready-to-apply__list li {
    padding-left: 2.5rem;
  }
  
  .ready-to-apply__list li::before {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 480px) {
  .ready-to-apply__title {
    font-size: 1.8rem;
  }
  
  .ready-to-apply__description {
    font-size: 1rem;
  }
  
  .ready-to-apply__steps {
    padding: 1.5rem 1rem;
  }
}

/* Related Jobs Section */
.related-jobs {
  padding: 4em 2em;
  background: #f8fafc;
}

.related-jobs__title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: 2rem;
}

.related-jobs__content {
  max-width: 600px;
  margin: 0 auto 3rem;
}

.related-job-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 2px dashed #e2e8f0;
}

.related-job-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.related-job-card p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.back-to-careers {
  text-align: center;
}

/* Active navigation state */
.nav__link--active {
  color: #667eea !important;
  font-weight: 600;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .job-detail-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .job-detail-sidebar {
    position: static;
  }
}

@media screen and (max-width: 768px) {
  .careers-hero {
    padding: 6em 1em 4em;
  }
  
  .careers-hero__title {
    font-size: 2.5rem;
  }
  
  .careers-hero__stats {
    gap: 2rem;
  }
  
  .job-listings {
    padding: 3em 1em;
  }
  
  .job-listings__grid {
    grid-template-columns: 1fr;
  }
  
  .job-card {
    padding: 2rem 1.5rem;
  }
  
  .job-card__actions {
    flex-direction: column;
  }
  
  .job-card__actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .job-detail-hero {
    padding: 6em 1em 3em;
  }
  
  .job-detail-hero__title {
    font-size: 2rem;
  }
  
  .job-detail-hero__details {
    flex-direction: column;
    gap: 1rem;
  }
  
  .job-detail-hero__actions {
    flex-direction: column;
  }
  
  .job-detail-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .job-detail-content {
    padding: 3em 1em;
  }
  
  .why-join-us {
    padding: 3em 1em;
  }
  
  .why-join-us__grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 480px) {
  .careers-hero__title {
    font-size: 2rem;
  }
  
  .job-detail-hero__breadcrumb {
    flex-wrap: wrap;
  }
  
  .job-sidebar-card {
    padding: 1.5rem;
  }
}

/* Legacy Careers Section (keeping for compatibility) */
.careers {
  padding: 5em 2em;
  background: #fff;
  position: relative;
}

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

.careers__title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  position: relative;
}

.careers__title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

.careers__subtitle {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.careers__content {
  max-width: 900px;
  margin: 0 auto;
}

.job-posting {
  background: #fff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.job-posting::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.job-posting__header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.job-posting__title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.job-posting__meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.job-posting__type,
.job-posting__location,
.job-posting__level {
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 500;
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.job-section {
  margin-bottom: 2.5rem;
}

.job-section h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1rem;
}

.job-section h4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

.job-section p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

.job-list li {
  padding: 0.75rem 0;
  color: #64748b;
  line-height: 1.6;
  position: relative;
  padding-left: 1.5rem;
  border-bottom: 1px solid #f1f5f9;
}

.job-list li:last-child {
  border-bottom: none;
}

.job-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: 600;
}

.job-list li strong {
  color: #1e293b;
  font-weight: 600;
}

.job-posting__actions {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.job-posting__actions .btn {
  min-width: 160px;
  justify-content: center;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .careers {
    padding: 3em 1em;
  }
  
  .careers__title {
    font-size: 2rem;
  }
  
  .job-posting {
    padding: 2rem 1.5rem;
  }
  
  .job-posting__title {
    font-size: 1.5rem;
  }
  
  .job-posting__meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .job-posting__type,
  .job-posting__location,
  .job-posting__level {
    text-align: center;
  }
  
  .job-posting__actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .job-posting__actions .btn {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .job-section h4 {
    font-size: 1.1rem;
  }
  
  .job-list li {
    padding-left: 1rem;
    font-size: 0.9rem;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #1a202c;
  color: white;
  padding: 4rem 0 2rem;
}

.footer__content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer__brand {
  max-width: 400px;
}

.footer__logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer__logo-image {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
  display: block;
  max-width: 200px;
}

.footer__logo-image:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.footer__description {
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

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

.footer__column-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.footer__list {
  list-style: none;
}

.footer__list li {
  margin-bottom: 0.5rem;
}

.footer__link {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: #667eea;
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid #334155;
  text-align: center;
}

.footer__copyright {
  color: #94a3b8;
  font-size: 0.875rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero__title {
    font-size: 3rem;
  }
  
  .about__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .cta__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .cta__actions {
    flex-direction: row;
    justify-content: center;
  }
  
  .footer__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .nav__menu.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav__list {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav__link--cta {
    margin-left: 0;
  }
  
  .nav__toggle {
    display: block;
  }
  
  .hero {
    padding: 6rem 0 3rem;
    min-height: auto;
  }
  
  .hero__title {
    font-size: 2.5rem;
  }
  
  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero__stats {
    justify-content: center;
  }
  
  .hero__ai-elements {
    width: 300px;
    height: 300px;
  }
  
  .section-header__title {
    font-size: 2.25rem;
  }
  
  .services__grid {
    grid-template-columns: 1fr;
  }
  
  .team__grid {
    grid-template-columns: 1fr;
  }
  
  .insights__grid {
    grid-template-columns: 1fr;
  }
  
  .tab-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta__title {
    font-size: 2rem;
  }
  
  .cta__actions {
    flex-direction: column;
  }
  
  .footer__links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .agentic-ai__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .capabilities-grid {
    grid-template-columns: 1fr;
  }
  
  .comparison-table {
    font-size: 0.875rem;
  }
  
  .comparison-header,
  .comparison-cell {
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero__title {
    font-size: 2rem;
  }
  
  .hero__ai-elements {
    width: 250px;
    height: 250px;
  }
  
  .ai-element {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }
  
  .service-card,
  .team-card {
    padding: 2rem;
  }
  
  .section-header__title {
    font-size: 2rem;
  }
}

/* ===== FOUNDER MODE PAGE STYLES ===== */
.founder-mode-principles {
  padding: 6rem 0;
  background: white;
}

.founder-mode-content {
  max-width: 1200px;
  margin: 0 auto;
}

.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.principles-column {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.principle-section {
  background: #f8fafc;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
}

.principle-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #667eea;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #667eea;
}

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

.principle-item p {
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.founder-mode-mindset {
  margin-top: 3rem;
}

.mindset-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

.mindset-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.mindset-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.mindset-content p {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.mindset-content em {
  font-style: italic;
  font-weight: 600;
  opacity: 1;
}

/* Everyone in Founder Mode Section */
.everyone-founder-mode {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.everyone-founder-content {
  max-width: 1200px;
  margin: 0 auto;
}

.founder-mode-benefits {
  margin-bottom: 4rem;
}

.founder-mode-benefits h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 2rem;
  text-align: center;
}

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

.benefit-item {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.benefit-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.benefit-content p {
  color: #64748b;
  line-height: 1.6;
}

.implementation-guide {
  margin-bottom: 4rem;
}

.implementation-guide h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 2rem;
  text-align: center;
}

.implementation-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step-item {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
}

.step-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: #64748b;
  line-height: 1.6;
}

.founder-mode-warning {
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 16px;
  padding: 2rem;
}

.warning-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.warning-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.warning-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 1rem;
}

.warning-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.warning-content p:last-child {
  margin-bottom: 0;
}

/* Founder Mode in Practice Section */
.founder-mode-practice {
  padding: 6rem 0;
  background: white;
}

.practice-examples {
  max-width: 1000px;
  margin: 0 auto;
}

.example-scenarios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.scenario-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
}

.scenario-card--founder {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-color: rgba(102, 126, 234, 0.3);
}

.scenario-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 1.5rem;
}

.scenario-card--founder h4 {
  color: #667eea;
}

.scenario-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.scenario-card li {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.scenario-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #94a3b8;
  font-weight: bold;
}

.scenario-card--founder li::before {
  color: #667eea;
}

/* Responsive Design for Founder Mode */
@media (max-width: 1024px) {
  .principles-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .example-scenarios {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .founder-mode-principles,
  .everyone-founder-mode,
  .founder-mode-practice {
    padding: 4rem 0;
  }
  
  .mindset-card {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .step-item {
    flex-direction: column;
    gap: 1rem;
  }
  
  .warning-card {
    flex-direction: column;
    gap: 1rem;
  }
  
  .founder-mode-benefits h3,
  .implementation-guide h3 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .principle-section,
  .benefit-item,
  .step-item {
    padding: 1.5rem;
  }
  
  .mindset-card {
    padding: 2rem;
  }
  
  .founder-mode-benefits h3,
  .implementation-guide h3 {
    font-size: 1.5rem;
  }
}

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

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