/* Ultra-Premium Design System — fonts via shared-nav.css */

:root {
  --primary: #6366f1;
  --secondary: #8b5cf6;
  --accent: #ec4899;
  --cyan: #06b6d4;

  --bg: #000000;
  --bg-secondary: #0a0a0a;
  --bg-tertiary: #141414;

  --text: #ffffff;
  --text-secondary: #a1a1aa;
  --text-tertiary: #71717a;

  --border: rgba(255, 255, 255, 0.1);
  --glow: rgba(99, 102, 241, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

h1,
h2,
h3 {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
}

/* Custom Cursor */
.cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.2s ease;
  mix-blend-mode: difference;
}

.cursor-follower {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10001;
  transition: transform 0.15s ease;
}

/* Particles Canvas */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.4;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0rem 0;
  backdrop-filter: blur(20px);
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-cube {
  width: 32px;
  height: 32px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateCube 10s infinite linear;
}

@keyframes rotateCube {
  from {
    transform: rotateX(0deg) rotateY(0deg);
  }
  to {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

.cube-face {
  position: absolute;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.8;
}

.front {
  transform: translateZ(16px);
}
.back {
  transform: rotateY(180deg) translateZ(16px);
}
.left {
  transform: rotateY(-90deg) translateZ(16px);
}
.right {
  transform: rotateY(90deg) translateZ(16px);
}
.top {
  transform: rotateX(90deg) translateZ(16px);
}
.bottom {
  transform: rotateX(-90deg) translateZ(16px);
}

.logo-text {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-button,
.cta-primary,
.cta-button {
  position: relative;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s;
}

.button-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0%,
  100% {
    transform: translateX(-100%) rotate(45deg);
  }
  50% {
    transform: translateX(100%) rotate(45deg);
  }
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 10rem 4rem 4rem;
  position: relative;
}

.hero-container {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 3rem;
}

.badge-icon {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.floating {
  animation: floating 3s ease-in-out infinite;
}

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

.hero-title {
  font-size: 6rem;
  line-height: 1;
  margin-bottom: 2rem;
  letter-spacing: -3px;
}

.title-line {
  display: block;
  animation: fadeInUp 0.8s ease-out backwards;
}

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

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

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

.gradient-text {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--secondary) 50%,
    var(--accent) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientFlow 5s ease infinite;
}

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

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.cta-primary,
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
}

.cta-primary:hover,
.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.4);
}

.cta-secondary {
  padding: 1.25rem 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.hero-metrics {
  display: flex;
  gap: 3rem;
  animation: fadeInUp 0.8s ease-out 1s backwards;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.metric-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-number::after {
  content: "%";
  font-size: 2rem;
}

.metric-number:nth-child(2)::after,
.metric-number:nth-child(3)::after {
  content: "+";
}

.metric-label {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.metric-divider {
  width: 1px;
  background: var(--border);
}

/* Visual Grid */
.visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.grid-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--glow), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.grid-card:hover .card-glow {
  opacity: 1;
}

.tilt-card {
  transform-style: preserve-3d;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.card-content h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.card-metric {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.metric-value {
  font-size: 2rem;
  font-weight: 700;
}

.metric-trend {
  color: #10b981;
  font-weight: 600;
}

.mini-chart {
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
  height: 60px;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  border-radius: 4px;
  animation: barGrow 1s ease-out backwards;
}

@keyframes barGrow {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

.speed-meter {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  overflow: hidden;
  margin: 1rem 0;
}

.meter-fill {
  width: 85%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  animation: fillMeter 2s ease-out;
}

@keyframes fillMeter {
  from {
    width: 0;
  }
}

.status-dot {
  width: 12px;
  height: 12px;
  background: #10b981;
  border-radius: 50%;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin: 1rem 0;
}

.system-item {
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  position: relative;
}

.system-item.active::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 4px;
}

.data-visual {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
}

.data-line {
  height: 4px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: 2px;
  animation: dataFlow 2s infinite;
}

.data-line:nth-child(2) {
  animation-delay: 0.3s;
}

.data-line:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes dataFlow {
  0%,
  100% {
    width: 30%;
  }
  50% {
    width: 90%;
  }
}

.card-stat {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.scroll-indicator {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--text-tertiary);
  font-size: 0.875rem;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--primary), transparent);
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    transform: translateY(20px);
    opacity: 1;
  }
}

/* Services */
.services {
  padding: 8rem 4rem;
  position: relative;
}

.services-container {
  max-width: 1600px;
  margin: 0 auto;
}

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

.section-badge {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.section-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.bento-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-card.medium {
  grid-column: span 2;
}

.bento-card.small {
  grid-column: span 1;
}

.bento-card {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.5);
}

.card-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(99, 102, 241, 0.1),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s;
}

