/* ── About Us page styles ── */

/* Nav active */
.main-nav a.nav-active { color: var(--neon); position: relative; }
.main-nav a.nav-active::after { content:''; position:absolute; bottom:-6px; left:50%; transform:translateX(-50%); width:5px; height:5px; border-radius:50%; background:var(--neon); box-shadow:0 0 6px var(--neon); }

.about-hero-section {
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) minmax(360px, 0.9fr);
  gap: 32px;
  align-items: center;
  margin: 18px 0 56px;
}
.about-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--neon);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 18px;
}
.about-hero-label::after { content:""; display:inline-block; width:32px; height:1px; background:var(--neon); opacity:0.7; }
.about-hero-section h1 {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  line-height: 1.04;
  margin: 0 0 18px;
}
.about-hero-section h1 span { color: var(--neon); }
.about-hero-section p.about-lead {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 520px;
  margin: 0 0 30px;
}

.values-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}
.value-card { display: flex; flex-direction: column; gap: 10px; }
.value-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(var(--neon-rgb), 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--neon);
  font-size: 1.2rem;
  background: transparent;
  flex-shrink: 0;
}
.value-title { font-family: "Orbitron", sans-serif; font-size: 0.88rem; font-weight: 700; color: var(--text-main); line-height: 1.2; }
.value-desc { color: var(--text-soft); font-size: 0.82rem; line-height: 1.55; }

.about-hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}

/* ── About Hero Animation ── */
.about-anim-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 28px;
  background: radial-gradient(ellipse at 50% 45%, rgba(141,255,79,0.11) 0%, rgba(8,16,10,0.28) 52%, transparent 100%);
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-anim-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  box-shadow: inset 0 0 60px 30px var(--bg-1, #030a04);
  pointer-events: none;
  z-index: 3;
}
.about-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.45;
  border-radius: 28px;
}
.anim-core-ring {
  position: absolute;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  border: 1px dashed rgba(141,255,79,0.22);
  box-shadow: 0 0 16px rgba(141,255,79,0.06);
  animation: spinRing 22s linear infinite;
  z-index: 1;
}
.anim-mid-ring {
  position: absolute;
  width: 58%;
  height: 58%;
  border-radius: 50%;
  border: 1px solid rgba(141,255,79,0.12);
  animation: spinRing 14s linear infinite;
  z-index: 1;
}
.anim-inner-ring {
  position: absolute;
  width: 44%;
  height: 44%;
  border-radius: 50%;
  border: 1px solid rgba(141,255,79,0.2);
  animation: spinRing 9s linear infinite reverse;
  z-index: 1;
}
@keyframes spinRing { to { transform: rotate(360deg); } }
.anim-radar {
  position: absolute;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  animation: radarSpin 5s linear infinite;
  background: conic-gradient(from 0deg, transparent 320deg, rgba(141,255,79,0.06) 345deg, rgba(141,255,79,0.18) 360deg);
  z-index: 1;
}
@keyframes radarSpin { to { transform: rotate(360deg); } }
.anim-logo-center {
  position: absolute;
  width: 138px;
  height: 138px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  animation: pulseLogo 3.6s ease-in-out infinite;
}
.anim-logo-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 50%, rgba(141,255,79,0.18) 0%, rgba(141,255,79,0.06) 55%, transparent 100%);
  box-shadow: 0 0 40px rgba(141,255,79,0.2), 0 0 80px rgba(141,255,79,0.08);
}
.anim-logo-img {
  position: relative;
  width: 78px;
  height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(141,255,79,0.85)) drop-shadow(0 0 28px rgba(141,255,79,0.5)) brightness(1.15);
}
.anim-logo-center svg { width: 100%; height: 100%; }
@keyframes pulseLogo { 0%,100% { transform: scale(1); } 50% { transform: scale(1.07); } }
.anim-pill {
  position: absolute;
  background: rgba(5,14,7,0.92);
  border: 1px solid rgba(141,255,79,0.28);
  border-radius: 999px;
  padding: 6px 16px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--neon);
  letter-spacing: 0.07em;
  white-space: nowrap;
  z-index: 4;
}
.anim-pill-1 { top: 7%;   left: 50%; transform: translateX(-50%); animation: floatPill 4.4s ease-in-out infinite; }
.anim-pill-2 { top: 50%;  right: 4%; transform: translateY(-50%); animation: floatPill 5s ease-in-out infinite 0.8s; }
.anim-pill-3 { bottom: 7%; left: 50%; transform: translateX(-50%); animation: floatPill 4.8s ease-in-out infinite 1.6s; }
.anim-pill-4 { top: 50%;  left: 4%;  transform: translateY(-50%); animation: floatPill 5.2s ease-in-out infinite 0.4s; }
@keyframes floatPill { 0%,100% { opacity: 0.7; box-shadow: none; } 50% { opacity: 1; box-shadow: 0 0 18px rgba(141,255,79,0.28); } }
.anim-node {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 6px rgba(141,255,79,0.9), 0 0 14px rgba(141,255,79,0.4);
  z-index: 2;
}
.anim-node-1 { top: 14%;   left: 50%;  transform: translateX(-50%); animation: blinkNode 2.2s ease-in-out infinite; }
.anim-node-2 { top: 50%;   right: 14%; transform: translateY(-50%); animation: blinkNode 2.8s ease-in-out infinite 0.5s; }
.anim-node-3 { bottom: 14%; left: 50%; transform: translateX(-50%); animation: blinkNode 2.5s ease-in-out infinite 1s; }
.anim-node-4 { top: 50%;   left: 14%;  transform: translateY(-50%); animation: blinkNode 3s ease-in-out infinite 0.3s; }
.anim-node-5 { top: 21%;   left: 21%;  animation: blinkNode 3.4s ease-in-out infinite 0.8s; }
.anim-node-6 { top: 21%;   right: 21%; animation: blinkNode 2.9s ease-in-out infinite 1.4s; }
@keyframes blinkNode { 0%,100% { opacity: 0.55; transform: scale(1); } 50% { opacity: 1; transform: scale(1.7); } }
.anim-lines-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.anim-line { stroke: rgba(141,255,79,0.18); stroke-width: 1; stroke-dasharray: 6 4; animation: dashMove 3s linear infinite; }
.anim-line.l2 { animation-delay: 0.5s; }
.anim-line.l3 { animation-delay: 1s; }
.anim-line.l4 { animation-delay: 1.5s; }
.anim-line.l5 { animation-delay: 0.3s; }
.anim-line.l6 { animation-delay: 0.9s; }
@keyframes dashMove { to { stroke-dashoffset: -40; } }

