/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #130a24;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 1200px;
}

/* Logo Styles */
.logo-wrapper {
  margin-bottom: 60px;
  animation: fadeInDown 1s ease-out;
}

.logo {
  width: 100%;
  max-width: 500px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(41, 122, 255, 0.3));
  animation: float 3s ease-in-out infinite;
}

/* Hero Title */
.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}

.title-line {
  display: block;
  animation: fadeInUp 1s ease-out backwards;
}

.title-line:nth-child(1) {
  animation-delay: 0.2s;
}

.title-line:nth-child(2) {
  animation-delay: 0.4s;
}

.title-line:nth-child(3) {
  animation-delay: 0.6s;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite, fadeInUp 1s ease-out backwards;
  animation-delay: 0s, 0.4s;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.8s backwards;
}

/* Floating Orbs */
.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: floatOrb 8s ease-in-out infinite;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #f093fb, #f5576c);
  bottom: 15%;
  right: 10%;
  animation-delay: 2s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 4s;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@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 floatOrb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo-wrapper {
    margin-bottom: 40px;
  }

  .logo {
    max-width: 350px;
  }

  .hero-title {
    margin-bottom: 20px;
  }

  .floating-orb {
    filter: blur(40px);
  }

  .orb-1 {
    width: 200px;
    height: 200px;
  }

  .orb-2 {
    width: 250px;
    height: 250px;
  }

  .orb-3 {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 480px) {
  .logo {
    max-width: 280px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }
}

/* ========================================
   CLIENTS SECTION
   ======================================== */
.clients-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, #130a24 0%, #1a0f2e 100%);
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  color: white;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-bottom: 80px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Clients Grid */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.clients-grid .client-card:nth-child(4) {
  grid-column: 1 / 2;
  margin-left: auto;
  margin-right: 0;
}

.clients-grid .client-card:nth-child(5) {
  grid-column: 3 / 4;
  margin-left: 0;
  margin-right: auto;
}

.client-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUpCard 0.6s ease-out forwards;
}

.client-card:nth-child(1) {
  animation-delay: 0.1s;
}
.client-card:nth-child(2) {
  animation-delay: 0.2s;
}
.client-card:nth-child(3) {
  animation-delay: 0.3s;
}
.client-card:nth-child(4) {
  animation-delay: 0.4s;
}
.client-card:nth-child(5) {
  animation-delay: 0.5s;
}

.client-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(102, 126, 234, 0.5);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.card-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 15px rgba(102, 126, 234, 0.4));
  transition: transform 0.3s ease;
}

.client-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 15px;
}

.card-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(102, 126, 234, 0.2) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.client-card:hover .card-glow {
  opacity: 1;
}

/* ========================================
   PROBLEMS SECTION
   ======================================== */
.problems-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, #1a0f2e 0%, #0f0818 100%);
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problems-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.problems-container .problem-card:nth-child(4) {
  grid-column: 1 / 2;
  margin-left: auto;
  margin-right: 0;
}

.problems-container .problem-card:nth-child(5) {
  grid-column: 3 / 4;
  margin-left: 0;
  margin-right: auto;
}

.problem-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUpCard 0.6s ease-out forwards;
}

.problem-card:nth-child(1) {
  animation-delay: 0.1s;
}
.problem-card:nth-child(2) {
  animation-delay: 0.2s;
}
.problem-card:nth-child(3) {
  animation-delay: 0.3s;
}
.problem-card:nth-child(4) {
  animation-delay: 0.4s;
}
.problem-card:nth-child(5) {
  animation-delay: 0.5s;
}

.problem-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 87, 108, 0.3);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 15px 40px rgba(245, 87, 108, 0.2);
}

.problem-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.problem-icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 3px 10px rgba(245, 87, 108, 0.3));
}

.problem-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
}

.problem-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.problem-bullet {
  font-size: 1.2rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.problem-content {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.problem-content strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

/* Additional Animations */
@keyframes fadeInUpCard {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
  .clients-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }

  .problems-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .why-toolbar-section,
  .solutions-section,
  .agents-models-section {
    padding: 80px 20px;
  }

  .section-subtitle {
    margin-bottom: 50px;
  }

  .clients-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .problem-card {
    padding: 25px 20px;
  }

  .card-icon {
    font-size: 3rem;
  }

  .problem-icon {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .problem-content {
    font-size: 0.9rem;
  }
}

/* ========================================
   WHY TOOLBAR AI SECTION
   ======================================== */
.why-toolbar-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, #0f0818 0%, #1a0f2e 100%);
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.why-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: scale(0.9);
  animation: scaleIn 0.6s ease-out forwards;
}

.why-card:nth-child(1) {
  animation-delay: 0.1s;
}
.why-card:nth-child(2) {
  animation-delay: 0.2s;
}
.why-card:nth-child(3) {
  animation-delay: 0.3s;
}
.why-card:nth-child(4) {
  animation-delay: 0.4s;
}

.why-card:hover {
  transform: translateY(-15px) scale(1.03);
  border-color: rgba(102, 126, 234, 0.6);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 25px 70px rgba(102, 126, 234, 0.4);
}

.why-icon {
  font-size: 4.5rem;
  margin-bottom: 25px;
  filter: drop-shadow(0 8px 20px rgba(102, 126, 234, 0.5));
  animation: bounce 2s ease-in-out infinite;
}

.why-card:hover .why-icon {
  animation: bounce 0.6s ease-in-out;
}

.why-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  margin-bottom: 15px;
  line-height: 1.4;
}

