/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ SHARED ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.text-orange {
  color: var(--orange);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  color: #888;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.svc-header {
  text-align: center;
  margin-bottom: 60px;
}

.svc-header h2 {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.1;
  background: linear-gradient(180deg, #fff 60%, #666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}

.svc-header h2 .text-orange {
  -webkit-text-fill-color: var(--orange);
}

.svc-header p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ SECTION 3: STATS ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.stats-section {
  background: var(--bg);
  padding: 80px 40px;
  border-top: 1px solid #1a1a1a;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.stats-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #444;
  margin-bottom: 48px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.stat-card {
  background: #111;
  border: 1px solid #1e1e1e;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, background .3s;
}

.stat-card:first-child {
  border-radius: 16px 0 0 16px;
}

.stat-card:last-child {
  border-radius: 0 16px 16px 0;
}

.stat-card:hover {
  background: #151515;
  border-color: #333;
}

.stat-num {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: -2px;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-count {
  color: var(--orange);
}

.stat-desc {
  font-size: 13px;
  color: #555;
  font-weight: 500;
  margin-bottom: 20px;
}

.stat-bar {
  height: 2px;
  background: #1e1e1e;
  border-radius: 2px;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  width: 0;
  background: var(--orange);
  border-radius: 2px;
  transition: width 1.4s cubic-bezier(.22, 1, .36, 1);
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ SECTION 4: SERVICES ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.services-section {
  background: var(--bg);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.svc-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(255, 92, 26, .05) 0%, transparent 70%);
  pointer-events: none;
}

.svc-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.svc-card {
  background: #111;
  border: 1px solid #1e1e1e;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1), border-color .4s, box-shadow .4s, border-radius .4s;
  cursor: pointer;
}

.svc-vfx {
  border-radius: 40px 10px 40px 10px;
}

.svc-arch {
  border-radius: 10px 40px 10px 40px;
}

.svc-code {
  border-radius: 40px 10px 40px 10px;
}

.svc-live {
  border-radius: 10px 40px 10px 40px;
}

.svc-card:hover {
  transform: translateY(-8px);
}

.svc-vfx:hover {
  border-color: var(--orange);
  border-radius: 30px 20px 30px 20px;
  box-shadow: 0 15px 40px rgba(255, 92, 26, 0.15);
}

.svc-arch:hover {
  border-color: var(--cyan);
  border-radius: 20px 30px 20px 30px;
  box-shadow: 0 15px 40px rgba(0, 242, 255, 0.15);
}

.svc-code:hover {
  border-color: var(--green);
  border-radius: 30px 20px 30px 20px;
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.15);
}

.svc-live:hover {
  border-color: var(--purple);
  border-radius: 20px 30px 20px 30px;
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
}

.svc-card-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity .4s;
}

.svc-vfx .svc-card-glow {
  background: radial-gradient(rgba(255, 92, 26, .3), transparent 70%);
}

.svc-arch .svc-card-glow {
  background: radial-gradient(rgba(0, 242, 255, .25), transparent 70%);
}

.svc-code .svc-card-glow {
  background: radial-gradient(rgba(16, 185, 129, .25), transparent 70%);
}

.svc-live .svc-card-glow {
  background: radial-gradient(rgba(139, 92, 246, .25), transparent 70%);
}

.svc-card:hover .svc-card-glow {
  opacity: 1;
}

.svc-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.svc-icon-wrap.orange {
  background: rgba(255, 92, 26, .12);
  color: var(--orange);
}

.svc-icon-wrap.cyan {
  background: rgba(0, 240, 255, .1);
  color: #00f0ff;
}

.svc-icon-wrap.green {
  background: rgba(0, 255, 128, .1);
  color: #00ff80;
}

.svc-icon-wrap.purple {
  background: rgba(160, 80, 255, .1);
  color: #a050ff;
}

.svc-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.svc-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.65;
  margin-bottom: 20px;
}

.svc-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.svc-tags li {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #666;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  padding: 3px 10px;
  border-radius: 20px;
}

.svc-arrow {
  font-size: 18px;
  color: #333;
  transition: color .3s, transform .3s;
}

.svc-card:hover .svc-arrow {
  color: var(--orange);
  transform: translateX(4px);
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ SECTION 5: PROCESS (REDESIGNED) ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.process-section {
  background: #0a0a0a;
  padding: 120px 40px;
  border-top: 1px solid #161616;
  position: relative;
  overflow: hidden;
}

.proc-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.proc-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.proc-line {
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, rgba(255, 92, 26, 0.15) 30%, var(--orange) 70%, rgba(255, 92, 26, 0.15) 100%);
  box-shadow: 0 0 10px rgba(255, 92, 26, 0.3);
  z-index: 0;
}

.proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding-top: 8px;
}

