/* NexaMarks - Modern Design System */
:root {
  /* Modern Color Palette */
  --primary-color: #6366f1;
  --secondary-color: #8b5cf6;
  --accent-color: #06b6d4;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;

  /* Neutral Colors */
  --dark-900: #0f0f23;
  --dark-800: #1a1a2e;
  --dark-700: #16213e;
  --dark-600: #0f3460;
  --dark-500: #533483;

  --light-100: #ffffff;
  --light-200: #f8fafc;
  --light-300: #e2e8f0;
  --light-400: #cbd5e1;
  --light-500: #94a3b8;

  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #cbd5e1;
  --text-muted: #64748b;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  --gradient-accent: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --gradient-mesh: radial-gradient(
      ellipse 80% 80% at 50% -20%,
      rgba(99, 102, 241, 0.3),
      transparent
    ),
    radial-gradient(
      ellipse 80% 80% at 80% 60%,
      rgba(139, 92, 246, 0.3),
      transparent
    ),
    radial-gradient(
      ellipse 80% 80% at 20% 80%,
      rgba(6, 182, 212, 0.3),
      transparent
    );

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 50px rgba(99, 102, 241, 0.3);

  /* Typography */
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", monospace;

  /* Spacing */
  --section-padding: 120px 0;
  --container-padding: 0 2rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
}

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

body {
  font-family: var(--font-primary);
  background: var(--dark-900);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
}

/* Modern Navigation */
.modern-nav {
  background: rgba(15, 15, 35, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(99, 102, 241, 0.1);
  padding: 1rem 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-nav.scrolled {
  background: rgba(15, 15, 35, 0.95);
  box-shadow: var(--shadow-lg);
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-core {
  width: 16px;
  height: 16px;
  background: var(--gradient-primary);
  border-radius: 50%;
  position: relative;
  z-index: 3;
}

.icon-ring {
  position: absolute;
  border: 2px solid transparent;
  border-radius: 50%;
  background: linear-gradient(
      45deg,
      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: subtract;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: subtract;
}

.ring-1 {
  width: 28px;
  height: 28px;
  animation: rotate 8s linear infinite;
}

.ring-2 {
  width: 36px;
  height: 36px;
  animation: rotate 12s linear infinite reverse;
}

.brand-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modern-toggler {
  border: none;
  padding: 0.5rem;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.modern-toggler span {
  width: 25px;
  height: 2px;
  background: var(--primary-color);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.navbar-nav .nav-link {
  position: relative;
  padding: 0.75rem 1.5rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: var(--radius-lg);
}

.nav-dot {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 6px;
  height: 6px;
  background: var(--gradient-primary);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover .nav-dot,
.navbar-nav .nav-link.active .nav-dot {
  transform: translateX(-50%) scale(1);
}

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

.cta-nav {
  position: relative;
  background: var(--gradient-primary);
  border-radius: 50px;
  margin-left: 1rem;
  overflow: hidden;
}

.cta-nav .cta-text {
  position: relative;
  z-index: 2;
  color: var(--light-100);
  font-weight: 600;
}

.cta-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.cta-nav:hover .cta-shine {
  left: 100%;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: var(--section-padding);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark-900);
}

.mesh-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-mesh);
  opacity: 0.6;
}

.floating-orbs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0.1;
  animation: float 8s ease-in-out infinite;
  filter: blur(1px);
}

.orb-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 80px;
  height: 80px;
  top: 20%;
  right: 15%;
  animation-delay: 2s;
}

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

.orb-4 {
  width: 60px;
  height: 60px;
  bottom: 10%;
  right: 10%;
  animation-delay: 1s;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.badge-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.title-primary {
  display: block;
  color: var(--text-primary);
}

.title-accent {
  display: block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-secondary {
  display: block;
  color: var(--text-secondary);
  font-weight: 600;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.btn-primary-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gradient-primary);
  color: var(--light-100);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
  border: none;
  cursor: pointer;
}

.btn-primary-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(99, 102, 241, 0.4);
  color: var(--light-100);
}

.btn-secondary-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  padding: 1rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-secondary-modern:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.btn-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-mono);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
}

.dashboard-mockup {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-xl);
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-controls {
  display: flex;
  gap: 0.5rem;
}

.control-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.control-dot.red {
  background: #ef4444;
}

.control-dot.yellow {
  background: #f59e0b;
}

.control-dot.green {
  background: #10b981;
}

