/* ============================================
   ABOUT PAGE - PREMIUM STYLES
   ============================================ */

/* ============================================
   ABOUT HERO - PREMIUM BUT NOT OVERWHELMING
   ============================================ */
.about-hero {
  position: relative;
  min-height: 420px;
  max-height: 550px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #030712;
  padding: 0;
}

/* BACKGROUND LIGHT (DEPTH) */
.about-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    circle at 70% 50%, 
    rgba(59, 130, 246, 0.2), 
    transparent 60%
  );
  pointer-events: none;
}

/* NETWORK GLOW EFFECT - Subtle dots */
.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 75% 40%, rgba(96, 165, 250, 0.6) 2px, transparent 2px),
    radial-gradient(circle at 85% 55%, rgba(96, 165, 250, 0.4) 2px, transparent 2px),
    radial-gradient(circle at 70% 65%, rgba(255, 170, 50, 0.5) 2px, transparent 2px);
  background-repeat: no-repeat;
  z-index: 1;
  animation: pulseSubtle 4s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes pulseSubtle {
  from { opacity: 0.3; }
  to { opacity: 0.7; }
}

/* HERO IMAGE - Full immersive but softer */
.about-hero .hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.about-hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: brightness(0.7) contrast(1.1);
  animation: slowZoom 25s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

/* FADE OVERLAY - Blends image into dark background */
.about-hero .hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #030712 0%,
    rgba(3, 7, 18, 0.9) 25%,
    rgba(3, 7, 18, 0.5) 50%,
    transparent 100%
  );
  pointer-events: none;
}

/* CONTENT ABOVE EVERYTHING */
.about-hero .hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.about-hero .hero-content {
  max-width: 520px;
}

.breadcrumb-trail {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-trail a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.breadcrumb-trail a:hover {
  color: var(--white);
}

.breadcrumb-trail .current {
  color: var(--white);
}

.about-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.08;
  margin-bottom: 8px;
}

.about-hero h2 {
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 12px;
}

.about-hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 460px;
}

/* ============================================
   STATS GRID
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: -30px 40px 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon {
  width: 44px;
  height: 44px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.stat-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 1.8;
}

.stat-value {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 4px;
  color: var(--white);
}

.stat-label {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
}

/* ============================================
   STORY SECTION - WITH IMAGE
   ============================================ */
.story-section {
  padding: 72px 40px 56px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.story-text h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.story-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 16px;
}

.story-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--blue-lt));
  border-radius: 2px;
  margin: 16px 0 20px;
}

/* Story Image - Using about-1.png */
.story-img {
  border-radius: 14px;
  overflow: hidden;
  height: 280px;
  background: linear-gradient(135deg, #071020 0%, #0d2060 50%, #081230 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid var(--border);
}

.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values-section {
  padding: 0 40px 56px;
  max-width: 1200px;
  margin: 0 auto;
}

.values-section h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.value-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 16px 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.08);
}

.value-icon {
  width: 44px;
  height: 44px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.value-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 1.8;
}

.value-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.value-card p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
}

/* ============================================
   MISSION & VISION
   ============================================ */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 56px;
  padding: 0 40px;
}

.mv-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.3s;
}

.mv-card:hover {
  transform: translateY(-4px);
}

.mv-icon {
  width: 50px;
  height: 50px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mv-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 1.8;
}

.mv-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.mv-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================
   RESPONSIVE - ABOUT PAGE
   ============================================ */