.bento-card:hover .card-bg {
  opacity: 1;
}

.bento-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.gradient-1 {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.gradient-2 {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.gradient-3 {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.gradient-4 {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.bento-content h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.bento-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tech-stack span {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* CTA */
.cta {
  padding: 4rem;
}

.cta-container {
  max-width: 1400px;
  margin: 0 auto;
}

.cta-card {
  padding: 6rem 4rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.cta-content h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-content p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-visual {
  position: absolute;
  inset: 0;
}

.visual-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.orb-1 {
  top: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary), transparent);
}

.orb-2 {
  bottom: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--secondary), transparent);
}

.orb-3 {
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent), transparent);
}

/* Footer */
.footer {
  padding: 6rem 4rem 3rem;
  border-top: 1px solid var(--border);
}

.footer-container {
  max-width: 1600px;
  margin: 0 auto;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo span {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.footer-section h4 {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.footer-section a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  color: var(--text-tertiary);
  font-size: 0.875rem;
}

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

.footer-links a {
  color: var(--text-tertiary);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary);
}

/* Magnetic Effect */
.magnetic {
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive */
@media (max-width: 1400px) {
  .hero-title {
    font-size: 5rem;
  }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-card.large,
  .bento-card.medium,
  .bento-card.small {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 4rem;
  }
  .section-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  body {
    cursor: auto;
  }
  .cursor,
  .cursor-follower {
    display: none;
  }
  .hero-title {
    font-size: 3rem;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ABOUT PAGE STYLES ===== */

/* Page Hero */
.page-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12rem 4rem 6rem;
  text-align: center;
}

.page-hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-title {
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* Mission & Vision */
.mission-vision {
  padding: 4rem 4rem 8rem;
}

.mv-container {
  max-width: 1400px;
  margin: 0 auto;
}

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

.mv-card {
  padding: 4rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mv-card:hover {
  transform: translateY(-12px);
  border-color: rgba(99, 102, 241, 0.5);
}

.mv-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
}

.mv-card h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.mv-card p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.card-highlight {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

/* Story Section */
.story-section {
  padding: 8rem 4rem;
}

.story-container {
  max-width: 1400px;
  margin: 0 auto;
}

.story-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  margin-top: 4rem;
}

.story-main {
  padding: 4rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.story-text h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.story-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

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

.timeline-item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.timeline-item:hover {
  transform: translateX(12px);
  border-color: rgba(99, 102, 241, 0.5);
}

.timeline-year {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.timeline-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

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

/* Values Section */
.values-section {
  padding: 8rem 4rem;
}

.values-container {
  max-width: 1600px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.value-card {
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.value-card:hover {
  transform: translateY(-12px);
  border-color: rgba(99, 102, 241, 0.5);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Team Section */
.team-section {
  padding: 8rem 4rem;
}

.team-container {
  max-width: 1600px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.team-card {
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.team-card:hover {
  transform: translateY(-12px);
  border-color: rgba(99, 102, 241, 0.5);
}

.team-avatar {
  margin-bottom: 2rem;
}

.avatar-circle {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: white;
}

.team-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

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

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

.team-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.team-expertise span {
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Stats Banner */
.stats-banner {
  padding: 6rem 4rem;
  background: rgba(99, 102, 241, 0.05);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.stats-banner .stat-number::after {
  content: "+";
}

.stats-banner .stat-item:first-child .stat-number::after {
  content: "%";
}

/* Responsive About Page */
@media (max-width: 1400px) {
  .values-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .story-content {
    grid-template-columns: 1fr;
  }

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

  .page-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 2.5rem;
  }

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

  .stats-container {
    flex-direction: column;
    gap: 3rem;
  }

  .stat-divider {
    width: 100%;
    height: 1px;
  }
}

/* ===== SERVICES PAGE STYLES ===== */

/* Service Detail Sections */
.service-detail {
  padding: 8rem 4rem;
  position: relative;
}

.service-detail.alt {
  background: rgba(255, 255, 255, 0.01);
}

.service-container {
  max-width: 1600px;
  margin: 0 auto;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
}

.service-grid.reverse {
  grid-template-columns: 1fr 1.2fr;
}

.service-badge {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.service-content h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.service-intro {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.service-features h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text);
}

.features-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

.feature-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.feature-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.tech-showcase h4 {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.tech-list span {
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.tech-list span:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.3);
  color: var(--text);
}

/* Visual Cards */
.visual-card {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.visual-header {
  margin-bottom: 2rem;
}

.visual-header h4 {
  font-size: 1.25rem;
  color: var(--text);
}

/* Metrics Display */
.metrics-display {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.metric-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.metric-label {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.metric-bar {
  width: 100%;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 1rem;
  font-weight: 700;
  color: white;
  animation: fillMetric 2s ease-out;
}

@keyframes fillMetric {
  from {
    width: 0;
  }
}

.impact-stat {
  text-align: center;
  padding: 2rem;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.impact-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.impact-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Pipeline Flow */
.pipeline-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 3rem;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  transition: all 0.3s;
}

.flow-step.active {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.step-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--border);
}

.flow-step.active .step-dot {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.flow-line {
  width: 2px;
  height: 20px;
  background: var(--border);
  margin-left: 2.5rem;
}

.data-volume {
  text-align: center;
  padding: 2rem;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.volume-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.volume-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Architecture Diagram */
.architecture-diagram {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
}

.arch-layer {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
}

.arch-layer.multi {
  gap: 0.75rem;
}

.arch-node {
  padding: 1.25rem 2rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 12px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}

.arch-node.small {
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
}

.arch-connection {
  width: 2px;
  height: 30px;
  background: linear-gradient(
    180deg,
    rgba(139, 92, 246, 0.5),
    rgba(139, 92, 246, 0.2)
  );
  margin: 0 auto;
}

/* Growth Chart */
.growth-chart {
  margin-bottom: 2rem;
}

.chart-line {
  padding: 1rem;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 16px;
}

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

.growth-stat {
  text-align: center;
  padding: 1.5rem;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.growth-stat .stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.growth-stat .stat-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* Process Section */
.process-section {
  padding: 8rem 4rem;
  background: rgba(255, 255, 255, 0.01);
}

.process-container {
  max-width: 1600px;
  margin: 0 auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.process-card {
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.process-card:hover {
  transform: translateY(-12px);
  border-color: rgba(99, 102, 241, 0.5);
}

.process-number {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.process-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.process-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Responsive Services */
@media (max-width: 1400px) {
  .service-grid,
  .service-grid.reverse {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .service-content h2 {
    font-size: 2.5rem;
  }

  .features-grid {
    gap: 1.5rem;
  }

  .feature-item {
    flex-direction: column;
    gap: 1rem;
  }

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

  .growth-stats {
    grid-template-columns: 1fr;
  }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Main */
.contact-main {
  padding: 4rem 4rem 8rem;
}

.contact-container {
  max-width: 1600px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
}

/* Contact Form */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 4rem;
}

.form-header {
  margin-bottom: 3rem;
}

.form-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.form-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

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

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

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

.form-group label {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-submit {
  margin-top: 1rem;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.4);
}

.form-message {
  padding: 1.25rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 500;
  display: none;
}

.form-message.success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
  display: block;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
  display: block;
}

/* Contact Info */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.info-card {
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.info-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.5);
}

.info-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.info-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-details a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.info-details a:hover {
  color: var(--primary);
}

.info-details p {
  color: var(--text-tertiary);
  font-size: 0.9rem;
}

/* Social Card */
.social-card {
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.social-card h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.social-link:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.3);
  color: var(--text);
  transform: translateX(8px);
}

.social-link svg {
  flex-shrink: 0;
}

/* FAQ Section */
.faq-section {
  padding: 8rem 4rem;
  background: rgba(255, 255, 255, 0.01);
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item.active {
  border-color: rgba(99, 102, 241, 0.5);
}

.faq-question {
  padding: 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  user-select: none;
}

.faq-question h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
}

.faq-toggle {
  width: 32px;
  height: 32px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  transition: all 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer p {
  padding: 0 2rem 2rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Responsive Contact */
@media (max-width: 1200px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .info-cards {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 2.5rem 2rem;
  }

  .form-header h2 {
    font-size: 2rem;
  }
}
