/* ================================================
   ULTRA PREMIUM — BERASOFT ENTERPRISE DESIGN SYSTEM
   ================================================ */

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left { opacity:0; transform:translateX(-40px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal-left.visible { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(40px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal-right.visible { opacity:1; transform:translateX(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }
.reveal-delay-6 { transition-delay: .6s; }

/* ---- GRADIENT BORDER CARDS ---- */
.grad-border-card {
  position: relative;
  border-radius: 20px;
  background: rgba(15,23,42,.8);
  padding: 1px;
  transition: all .3s;
}
.grad-border-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0,229,255,.3), rgba(0,229,255,.05) 50%, rgba(31,182,255,.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: all .3s;
}
.grad-border-card:hover::before {
  background: linear-gradient(135deg, rgba(0,229,255,.7), rgba(31,182,255,.4));
}
.grad-border-card-inner {
  border-radius: 19px;
  background: rgba(10,15,26,.9);
  padding: 32px;
  height: 100%;
}

/* ---- NEON GLOW ---- */
.neon-glow { box-shadow: 0 0 20px rgba(0,229,255,.3), 0 0 60px rgba(0,229,255,.1); }
.neon-glow:hover { box-shadow: 0 0 30px rgba(0,229,255,.5), 0 0 80px rgba(0,229,255,.2); }
.text-glow { text-shadow: 0 0 30px rgba(0,229,255,.4); }

/* ---- MARQUEE / TICKER ---- */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}
.marquee-container::before { left: 0; background: linear-gradient(90deg, #080D1A, transparent); }
.marquee-container::after  { right: 0; background: linear-gradient(-90deg, #080D1A, transparent); }
.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  border-right: 1px solid rgba(0,229,255,.12);
  color: rgba(201,209,217,.7);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: color .3s;
}
.marquee-item:hover { color: #00E5FF; }
.marquee-item svg, .marquee-item i { color: #00E5FF; flex-shrink: 0; }

/* ---- PROCESS STEPS ---- */
.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 60px;
}
@media(max-width:900px) { .process-line { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media(max-width:560px) { .process-line { grid-template-columns: 1fr; } }
.process-step {
  position: relative;
  padding: 32px 24px;
  text-align: center;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -1px;
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(0,229,255,.3), transparent);
}
@media(max-width:900px) { .process-step:not(:last-child)::after { display: none; } }
.process-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,229,255,.15), rgba(31,182,255,.08));
  border: 1px solid rgba(0,229,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  font-weight: 900;
  color: #00E5FF;
  position: relative;
  z-index: 1;
  transition: .3s;
}
.process-step:hover .process-num {
  background: linear-gradient(135deg, rgba(0,229,255,.3), rgba(31,182,255,.2));
  box-shadow: 0 0 30px rgba(0,229,255,.3);
}
.process-step__title { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.process-step__desc { font-size: 14px; color: rgba(201,209,217,.7); line-height: 1.6; }

/* ---- PREMIUM SERVICE CARDS ---- */
.svc-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media(max-width:1024px) { .svc-premium-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:640px)  { .svc-premium-grid { grid-template-columns: 1fr; } }
.svc-premium-card {
  background: rgba(10,15,26,.8);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all .4s cubic-bezier(.22,1,.36,1);
  group: true;
}
.svc-premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00E5FF, #1FB6FF, #00D1B2);
  transform: scaleX(0);
  transform-origin: left;
  transition: .4s cubic-bezier(.22,1,.36,1);
}
.svc-premium-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(0,229,255,.06) 0%, transparent 60%);
  opacity: 0;
  transition: .4s;
}
.svc-premium-card:hover {
  border-color: rgba(0,229,255,.25);
  transform: translateY(-10px);
  box-shadow: 0 32px 80px rgba(0,229,255,.12), 0 0 0 1px rgba(0,229,255,.1);
}
.svc-premium-card:hover::before { transform: scaleX(1); }
.svc-premium-card:hover::after { opacity: 1; }
.svc-num {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, rgba(0,229,255,.08), rgba(31,182,255,.04));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -4px;
  user-select: none;
}
.svc-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,229,255,.18), rgba(31,182,255,.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00E5FF;
  margin-bottom: 20px;
  transition: .3s;
}
.svc-premium-card:hover .svc-icon-wrap {
  background: linear-gradient(135deg, rgba(0,229,255,.3), rgba(31,182,255,.15));
  box-shadow: 0 8px 24px rgba(0,229,255,.2);
}
.svc-title { font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 12px; position: relative; z-index: 1; }
.svc-desc  { font-size: 14px; color: rgba(201,209,217,.75); line-height: 1.7; margin-bottom: 20px; position: relative; z-index: 1; }
.svc-features { list-style: none; padding: 0; margin: 0 0 24px 0; display: flex; flex-direction: column; gap: 8px; position: relative; z-index: 1; }
.svc-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(201,209,217,.7);
}
.svc-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00E5FF;
  flex-shrink: 0;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #00E5FF;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  min-height: auto;
  transition: .2s;
  position: relative;
  z-index: 1;
}
.svc-link:hover { gap: 10px; }