@media (max-width: 1024px) {
  .about-hero {
    max-height: none;
    min-height: 380px;
  }

  .about-hero .hero-image {
    width: 65%;
  }

  .stats-grid {
    margin: -25px 20px 0;
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 340px;
    padding: 60px 0 50px;
  }

  .about-hero .hero-image {
    width: 100%;
    height: 100%;
    opacity: 0.3;
  }

  .about-hero .hero-image img {
    opacity: 1;
    filter: brightness(0.5) contrast(1.2);
  }

  .about-hero .hero-image::after {
    background: linear-gradient(
      180deg,
      #030712 0%,
      rgba(3, 7, 18, 0.9) 30%,
      rgba(3, 7, 18, 0.6) 60%,
      #030712 100%
    );
  }

  .about-hero .hero-container {
    padding: 0 20px;
  }

  .about-hero .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .about-hero h1 {
    font-size: 30px;
  }

  .about-hero h2 {
    font-size: 17px;
  }

  .about-hero p {
    font-size: 14px;
    max-width: 100%;
  }

  .breadcrumb-trail {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    margin: -16px 20px 0;
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-top: 1px solid var(--border);
  }

  .stat-value {
    font-size: 24px;
  }

  .stat-item {
    padding: 20px 16px;
  }

  .story-section {
    padding: 48px 20px 40px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .story-img {
    height: 200px;
  }

  .values-section {
    padding: 0 20px 40px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .value-card {
    padding: 18px 14px;
  }

  .mv-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
    margin: 0 auto 40px;
  }

  .mv-card {
    padding: 20px 18px;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    min-height: 300px;
    padding: 50px 0 40px;
  }

  .about-hero h1 {
    font-size: 26px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    margin: -12px 16px 0;
  }

  .stat-item {
    padding: 16px 12px;
  }

  .stat-value {
    font-size: 20px;
  }

  .stat-icon {
    width: 36px;
    height: 36px;
  }

  .stat-icon svg {
    width: 16px;
    height: 16px;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .value-card {
    padding: 14px 10px;
  }

  .value-card h3 {
    font-size: 13px;
  }

  .mv-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .story-img {
    height: 160px;
  }
}

/* ============================================
   FUTURISTIC GLOBE OVERLAY - ABOUT PAGE
   ============================================ */

/* Globe Container - Positioned on RIGHT side */
.globe-overlay {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  z-index: 5;
  width: 320px;
  height: 320px;
  pointer-events: none;
}

/* Outer Orbital Rings */
.globe-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ringSpin 20s linear infinite;
}

.globe-ring-1 {
  width: 300px;
  height: 300px;
  border-color: rgba(59, 130, 246, 0.12);
  animation-duration: 30s;
}

.globe-ring-2 {
  width: 260px;
  height: 260px;
  border-color: rgba(59, 130, 246, 0.08);
  animation-duration: 25s;
  animation-direction: reverse;
}

.globe-ring-3 {
  width: 220px;
  height: 220px;
  border-color: rgba(96, 165, 250, 0.06);
  animation-duration: 20s;
  border-style: dashed;
}

@keyframes ringSpin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Cyber Globe Core - VIBRANT BLUE */
.cyber-globe-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(59, 130, 246, 0.8) 0%, rgba(37, 99, 235, 0.5) 30%, rgba(2, 6, 23, 0.95) 80%);
  box-shadow: 
    inset 0 0 60px rgba(59, 130, 246, 0.5),
    0 0 50px rgba(59, 130, 246, 0.4),
    0 0 100px rgba(37, 99, 235, 0.25),
    0 0 150px rgba(59, 130, 246, 0.15);
  border: 1.5px solid rgba(59, 130, 246, 0.4);
  animation: globeFloat 8s ease-in-out infinite alternate;
}

@keyframes globeFloat {
  0% { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-50%, -50%) scale(1.02); }
}

/* Globe Mesh - More visible */
.globe-mesh {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background-image: 
    linear-gradient(rgba(59, 130, 246, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.3) 1px, transparent 1px);
  background-size: 10px 10px;
  border-radius: 50%;
  animation: meshScroll 10s linear infinite;
}

@keyframes meshScroll {
  0% { background-position: 0 0; }
  100% { background-position: 50px 50px; }
}

/* Globe Pulse Ring - More visible */
.globe-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(59, 130, 246, 0.3);
  animation: pulseRing 3s ease-in-out infinite;
}

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

/* Floating Nodes - Vibrant */
.globe-node {
  position: absolute;
  width: 28px;
  height: 28px;
  background: rgba(3, 10, 36, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  font-size: 11px;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4), inset 0 0 10px rgba(59, 130, 246, 0.2);
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: auto;
  cursor: pointer;
}

.globe-node i {
  position: relative;
  z-index: 2;
}

.globe-node:hover {
  color: #ffffff;
  border-color: #60a5fa;
  background: rgba(59, 130, 246, 0.3);
  transform: scale(1.2);
  box-shadow: 0 0 30px #3b82f6, 0 0 60px rgba(59, 130, 246, 0.3);
}

/* Node Pulse Ring - Vibrant */
.node-pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5px solid rgba(59, 130, 246, 0.3);
  animation: nodePulse 2.5s ease-out infinite;
}