.why-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* ========================================
   SOLUTIONS SECTION
   ======================================== */
.solutions-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, #1a0f2e 0%, #130a24 100%);
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solutions-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 60px;
}

.solution-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 35px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInRight 0.7s ease-out forwards;
}

.solution-item:nth-child(1) {
  animation-delay: 0.1s;
}
.solution-item:nth-child(2) {
  animation-delay: 0.3s;
}
.solution-item:nth-child(3) {
  animation-delay: 0.5s;
}
.solution-item:nth-child(4) {
  animation-delay: 0.7s;
}

.solution-item:hover {
  transform: translateX(0) scale(1.02);
  border-color: rgba(102, 126, 234, 0.3);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.solution-problem,
.solution-answer {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.solution-icon {
  font-size: 3rem;
  filter: drop-shadow(0 5px 15px rgba(102, 126, 234, 0.4));
}

.solution-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
}

.solution-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.solution-list li {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  padding-left: 25px;
  position: relative;
}

.solution-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: rgba(102, 126, 234, 0.8);
  font-size: 1.2rem;
}

.solution-list li strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.solution-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s ease-in-out infinite;
}

.solution-arrow svg {
  filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.5));
}

/* ========================================
   AGENTS & MODELS SECTION
   ======================================== */
.agents-models-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, #130a24 0%, #0a0513 100%);
  padding: 100px 20px;
}

.agents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
  margin-bottom: 80px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.agents-grid .agent-card:nth-child(4) {
  grid-column: 1 / 2;
  margin-left: auto;
  margin-right: 0;
}

.agents-grid .agent-card:nth-child(5) {
  grid-column: 3 / 4;
  margin-left: 0;
  margin-right: auto;
}

.agent-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px 25px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px) rotateX(10deg);
  animation: flipIn 0.6s ease-out forwards;
}

.agent-card:nth-child(1) {
  animation-delay: 0.1s;
}
.agent-card:nth-child(2) {
  animation-delay: 0.2s;
}
.agent-card:nth-child(3) {
  animation-delay: 0.3s;
}
.agent-card:nth-child(4) {
  animation-delay: 0.4s;
}
.agent-card:nth-child(5) {
  animation-delay: 0.5s;
}

.agent-card:hover {
  transform: translateY(-10px) rotateX(0deg);
  border-color: rgba(102, 126, 234, 0.5);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.agent-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.agent-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 15px rgba(102, 126, 234, 0.4));
}

.agent-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 15px;
}

.agent-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 20px;
}

.agent-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-tag {
  background: rgba(102, 126, 234, 0.15);
  border: 1px solid rgba(102, 126, 234, 0.3);
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.feature-tag:hover {
  background: rgba(102, 126, 234, 0.25);
  border-color: rgba(102, 126, 234, 0.5);
  transform: translateY(-2px);
}

.models-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  color: white;
  margin: 80px 0 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.model-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.95);
  animation: scaleIn 0.5s ease-out forwards;
}

.model-card:nth-child(1) {
  animation-delay: 0.1s;
}
.model-card:nth-child(2) {
  animation-delay: 0.15s;
}
.model-card:nth-child(3) {
  animation-delay: 0.2s;
}
.model-card:nth-child(4) {
  animation-delay: 0.25s;
}
.model-card:nth-child(5) {
  animation-delay: 0.3s;
}
.model-card:nth-child(6) {
  animation-delay: 0.35s;
}
.model-card:nth-child(7) {
  animation-delay: 0.4s;
}
.model-card:nth-child(8) {
  animation-delay: 0.45s;
}

.model-card:hover {
  transform: translateY(-8px) scale(1);
  border-color: rgba(245, 87, 108, 0.3);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 15px 40px rgba(245, 87, 108, 0.2);
}

.model-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  filter: drop-shadow(0 3px 10px rgba(245, 87, 108, 0.3));
}

.model-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
}

