/* About Page Styles - Modern Minimalist Design */
.brand-text {
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}
/* Hero Section - Modern & Minimalist */
.about-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-bg);
  overflow: hidden;
}

.about-hero .video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.about-hero .video-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 2;
}

.about-hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1000px;
  padding: 0 clamp(1rem, 5vw, 3rem);
  margin: 0 auto;
}

/* Hero Badge - Minimalist Design */
.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out 0.2s forwards;
}

.badge-text {
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  font-weight: var(--font-weight-medium);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Modern Responsive Typography */
.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: clamp(1rem, 3vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: titleReveal 1s ease-out forwards;
}

.title-line:nth-child(1) {
  animation-delay: 0.4s;
}

.title-line:nth-child(2) {
  animation-delay: 0.6s;
}

.gradient-text {
  background: linear-gradient(
    135deg,
    #3b82f6 0%,
    #8b5cf6 25%,
    #06b6d4 50%,
    #10b981 75%,
    #f59e0b 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 6s ease-in-out infinite;
}

@keyframes gradientFlow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out 0.8s forwards;
}

/* Minimalist Visual Accent */
.hero-visual-accent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out 1s forwards;
}

.accent-line {
  width: clamp(2rem, 8vw, 4rem);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(59, 130, 246, 0.6) 50%,
    transparent 100%
  );
}

.accent-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

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

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

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out 0.9s forwards;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: var(--font-size-sm);
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
}

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

/* Main Content Sections */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  margin-bottom: 3rem;
  padding-bottom: 10px;
}

.section-header.centered {
  text-align: center;
}

.section-title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: var(--line-height-snug);
  letter-spacing: var(--letter-spacing-tight);
}

.section-description {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 600px;
}

.section-header.centered .section-description {
  margin: 0 auto;
}

/* Mission & Vision Section */
.mission-vision {
  background: linear-gradient(
    180deg,
    var(--dark-bg) 0%,
    var(--darker-bg) 50%,
    #1a1a1a 100%
  );
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.mission-vision::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(0, 102, 255, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(0, 204, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(0, 255, 136, 0.08) 0%,
      transparent 50%
    );
  animation: neonPulse 8s ease-in-out infinite;
  z-index: 1;
}

.mission-vision::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      45deg,
      transparent 30%,
      rgba(0, 102, 255, 0.03) 50%,
      transparent 70%
    ),
    linear-gradient(
      -45deg,
      transparent 30%,
      rgba(0, 255, 136, 0.02) 50%,
      transparent 70%
    );
  animation: neonSweep 12s linear infinite;
  z-index: 2;
}

@keyframes neonPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes neonSweep {
  0% {
    transform: translateX(-100%) rotate(0deg);
  }
  100% {
    transform: translateX(100%) rotate(360deg);
  }
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.mission-points {
  margin-top: 2rem;
}

.point-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.point-item:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 102, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 102, 255, 0.1), 0 10px 30px rgba(0, 0, 0, 0.2);
}

.point-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color-3)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.point-icon i {
  color: white;
  font-size: 1.2rem;
}

.point-content h3 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.point-content p {
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
}

.mission-visual {
  position: relative;
  height: 400px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.1) 0%,
    rgba(123, 90, 255, 0.1) 50%,
    rgba(0, 217, 255, 0.1) 100%
  );
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mission-video-container {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 10;
  border-radius: 20px;
  overflow: hidden;
}

.mission-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  z-index: 15;
  position: relative;
  transition: transform 0.3s ease;
}

.mission-video:hover {
  transform: scale(1.02);
}

.mission-video-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.05) 0%,
    rgba(123, 90, 255, 0.05) 50%,
    rgba(0, 217, 255, 0.05) 100%
  );
  z-index: 20;
  pointer-events: none;
  border-radius: 20px;
}

.mission-video-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid transparent;
  background: linear-gradient(
      135deg,
      var(--primary-color),
      var(--secondary-color)
    )
    border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: exclude;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  border-radius: 20px;
  z-index: 25;
  pointer-events: none;
}

.floating-elements {
  position: relative;
  width: 300px;
  height: 300px;
}

.element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.3),
    rgba(0, 217, 255, 0.2)
  );
  animation: float 6s ease-in-out infinite;
}

.element-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.element-2 {
  width: 120px;
  height: 120px;
  top: 50%;
  right: 20%;
  animation-delay: 2s;
}

.element-3 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 30%;
  animation-delay: 4s;
}

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