.globe-node:nth-child(1) .node-pulse-ring { animation-delay: 0s; }
.globe-node:nth-child(2) .node-pulse-ring { animation-delay: 0.4s; }
.globe-node:nth-child(3) .node-pulse-ring { animation-delay: 0.8s; }
.globe-node:nth-child(4) .node-pulse-ring { animation-delay: 1.2s; }
.globe-node:nth-child(5) .node-pulse-ring { animation-delay: 1.6s; }
.globe-node:nth-child(6) .node-pulse-ring { animation-delay: 2.0s; }

@keyframes nodePulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Node Positions */
.node-pos-1 { top: 8px; left: 50%; transform: translateX(-50%); }
.node-pos-2 { top: 55px; right: 12px; }
.node-pos-3 { bottom: 85px; right: -2px; }
.node-pos-4 { bottom: 18px; left: 72%; }
.node-pos-5 { bottom: 40px; left: 28px; }
.node-pos-6 { top: 88px; left: 5px; }

/* Connection Lines SVG */
.globe-connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.conn-line {
  stroke: rgba(59, 130, 246, 0.2);
  stroke-width: 1;
  animation: linePulse 3s ease-in-out infinite;
}

.conn-line:nth-child(1) { animation-delay: 0s; }
.conn-line:nth-child(2) { animation-delay: 0.4s; }
.conn-line:nth-child(3) { animation-delay: 0.8s; }
.conn-line:nth-child(4) { animation-delay: 1.2s; }
.conn-line:nth-child(5) { animation-delay: 1.6s; }
.conn-line:nth-child(6) { animation-delay: 2.0s; }
.conn-line:nth-child(7) { animation-delay: 2.4s; }
.conn-line:nth-child(8) { animation-delay: 2.8s; }

@keyframes linePulse {
  0%, 100% { stroke: rgba(59, 130, 246, 0.1); }
  50% { stroke: rgba(59, 130, 246, 0.4); }
}

.center-dot {
  fill: #60a5fa;
  opacity: 0.8;
  animation: centerDotPulse 2s ease-in-out infinite;
}

@keyframes centerDotPulse {
  0%, 100% { opacity: 0.5; r: 3; }
  50% { opacity: 1; r: 5; }
}

/* Responsive - Adjust globe position on smaller screens */
@media (max-width: 1024px) {
  .globe-overlay {
    width: 260px;
    height: 260px;
    right: 3%;
  }
  .globe-ring-1 { width: 240px; height: 240px; }
  .globe-ring-2 { width: 200px; height: 200px; }
  .globe-ring-3 { width: 160px; height: 160px; }
  .cyber-globe-core { width: 120px; height: 120px; }
  .globe-node { width: 24px; height: 24px; font-size: 10px; }
  .node-pos-2 { top: 45px; right: 8px; }
  .node-pos-3 { bottom: 65px; right: -1px; }
  .node-pos-6 { top: 70px; left: 3px; }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 20px 0 30px 0;
    min-height: auto;
    max-height: none;
  }
  
  .globe-overlay {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 200px;
    height: 200px;
    margin: 10px auto 0;
  }
  
  .about-hero .hero-content {
    text-align: center;
  }
  
  .globe-ring-1 { width: 180px; height: 180px; }
  .globe-ring-2 { width: 150px; height: 150px; }
  .globe-ring-3 { width: 120px; height: 120px; }
  .cyber-globe-core { width: 90px; height: 90px; }
  .globe-node { width: 20px; height: 20px; font-size: 8px; }
  .node-pos-1 { top: 5px; }
  .node-pos-2 { top: 35px; right: 5px; }
  .node-pos-3 { bottom: 50px; right: -1px; }
  .node-pos-4 { bottom: 12px; left: 72%; }
  .node-pos-5 { bottom: 28px; left: 18px; }
  .node-pos-6 { top: 55px; left: 2px; }
}

/* ============================================
   EXTRA LARGE SCREENS - ABOUT PAGE
   ============================================ */