.header-title {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.header-actions {
  display: flex;
  gap: 0.5rem;
}

.action-btn {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.mockup-content {
  padding: 2rem;
}

.chart-section {
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.chart-title {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.chart-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-mono);
}

.chart-container {
  height: 140px;
}

.growth-chart {
  width: 100%;
  height: 100%;
}

.chart-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 3s ease-in-out forwards;
}

.chart-area {
  opacity: 0;
  animation: fadeIn 3s ease-in-out 1s forwards;
}

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

.metric-card {
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.metric-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-100);
}

.metric-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.metric-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Modern Cards */
.modern-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-2xl);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.modern-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.modern-card:hover::before {
  opacity: 0.03;
}

.modern-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.2);
  box-shadow: var(--shadow-xl);
}

/* Services Section */
.services-section {
  padding: var(--section-padding);
  background: var(--dark-800);
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

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

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

.service-card {
  padding: 2.5rem;
}

.card-header {
  margin-bottom: 1.5rem;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--light-100);
  font-size: 1.5rem;
}

.card-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.card-content {
  margin-bottom: 2rem;
}

.card-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

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

.card-footer {
  margin-top: auto;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--secondary-color);
  gap: 0.75rem;
}

/* Technology Section */
.tech-section {
  padding: var(--section-padding);
  background: var(--dark-900);
}

.tech-content {
  padding-right: 2rem;
}

.tech-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.7;
}

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

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

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-100);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: var(--text-secondary);
  margin: 0;
}

.tech-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.tech-network {
  position: relative;
  width: 300px;
  height: 300px;
}

.network-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.center-node {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-100);
  font-size: 2rem;
  box-shadow: var(--shadow-glow);
}

.network-nodes {
  position: relative;
  width: 100%;
  height: 100%;
}

.network-node {
  position: absolute;
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(99, 102, 241, 0.3);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.network-node:hover {
  border-color: var(--primary-color);
  background: rgba(99, 102, 241, 0.1);
  transform: scale(1.1);
}

.node-1 {
  top: 0;
  left: 0;
}

.node-2 {
  top: 0;
  right: 0;
}

.node-3 {
  bottom: 0;
  left: 0;
}

.node-4 {
  bottom: 0;
  right: 0;
}

.network-node i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.network-node span {
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.connection-line {
  stroke: rgba(99, 102, 241, 0.3);
  stroke-width: 2;
  stroke-dasharray: 5, 5;
  animation: dash 3s linear infinite;
}

/* Results Section */
.results-section {
  padding: var(--section-padding);
  background: var(--dark-800);
}

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

.result-card {
  padding: 2rem;
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.company-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.company-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-100);
  font-size: 1.25rem;
}

.company-details h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.company-details span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.result-badge {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-lg);
  font-size: 0.8rem;
  color: var(--primary-color);
}

.result-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.metric {
  text-align: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-md);
}

.metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-mono);
}

.metric-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.result-description {
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

/* Contact Section */
.contact-section {
  padding: var(--section-padding);
  background: var(--dark-900);
}

.contact-content {
  padding-right: 2rem;
}

.contact-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.7;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-100);
  font-size: 1.25rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
}

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

.contact-value {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
}

.contact-form-container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-primary);
  transition: all 0.3s ease;
}

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

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  color: var(--light-100);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
}

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

/* Page Header */
.page-header {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: var(--section-padding);
  overflow: hidden;
}

.page-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
}

.page-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.page-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

/* About Visual */
.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.team-constellation {
  position: relative;
  width: 300px;
  height: 300px;
}

.team-member {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.member-avatar {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-100);
  font-size: 1.5rem;
}