.model-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* Additional Animations */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes flipIn {
  from {
    opacity: 0;
    transform: translateY(30px) rotateX(10deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

/* ========================================
   TEAM SECTION
   ======================================== */
.team-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, #0a0513 0%, #130a24 100%);
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
}

.team-card {
  position: relative;
  width: 100%;
  max-width: 350px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  animation: teamCardIn 0.6s ease-out forwards;
}

.team-card:nth-child(1) {
  animation-delay: 0.1s;
}
.team-card:nth-child(2) {
  animation-delay: 0.2s;
}
.team-card:nth-child(3) {
  animation-delay: 0.3s;
}
.team-card:nth-child(4) {
  animation-delay: 0.4s;
}
.team-card:nth-child(5) {
  animation-delay: 0.5s;
}
.team-card:nth-child(6) {
  animation-delay: 0.6s;
}

.team-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(102, 126, 234, 0.5);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.team-image-wrapper {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}

.team-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
  border: 3px solid rgba(102, 126, 234, 0.3);
}

.team-card:hover .team-image {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
  border-color: rgba(102, 126, 234, 0.6);
}

.team-image-placeholder {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.team-card:hover .team-image-placeholder {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.team-image-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  animation: shimmer 3s ease-in-out infinite;
}

.team-initial {
  font-size: 4rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.team-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.team-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  margin-bottom: 5px;
}

.team-role {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(102, 126, 234, 0.9);
  background: rgba(102, 126, 234, 0.15);
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  margin: 0 auto 8px;
}

.team-position {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Team Animations */
@keyframes teamCardIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-100%) rotate(45deg);
  }
  50% {
    transform: translateX(100%) rotate(45deg);
  }
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, #130a24 0%, #0a0513 100%);
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(102, 126, 234, 0.15) 0%,
    transparent 70%
  );
  animation: pulse 4s ease-in-out infinite;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

.cta-logo {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.cta-logo-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(102, 126, 234, 0.5));
  animation: float 3s ease-in-out infinite;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.3;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}

.cta-title .gradient-text {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

.cta-tagline {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  font-style: italic;
  margin-top: 20px;
  position: relative;
  display: inline-block;
}

.cta-tagline::before,
.cta-tagline::after {
  content: "✨";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  animation: sparkle 2s ease-in-out infinite;
}

.cta-tagline::before {
  left: -40px;
}

.cta-tagline::after {
  right: -40px;
  animation-delay: 1s;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
  }
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clients-grid .client-card:nth-child(4) {
    margin-left: 0;
  }

  .clients-grid .client-card:nth-child(5) {
    margin-right: 0;
    grid-column: 1 / -1;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
  }

  .problems-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .problems-container .problem-card:nth-child(4) {
    margin-left: 0;
  }

  .problems-container .problem-card:nth-child(5) {
    margin-right: 0;
    grid-column: 1 / -1;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
  }

  .solution-item {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .solution-arrow {
    transform: rotate(90deg);
  }

  .agents-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .agents-grid .agent-card:nth-child(4) {
    margin-left: 0;
  }

  .agents-grid .agent-card:nth-child(5) {
    margin-right: 0;
    grid-column: 1 / -1;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
  }

  .models-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-toolbar-section,
  .solutions-section,
  .agents-models-section {
    padding: 80px 20px;
  }

  .section-subtitle {
    margin-bottom: 50px;
  }

  .clients-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .clients-grid .client-card:nth-child(4),
  .clients-grid .client-card:nth-child(5) {
    margin-left: 0;
    margin-right: 0;
    grid-column: auto;
    max-width: 100%;
  }

  .problems-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .problems-container .problem-card:nth-child(4),
  .problems-container .problem-card:nth-child(5) {
    margin-left: 0;
    margin-right: 0;
    grid-column: auto;
    max-width: 100%;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .solution-item {
    padding: 25px 20px;
  }

  .solution-arrow svg {
    width: 40px;
    height: 40px;
  }

  .agents-grid,
  .models-grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .agents-grid .agent-card:nth-child(4),
  .agents-grid .agent-card:nth-child(5) {
    margin-left: 0;
    margin-right: 0;
    grid-column: auto;
    max-width: 100%;
  }

  .why-icon {
    font-size: 3.5rem;
  }

  .agent-icon,
  .model-icon {
    font-size: 2.5rem;
  }

  .team-image-placeholder {
    width: 120px;
    height: 120px;
  }

  .team-initial {
    font-size: 3rem;
  }

  .cta-logo-img {
    width: 120px;
  }

  .cta-tagline::before {
    left: -30px;
  }

  .cta-tagline::after {
    right: -30px;
  }
}

@media (max-width: 480px) {
  .why-title {
    font-size: 1.2rem;
  }

  .solution-title {
    font-size: 1.2rem;
  }

  .agent-title {
    font-size: 1.3rem;
  }

  .model-title {
    font-size: 1.1rem;
  }

  .solution-list li,
  .agent-description,
  .model-description {
    font-size: 0.9rem;
  }
}