/* ---- STATS COUNTER SECTION ---- */
.stats-mega {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(0,229,255,.06);
  border: 1px solid rgba(0,229,255,.1);
  border-radius: 20px;
  overflow: hidden;
}
@media(max-width:900px) { .stats-mega { grid-template-columns: repeat(2, 1fr); } }
.stat-mega-item {
  background: rgba(10,15,26,.95);
  padding: 48px 32px;
  text-align: center;
  transition: .3s;
  position: relative;
}
.stat-mega-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,229,255,.04), transparent 70%);
  opacity: 0;
  transition: .4s;
}
.stat-mega-item:hover::before { opacity: 1; }
.stat-mega-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0,229,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #00E5FF;
}
.stat-mega-num {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  background: linear-gradient(135deg, #fff, #00E5FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
}
.stat-mega-label { font-size: 15px; color: rgba(201,209,217,.8); font-weight: 500; }
.stat-mega-sub { font-size: 12px; color: rgba(201,209,217,.4); margin-top: 4px; }

/* ---- PREMIUM TESTIMONIALS ---- */
.testimonials-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media(max-width:900px) { .testimonials-premium-grid { grid-template-columns: 1fr; } }
.testimonial-premium {
  background: rgba(10,15,26,.8);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  padding: 36px;
  transition: .4s;
  position: relative;
  overflow: hidden;
}
.testimonial-premium::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 120px;
  line-height: 1;
  color: rgba(0,229,255,.06);
  font-family: Georgia, serif;
  pointer-events: none;
  font-weight: 900;
}
.testimonial-premium:hover {
  border-color: rgba(0,229,255,.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,229,255,.08);
}
.t-rating { display: flex; gap: 3px; margin-bottom: 16px; }
.t-star { color: #FFD700; font-size: 18px; }
.t-body { font-size: 15px; color: rgba(201,209,217,.85); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.t-person { display: flex; align-items: center; gap: 14px; border-top: 1px solid rgba(255,255,255,.06); padding-top: 20px; }
.t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00E5FF, #1FB6FF);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #0A0F1A;
  flex-shrink: 0;
}
.t-name { font-size: 15px; font-weight: 700; color: #fff; }
.t-role { font-size: 12px; color: rgba(201,209,217,.5); margin-top: 2px; }

/* ---- TECH STACK SECTION ---- */
.tech-stack-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
  justify-content: center;
}
.tech-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(15,23,42,.7);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(201,209,217,.8);
  transition: .3s;
}
.tech-badge-item:hover {
  border-color: rgba(0,229,255,.3);
  color: #00E5FF;
  background: rgba(0,229,255,.05);
  transform: translateY(-2px);
}