/* For screens 1800px and larger (100+ inch monitors) */
@media (min-width: 1800px) {
  .about-hero {
    min-height: 500px;
    max-height: 650px;
  }

  .about-hero .hero-container {
    max-width: 1400px;
    padding: 0 60px;
  }

  .about-hero .hero-content {
    max-width: 650px;
  }

  .about-hero h1 {
    font-size: clamp(40px, 4vw, 56px);
  }

  .about-hero h2 {
    font-size: clamp(22px, 1.8vw, 28px);
  }

  .about-hero p {
    font-size: 17px;
  }

  .about-hero .hero-image {
    width: 58%;
  }

  /* Globe larger on large screens */
  .globe-overlay {
    width: 400px;
    height: 400px;
  }

  .globe-ring-1 { width: 380px; height: 380px; }
  .globe-ring-2 { width: 330px; height: 330px; }
  .globe-ring-3 { width: 280px; height: 280px; }

  .cyber-globe-core {
    width: 180px;
    height: 180px;
  }

  .globe-node {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .node-pos-2 { top: 65px; right: 15px; }
  .node-pos-3 { bottom: 100px; right: -2px; }
  .node-pos-6 { top: 105px; left: 6px; }

  /* Stats Grid */
  .stats-grid {
    margin: -35px 60px 0;
    border-radius: 16px;
  }

  .stat-item {
    padding: 32px 32px;
  }

  .stat-value {
    font-size: 32px;
  }

  .stat-icon {
    width: 52px;
    height: 52px;
  }

  .stat-icon svg {
    width: 24px;
    height: 24px;
  }

  /* Story Section */
  .story-section {
    padding: 80px 60px 64px;
  }

  .story-grid {
    max-width: 1400px;
    gap: 60px;
  }

  .story-text h2 {
    font-size: 38px;
  }

  .story-text p {
    font-size: 17px;
  }

  .story-img {
    height: 340px;
  }

  /* Values Section */
  .values-section {
    padding: 0 60px 64px;
    max-width: 1400px;
  }

  .values-section h2 {
    font-size: 38px;
  }

  .values-grid {
    gap: 20px;
  }

  .value-card {
    padding: 28px 20px 24px;
  }

  .value-icon {
    width: 52px;
    height: 52px;
  }

  .value-icon svg {
    width: 24px;
    height: 24px;
  }

  .value-card h3 {
    font-size: 16px;
  }

  .value-card p {
    font-size: 13px;
  }

  /* Mission & Vision */
  .mv-grid {
    max-width: 1400px;
    gap: 32px;
    padding: 0 60px;
  }

  .mv-card {
    padding: 32px 32px;
  }

  .mv-icon {
    width: 56px;
    height: 56px;
  }

  .mv-icon svg {
    width: 28px;
    height: 28px;
  }

  .mv-card h3 {
    font-size: 20px;
  }

  .mv-card p {
    font-size: 16px;
  }
}

/* For screens 2200px and larger */
@media (min-width: 2200px) {
  .about-hero .hero-container {
    max-width: 1600px;
    padding: 0 80px;
  }

  .about-hero h1 {
    font-size: clamp(48px, 4vw, 64px);
  }

  .globe-overlay {
    width: 480px;
    height: 480px;
  }

  .globe-ring-1 { width: 450px; height: 450px; }
  .globe-ring-2 { width: 390px; height: 390px; }
  .globe-ring-3 { width: 330px; height: 330px; }

  .cyber-globe-core {
    width: 210px;
    height: 210px;
  }

  .globe-node {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .stats-grid {
    margin: -40px 80px 0;
  }

  .stat-item {
    padding: 38px 40px;
  }

  .stat-value {
    font-size: 36px;
  }

  .story-grid {
    max-width: 1600px;
    gap: 80px;
  }

  .story-img {
    height: 400px;
  }

  .values-section {
    max-width: 1600px;
  }

  .values-grid {
    gap: 24px;
  }

  .mv-grid {
    max-width: 1600px;
  }
}

/* For screens 3000px and larger */
@media (min-width: 3000px) {
  .about-hero .hero-container {
    max-width: 1800px;
    padding: 0 100px;
  }

  .about-hero h1 {
    font-size: 72px;
  }

  .about-hero .hero-content {
    max-width: 800px;
  }

  .globe-overlay {
    width: 550px;
    height: 550px;
  }

  .globe-ring-1 { width: 520px; height: 520px; }
  .globe-ring-2 { width: 460px; height: 460px; }
  .globe-ring-3 { width: 400px; height: 400px; }

  .cyber-globe-core {
    width: 250px;
    height: 250px;
  }

  .globe-node {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .stats-grid {
    margin: -50px 100px 0;
  }

  .stat-item {
    padding: 44px 48px;
  }

  .stat-value {
    font-size: 42px;
  }

  .stat-label {
    font-size: 14px;
  }

  .story-grid {
    max-width: 1800px;
  }

  .story-img {
    height: 480px;
  }

  .values-section {
    max-width: 1800px;
  }

  .values-grid {
    gap: 28px;
  }

  .mv-grid {
    max-width: 1800px;
  }

  .mv-card {
    padding: 40px 48px;
  }

  .mv-card p {
    font-size: 18px;
  }
}