.proc-dot {
  width: 50px;
  height: 50px;
  border-radius: 12px 4px 12px 4px;
  background: rgba(17, 17, 17, 0.6);
  border: 1px dashed rgba(255, 92, 26, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  font-weight: 800;
  color: var(--orange);
  z-index: 1;
  position: relative;
  margin-bottom: 32px;
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1), background .4s, border-color .4s, box-shadow .4s, border-radius .4s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.proc-step:hover .proc-dot {
  transform: rotate(45deg);
  background: var(--orange);
  color: #fff;
  box-shadow: 0 0 24px var(--orange);
  border-style: solid;
  border-color: var(--orange);
  border-radius: 8px 8px 8px 8px;
}

.proc-dot span {
  display: inline-block;
  transition: transform .4s ease;
}

.proc-step:hover .proc-dot span {
  transform: rotate(-45deg);
}

.proc-card {
  background: rgba(17, 17, 17, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px 6px 20px 6px;
  padding: 28px 24px;
  transition: border-color .4s, transform .4s, border-radius .4s, box-shadow .4s;
  width: 100%;
}

.proc-step:hover .proc-card {
  border-color: var(--orange);
  transform: translateY(-8px);
  border-radius: 12px 12px 12px 12px;
  box-shadow: 0 20px 40px rgba(255, 92, 26, 0.08);
}

.proc-icon {
  font-size: 26px;
  margin-bottom: 16px;
  display: inline-block;
  transition: transform 0.4s ease;
}

.proc-step:hover .proc-icon {
  transform: scale(1.15) rotate(5deg);
}

.proc-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.proc-card p {
  font-size: 13px;
  color: #888;
  line-height: 1.65;
  margin: 0;
  transition: color 0.3s;
}

.proc-step:hover .proc-card p {
  color: #bbb;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ SECTION 6: PORTFOLIO ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.portfolio-section {
  background: var(--bg);
  padding: 100px 40px;
  border-top: 1px solid #1a1a1a;
}

.port-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .port-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
  }
}

@media (max-width: 640px) {
  .port-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
}

.port-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 2 / 3;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: #000;
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.port-item:hover {
  border-color: var(--card-accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--card-glow, rgba(255, 255, 255, 0.1));
}

/* ─── IMAGE ─── */
.port-img {
  position: absolute;
  inset: 0;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  background-size: cover;
  background-position: center top;
  opacity: 0.85;
}

.port-item:hover .port-img {
  transform: scale(1.05);
  opacity: 1;
}

/* ─── HUD BADGE (TOP RIGHT) ─── */
.port-hud {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--card-accent);
  color: var(--card-accent);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  backdrop-filter: blur(8px);
  z-index: 2;
  box-shadow: 0 0 10px var(--card-glow, rgba(0, 0, 0, 0));
  transition: all 0.4s ease;
}

.port-item:hover .port-hud {
  background: var(--card-accent);
  color: #000;
  box-shadow: 0 0 15px var(--card-accent);
}

/* ─── BOTTOM CONTENT ─── */
.port-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 24px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  z-index: 2;
  transition: transform 0.4s ease;
}

.port-bottom h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin: 0 0 8px 0;
}

.port-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--card-accent);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.port-cat-icon {
  font-size: 14px;
}

/* ── SECTION 7: TECH ── */
.tech-section {
  background: #0a0a0a;
  padding: 100px 40px;
  border-top: 1px solid #161616;
  overflow: hidden;
}

.tech-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.tech-marquee-wrap {
  overflow: hidden;
  margin: 0 -40px 60px;
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}

.tech-marquee {
  display: flex;
}

.tech-track {
  display: flex;
  gap: 12px;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.tech-pill {
  background: #131313;
  border: 1px solid #222;
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  color: #666;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color .3s, border-color .3s;
}

.tech-pill:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.tech-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tech-card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color .3s, transform .3s;
}

.tech-card:hover {
  border-color: #333;
  transform: translateY(-4px);
}

.tc-icon {
  font-size: 24px;
  margin-bottom: 14px;
  display: block;
}

.tc-icon.orange {
  color: var(--orange);
}

.tc-icon.cyan {
  color: #00f0ff;
}

.tc-icon.green {
  color: #00ff80;
}