/* ---- PROJECTS PREMIUM ---- */
.projects-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
@media(max-width:1024px) { .projects-premium-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:640px)  { .projects-premium-grid { grid-template-columns: 1fr; } }
.projects-premium-grid .card-large {
  grid-column: span 2;
}
@media(max-width:1024px) { .projects-premium-grid .card-large { grid-column: span 1; } }
.prj-card {
  background: rgba(10,15,26,.8);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  overflow: hidden;
  transition: .4s cubic-bezier(.22,1,.36,1);
}
.prj-card:hover {
  border-color: rgba(0,229,255,.25);
  transform: translateY(-8px);
  box-shadow: 0 24px 70px rgba(0,229,255,.1);
}
.prj-visual {
  height: 180px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prj-visual-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,229,255,.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,229,255,.05) 1px, transparent 1px);
  background-size: 24px 24px;
}
.prj-visual-icon {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(0,229,255,.1);
  border: 1px solid rgba(0,229,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00E5FF;
}
.card-large .prj-visual { height: 220px; }
.prj-content { padding: 24px; }
.prj-cat {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0,229,255,.1);
  border: 1px solid rgba(0,229,255,.2);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  color: #00E5FF;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 10px;
}
.prj-title { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.3; }
.prj-desc  { font-size: 13px; color: rgba(201,209,217,.65); line-height: 1.6; margin-bottom: 16px; }
.prj-metrics { display: flex; gap: 16px; }
.prj-metric { text-align: center; }
.prj-metric__val { font-size: 18px; font-weight: 800; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.prj-metric__lbl { font-size: 11px; color: rgba(201,209,217,.5); }

/* ---- CITY LINKS PREMIUM ---- */
.cities-premium { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; }
@media(max-width:768px) { .cities-premium { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:480px) { .cities-premium { grid-template-columns: 1fr; } }
.city-card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: rgba(10,15,26,.8);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  transition: .3s;
  min-height: auto;
}
.city-card-link:hover {
  border-color: rgba(0,229,255,.3);
  background: rgba(0,229,255,.05);
  color: #00E5FF;
  transform: translateX(4px);
}
.city-card-link span { display: flex; align-items: center; gap: 10px; }

/* ---- HERO ULTRA ---- */
.hero-ultra {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 100px;
  overflow: hidden;
  background: #080D1A;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
}
@keyframes gridShift {
  0%   { transform: translateY(0) translateX(0); }
  100% { transform: translateY(60px) translateX(60px); }
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-orb-1 { width:700px; height:700px; top:-200px; left:-200px; background: radial-gradient(circle, rgba(0,229,255,.1) 0%, transparent 65%); animation: orbPulse 6s ease-in-out infinite; }
.hero-orb-2 { width:500px; height:500px; bottom:-100px; right:-100px; background: radial-gradient(circle, rgba(31,182,255,.07) 0%, transparent 65%); animation: orbPulse 8s ease-in-out infinite .5s; }
.hero-orb-3 { width:300px; height:300px; top:40%; left:40%; background: radial-gradient(circle, rgba(0,209,178,.05) 0%, transparent 65%); animation: orbPulse 10s ease-in-out infinite 1s; }
@keyframes orbPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.1)} }

.hero-content { position: relative; z-index: 1; }
.hero-ultra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media(max-width:992px) { .hero-ultra-grid { grid-template-columns: 1fr; text-align: center; } }