.team-member span {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.member-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.member-2 {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.member-3 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.member-4 {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* Services Visual */
.services-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.service-constellation {
  position: relative;
  width: 300px;
  height: 300px;
}

.service-icon-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.service-icon-item i {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-100);
  font-size: 1.5rem;
}

.service-icon-item span {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.icon-1 {
  top: 0;
  left: 0;
}

.icon-2 {
  top: 0;
  right: 0;
}

.icon-3 {
  bottom: 0;
  left: 0;
}

.icon-4 {
  bottom: 0;
  right: 0;
}

/* Mission Section */
.mission-section {
  padding: var(--section-padding);
  background: var(--dark-800);
}

.mission-content {
  padding-right: 2rem;
}

.mission-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.7;
}

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

.mission-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.globe-container {
  position: relative;
  width: 200px;
  height: 200px;
}

.globe {
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 50%;
  position: relative;
  opacity: 0.1;
}

.globe-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.data-point {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.point-1 {
  top: 20%;
  left: 30%;
  animation-delay: 0s;
}

.point-2 {
  top: 40%;
  right: 20%;
  animation-delay: 0.5s;
}

.point-3 {
  bottom: 30%;
  left: 20%;
  animation-delay: 1s;
}

.point-4 {
  bottom: 20%;
  right: 30%;
  animation-delay: 1.5s;
}

.point-5 {
  top: 60%;
  left: 50%;
  animation-delay: 2s;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.orbit-1 {
  width: 250px;
  height: 250px;
  top: -25px;
  left: -25px;
}

.orbit-2 {
  width: 300px;
  height: 300px;
  top: -50px;
  left: -50px;
  animation-direction: reverse;
  animation-duration: 30s;
}

/* Values Section */
.values-section {
  padding: var(--section-padding);
  background: var(--dark-900);
}

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

.value-card {
  padding: 2rem;
  text-align: center;
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--light-100);
  font-size: 1.5rem;
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

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

/* Team Section */
.team-section {
  padding: var(--section-padding);
  background: var(--dark-800);
}

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

.team-card {
  padding: 2rem;
  text-align: center;
}

.team-avatar {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

.avatar-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  border-radius: 50%;
  opacity: 0.1;
}

.team-avatar i {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.team-info h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
  display: block;
}

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

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

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

.team-social a:hover {
  background: var(--gradient-primary);
  color: var(--light-100);
  border-color: var(--primary-color);
}

/* Journey Section */
.journey-section {
  padding: var(--section-padding);
  background: var(--dark-900);
}

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

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
}

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

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

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-100);
  font-size: 1.25rem;
  z-index: 2;
}

.timeline-content {
  width: 45%;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.timeline-year {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-family: var(--font-mono);
}

/* --- Modern Footer Redesign --- */
.footer {
  background: linear-gradient(135deg, #18192a 0%, #23244a 100%);
  color: var(--light-100);
  padding: 64px 0 0 0;
  border-top: 2px solid rgba(99, 102, 241, 0.08);
  box-shadow: 0 -8px 32px 0 rgba(99, 102, 241, 0.08);
  position: relative;
  z-index: 2;
}
.footer-content {
  padding-bottom: 32px;
}
.footer-brand {
  margin-bottom: 2rem;
}
.footer-brand .brand-container {
  margin-bottom: 1rem;
}
.footer-description {
  color: var(--light-400);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 102, 241, 0.08);
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 1.25rem;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  box-shadow: 0 2px 8px 0 rgba(99, 102, 241, 0.08);
}
.social-link:hover {
  background: var(--gradient-primary);
  color: #fff;
  transform: translateY(-3px) scale(1.08);
}
.footer-section {
  margin-bottom: 2rem;
}
.footer-section h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: var(--light-400);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  font-family: var(--font-primary);
  transition: border-color 0.3s;
}
.newsletter-input:focus {
  border-color: var(--primary-color);
  outline: none;
}
.newsletter-btn {
  background: var(--gradient-primary);
  color: var(--light-100);
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsletter-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.newsletter-btn:hover {
  background: var(--gradient-secondary);
}
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 32px 0 0 0;
}
.footer-bottom {
  padding: 24px 0 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--light-400);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
}
.footer-legal a {
  color: var(--light-400);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.95rem;
}
.footer-legal a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}
@media (max-width: 991px) {
  .footer-content .row > div {
    margin-bottom: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .footer-legal {
    justify-content: center;
  }
}

/* Modern Pricing Cards Redesign */
.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.pricing-card {
  background: rgba(40, 42, 70, 0.95);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.1);
  padding: 2.5rem 2rem 2rem 2rem;
  width: 340px;
  max-width: 100%;
  text-align: center;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1.5px solid rgba(99, 102, 241, 0.08);
}
.pricing-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 48px rgba(99, 102, 241, 0.18);
}
.pricing-card .plan-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.pricing-card .price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
.pricing-card .price span {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 400;
}
.pricing-card .plan-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  color: var(--light-100);
  text-align: left;
}
.pricing-card ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.pricing-card .btn {
  font-weight: 600;
  border-radius: 2rem;
  padding: 0.75rem 0;
  font-size: 1.1rem;
}
.pricing-card.featured {
  border: 2.5px solid var(--primary-color);
  background: linear-gradient(135deg, #23244a 80%, #6366f1 100%);
  color: #fff;
  z-index: 2;
  box-shadow: 0 12px 48px rgba(99, 102, 241, 0.18);
}
.pricing-card .badge-popular {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--primary-color);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 1rem;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.1);
}
@media (max-width: 991px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
}