.tc-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.tc-sub {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ SECTION 8: TESTIMONIALS (REDESIGNED) ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.testi-section {
  background: var(--bg);
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #161616;
}

.testi-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.testi-card {
  background: rgba(17, 17, 17, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px 8px 24px 8px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1), border-color .4s, box-shadow .4s, border-radius .4s;
  cursor: pointer;
}

.testi-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.01), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.testi-card:hover {
  transform: translateY(-8px);
  border-radius: 16px 16px 16px 16px;
}

.testi-card:nth-child(1):hover {
  border-color: var(--orange);
  box-shadow: 0 20px 50px rgba(255, 92, 26, 0.12);
}

.testi-card:nth-child(2):hover {
  border-color: var(--cyan);
  box-shadow: 0 20px 50px rgba(0, 242, 255, 0.12);
}

.testi-card:nth-child(3):hover {
  border-color: var(--green);
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.12);
}

.testi-quote {
  font-family: 'Space Mono', monospace;
  font-size: 80px;
  font-weight: 900;
  line-height: .2;
  margin-bottom: 24px;
  opacity: .15;
  user-select: none;
}

.testi-card:nth-child(1) .testi-quote {
  color: var(--orange);
}

.testi-card:nth-child(2) .testi-quote {
  color: var(--cyan);
}

.testi-card:nth-child(3) .testi-quote {
  color: var(--green);
}

.testi-card p {
  font-size: 14.5px;
  color: #aaa;
  line-height: 1.75;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
  font-weight: 400;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px 4px 12px 4px;
  flex-shrink: 0;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease;
}

.testi-card:hover .testi-avatar {
  transform: rotate(5deg) scale(1.1);
}