.hero-pre-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(0,229,255,.06);
  border: 1px solid rgba(0,229,255,.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #00E5FF;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-pre-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #00E5FF;
  animation: dotBlink 2s ease-in-out infinite;
}
@keyframes dotBlink { 0%,100%{opacity:1;box-shadow:0 0 6px #00E5FF} 50%{opacity:.4;box-shadow:none} }

.hero-h1 {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}
.hero-h1 .line-grad {
  background: linear-gradient(90deg, #00E5FF, #1FB6FF, #00D1B2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.hero-h1 .line-white { display: block; color: #fff; }
.hero-desc-ultra {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(201,209,217,.8);
  margin-bottom: 36px;
  max-width: 540px;
}
@media(max-width:992px) { .hero-desc-ultra { max-width: 100%; } }
.hero-desc-ultra strong { color: #fff; }

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
@media(max-width:992px) { .hero-cta-row { justify-content: center; } }

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #00E5FF, #1FB6FF);
  border-radius: 12px;
  color: #0A0F1A;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: .3s;
  box-shadow: 0 8px 32px rgba(0,229,255,.35);
  min-height: auto;
}
.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,229,255,.5);
}
.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
  min-height: auto;
  backdrop-filter: blur(8px);
}
.btn-cta-ghost:hover {
  border-color: rgba(0,229,255,.5);
  color: #00E5FF;
  transform: translateY(-3px);
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
@media(max-width:992px) { .hero-trust-row { justify-content: center; } }
.trust-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(201,209,217,.7);
  font-weight: 500;
}
.trust-pill i { color: #00E5FF; }

/* ---- HERO VISUAL (right side) ---- */
.hero-visual-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}
@media(max-width:992px) { .hero-visual-panel { display: none; } }
.vis-card {
  background: rgba(10,15,26,.7);
  border: 1px solid rgba(0,229,255,.15);
  border-radius: 18px;
  padding: 24px 20px;
  backdrop-filter: blur(12px);
  transition: .4s;
  text-align: center;
}
.vis-card:hover {
  border-color: rgba(0,229,255,.4);
  box-shadow: 0 12px 40px rgba(0,229,255,.12);
  transform: translateY(-6px);
}
.vis-card-wide {
  grid-column: span 2;
}
.vis-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,229,255,.2), rgba(31,182,255,.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00E5FF;
  margin: 0 auto 14px;
}
.vis-label { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.vis-sub   { font-size: 12px; color: rgba(201,209,217,.5); }
.vis-card-wide .vis-body { display: flex; align-items: center; justify-content: space-around; gap: 16px; }
.vis-stat { text-align: center; }
.vis-stat__val { font-size: 28px; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.vis-stat__lbl { font-size: 11px; color: rgba(201,209,217,.5); margin-top: 2px; }

/* ---- FLOATING BADGE ---- */
.floating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(0,229,255,.08);
  border: 1px solid rgba(0,229,255,.2);
  border-radius: 50px;
  font-size: 13px;
  color: #00E5FF;
  font-weight: 600;
}

/* ---- CTA ULTRA ---- */
.cta-ultra {
  position: relative;
  background: linear-gradient(135deg, rgba(0,229,255,.1), rgba(31,182,255,.06));
  border: 1px solid rgba(0,229,255,.2);
  border-radius: 28px;
  padding: 80px 60px;
  text-align: center;
  overflow: hidden;
}
@media(max-width:768px) { .cta-ultra { padding: 48px 28px; } }
.cta-ultra::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,.1), transparent 65%);
  pointer-events: none;
}
.cta-ultra-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  background: linear-gradient(135deg, #fff, #00E5FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  font-family: 'Poppins', sans-serif;
}
.cta-ultra-desc { font-size: 18px; color: rgba(201,209,217,.8); max-width: 560px; margin: 0 auto 40px; line-height: 1.7; }
.cta-ultra-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-meta { display: flex; align-items: center; justify-content: center; gap: 32px; margin-top: 36px; flex-wrap: wrap; }
.cta-meta-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(201,209,217,.65); }
.cta-meta-item i { color: #00E5FF; }

/* ---- MARQUEE SECTION ---- */
.ticker-section {
  padding: 28px 0;
  background: rgba(0,229,255,.02);
  border-top: 1px solid rgba(0,229,255,.07);
  border-bottom: 1px solid rgba(0,229,255,.07);
  overflow: hidden;
}

/* ---- WHY US SECTION ---- */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media(max-width:900px) { .why-us-grid { grid-template-columns: 1fr; } }
.why-us-list { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(10,15,26,.6);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  transition: .3s;
}
.why-item:hover {
  border-color: rgba(0,229,255,.2);
  background: rgba(0,229,255,.03);
  transform: translateX(4px);
}
.why-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(0,229,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00E5FF;
  flex-shrink: 0;
}
.why-item-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.why-item-desc  { font-size: 13px; color: rgba(201,209,217,.65); line-height: 1.5; }

/* ---- SECTION COMMON ---- */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(0,229,255,.07);
  border: 1px solid rgba(0,229,255,.18);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: #00E5FF;
  margin-bottom: 16px;
  letter-spacing: .3px;
}
.section-heading-xl {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-family: 'Poppins', sans-serif;
}
.section-heading-xl .g {
  background: linear-gradient(135deg, #00E5FF, #1FB6FF, #00D1B2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-body-text {
  font-size: 17px;
  color: rgba(201,209,217,.75);
  line-height: 1.7;
  max-width: 640px;
  margin: 16px auto 0;
}

/* ================================================
   VIDEO WALL / COMMAND CENTER
   ================================================ */

.vw-outer {
  background: #050810;
  border: 1px solid rgba(0,229,255,.08);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.vw-outer::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,.04), transparent 70%);
  pointer-events: none;
}
.vw-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.vw-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.25);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: #22C55E;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.vw-live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22C55E;
  animation: liveDot 1.5s ease-in-out infinite;
}
@keyframes liveDot {
  0%,100% { opacity:1; box-shadow: 0 0 6px #22C55E; }
  50%      { opacity:.3; box-shadow: none; }
}

.vw-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
@media(max-width:1024px) { .vw-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:640px)  { .vw-grid { grid-template-columns: 1fr; } }

.vw-panel {
  background: rgba(8,13,26,.98);
  border: 1px solid rgba(0,229,255,.08);
  border-radius: 14px;
  padding: 18px 20px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s;
}
.vw-panel:hover { border-color: rgba(0,229,255,.2); }
.vw-panel-wide { grid-column: span 1; }
@media(min-width:1025px) { .vw-panel-wide { grid-column: span 3; } }

.vw-ph {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.vw-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(201,209,217,.45);
}
.vw-status-ok {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #22C55E;
}
.vw-status-ok::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: #22C55E;
  animation: liveDot 2s ease-in-out infinite;
}