.story-section {
  background: rgba(8, 16, 10, 0.55);
  border: 1px solid rgba(var(--neon-rgb), 0.14);
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 0;
  margin-top: 52px;
  overflow: hidden;
}
.story-left { padding: 40px 44px; border-right: 1px solid rgba(var(--neon-rgb), 0.1); }
.story-right { padding: 40px 40px; display: flex; align-items: center; }
.section-mini-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--neon);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}
.section-mini-tag::after { content:""; display:inline-block; width:28px; height:1px; background:var(--neon); opacity:0.65; }
.story-left h2 { font-family: "Orbitron", sans-serif; font-size: clamp(1.9rem, 3vw, 2.7rem); margin: 0 0 20px; line-height: 1.1; }
.story-left h2 span { color: var(--neon); }
.story-left p { color: var(--text-soft); font-size: 0.98rem; line-height: 1.8; margin: 0 0 16px; }

.stats-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; width: 100%; }
.stat-block { display: flex; gap: 14px; align-items: flex-start; }
.stat-icon-wrap {
  width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid rgba(var(--neon-rgb), 0.2);
  background: rgba(141,255,79,0.09);
  display: grid; place-items: center;
  color: var(--neon); font-size: 1.1rem; flex-shrink: 0;
}
.stat-icon-wrap svg { width: 20px; height: 20px; stroke: var(--neon); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.stat-num { font-family: "Orbitron", sans-serif; font-size: 1.65rem; color: var(--neon); font-weight: 700; line-height: 1; }
.stat-lbl { color: var(--text-main); font-size: 0.9rem; font-weight: 600; margin-top: 3px; }
.stat-sub { color: var(--text-soft); font-size: 0.82rem; line-height: 1.45; margin-top: 3px; }

.expertise-section { margin-top: 62px; }
.center-label { display: flex; align-items: center; justify-content: center; gap: 16px; color: var(--text-soft); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em; margin-bottom: 14px; }
.center-label::before, .center-label::after { content:""; flex:1; max-width:70px; height:1px; background: rgba(var(--neon-rgb), 0.4); }
.expertise-section h2 { text-align: center; font-family: "Orbitron", sans-serif; font-size: clamp(2rem, 3.2vw, 2.8rem); margin: 0 0 30px; }
.expertise-grid { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 16px; }
.exp-card { background: rgba(8,16,10,0.55); border: 1px solid rgba(var(--neon-rgb),0.14); border-radius: 20px; padding: 22px 14px; display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.exp-icon { width: 68px; height: 68px; border-radius: 50%; border: 1px solid rgba(var(--neon-rgb),0.3); display: flex; align-items: center; justify-content: center; background: rgba(141,255,79,0.07); }
.exp-icon svg { width: 28px; height: 28px; stroke: var(--neon); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.exp-name { color: var(--text-main); font-weight: 700; font-size: 0.94rem; }
.exp-desc { color: var(--text-soft); font-size: 0.82rem; line-height: 1.5; }

.team-section { margin-top: 58px; display: grid; grid-template-columns: 240px 1fr; gap: 36px; align-items: start; }
.team-left { padding-top: 4px; }
.team-left h2 { font-family: "Orbitron", sans-serif; font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin: 10px 0 14px; line-height: 1.15; }
.team-left p { color: var(--text-soft); font-size: 0.94rem; line-height: 1.7; margin-bottom: 20px; }
.team-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.team-card { background: rgba(8,16,10,0.6); border: 1px solid rgba(var(--neon-rgb),0.12); border-radius: 20px; padding: 16px; text-align: center; }
.team-card img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 14px; display: block; margin-bottom: 14px; filter: grayscale(20%) brightness(0.88); }
.team-name { font-family: "Orbitron", sans-serif; font-size: 0.95rem; color: var(--neon); margin-bottom: 5px; }
.team-role { color: var(--text-soft); font-size: 0.82rem; margin-bottom: 12px; }
.team-socials { display: flex; justify-content: center; gap: 8px; }
.team-social-btn { width: 30px; height: 30px; border-radius: 7px; border: 1px solid rgba(var(--neon-rgb),0.2); display: inline-flex; align-items: center; justify-content: center; color: var(--text-soft); font-size: 0.72rem; font-weight: 700; text-decoration: none; transition: all 0.2s; }
.team-social-btn:hover { color: var(--neon); border-color: rgba(var(--neon-rgb),0.5); background: rgba(var(--neon-rgb),0.06); }

.bottom-row { display: grid; grid-template-columns: 1fr 1.25fr; gap: 26px; align-items: stretch; justify-items: stretch; margin-top: 50px; margin-bottom: 54px; }
.trusted-panel, .cta-right-panel { width: 100%; }
.trusted-panel { background: rgba(8,16,10,0.55); border: 1px solid rgba(var(--neon-rgb),0.14); border-radius: 22px; padding: 28px 30px; }
.trusted-heading { display: inline-flex; align-items: center; gap: 10px; color: var(--neon); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.2em; margin-bottom: 22px; }
.trusted-heading::after { content:""; display:inline-block; width:28px; height:1px; background:var(--neon); opacity:0.6; }
.trusted-logos { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.trusted-item { display: flex; align-items: center; gap: 9px; color: var(--text-soft); font-size: 0.9rem; font-weight: 500; }
.trusted-item-icon { width: 34px; height: 34px; border-radius: 8px; border: 1px solid rgba(var(--neon-rgb),0.22); display: grid; place-items: center; color: var(--neon); font-size: 0.85rem; flex-shrink: 0; }
.cta-right-panel { background: rgba(8,18,10,0.6); border: 1px solid rgba(var(--neon-rgb),0.15); border-radius: 22px; padding: 38px 40px; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.cta-right-panel h3 { font-family: "Orbitron", sans-serif; font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin: 0; line-height: 1.2; max-width: 440px; }
.cta-right-panel p { color: var(--text-soft); font-size: 0.95rem; line-height: 1.7; margin: 0; max-width: 400px; }

.site-footer-full { position: relative; z-index: 2; border-top: 1px solid rgba(var(--neon-rgb), 0.14); padding: 50px 0 0; }

/* ── Team Avatar 3D ── */
.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 14px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 40%, rgba(141,255,79,0.09) 0%, rgba(8,16,10,0.97) 72%);
}
.av-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(141,255,79,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(141,255,79,0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.av-scan {
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(141,255,79,0.45), transparent);
  animation: avScan 3.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes avScan {
  0%   { top: 0; opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
.av-ring {
  position: absolute; border-radius: 50%;
  top: 50%; left: 50%;
  pointer-events: none;
}
.av-ring-a {
  width: 68%; height: 68%;
  margin-left: -34%; margin-top: -34%;
  border: 1px solid rgba(141,255,79,0.30);
  animation: avRingA 5s linear infinite;
}
.av-ring-b {
  width: 88%; height: 88%;
  margin-left: -44%; margin-top: -44%;
  border: 1px solid rgba(141,255,79,0.12);
  animation: avRingB 8s linear infinite reverse;
}
.av-ring-c {
  width: 50%; height: 50%;
  margin-left: -25%; margin-top: -25%;
  border: 1px solid rgba(141,255,79,0.18);
  animation: avRingC 4s linear infinite;
}
@keyframes avRingA {
  from { transform: perspective(260px) rotateX(72deg) rotateZ(0deg); }
  to   { transform: perspective(260px) rotateX(72deg) rotateZ(360deg); }
}
@keyframes avRingB {
  from { transform: perspective(260px) rotateX(60deg) rotateZ(0deg); }
  to   { transform: perspective(260px) rotateX(60deg) rotateZ(360deg); }
}
@keyframes avRingC {
  from { transform: perspective(260px) rotateX(80deg) rotateZ(0deg); }
  to   { transform: perspective(260px) rotateX(80deg) rotateZ(360deg); }
}
.av-ring-a::after {
  content: '';
  position: absolute;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 10px var(--neon), 0 0 22px rgba(141,255,79,0.55);
  top: -3px; left: calc(50% - 3px);
}
.av-ring-b::after {
  content: '';
  position: absolute;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
  bottom: -2.5px; left: calc(50% - 2.5px);
  opacity: 0.7;
}
.av-figure {
  position: absolute; left: 50%; top: 50%;
  display: flex; flex-direction: column; align-items: center;
  animation: avFloat 4s ease-in-out infinite;
}
@keyframes avFloat {
  0%, 100% { transform: translateX(-50%) translateY(-52%); }
  50%       { transform: translateX(-50%) translateY(-58%); }
}
.av-head {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(ellipse at 38% 35%, rgba(141,255,79,0.20) 0%, rgba(15,28,15,0.95) 70%);
  border: 1.5px solid rgba(141,255,79,0.55);
  box-shadow: 0 0 20px rgba(141,255,79,0.30), inset 0 1px 10px rgba(141,255,79,0.08);
  position: relative;
}
.av-head::before {
  content: '';
  position: absolute; top: 7px; left: 9px;
  width: 9px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,0.10);
  transform: rotate(-22deg);
}
.av-initials {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem; font-weight: 700;
  color: var(--neon);
  text-shadow: 0 0 8px rgba(141,255,79,0.9);
  letter-spacing: 0.02em;
  z-index: 1;
}
.av-neck {
  width: 9px; height: 7px;
  background: rgba(141,255,79,0.09);
  border-left: 1px solid rgba(141,255,79,0.20);
  border-right: 1px solid rgba(141,255,79,0.20);
}
.av-torso {
  width: 52px; height: 56px;
  background: linear-gradient(165deg, rgba(141,255,79,0.11) 0%, rgba(141,255,79,0.03) 100%);
  border: 1.5px solid rgba(141,255,79,0.22);
  border-top: none;
  border-radius: 8px 8px 5px 5px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.av-torso::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(141,255,79,0.45), transparent);
}
.av-torso-icon {
  width: 22px; height: 22px;
  color: var(--neon);
  animation: avIconPulse 2.5s ease-in-out infinite;
}
.av-torso-icon svg {
  width: 100%; height: 100%;
  fill: none; stroke: var(--neon);
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
@keyframes avIconPulse {
  0%, 100% { opacity: 0.40; }
  50%       { opacity: 0.90; filter: drop-shadow(0 0 6px rgba(141,255,79,0.65)); }
}
.av-base {
  width: 62px; height: 5px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(141,255,79,0.45) 0%, transparent 70%);
  margin-top: 3px;
  animation: avBasePulse 3s ease-in-out infinite;
}
@keyframes avBasePulse {
  0%, 100% { opacity: 0.5; transform: scaleX(0.85); }
  50%       { opacity: 1;   transform: scaleX(1.25); }
}
.av-particle {
  position: absolute; border-radius: 50%;
  background: var(--neon); box-shadow: 0 0 5px var(--neon);
  pointer-events: none;
}
.av-p1 { width: 3px; height: 3px; top: 18%; left: 14%; animation: avPa 5.5s ease-in-out infinite; }
.av-p2 { width: 4px; height: 4px; top: 62%; right: 10%; animation: avPb 6.2s ease-in-out infinite 1.2s; }
.av-p3 { width: 2px; height: 2px; top: 38%; right: 18%; animation: avPa 4.1s ease-in-out infinite 0.6s; }
.av-p4 { width: 3px; height: 3px; bottom: 18%; left: 20%; animation: avPb 7s ease-in-out infinite 2s; }
@keyframes avPa {
  0%, 100% { transform: translate(0,0); opacity: 0.35; }
  33%  { transform: translate(6px,-12px); opacity: 0.9; }
  66%  { transform: translate(-8px,-6px); opacity: 0.6; }
}
@keyframes avPb {
  0%, 100% { transform: translate(0,0); opacity: 0.40; }
  50%  { transform: translate(-6px,-14px); opacity: 0.85; }
}
.av-corner {
  position: absolute; width: 10px; height: 10px;
  border-color: rgba(141,255,79,0.40); border-style: solid;
  pointer-events: none;
}
.av-c1 { top: 8px; left: 8px; border-width: 1.5px 0 0 1.5px; }
.av-c2 { top: 8px; right: 8px; border-width: 1.5px 1.5px 0 0; }
.av-c3 { bottom: 8px; left: 8px; border-width: 0 0 1.5px 1.5px; }
.av-c4 { bottom: 8px; right: 8px; border-width: 0 1.5px 1.5px 0; }
/* per-avatar offsets for unique feel */
.av-2 .av-ring-a { animation-duration: 4s; animation-direction: reverse; }
.av-2 .av-ring-b { animation-duration: 6.5s; animation-direction: normal; }
.av-2 .av-scan   { animation-delay: -1.2s; }
.av-2 .av-figure { animation-delay: -1.3s; }
.av-3 .av-ring-a { animation-duration: 6.5s; }
.av-3 .av-ring-c { animation-duration: 3.2s; animation-direction: reverse; }
.av-3 .av-scan   { animation-delay: -2.5s; }
.av-3 .av-figure { animation-delay: -2.1s; }
.av-4 .av-ring-a { animation-duration: 3.8s; animation-direction: reverse; }
.av-4 .av-ring-b { animation-duration: 9s; animation-direction: normal; }
.av-4 .av-scan   { animation-delay: -0.8s; }
.av-4 .av-figure { animation-delay: -0.6s; }
/* hover lift */
.team-card:hover .av-head {
  box-shadow: 0 0 28px rgba(141,255,79,0.50), inset 0 1px 10px rgba(141,255,79,0.12);
}
.team-card:hover .av-ring-a { border-color: rgba(141,255,79,0.48); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .about-hero-section { grid-template-columns: 1fr; gap: 30px; }
  .story-section { grid-template-columns: 1fr; }
  .story-left { border-right: none; border-bottom: 1px solid rgba(var(--neon-rgb),0.1); }
  .expertise-grid { grid-template-columns: repeat(3,1fr); }
  .team-section { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .bottom-row { grid-template-columns: 1fr; gap: 26px; }
  .trusted-panel, .cta-right-panel { padding: 32px 26px; }
  .trusted-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-right-panel { align-items: flex-start; }
  .cta-right-panel h3, .cta-right-panel p { max-width: none; }
}
@media (max-width: 900px) {
  .story-section { gap: 24px; }
  .trusted-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bottom-row { grid-template-columns: 1fr; gap: 20px; }
  .trusted-panel, .cta-right-panel { padding: 28px 22px; min-width: 0; }
  .cta-right-panel { align-items: stretch; }
  .cta-right-panel h3 { font-size: 1.55rem; }
  .cta-right-panel .btn.btn-glow { width: 100%; justify-content: center; }
}
@media (max-width: 760px) {
  .about-hero-section { gap: 24px; }
  .values-row { grid-template-columns: 1fr 1fr; }
  .story-section { gap: 20px; }
  .expertise-grid { grid-template-columns: repeat(2,1fr); }
  .stats-2x2 { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .bottom-row { gap: 18px; }
  .trusted-panel, .cta-right-panel { padding: 24px 18px; }
  .trusted-logos { grid-template-columns: 1fr; }
  .cta-right-panel h3 { font-size: 1.35rem; }
  .cta-right-panel p { max-width: 100%; }
  .cta-right-panel .btn.btn-glow { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .about-hero-section { gap: 20px; }
  .values-row { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
  .trusted-panel, .cta-right-panel { padding: 22px 16px; }
  .bottom-row { gap: 16px; }
  .cta-right-panel h3 { font-size: 1.2rem; }
  .cta-right-panel .btn.btn-glow { width: 100%; }
}