/* Technology Highlights Section */
.technology-highlights {
  background: rgba(255, 255, 255, 0.01);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tech-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 102, 255, 0.05), 0 0 40px rgba(0, 204, 255, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.tech-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 102, 255, 0.4);
  box-shadow: 0 0 30px rgba(0, 102, 255, 0.15), 0 0 60px rgba(0, 204, 255, 0.1),
    0 15px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.tech-card.featured {
  border-color: var(--primary-color);
  background: rgba(0, 102, 255, 0.05);
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(0, 102, 255, 0.2), 0 0 50px rgba(0, 204, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  animation: featuredGlow 3s ease-in-out infinite alternate;
}

.tech-card.featured:hover {
  transform: scale(1.02) translateY(-8px);
  box-shadow: 0 0 40px rgba(0, 102, 255, 0.3), 0 0 80px rgba(0, 204, 255, 0.15),
    0 20px 40px rgba(0, 102, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

@keyframes featuredGlow {
  0% {
    box-shadow: 0 0 25px rgba(0, 102, 255, 0.2), 0 0 50px rgba(0, 204, 255, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }
  100% {
    box-shadow: 0 0 35px rgba(0, 102, 255, 0.25),
      0 0 70px rgba(0, 204, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}

.tech-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color-3)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.tech-card:hover .tech-icon {
  transform: scale(1.1) rotateY(10deg);
  box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
}

.tech-icon i {
  color: white;
  font-size: 2rem;
}

.tech-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.tech-description {
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.5rem;
}

.tech-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.feature-tag {
  background: rgba(0, 102, 255, 0.1);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  border: 1px solid rgba(0, 102, 255, 0.2);
}

/* Team Section */
.team-culture {
  background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
  padding: 6rem 0;
  position: relative;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 102, 255, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

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

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 102, 255, 0.3);
  box-shadow: 0 0 30px rgba(0, 102, 255, 0.15), 0 15px 30px rgba(0, 0, 0, 0.3);
}

.team-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(0, 102, 255, 0.3);
  transition: all 0.3s ease;
}

.team-card:hover .team-image {
  border-color: rgba(0, 102, 255, 0.6);
  box-shadow: 0 0 20px rgba(0, 102, 255, 0.4);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-name {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-color);
  font-weight: var(--font-weight-medium);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  font-size: var(--font-size-sm);
}

.team-bio {
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.5rem;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

/* Timeline Section */
.milestones-timeline {
  background: rgba(255, 255, 255, 0.01);
  padding: 6rem 0;
  position: relative;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 3rem auto 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(0, 102, 255, 0.5),
    transparent
  );
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker {
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.2);
  transition: all 0.3s ease;
}

.timeline-marker.active {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color-3)
  );
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.3), 0 0 20px rgba(0, 102, 255, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.2);
  }
}

.timeline-content {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  width: calc(50% - 40px);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
  margin-left: 40px;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
  margin-right: 40px;
}

.timeline-content:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 102, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.timeline-date {
  color: var(--primary-color);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.timeline-description {
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
}

/* Testimonials Section */
.testimonials {
  background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(0, 102, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(0, 255, 136, 0.08) 0%,
      transparent 50%
    );
  animation: neonPulse 10s ease-in-out infinite;
  z-index: 1;
}

.testimonials-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 10;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--accent-color-3),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 102, 255, 0.3);
  box-shadow: 0 0 30px rgba(0, 102, 255, 0.15), 0 15px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-card.featured {
  border-color: rgba(0, 102, 255, 0.4);
  background: rgba(0, 102, 255, 0.03);
  box-shadow: 0 0 20px rgba(0, 102, 255, 0.1), 0 5px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
  font-size: var(--font-size-lg);
  color: var(--text-primary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  color: rgba(0, 102, 255, 0.3);
  position: absolute;
  top: -1rem;
  left: -1rem;
  font-family: serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(0, 102, 255, 0.3);
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.author-role {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}

/* Call to Action Section */
.cta-section {
  background: linear-gradient(135deg, var(--darker-bg) 0%, #1a1a1a 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 102, 255, 0.1) 0%,
    transparent 70%
  );
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: var(--line-height-snug);
}

.cta-description {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 3rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.btn-primary-large {
  background: linear-gradient(135deg, var(--primary-color), #0052cc);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-base);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border: 1px solid var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.btn-primary-large:hover {
  background: linear-gradient(135deg, #0052cc, #003d99);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

.btn-secondary-large {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-primary);
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-base);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
}

.feature-item i {
  color: var(--secondary-color);
  font-size: 0.8rem;
}

/* Responsive Design - Enhanced for Modern Layout */
@media (max-width: 1024px) {
  .about-hero {
    min-height: 90vh;
  }

  .about-hero-content {
    padding: 0 clamp(1rem, 4vw, 2rem);
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 4rem);
  }

  .hero-subtitle {
    font-size: clamp(0.9rem, 2.2vw, 1.1rem);
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 100vh;
  }

  .hero-badge {
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
  }

  .badge-text {
    font-size: clamp(0.7rem, 1.8vw, 0.8rem);
  }

  .hero-title {
    font-size: clamp(1.8rem, 6vw, 3rem);
    margin-bottom: clamp(0.8rem, 2.5vw, 1.5rem);
  }

  .hero-subtitle {
    font-size: clamp(0.85rem, 2vw, 1rem);
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  }

  .hero-visual-accent {
    gap: 0.75rem;
  }

  .accent-line {
    width: 0.75rem;
    height: 0.75rem;
  }

  .accent-dot {
    width: 6px;
    height: 6px;
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .mission-visual {
    height: 300px;
  }

  .mission-video-container {
    height: 100%;
  }

  .mission-video {
    border-radius: 15px;
  }

  .mission-video-container::before,
  .mission-video-container::after {
    border-radius: 15px;
  }

  .tech-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-marker {
    left: 20px;
    transform: translateX(-50%);
  }

  .timeline-item {
    flex-direction: row !important;
  }

  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
    margin-right: 0 !important;
  }

  .testimonials-carousel {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-features {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .about-hero {
    min-height: 100vh;
  }

  .about-hero-content {
    padding: 0 1rem;
  }

  .hero-badge {
    padding: 0.4rem 0.8rem;
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: clamp(0.8rem, 1.8vw, 0.95rem);
    line-height: 1.5;
  }

  .hero-visual-accent {
    gap: 0.5rem;
  }

  .accent-line {
    width: clamp(1rem, 5vw, 2rem);
  }

  .accent-dot {
    width: 5px;
    height: 5px;
  }

  .container {
    padding: 0 1rem;
  }

  .point-item {
    flex-direction: column;
    text-align: center;
  }

  .point-icon {
    margin: 0 auto 1rem;
  }

  .mission-visual {
    height: 250px;
  }

  .mission-video {
    border-radius: 12px;
  }

  .mission-video-container::before,
  .mission-video-container::after {
    border-radius: 12px;
  }

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

  .team-card {
    padding: 1.5rem;
  }

  .timeline-content {
    padding: 1.5rem;
  }

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