/* ---- ANIMATED BAR CHART ---- */
.vw-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 90px;
  padding-top: 8px;
}
.vw-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #00E5FF 0%, rgba(0,229,255,.15) 100%);
  min-height: 12px;
  position: relative;
}
.vw-bar:nth-child(1)  { animation: b1 3.7s ease-in-out infinite; }
.vw-bar:nth-child(2)  { animation: b2 4.2s ease-in-out infinite .4s; }
.vw-bar:nth-child(3)  { animation: b3 3.1s ease-in-out infinite .2s; }
.vw-bar:nth-child(4)  { animation: b4 4.8s ease-in-out infinite .6s; }
.vw-bar:nth-child(5)  { animation: b5 3.5s ease-in-out infinite .1s; }
.vw-bar:nth-child(6)  { animation: b6 4.0s ease-in-out infinite .8s; }
.vw-bar:nth-child(7)  { animation: b7 3.3s ease-in-out infinite .3s; }
.vw-bar:nth-child(8)  { animation: b8 4.5s ease-in-out infinite .5s; }
.vw-bar:nth-child(9)  { animation: b9 3.9s ease-in-out infinite .7s; }
.vw-bar:nth-child(10) { animation: b10 4.3s ease-in-out infinite .2s; }
.vw-bar:nth-child(11) { animation: b11 3.6s ease-in-out infinite .9s; }
.vw-bar:nth-child(12) { animation: b12 4.7s ease-in-out infinite .4s; }

@keyframes b1  { 0%,100%{height:45%} 50%{height:72%} }
@keyframes b2  { 0%,100%{height:62%} 50%{height:38%} }
@keyframes b3  { 0%,100%{height:55%} 50%{height:80%} }
@keyframes b4  { 0%,100%{height:70%} 50%{height:48%} }
@keyframes b5  { 0%,100%{height:35%} 50%{height:68%} }
@keyframes b6  { 0%,100%{height:78%} 50%{height:55%} }
@keyframes b7  { 0%,100%{height:50%} 50%{height:85%} }
@keyframes b8  { 0%,100%{height:40%} 50%{height:62%} }
@keyframes b9  { 0%,100%{height:65%} 50%{height:42%} }
@keyframes b10 { 0%,100%{height:48%} 50%{height:75%} }
@keyframes b11 { 0%,100%{height:72%} 50%{height:50%} }
@keyframes b12 { 0%,100%{height:38%} 50%{height:65%} }

.vw-bar-labels {
  display: flex;
  gap: 5px;
  margin-top: 6px;
}
.vw-bar-labels span {
  flex: 1;
  text-align: center;
  font-size: 9px;
  color: rgba(201,209,217,.3);
}