.av1 {
  background: linear-gradient(135deg, #ff5c1a, #ff2020);
  box-shadow: 0 0 12px rgba(255, 92, 26, 0.3);
}

.av2 {
  background: linear-gradient(135deg, #00f0ff, #0060ff);
  box-shadow: 0 0 12px rgba(0, 242, 255, 0.3);
}

.av3 {
  background: linear-gradient(135deg, #00ff80, #00a050);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.3);
}

.testi-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.testi-author span {
  font-size: 11.5px;
  color: #666;
  font-family: 'Space Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ SECTION 9: TEAM (REDESIGNED) ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.team-section {
  background: #0a0a0a;
  padding: 120px 40px;
  border-top: 1px solid #161616;
  position: relative;
  overflow: hidden;
}

.team-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-card {
  background: rgba(17, 17, 17, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 8px 24px 8px 24px;
  overflow: hidden;
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1), border-color .4s, box-shadow .4s, border-radius .4s;
  cursor: pointer;
  position: relative;
}

.team-card:hover {
  transform: translateY(-8px);
  border-radius: 16px 16px 16px 16px;
}

.team-card:nth-child(1):hover {
  border-color: var(--orange);
  box-shadow: 0 20px 50px rgba(255, 92, 26, 0.12);
}

.team-card:nth-child(2):hover {
  border-color: var(--cyan);
  box-shadow: 0 20px 50px rgba(0, 242, 255, 0.12);
}

.team-card:nth-child(3):hover {
  border-color: var(--green);
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.12);
}

.team-card:nth-child(4):hover {
  border-color: var(--purple);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.12);
}

.team-photo {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #111 0%, transparent 60%);
  z-index: 2;
}

/* Cyber technical scanline blueprint effect on photo hover */
.team-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 15px 15px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.team-card:hover .team-photo::before {
  opacity: 1;
}

.tp1 {
  background: linear-gradient(160deg, #1a0800, #3d1200, #0d0d0d);
}

.tp2 {
  background: linear-gradient(160deg, #001a1a, #003344, #0d0d0d);
}

.tp3 {
  background: linear-gradient(160deg, #001100, #002a10, #0d0d0d);
}

.tp4 {
  background: linear-gradient(160deg, #0d0020, #200050, #0d0d0d);
}

.tp1::before,
.tp2::before,
.tp3::before,
.tp4::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 160px;
  border-radius: 50px 50px 0 0;
  z-index: 1;
  transition: transform 0.4s ease;
}

.team-card:hover .team-photo::before,
.team-card:hover .tp1::before {
  transform: translateX(-50%) translateY(-5px) scale(1.05);
}

.team-card:hover .tp2::before {
  transform: translateX(-50%) translateY(-5px) scale(1.05);
}

.team-card:hover .tp3::before {
  transform: translateX(-50%) translateY(-5px) scale(1.05);
}

.team-card:hover .tp4::before {
  transform: translateX(-50%) translateY(-5px) scale(1.05);
}

.tp1::before {
  background: rgba(255, 92, 26, .25);
  box-shadow: 0 0 40px rgba(255, 92, 26, .3);
}

.tp2::before {
  background: rgba(0, 240, 255, .15);
  box-shadow: 0 0 40px rgba(0, 240, 255, .2);
}

.tp3::before {
  background: rgba(0, 255, 128, .15);
  box-shadow: 0 0 40px rgba(0, 255, 128, .2);
}

.tp4::before {
  background: rgba(160, 80, 255, .15);
  box-shadow: 0 0 40px rgba(160, 80, 255, .2);
}

.team-info {
  padding: 24px;
  position: relative;
  z-index: 3;
}

.team-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.team-role {
  font-size: 11.5px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 1px;
  font-family: 'Space Mono', monospace;
  text-transform: uppercase;
}

.team-role.orange {
  color: var(--orange);
}

.team-role.cyan {
  color: #00f2ff;
}

.team-role.green {
  color: #10b981;
}

.team-role.purple {
  color: #8b5cf6;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.team-tags span {
  font-size: 10px;
  font-weight: 700;
  color: #666;
  background: #1a1a1a;
  border: 1px solid #222;
  padding: 3px 10px;
  border-radius: 20px;
  transition: color 0.3s, border-color 0.3s;
}

.team-card:hover .team-tags span {
  color: #aaa;
  border-color: #333;
}
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ SECTION 10: CTA + FOOTER ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.cta-section {
  background: var(--bg);
  padding: 120px 40px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #1a1a1a;
}

.cta-bg-mesh {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.cta-glow-left {
  position: absolute;
  top: 0;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(rgba(255, 92, 26, .12), transparent 70%);
  pointer-events: none;
}

.cta-glow-right {
  position: absolute;
  bottom: 100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(rgba(255, 92, 26, .08), transparent 70%);
  pointer-events: none;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 92, 26, .2);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.cta-inner h2 {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  background: linear-gradient(180deg, #fff 60%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.cta-inner h2 .text-orange {
  -webkit-text-fill-color: var(--orange);
}

.cta-inner p {
  font-size: 16px;
  color: #666;
  margin-bottom: 36px;
  line-height: 1.6;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.cta-btn-main {
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 12px;
}

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #555;
  font-weight: 500;
}

.ct-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ct-dot.orange {
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
}

.ct-dot.green {
  background: #00ff80;
  box-shadow: 0 0 8px #00ff80;
}

.ct-dot.cyan {
  background: #00f0ff;
  box-shadow: 0 0 8px #00f0ff;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ FOOTER ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.site-footer {
  border-top: 1px solid #1a1a1a;
  padding: 32px 40px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  font-size: 13px;
  transition: color .2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  font-size: 12px;
  color: #333;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ SCROLL-IN ANIMATIONS ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ RESPONSIVE ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
@media (max-width: 900px) {

  .stats-grid,
  .svc-grid,
  .tech-cards,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .port-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
  }

  .port-big {
    grid-row: auto;
    min-height: 320px;
  }

  .proc-timeline {
    grid-template-columns: 1fr 1fr;
  }

  .proc-line {
    display: none;
  }
}

@media (max-width: 540px) {

  .stats-grid,
  .svc-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .stat-card:first-child {
    border-radius: 16px 16px 0 0;
  }

  .stat-card:last-child {
    border-radius: 0 0 16px 16px;
  }

  .proc-timeline {
    grid-template-columns: 1fr;
  }

  .tech-cards {
    grid-template-columns: 1fr;
  }
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ SECTION 4.5: VFX SUITE ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.vfx-suite-section {
  background: var(--bg);
  padding: 100px 40px;
  border-top: 1px solid #1a1a1a;
  position: relative;
  overflow: hidden;
}

.vfx-suite-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.vfx-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vfx-card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 24px;
  padding: 32px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.vfx-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 15px 40px rgba(255, 92, 26, 0.15);
}

.vfx-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.vfx-card-icon {
  font-size: 32px;
  color: var(--orange);
  filter: drop-shadow(0 0 8px rgba(255, 92, 26, 0.4));
}

.vfx-card-badge {
  font-family: monospace;
  font-size: 10px;
  color: rgba(255, 92, 26, 0.5);
  border: 1px solid rgba(255, 92, 26, 0.2);
  padding: 3px 8px;
  border-radius: 6px;
  transition: border-color 0.3s, color 0.3s;
}

.vfx-card:hover .vfx-card-badge {
  color: var(--orange);
  border-color: var(--orange);
}

.vfx-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.vfx-card:hover h3 {
  color: var(--orange);
}

.vfx-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

.vfx-card-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.3s;
}

.vfx-card:hover .vfx-card-footer {
  border-color: rgba(255, 92, 26, 0.2);
}

.vfx-card-sub {
  font-family: monospace;
  font-size: 10px;
  font-weight: 700;
  color: #444;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.vfx-card:hover .vfx-card-sub {
  color: #fff;
}

.vfx-card-arrow {
  font-size: 16px;
  color: var(--orange);
  transition: transform 0.3s;
}

.vfx-card:hover .vfx-card-arrow {
  transform: translateX(4px);
}

/* Rotoscoping card spans 2 columns on desktop */
.vfx-card-wide {
  grid-column: span 2;
}

@media (max-width: 900px) {
  .vfx-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vfx-card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .vfx-card-wide-inner {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .vfx-card-wide-right {
    border-left: none !important;
    padding-left: 0 !important;
    margin-top: 16px;
  }
}

@media (max-width: 540px) {
  .vfx-grid {
    grid-template-columns: 1fr;
  }

  .vfx-card-wide {
    grid-column: span 1;
  }
}

/* ══ SECTION 6.5: SPATIAL DESIGN MODULE ══ */
.spatial-suite-section {
  background: var(--bg);
  padding: 100px 40px;
  border-top: 1px solid #1a1a1a;
  position: relative;
  overflow: hidden;
}

.spatial-suite-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.spatial-grid-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.spatial-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.spatial-card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 20px;
  padding: 32px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.spatial-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
  box-shadow: 0 10px 30px rgba(0, 242, 255, 0.12);
}

.spatial-card-icon {
  font-size: 36px;
  color: var(--cyan);
  margin-bottom: 24px;
  filter: drop-shadow(0 0 8px rgba(0, 242, 255, 0.4));
  transition: transform 0.3s;
}

.spatial-card:hover .spatial-card-icon {
  transform: translateY(-2px);
}

.spatial-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.spatial-card:hover h4 {
  color: var(--cyan);
}

.spatial-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* Featured rendering section on the right */
.spatial-featured-wrap {
  position: relative;
}

.spatial-featured-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0, 242, 255, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  opacity: 0.3;
  transition: opacity 0.5s;
  z-index: 1;
  pointer-events: none;
}

.spatial-featured-wrap:hover .spatial-featured-glow {
  opacity: 0.6;
}

.spatial-featured-img {
  width: 100%;
  border-radius: 32px;
  border: 1px solid #222;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  filter: grayscale(40%);
  transition: transform 0.8s ease, filter 0.8s ease;
  position: relative;
  z-index: 2;
  display: block;
}

.spatial-featured-wrap:hover .spatial-featured-img {
  transform: scale(1.03);
  filter: grayscale(0%);
}

.spatial-metric-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 242, 255, 0.25);
  padding: 24px 32px;
  border-radius: 20px;
  z-index: 3;
  max-width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.5s ease, border-color 0.5s ease;
}

.spatial-featured-wrap:hover .spatial-metric-card {
  transform: translate(-10px, -10px);
  border-color: var(--cyan);
}

.spatial-metric-label {
  font-family: monospace;
  font-size: 10px;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
  text-shadow: 0 0 6px var(--cyan);
}

.spatial-metric-text {
  font-size: 14.5px;
  color: #fff;
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1024px) {
  .spatial-grid-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .spatial-metric-card {
    bottom: -12px;
    right: 0;
    max-width: 85%;
  }
}

@media (max-width: 540px) {
  .spatial-cards-grid {
    grid-template-columns: 1fr;
  }

  .spatial-metric-card {
    position: relative;
    bottom: 0;
    right: 0;
    max-width: 100%;
    margin-top: 24px;
  }
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ HUD STYLES & SKEWED MARQUEE ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.tech-marquee-ribbon {
  background: #0d0d0d;
  border-top: 1px solid rgba(255, 92, 26, 0.15);
  border-bottom: 1px solid rgba(255, 92, 26, 0.15);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
  transform: rotate(-1.5deg) translateY(-20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  width: 104%;
  margin-left: -2%;
  margin-bottom: 40px;
}

.tech-marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeLoop 30s linear infinite;
  gap: 60px;
}

.tech-marquee-item {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 60px;
  text-transform: uppercase;
}

.tech-marquee-item span {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tech-marquee-item .t-orange {
  color: var(--orange);
  text-shadow: 0 0 10px var(--orange);
}

.tech-marquee-item .t-cyan {
  color: var(--cyan);
  text-shadow: 0 0 10px var(--cyan);
}

.tech-marquee-item .t-green {
  color: var(--green);
  text-shadow: 0 0 10px var(--green);
}

.tech-marquee-item .t-purple {
  color: var(--purple);
  text-shadow: 0 0 10px var(--purple);
}

.tech-marquee-diamond {
  color: #333;
  font-size: 12px;
}

@keyframes marqueeLoop {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Cybernetic HUD Corner brackets (Reference 4) */
.hud-corner-container {
  position: relative;
}

.hud-corner-container::before,
.hud-corner-container::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  pointer-events: none;
  z-index: 5;
  transition: border-color 0.3s;
}

.hud-corner-container::before {
  top: 10px;
  left: 10px;
  border-top: 2px solid rgba(255, 255, 255, 0.12);
  border-left: 2px solid rgba(255, 255, 255, 0.12);
}

.hud-corner-container::after {
  bottom: 10px;
  right: 10px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.12);
  border-right: 2px solid rgba(255, 255, 255, 0.12);
}

.hud-corner-container:hover::before {
  border-color: var(--orange);
}

.hud-corner-container:hover::after {
  border-color: var(--orange);
}

/* Elegant Technical Dividers (Reference 9) */
.hud-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 40px;
  box-sizing: border-box;
  opacity: 0.8;
}

.hud-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 92, 26, 0.25) 50%, transparent);
}

.hud-divider-node {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  margin: 0 24px;
  letter-spacing: 3px;
  text-shadow: 0 0 10px var(--orange);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hud-divider-node span {
  font-size: 12px;
  color: #333;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ CYBERNETIC CONTACT GRID (Reference 10) ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  text-align: left;
  margin-top: 48px;
  width: 100%;
}

.contact-form-card {
  background: rgba(17, 17, 17, 0.45) !important;
  border: 1px solid rgba(255, 92, 26, 0.2) !important;
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 0 40px rgba(255, 92, 26, 0.05);
  position: relative;
  overflow: hidden;
}

.contact-form-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, rgba(255, 92, 26, 0.04), transparent 60%);
  pointer-events: none;
}

.contact-form-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
}

.contact-form-card h3 span {
  color: var(--orange);
}

.contact-form-card label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  font-family: 'Space Mono', monospace;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14px;
  color: #fff;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 12px rgba(255, 92, 26, 0.15);
}

.contact-btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 13.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 12px;
  border: none;
  background: var(--orange);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 92, 26, 0.2);
  transition: transform 0.2s, box-shadow 0.3s, background 0.3s;
}

.contact-btn-submit:hover {
  background: #ff7033;
  box-shadow: 0 6px 20px rgba(255, 92, 26, 0.4);
  transform: translateY(-2px);
}