/* ---- LIVE VISITORS ---- */
.vw-vis-num {
  font-size: 44px;
  font-weight: 900;
  background: linear-gradient(135deg, #00E5FF, #1FB6FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 2px;
  font-family: 'Poppins', sans-serif;
}
.vw-vis-lbl { font-size: 11px; color: rgba(201,209,217,.4); margin-bottom: 14px; }
.vw-cities { display: flex; flex-direction: column; gap: 5px; }
.vw-city {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(201,209,217,.55);
  padding: 4px 0;
}
.vw-city-dot { width: 5px; height: 5px; border-radius: 50%; background: #22C55E; flex-shrink: 0; }
.vw-city-count { margin-left: auto; font-weight: 700; color: rgba(201,209,217,.8); }

/* ---- SERVER STATUS ---- */
.vw-server {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.vw-server:last-child { border-bottom: none; }
.vw-sdot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.vw-sdot.on  { background: #22C55E; animation: liveDot 2.5s ease-in-out infinite; }
.vw-sdot.warn{ background: #F59E0B; animation: liveDot 1s ease-in-out infinite; }
.vw-sname { flex: 1; font-size: 11px; color: rgba(201,209,217,.65); }
.vw-sval  { font-size: 11px; font-weight: 700; }
.vw-sval.ok   { color: #22C55E; }
.vw-sval.warn { color: #F59E0B; }

/* ---- SEO RANKINGS ---- */
.vw-rank {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.vw-rank:last-child { border-bottom: none; }
.vw-rnum {
  width: 24px; height: 24px;
  border-radius: 5px;
  background: rgba(0,229,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  color: #00E5FF;
  flex-shrink: 0;
}
.vw-rkw { flex: 1; font-size: 11px; color: rgba(201,209,217,.65); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vw-rarrow { font-size: 11px; font-weight: 800; color: #22C55E; }

/* ---- PERFORMANCE SCORES ---- */
.vw-perf { display: flex; justify-content: space-around; gap: 12px; }
.vw-score { text-align: center; }
.vw-score svg { transform: rotate(-90deg); display: block; margin: 0 auto; }
.vw-score-val { font-size: 18px; font-weight: 900; color: #00E5FF; margin-top: 6px; font-family:'Poppins',sans-serif; }
.vw-score-lbl { font-size: 10px; color: rgba(201,209,217,.45); margin-top: 2px; }

/* ---- PROJECT PROGRESS ---- */
.vw-proj { margin-bottom: 12px; }
.vw-proj:last-child { margin-bottom: 0; }
.vw-proj-meta { display: flex; justify-content: space-between; margin-bottom: 5px; }
.vw-proj-name { font-size: 11px; color: rgba(201,209,217,.65); }
.vw-proj-pct  { font-size: 11px; font-weight: 700; color: #00E5FF; }
.vw-track { height: 4px; background: rgba(0,229,255,.08); border-radius: 4px; }
.vw-fill  { height: 100%; border-radius: 4px; background: linear-gradient(90deg, #00E5FF, #1FB6FF); transition: width 2s cubic-bezier(.22,1,.36,1); width: 0; }

/* ================================================
   PROJECT MODAL SYSTEM
   ================================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px 60px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  overflow-y: auto;
}
.modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: rgb(10,15,28);
  border: 1px solid rgba(0,229,255,.18);
  border-radius: 24px;
  width: 100%;
  max-width: 900px;
  transform: scale(.96) translateY(20px);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.modal-overlay.is-open .modal-box {
  transform: scale(1) translateY(0);
}
.modal-top-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 32px 36px 0;
}
@media(max-width:600px) { .modal-top-bar { padding: 24px 20px 0; } }
.modal-cat-badge {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(0,229,255,.1);
  border: 1px solid rgba(0,229,255,.25);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: #00E5FF;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 10px;
}
.modal-title {
  font-size: clamp(20px,3vw,28px);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  font-family: 'Poppins',sans-serif;
  margin: 0;
}
.modal-close-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(201,209,217,.7);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
  flex-shrink: 0;
}
.modal-close-btn:hover {
  background: rgba(0,229,255,.1);
  border-color: rgba(0,229,255,.3);
  color: #00E5FF;
}
.modal-visual {
  height: 200px;
  margin: 24px 36px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,229,255,.06), rgba(31,182,255,.02));
  border: 1px solid rgba(0,229,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
@media(max-width:600px) { .modal-visual { margin: 20px; height: 140px; } }
.modal-visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
}
.modal-visual-icon {
  position: relative;
  z-index: 1;
  width: 80px; height: 80px;
  border-radius: 22px;
  background: rgba(0,229,255,.12);
  border: 1px solid rgba(0,229,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00E5FF;
}
.modal-metrics-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: rgba(0,229,255,.06);
  margin: 0 36px 24px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,229,255,.1);
}
@media(max-width:600px) {
  .modal-metrics-row { grid-template-columns: repeat(2,1fr); margin: 0 20px 20px; }
}
.modal-metric {
  background: rgb(10,15,28);
  padding: 18px 16px;
  text-align: center;
}
.modal-metric-val {
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(135deg,#00E5FF,#1FB6FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  font-family: 'Poppins',sans-serif;
}
.modal-metric-lbl { font-size: 11px; color: rgba(201,209,217,.5); }
.modal-body-content { padding: 0 36px 12px; }
@media(max-width:600px) { .modal-body-content { padding: 0 20px 12px; } }
.modal-section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(201,209,217,.35);
  margin-bottom: 12px;
}
.modal-desc-text {
  font-size: 15px;
  color: rgba(201,209,217,.8);
  line-height: 1.75;
  margin-bottom: 24px;
}
.modal-tech-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.modal-tech-badge {
  padding: 5px 14px;
  background: rgba(15,23,42,.8);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50px;
  font-size: 12px;
  color: rgba(201,209,217,.75);
  font-weight: 500;
}
.modal-results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
@media(max-width:480px) { .modal-results-grid { grid-template-columns: 1fr; } }
.modal-result-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(0,229,255,.03);
  border: 1px solid rgba(0,229,255,.08);
  border-radius: 10px;
  font-size: 13px;
  color: rgba(201,209,217,.75);
}
.modal-result-item::before {
  content: '✓';
  color: #00E5FF;
  font-weight: 800;
  flex-shrink: 0;
}
.modal-info-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.modal-info-item { font-size: 13px; color: rgba(201,209,217,.55); }
.modal-info-item strong { color: rgba(201,209,217,.85); display: block; font-size: 14px; margin-bottom: 2px; }
.modal-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 36px;
  border-top: 1px solid rgba(255,255,255,.06);
  flex-wrap: wrap;
}
@media(max-width:600px) { .modal-footer-bar { padding: 20px; } }

/* ================================================
   ENTERPRISE FOOTER
   ================================================ */
.ef-root {
  background: #06090f;
  border-top: 1px solid rgba(0,229,255,.08);
  position: relative;
  overflow: hidden;
}
.ef-root::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,229,255,.4) 50%, transparent 100%);
}
.ef-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.ef-cta-strip {
  padding: 56px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  position: relative;
  z-index: 1;
}
.ef-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.ef-cta-text {
  font-size: clamp(22px,3vw,36px);
  font-weight: 900;
  color: #fff;
  font-family: 'Poppins',sans-serif;
  line-height: 1.2;
}
.ef-cta-text span {
  background: linear-gradient(135deg,#00E5FF,#1FB6FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ef-cta-sub { font-size: 16px; color: rgba(201,209,217,.6); margin-top: 8px; }
.ef-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.ef-main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 60px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  position: relative;
  z-index: 1;
}
@media(max-width:1200px) { .ef-main-grid { grid-template-columns: 1fr 1fr 1fr; gap: 36px; } }
@media(max-width:768px)  { .ef-main-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media(max-width:480px)  { .ef-main-grid { grid-template-columns: 1fr; gap: 28px; } }
.ef-col-logo {}
.ef-logo-img { height: 52px; width: auto; margin-bottom: 16px; filter: drop-shadow(0 2px 8px rgba(0,229,255,.2)); }
.ef-tagline { font-size: 14px; color: rgba(201,209,217,.6); line-height: 1.7; margin-bottom: 20px; max-width: 280px; }
.ef-socials { display: flex; gap: 8px; margin-bottom: 20px; }
.ef-social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(201,209,217,.55);
  transition: .25s;
  min-height: auto;
}
.ef-social-btn:hover {
  background: rgba(0,229,255,.08);
  border-color: rgba(0,229,255,.3);
  color: #00E5FF;
  transform: translateY(-2px);
}
.ef-trust-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.ef-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: rgba(0,229,255,.06);
  border: 1px solid rgba(0,229,255,.15);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(0,229,255,.8);
}
.ef-col-heading {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(201,209,217,.4);
  margin-bottom: 20px;
}
.ef-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.ef-links a {
  font-size: 14px;
  color: rgba(201,209,217,.6);
  text-decoration: none;
  transition: .2s;
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: auto;
}
.ef-links a:hover { color: #00E5FF; padding-left: 4px; }
.ef-contact-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.ef-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(201,209,217,.6);
}
.ef-contact-item i { color: #00E5FF; flex-shrink: 0; margin-top: 1px; }
.ef-contact-item a { color: rgba(201,209,217,.6); text-decoration: none; min-height: auto; transition: color .2s; }
.ef-contact-item a:hover { color: #00E5FF; }
.ef-hours {
  font-size: 12px;
  color: rgba(201,209,217,.4);
  padding: 10px 14px;
  background: rgba(0,229,255,.03);
  border: 1px solid rgba(0,229,255,.07);
  border-radius: 8px;
  margin-bottom: 20px;
  line-height: 1.7;
}
.ef-newsletter-label { font-size: 13px; color: rgba(201,209,217,.6); margin-bottom: 10px; }
.ef-newsletter-form { display: flex; gap: 8px; }
.ef-newsletter-input {
  flex: 1;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: #fff;
  outline: none;
  transition: .2s;
  font-family: inherit;
}
.ef-newsletter-input::placeholder { color: rgba(201,209,217,.3); }
.ef-newsletter-input:focus { border-color: rgba(0,229,255,.4); background: rgba(0,229,255,.04); }
.ef-newsletter-btn {
  padding: 10px 16px;
  background: linear-gradient(135deg,#00E5FF,#1FB6FF);
  border: none;
  border-radius: 8px;
  color: #0A0F1A;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: .2s;
  white-space: nowrap;
}
.ef-newsletter-btn:hover { box-shadow: 0 4px 16px rgba(0,229,255,.3); transform: translateY(-1px); }
.ef-trust-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: rgba(0,229,255,.06);
  border-top: 1px solid rgba(255,255,255,.05);
  position: relative;
  z-index: 1;
}
@media(max-width:768px) { .ef-trust-row { grid-template-columns: repeat(2,1fr); } }
.ef-trust-item {
  background: #06090f;
  padding: 24px;
  text-align: center;
  transition: .3s;
}
.ef-trust-item:hover { background: rgba(0,229,255,.03); }
.ef-trust-icon { color: #00E5FF; margin-bottom: 8px; }
.ef-trust-val { font-size: 20px; font-weight: 900; color: #fff; font-family:'Poppins',sans-serif; margin-bottom: 4px; }
.ef-trust-lbl { font-size: 11px; color: rgba(201,209,217,.4); text-transform: uppercase; letter-spacing: .5px; }
.ef-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.ef-copy { font-size: 13px; color: rgba(201,209,217,.4); }
.ef-copy strong { color: rgba(201,209,217,.65); }
.ef-legal { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.ef-legal a { font-size: 12px; color: rgba(201,209,217,.35); text-decoration: none; transition: .2s; min-height: auto; }
.ef-legal a:hover { color: #00E5FF; }
.ef-uptime-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(34,197,94,.07);
  border: 1px solid rgba(34,197,94,.2);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  color: #22C55E;
}
@media(max-width:640px) { .ef-bottom { flex-direction: column; align-items: center; text-align: center; } }

/* ---- VideoWall grid fix: 2-col panel + proper 3-col layout ---- */
.vw-panel-2col { grid-column: span 2; }
@media(max-width:1024px) { .vw-panel-2col { grid-column: span 1; } }

/* Override old wide panel if still referenced */
.vw-panel-wide { grid-column: span 3; }
@media(max-width:1024px) { .vw-panel-wide { grid-column: span 1; } }

/* Ensure trust row spans full width with border separation */
.ef-trust-row {
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

/* ========================================================
   CRITICAL FIXES — VideoWall uniform 3-col + prj-visual bg
   ======================================================== */

/* Uniform 3-col grid — no uneven rows */
.vw-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}
/* Panel-2col: only spans 2 cols, row 1 = [2col][1col] */
/* BUT with 6 panels: row1=[2col][1col], row2=[1][1][1], row3=[1][empty][empty] */
/* Better: all equal, proper 2×3 */
.vw-panel-2col {
  grid-column: span 1 !important;
}
@media(max-width:1024px) {
  .vw-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media(max-width:640px) {
  .vw-grid { grid-template-columns: 1fr !important; }
}

/* Project visual backgrounds — add gradient so card tops aren't empty/dark */
.prj-visual {
  background: linear-gradient(135deg, rgba(0,229,255,.06) 0%, rgba(10,15,26,.9) 100%);
}
.prj-card:hover .prj-visual {
  background: linear-gradient(135deg, rgba(0,229,255,.1) 0%, rgba(10,15,26,.95) 100%);
}

/* Footer trust row — ensure separator looks clean */
.ef-trust-row {
  margin-top: 0;
}