.contact-coordinate-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}

.coordinate-card {
  background: rgba(17, 17, 17, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 24px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.coordinate-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.coordinate-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--orange);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.coordinate-value {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.coordinate-status {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  padding: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-top: auto;
}

/* ══ GLOBAL MOBILE POLISH ══ */
@media (max-width: 768px) {
  /* Reduce excessive padding on sections */
  section, 
  .vfx-suite-section, 
  .spatial-suite-section, 
  .pipeline-section, 
  .ecosystem-section, 
  .labs-section, 
  .hardware-section, 
  .community-section, 
  .portfolio-section, 
  .testimonials-section, 
  .team-section {
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  
  /* Shrink huge headings */
  .ws-title {
    font-size: clamp(32px, 8vw, 42px) !important;
  }
  
  /* Stack grid layouts that didn't collapse properly */
  .feat-grid, 
  .spatial-grid, 
  .pipeline-grid, 
  .eco-grid, 
  .labs-grid, 
  .hw-grid, 
  .comm-grid {
    grid-template-columns: 1fr !important;
  }

  .wide-card,
  .spatial-card-wide,
  .eco-card-wide,
  .hw-card-wide {
    grid-column: span 1 !important;
  }
  
  /* Adjust inner structures */
  .spatial-card-wide-inner,
  .eco-card-wide-inner,
  .hw-card-wide-inner {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  
  .spatial-card-wide-right,
  .eco-card-wide-right,
  .hw-card-wide-right {
    border-left: none !important;
    padding-left: 0 !important;
    margin-top: 16px !important;
  }
}