/* ============================================================
   TMK GLOBAL LLC — styles.css
   Premium Dark Futuristic Agency Theme
   Colors: Neon Green #00ff88 · Electric Blue #00d4ff
============================================================ */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  --bg-primary:       #050508;
  --bg-secondary:     #090910;
  --bg-card:          #0d0d16;
  --neon-green:       #00ff88;
  --neon-green-glow:  rgba(0, 255, 136, 0.22);
  --neon-green-dim:   rgba(0, 255, 136, 0.1);
  --electric-blue:    #00d4ff;
  --blue-glow:        rgba(0, 212, 255, 0.22);
  --blue-dim:         rgba(0, 212, 255, 0.1);
  --blue-deep:        #0055ee;
  --glass-bg:         rgba(255, 255, 255, 0.035);
  --glass-bg-hover:   rgba(255, 255, 255, 0.065);
  --glass-border:     rgba(0, 255, 136, 0.16);
  --glass-border-h:   rgba(0, 255, 136, 0.5);
  --text-primary:     #ffffff;
  --text-secondary:   #c4ccd8;
  --text-muted:       #7a8494;
  --border-subtle:    rgba(255, 255, 255, 0.07);
  --shadow-neon:      0 0 40px rgba(0, 255, 136, 0.2), 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-blue:      0 0 40px rgba(0, 212, 255, 0.2), 0 8px 32px rgba(0, 0, 0, 0.5);
  --nav-h:            76px;
  --sec-pad:          88px;
  --radius:           18px;
  --radius-sm:        10px;
  --ease:             cubic-bezier(0.4, 0, 0.2, 1);
  --trans:            all 0.35s var(--ease);
  --font-display:     'Space Grotesk', system-ui, sans-serif;
  --font-body:        'Inter', system-ui, sans-serif;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }
input, textarea, select { font-family: inherit; color: inherit; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--neon-green); border-radius: 3px; }

::selection { background: rgba(0, 255, 136, 0.28); }

/* ── Container ─────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Sections ──────────────────────────────────────────────── */
.section { padding: var(--sec-pad) 0; position: relative; }

/* ── Utility ───────────────────────────────────────────────── */
.text-center { text-align: center; }

.gradient-text {
  background: linear-gradient(130deg, var(--neon-green) 0%, var(--electric-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Glass Card ────────────────────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ── Section Badge ─────────────────────────────────────────── */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  background: rgba(0, 255, 136, 0.07);
  border: 1px solid rgba(0, 255, 136, 0.28);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neon-green);
  margin-bottom: 14px;
}

/* ── Section Heading ───────────────────────────────────────── */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.75;
}
.text-center .section-sub { margin: 0 auto; }

.section-header { margin-bottom: 48px; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(130deg, var(--neon-green) 0%, #00cc6a 100%);
  color: #040408;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0, 255, 136, 0.42);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
  transform: translateY(-2px);
  background: rgba(0, 255, 136, 0.06);
}

.btn-lg { padding: 16px 38px; font-size: 1rem; }
.btn-block { width: 100%; border-radius: var(--radius-sm); }

/* ============================================================
   NAVIGATION
============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.navbar.scrolled {
  background: rgba(5, 5, 8, 0.93);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  padding: 8px 15px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 50px;
  transition: var(--trans);
}
.nav-link:hover,
.nav-link.active {
  color: var(--neon-green);
  background: rgba(0, 255, 136, 0.08);
}

.nav-cta { flex-shrink: 0; }

/* ── Hamburger ─────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  gap: 5px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--trans);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Menu Overlay ───────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(5, 5, 8, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-menu.open { display: flex; animation: fadeInMenu 0.25s ease; }
@keyframes fadeInMenu {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.mobile-menu-close {
  position: absolute;
  top: 22px; right: 24px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--text-muted);
  transition: var(--trans);
  border-radius: 50%;
}
.mobile-menu-close:hover { color: var(--neon-green); background: var(--neon-green-dim); }

.mobile-nav-links { display: flex; flex-direction: column; align-items: center; gap: 4px; width: 100%; padding: 0 40px; }

.mobile-nav-link {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  color: var(--text-muted);
  padding: 10px 24px;
  border-radius: 12px;
  transition: var(--trans);
  letter-spacing: -0.02em;
}
.mobile-nav-link:hover { color: var(--neon-green); background: var(--neon-green-dim); }

.mobile-cta { margin-top: 16px; }

/* ============================================================
   HERO SECTION
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 75% 60% at 65% 50%, rgba(0, 85, 238, 0.14) 0%, transparent 70%),
    radial-gradient(ellipse 45% 55% at 15% 75%, rgba(0, 255, 136, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 15%, rgba(0, 212, 255, 0.07) 0%, transparent 60%);
}

.hero-inner {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: var(--nav-h) 0 56px;
  width: 100%;
}

.hero-content {
  flex: 1;
  max-width: 640px;
  padding: 44px 0 56px;
}

/* ── Hero Badge ────────────────────────────────────────────── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 255, 136, 0.07);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--neon-green);
  margin-bottom: 14px;
}

.badge-dot {
  width: 7px; height: 7px;
  background: var(--neon-green);
  border-radius: 50%;
  animation: pulseDot 2.2s ease-in-out infinite;
  box-shadow: 0 0 6px var(--neon-green);
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(0.65); opacity: 0.45; }
}

/* ── Hero Heading ──────────────────────────────────────────── */
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: var(--text-primary);
}

.hero-subheading {
  font-size: clamp(0.97rem, 1.5vw, 1.08rem);
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 28px;
  max-width: 600px;
}

/* ── CTA Group ─────────────────────────────────────────────── */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

/* ── Hero Stats ────────────────────────────────────────────── */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--neon-green);
  text-shadow: 0 0 16px rgba(0, 255, 136, 0.5);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-stat-divider {
  width: 1px; height: 40px;
  background: var(--border-subtle);
  flex-shrink: 0;
}

/* ── Hero Visual (3D) ──────────────────────────────────────── */
.hero-visual {
  flex-shrink: 0;
  width: 400px;
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* Outer glow blob */
.hero-visual::before {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  background: radial-gradient(ellipse, rgba(0, 102, 255, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  animation: blobPulse 5s ease-in-out infinite alternate;
}
@keyframes blobPulse {
  from { transform: scale(0.9); opacity: 0.6; }
  to   { transform: scale(1.15); opacity: 1; }
}

/* ── CSS 3D Cube ───────────────────────────────────────────── */
.cube-scene {
  width: 140px; height: 140px;
  perspective: 550px;
  position: relative;
  z-index: 2;
}
.cube {
  width: 100%; height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: spinCube 14s linear infinite;
}
@keyframes spinCube {
  0%   { transform: rotateX(15deg) rotateY(0deg); }
  100% { transform: rotateX(15deg) rotateY(360deg); }
}
.cube-face {
  position: absolute;
  width: 140px; height: 140px;
  border: 1.5px solid rgba(0, 255, 136, 0.45);
  background: rgba(0, 255, 136, 0.018);
}
.cube-front  { transform: translateZ(70px); }
.cube-back   { transform: rotateY(180deg) translateZ(70px); }
.cube-left   { transform: rotateY(-90deg) translateZ(70px); border-color: rgba(0, 212, 255, 0.45); }
.cube-right  { transform: rotateY(90deg)  translateZ(70px); border-color: rgba(0, 212, 255, 0.45); }
.cube-top    { transform: rotateX(90deg)  translateZ(70px); border-color: rgba(0, 255, 136, 0.3); }
.cube-bottom { transform: rotateX(-90deg) translateZ(70px); border-color: rgba(0, 255, 136, 0.3); }

/* ── Orbit Rings ───────────────────────────────────────────── */
.orbit-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
}
.orbit-1 {
  width: 200px; height: 200px;
  border-width: 1px;
  border-color: rgba(0, 255, 136, 0.22);
  animation: orbitA 7s linear infinite;
}
.orbit-2 {
  width: 290px; height: 290px;
  border-width: 1px;
  border-color: rgba(0, 212, 255, 0.16);
  animation: orbitB 11s linear infinite reverse;
}
.orbit-3 {
  width: 380px; height: 380px;
  border-width: 1px;
  border-color: rgba(0, 85, 238, 0.1);
  animation: orbitA 17s linear infinite;
}
/* Orbit dots */
.orbit-1::after,
.orbit-2::after {
  content: '';
  position: absolute;
  width: 7px; height: 7px;
  border-radius: 50%;
  top: -3px; left: 50%;
  transform: translateX(-50%);
}
.orbit-1::after { background: var(--neon-green); box-shadow: 0 0 8px var(--neon-green); }
.orbit-2::after { background: var(--electric-blue); box-shadow: 0 0 8px var(--electric-blue); }

@keyframes orbitA {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes orbitB {
  from { transform: rotate(0deg) scaleX(1.25); }
  to   { transform: rotate(360deg) scaleX(1.25); }
}

/* ── Corner accents on cube ────────────────────────────────── */
.cube-glow {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--neon-green), 0 0 24px var(--neon-green);
  animation: glowPulse 2s ease-in-out infinite alternate;
  z-index: 3;
}
@keyframes glowPulse {
  from { opacity: 0.5; transform: scale(0.8); }
  to   { opacity: 1;   transform: scale(1.2); }
}

/* ── Scroll Indicator ──────────────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: var(--trans);
}
.scroll-indicator:hover { color: var(--neon-green); }

.scroll-mouse {
  width: 20px; height: 34px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
  transition: var(--trans);
}
.scroll-indicator:hover .scroll-mouse { border-color: var(--neon-green); }
.scroll-wheel {
  width: 3px; height: 7px;
  background: var(--neon-green);
  border-radius: 2px;
  animation: scrollAnim 1.9s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ============================================================
   ABOUT SECTION
============================================================ */
.about-section {
  background:
    radial-gradient(ellipse 65% 55% at 0% 55%, rgba(0, 255, 136, 0.05) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 100% 20%, rgba(0, 212, 255, 0.04) 0%, transparent 60%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-content .section-badge { display: block; width: fit-content; }

.about-intro-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--electric-blue);
  margin-bottom: 12px;
}
.about-intro-label::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--electric-blue);
}

.about-text {
  color: var(--text-secondary);
  font-size: 0.97rem;
  line-height: 1.82;
  margin-bottom: 18px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-top: 30px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.about-feature i {
  color: var(--neon-green);
  font-size: 0.82rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px var(--neon-green));
}

/* ── Stats Grid ────────────────────────────────────────────── */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.stat-card {
  padding: 30px 24px;
  text-align: center;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,255,136,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: var(--trans);
  border-radius: var(--radius);
}
.stat-card:hover::before { opacity: 1; }
.stat-card:hover {
  border-color: var(--glass-border-h);
  transform: translateY(-5px);
  box-shadow: var(--shadow-neon);
}

.stat-icon {
  width: 50px; height: 50px;
  background: var(--neon-green-dim);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.25rem;
  color: var(--neon-green);
  transition: var(--trans);
}
.stat-card:hover .stat-icon { box-shadow: 0 0 18px var(--neon-green-glow); }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 7px;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   SERVICES SECTION
============================================================ */
.services-section {
  background:
    radial-gradient(ellipse 55% 45% at 85% 25%, rgba(0, 85, 238, 0.08) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(0, 255, 136, 0.04) 0%, transparent 60%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Center the lone 7th card in 3-col grid */
@media (min-width: 992px) {
  .services-grid .service-card:last-child:nth-child(3n + 1) {
    grid-column: 2;
  }
}

.service-card {
  padding: 28px 24px;
   display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0,255,136,0.05) 0%, rgba(0,212,255,0.03) 100%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}
@media (hover: hover) {
  .service-card:hover::after { opacity: 1; }
  .service-card:hover {
    border-color: var(--glass-border-h);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.45), 0 0 30px rgba(0,255,136,0.12);
  }
}

.service-icon-wrap {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--neon-green-dim) 0%, var(--blue-dim) 100%);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--neon-green);
  margin-bottom: 22px;
  transition: var(--trans);
}
@media (hover: hover) {
  .service-card:hover .service-icon-wrap {
    transform: scale(1.1) rotate(-6deg);
    border-color: var(--neon-green);
    box-shadow: 0 0 22px var(--neon-green-glow);
  }
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 22px;
  min-height: 210px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--neon-green);
  transition: var(--trans);
}
.service-link:hover { gap: 11px; }
.service-link i { font-size: 0.72rem; transition: var(--trans); }

/* ── Number tag on each card ───────────────────────────────── */
.service-num {
  position: absolute;
  top: 22px; right: 24px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.05em;
}

/* ============================================================
   BLOG SECTION
============================================================ */
.blog-section {
  background: radial-gradient(ellipse 55% 45% at 15% 65%, rgba(0, 255, 136, 0.04) 0%, transparent 65%);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-card {
  overflow: hidden;
  transition: var(--trans);
}
@media (hover: hover) {
  .blog-card:hover {
    transform: translateY(-7px);
    border-color: var(--glass-border-h);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.4);
  }
}

.blog-thumb {
  height: 195px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-thumb-icon {
  width: 68px; height: 68px;
  background: rgba(5, 5, 8, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.65rem;
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  transition: var(--trans);
}
.blog-card:hover .blog-thumb-icon { transform: scale(1.1); }

.blog-body { padding: 26px; }

.blog-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 212, 255, 0.09);
  border: 1px solid rgba(0, 212, 255, 0.24);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--electric-blue);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 13px;
}

.blog-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.42;
  margin-bottom: 11px;
  color: var(--text-primary);
  transition: var(--trans);
}
.blog-card:hover .blog-title { color: var(--neon-green); }

.blog-excerpt {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 18px;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid var(--border-subtle);
}
.blog-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 6px;
}
.blog-date i { color: var(--neon-green); font-size: 0.75rem; }
.blog-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--neon-green);
  transition: var(--trans);
}
.blog-more:hover { gap: 9px; }
.blog-more i { font-size: 0.7rem; }

/* ============================================================
   CONTACT SECTION
============================================================ */
.contact-section {
  background:
    radial-gradient(ellipse 55% 50% at 90% 50%, rgba(0, 85, 238, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 5% 30%, rgba(0, 255, 136, 0.04) 0%, transparent 60%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr;
  gap: 52px;
  align-items: start;
}

/* ── Contact Info ──────────────────────────────────────────── */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  transition: var(--trans);
  text-decoration: none;
}
.contact-item:hover { background: var(--glass-bg); }

.ci-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--trans);
}
.ci-green  { background: var(--neon-green-dim); border: 1px solid rgba(0,255,136,0.2); color: var(--neon-green); }
.ci-blue   { background: var(--blue-dim); border: 1px solid rgba(0,212,255,0.2); color: var(--electric-blue); }
.ci-wa     { background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.25); color: #25d366; }
.ci-purple { background: rgba(139,92,246,0.1); border: 1px solid rgba(139,92,246,0.2); color: #8b5cf6; }

.contact-item:hover .ci-icon { transform: scale(1.08); }

.ci-text { display: flex; flex-direction: column; gap: 3px; }
.ci-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.ci-value { font-size: 0.93rem; color: var(--text-secondary); font-weight: 500; line-height: 1.4; }

/* ── Social Links ──────────────────────────────────────────── */
.social-wrap { padding: 0 18px; }
.social-label { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 14px; }
.social-row { display: flex; gap: 10px; }

.soc-link {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  background: var(--glass-bg);
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--trans);
}
.soc-link:hover { transform: translateY(-3px); }
.soc-link.soc-li:hover   { border-color: #0077b5; color: #0077b5; background: rgba(0,119,181,0.1); }
.soc-link.soc-ig:hover   { border-color: #e1306c; color: #e1306c; background: rgba(225,48,108,0.1); }
.soc-link.soc-fb:hover   { border-color: #1877f2; color: #1877f2; background: rgba(24,119,242,0.1); }

/* ── Contact Form ──────────────────────────────────────────── */
.contact-form {
  padding: 40px 38px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.form-group:last-of-type { margin-bottom: 24px; }

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text-primary);
  font-size: 0.93rem;
  transition: var(--trans);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7'%3E%3Cpath d='M0 0l5 7 5-7z' fill='%237a8494'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group select option { background: #0a0a12; }
.form-group textarea { resize: vertical; min-height: 130px; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(122, 132, 148, 0.5); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--neon-green);
  background: rgba(0, 255, 136, 0.04);
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}
.form-group input.error,
.form-group textarea.error {
  border-color: #ff4466;
  box-shadow: 0 0 0 3px rgba(255, 68, 102, 0.1);
}

.form-err {
  font-size: 0.77rem;
  color: #ff4466;
  min-height: 16px;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  border-radius: var(--radius-sm);
  padding: 15px;
  font-size: 1rem;
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(0, 255, 136, 0.07);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: var(--radius-sm);
  color: var(--neon-green);
  font-size: 0.9rem;
  margin-top: 14px;
}
.form-success.show { display: flex; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  position: relative;
  background: var(--bg-secondary);
  overflow: hidden;
  padding-top: 90px;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--neon-green) 30%, var(--electric-blue) 70%, transparent 100%);
}

/* Subtle grid background */
.footer-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,136,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,136,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  opacity: 0.6;
}

.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px;
  padding-bottom: 64px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.72;
  margin: 16px 0 26px;
  max-width: 275px;
}

.footer-soc { display: flex; gap: 9px; }
.footer-soc a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--trans);
}
.footer-soc a:hover { color: var(--neon-green); border-color: var(--neon-green); background: var(--neon-green-dim); }

.footer-col-heading {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--neon-green);
  margin-bottom: 22px;
}

.footer-nav-links { display: flex; flex-direction: column; gap: 11px; }
.footer-nav-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--trans);
}
.footer-nav-links a:hover { color: var(--text-primary); padding-left: 5px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 13px; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.footer-contact-list li i {
  color: var(--neon-green);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.78rem;
  filter: drop-shadow(0 0 3px var(--neon-green));
}

.footer-bottom {
  position: relative;
  border-top: 1px solid var(--border-subtle);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy { font-size: 0.83rem; color: var(--text-muted); }
.footer-legal { display: flex; align-items: center; gap: 16px; }
.footer-legal a { font-size: 0.83rem; color: var(--text-muted); transition: var(--trans); }
.footer-legal a:hover { color: var(--neon-green); }

/* ============================================================
   WHATSAPP FLOATING BUTTON
============================================================ */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 1001;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.65rem;
  color: #fff;
  box-shadow: 0 4px 22px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 34px rgba(37, 211, 102, 0.55);
}
.wa-pulse {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.55);
  animation: waPulse 2.8s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.75); opacity: 0; }
}
.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 7px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ============================================================
   SCROLL-IN ANIMATION CLASSES
============================================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — 1199px
============================================================ */
@media (max-width: 1199px) {
  :root { --sec-pad: 72px; }

  .hero-visual { width: 300px; height: 300px; }
  .cube-scene  { width: 110px; height: 110px; }
  .cube-face   { width: 110px; height: 110px; }
  .cube-front  { transform: translateZ(55px); }
  .cube-back   { transform: rotateY(180deg)  translateZ(55px); }
  .cube-left   { transform: rotateY(-90deg)  translateZ(55px); }
  .cube-right  { transform: rotateY(90deg)   translateZ(55px); }
  .cube-top    { transform: rotateX(90deg)   translateZ(55px); }
  .cube-bottom { transform: rotateX(-90deg)  translateZ(55px); }
  .orbit-1 { width: 160px; height: 160px; }
  .orbit-2 { width: 230px; height: 230px; }
  .orbit-3 { width: 295px; height: 295px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner  { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ============================================================
   RESPONSIVE — 991px
============================================================ */
@media (max-width: 991px) {
  .nav-links,
  .nav-cta  { display: none; }
  .hamburger { display: flex; }

  .hero-visual { display: none; }
  .hero-content { max-width: 700px; padding: 40px 0; }

  .about-grid   { grid-template-columns: 1fr; gap: 52px; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
}

/* ============================================================
   RESPONSIVE — 767px
============================================================ */
@media (max-width: 767px) {
  :root { --sec-pad: 58px; }

  .section-header { margin-bottom: 36px; }

  .services-grid { grid-template-columns: 1fr; }
  .blog-grid     { grid-template-columns: 1fr; }
  .about-stats   { grid-template-columns: 1fr 1fr; }
  .about-features { grid-template-columns: 1fr; }

  .footer-inner  { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }

  .hero-content { padding: 28px 0; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; }
  .hero-stats { justify-content: center; }
  .hero-stat-number { font-size: 1.3rem; }

  .blog-thumb { height: 170px; }
}

/* ============================================================
   RESPONSIVE — 479px
============================================================ */
@media (max-width: 479px) {
  :root { --sec-pad: 46px; }

  .about-stats { grid-template-columns: 1fr; }
  .stat-card { padding: 22px 16px; }
  .wa-float { bottom: 18px; right: 18px; }
  .hero-badge { font-size: 0.7rem; }
  .hero-stats { gap: 16px; }
}
.virtual-assistance-card {
  position: relative;
  overflow: hidden;
  background: transparent !important;
  transform-style: preserve-3d;
}

.virtual-assistance-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
  90deg,
  rgba(4, 8, 15, 0.92) 0%,
  rgba(4, 8, 15, 0.72) 35%,
  rgba(4, 8, 15, 0.35) 62%,
  rgba(4, 8, 15, 0.08) 100%
    ),
    url("../assets/virtual-assistance-bg.png");
background-size: 95%;
background-position: 135% bottom;
  background-repeat: no-repeat;
  background-color: #050812;
  z-index: 1;
}

.virtual-assistance-card > * {
  position: relative;
  z-index: 5;
}

.virtual-assistance-card .service-title,
.virtual-assistance-card .service-desc {
  color: #ffffff;
}

.virtual-assistance-card .service-link {
  color: var(--clr-green);
}

.virtual-assistance-card .service-num {
  color: rgba(255, 255, 255, 0.06);
}

.virtual-assistance-card .service-num {
  position: absolute;
  top: 24px;
  right: 24px;
  left: auto;
}

.virtual-assistance-card .service-title,
.virtual-assistance-card .service-desc,
.virtual-assistance-card .service-link {
  max-width: 72%;
  position: relative;
  z-index: 2;
}

.service-desc {
  font-size: 15px;
  line-height: 1.6;
}
.virtual-assistance-card:hover::before {
  transform: scale(1.03);
  transition: transform 0.5s ease;
}
.customer-service-card {
  position: relative;
  overflow: hidden;
  background: transparent !important;
  transform-style: preserve-3d;
}

.customer-service-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(4, 8, 15, 0.94) 0%,
      rgba(4, 8, 15, 0.76) 36%,
      rgba(4, 8, 15, 0.34) 64%,
      rgba(4, 8, 15, 0.08) 100%
    ),
    url("../assets/customer-support-bg.png");

  background-size: 95%;
  background-position: 185% bottom;
  background-repeat: no-repeat;
  background-color: #050812;

  z-index: 1;
  transition: transform 0.5s ease;
}

.customer-service-card:hover::before {
  transform: scale(1.03);
}

.customer-service-card > * {
  position: relative;
  z-index: 5;
}

.customer-service-card .service-title,
.customer-service-card .service-desc {
  color: #ffffff;
}

.customer-service-card .service-link {
  color: var(--clr-green);
}

.customer-service-card .service-title,
.customer-service-card .service-desc,
.customer-service-card .service-link {
  max-width: 72%;
}

.customer-service-card .service-num {
  position: absolute;
  top: 24px;
  right: 24px;
  left: auto;
  color: rgba(255,255,255,0.06);
}
.crm-software-card {
  position: relative;
  overflow: hidden;
  background: transparent !important;
  transform-style: preserve-3d;
}

.crm-software-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(4, 8, 15, 0.94) 0%,
      rgba(4, 8, 15, 0.76) 36%,
      rgba(4, 8, 15, 0.34) 64%,
      rgba(4, 8, 15, 0.08) 100%
    ),
    url("../assets/crm-software-bg.png");

  background-size: 95%;
  background-position: 150% bottom;
  background-repeat: no-repeat;
  background-color: #050812;

  z-index: 1;
  transition: transform 0.5s ease;
}

.crm-software-card:hover::before {
  transform: scale(1.03);
}

.crm-software-card > * {
  position: relative;
  z-index: 5;
}

.crm-software-card .service-title,
.crm-software-card .service-desc {
  color: #ffffff;
}

.crm-software-card .service-link {
  color: var(--clr-green);
}

.crm-software-card .service-title,
.crm-software-card .service-desc,
.crm-software-card .service-link {
  max-width: 72%;
}

.crm-software-card .service-num {
  position: absolute;
  top: 24px;
  right: 24px;
  left: auto;
  color: rgba(255,255,255,0.06);
}
.web-development-card {
  position: relative;
  overflow: hidden;
  background: transparent !important;
  transform-style: preserve-3d;
}

.web-development-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(4, 8, 15, 0.94) 0%,
      rgba(4, 8, 15, 0.76) 36%,
      rgba(4, 8, 15, 0.34) 64%,
      rgba(4, 8, 15, 0.08) 100%
    ),
    url("../assets/web-development-bg.png");

  background-size: 95%;
  background-position: 160% bottom;
  background-repeat: no-repeat;
  background-color: #050812;

  z-index: 1;
  transition: transform 0.5s ease;
}

.web-development-card:hover::before {
  transform: scale(1.03);
}

.web-development-card > * {
  position: relative;
  z-index: 5;
}

.web-development-card .service-title,
.web-development-card .service-desc {
  color: #ffffff;
}

.web-development-card .service-link {
  color: var(--clr-green);
}

.web-development-card .service-title,
.web-development-card .service-desc,
.web-development-card .service-link {
  max-width: 72%;
}

.web-development-card .service-num {
  position: absolute;
  top: 24px;
  right: 24px;
  left: auto;
  color: rgba(255,255,255,0.06);
}
.ai-integration-card {
  position: relative;
  overflow: hidden;
  background: transparent !important;
  transform-style: preserve-3d;
}

.ai-integration-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(4, 8, 15, 0.94) 0%,
      rgba(4, 8, 15, 0.76) 36%,
      rgba(4, 8, 15, 0.34) 64%,
      rgba(4, 8, 15, 0.08) 100%
    ),
    url("../assets/ai-integration-bg.png");

  background-size: 95%;
  background-position: 160% bottom;
  background-repeat: no-repeat;
  background-color: #050812;
  z-index: 1;
  transition: transform 0.5s ease;
}

.ai-integration-card:hover::before {
  transform: scale(1.03);
}

.ai-integration-card > * {
  position: relative;
  z-index: 5;
}

.ai-integration-card .service-title,
.ai-integration-card .service-desc {
  color: #ffffff;
}

.ai-integration-card .service-link {
  color: var(--clr-green);
}

.ai-integration-card .service-title,
.ai-integration-card .service-desc,
.ai-integration-card .service-link {
  max-width: 72%;
}

.ai-integration-card .service-num {
  position: absolute;
  top: 24px;
  right: 24px;
  left: auto;
  color: rgba(255,255,255,0.06);
}
.digital-marketing-card {
  position: relative;
  overflow: hidden;
  background: transparent !important;
  transform-style: preserve-3d;
}

.digital-marketing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(4, 8, 15, 0.94) 0%,
      rgba(4, 8, 15, 0.76) 36%,
      rgba(4, 8, 15, 0.34) 64%,
      rgba(4, 8, 15, 0.08) 100%
    ),
    url("../assets/digital-marketing-bg.png");

  background-size: 95%;
  background-position: 160% bottom;
  background-repeat: no-repeat;
  background-color: #050812;
  z-index: 1;
  transition: transform 0.5s ease;
}

.digital-marketing-card:hover::before {
  transform: scale(1.03);
}

.digital-marketing-card > * {
  position: relative;
  z-index: 5;
}

.digital-marketing-card .service-title,
.digital-marketing-card .service-desc {
  color: #ffffff;
}

.digital-marketing-card .service-link {
  color: var(--clr-green);
}

.digital-marketing-card .service-title,
.digital-marketing-card .service-desc,
.digital-marketing-card .service-link {
  max-width: 72%;
}

.digital-marketing-card .service-num {
  position: absolute;
  top: 24px;
  right: 24px;
  left: auto;
  color: rgba(255,255,255,0.06);
}
.content-writing-card {
  position: relative;
  overflow: hidden;
  background: transparent !important;
  transform-style: preserve-3d;
}

.content-writing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(4, 8, 15, 0.94) 0%,
      rgba(4, 8, 15, 0.76) 36%,
      rgba(4, 8, 15, 0.34) 64%,
      rgba(4, 8, 15, 0.08) 100%
    ),
    url("../assets/content-writing-bg.png");

  background-size: 95%;
  background-position: 160% bottom;
  background-repeat: no-repeat;
  background-color: #050812;
  z-index: 1;
  transition: transform 0.5s ease;
}

.content-writing-card:hover::before {
  transform: scale(1.03);
}

.content-writing-card > * {
  position: relative;
  z-index: 5;
}

.content-writing-card .service-title,
.content-writing-card .service-desc {
  color: #ffffff;
}

.content-writing-card .service-link {
  color: var(--clr-green);
}

.content-writing-card .service-title,
.content-writing-card .service-desc,
.content-writing-card .service-link {
  max-width: 72%;
}

.content-writing-card .service-num {
  position: absolute;
  top: 24px;
  right: 24px;
  left: auto;
  color: rgba(255,255,255,0.06);
}
/* =========================================
   TMK SERVICE CUBE
========================================= */

.cube-wrapper {
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  position: relative;
}

.service-cube {
  width: 220px;
  height: 220px;
  position: relative;
  transform-style: preserve-3d;
 animation: rotateCube 20s ease-in-out infinite;
}

.cube-face {
  position: absolute;
  width: 220px;
  height: 220px;

  border: 1.5px solid rgba(0, 255, 170, 0.75);

  background: rgba(0, 20, 40, 0.35);

  backdrop-filter: blur(8px);

  box-shadow:
    0 0 30px rgba(0, 255, 170, 0.18),
    inset 0 0 30px rgba(0, 255, 170, 0.08);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;

  color: #00f5b8;
}

.cube-face i {
  font-size: 48px;
  text-shadow: 0 0 15px rgba(0,255,170,0.6);
}

.cube-face span {
  font-size: 20px;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
}

.cube-logo {
  width: 130px;
  filter: drop-shadow(0 0 15px rgba(0,255,170,0.7));
}

/* FACES */

.cube-front {
  transform: translateZ(110px);
}

.cube-back {
  transform: rotateY(180deg) translateZ(110px);
}

.cube-right {
  transform: rotateY(90deg) translateZ(110px);
}

.cube-left {
  transform: rotateY(-90deg) translateZ(110px);
}

.cube-top {
  transform: rotateX(90deg) translateZ(110px);
}

.cube-bottom {
  transform: rotateX(-90deg) translateZ(110px);
}

/* ANIMATION */

@keyframes rotateCube {

  0% {
    transform: rotateX(0deg) rotateY(0deg);
  }

  16% {
    transform: rotateX(0deg) rotateY(90deg);
  }

  32% {
    transform: rotateX(0deg) rotateY(180deg);
  }

  48% {
    transform: rotateX(0deg) rotateY(270deg);
  }

  64% {
    transform: rotateX(90deg) rotateY(360deg);
  }

  80% {
    transform: rotateX(-90deg) rotateY(360deg);
  }

  100% {
    transform: rotateX(0deg) rotateY(360deg);
  }

}
/* Premium Learn More Button */
.service-link {
  width: fit-content;
  margin-top: auto;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 170, 0.45);
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.18), rgba(0, 212, 255, 0.12));
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 18px rgba(0, 255, 170, 0.18),
    inset 0 0 18px rgba(0, 255, 170, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -90%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 255, 170, 0.9);
  box-shadow:
    0 0 28px rgba(0, 255, 170, 0.35),
    0 0 45px rgba(0, 212, 255, 0.18),
    inset 0 0 20px rgba(0, 255, 170, 0.12);
}

.service-link:hover::before {
  left: 120%;
}

.service-link:hover i {
  transform: translateX(5px);
}

/* ============================================================
   SERVICE DETAIL PAGE STYLES
   Used by: services/virtual-assistance-truck-dispatch.html
============================================================ */

/* ── Service Hero ──────────────────────────────────────────── */
.sd-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 65% 50%, rgba(0,85,238,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 45% 55% at 5% 70%, rgba(0,255,136,0.08) 0%, transparent 60%);
}

.sd-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: var(--nav-h) 0 56px;
  width: 100%;
}

.sd-hero-content {
  flex: 1;
  max-width: 600px;
  padding: 40px 0;
}

.sd-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--trans);
  margin-bottom: 20px;
}
.sd-back-link:hover { color: var(--neon-green); }
.sd-back-link:hover i { transform: translateX(-3px); }
.sd-back-link i { font-size: 0.75rem; transition: var(--trans); }

.sd-hero-heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.sd-hero-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 32px;
  max-width: 560px;
}

.sd-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.sd-mini-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.sd-mini-stat { text-align: center; }
.sd-ms-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--neon-green);
  text-shadow: 0 0 14px rgba(0,255,136,0.45);
  line-height: 1;
  margin-bottom: 4px;
}
.sd-ms-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.sd-ms-divider {
  width: 1px; height: 36px;
  background: var(--border-subtle);
  flex-shrink: 0;
}

/* ── Holographic Visual ─────────────────────────────────────── */
.sd-hero-visual {
  flex-shrink: 0;
  width: 400px;
  height: 420px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.sd-orbit-ring {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  pointer-events: none;
}
.sd-orbit-1 {
  width: 370px; height: 370px;
  border-width: 1px;
  border-color: rgba(0,255,136,0.12);
  animation: orbitA 14s linear infinite;
}
.sd-orbit-2 {
  width: 430px; height: 430px;
  border-width: 1px;
  border-color: rgba(0,212,255,0.08);
  animation: orbitA 20s linear infinite reverse;
}

.sd-glow-blob {
  position: absolute;
  width: 220px; height: 220px;
  background: radial-gradient(ellipse, rgba(0,85,238,0.22) 0%, transparent 70%);
  border-radius: 50%;
  animation: blobPulse 5s ease-in-out infinite alternate;
  pointer-events: none;
}

/* ── Holographic Panel ──────────────────────────────────────── */
.holo-panel {
  width: 340px;
  background: rgba(5,5,12,0.9);
  border: 1px solid rgba(0,255,136,0.35);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 30px rgba(0,255,136,0.1),
    0 0 60px rgba(0,85,238,0.08),
    inset 0 0 40px rgba(0,0,0,0.5);
  position: relative;
  z-index: 2;
}

.holo-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(0,255,136,0.06);
  border-bottom: 1px solid rgba(0,255,136,0.18);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-display);
}
.holo-live { display: flex; align-items: center; gap: 6px; color: var(--neon-green); }
.holo-blink {
  width: 6px; height: 6px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 5px var(--neon-green);
  animation: pulseDot 1.5s ease-in-out infinite;
  display: inline-block;
  flex-shrink: 0;
}
.holo-name { color: rgba(255,255,255,0.6); }
.holo-time { color: var(--electric-blue); font-size: 0.62rem; }

.holo-map {
  height: 190px;
  position: relative;
  overflow: hidden;
  background: rgba(0,8,20,0.6);
}
.holo-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,136,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,136,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
}

.holo-route {
  position: absolute;
  height: 1px;
  pointer-events: none;
}
.route-1 {
  width: 58%; top: 38%; left: 8%;
  background: linear-gradient(90deg, transparent, rgba(0,255,136,0.7), transparent);
  transform: rotate(-14deg);
  animation: routePulse 3s ease-in-out infinite;
}
.route-2 {
  width: 44%; top: 62%; left: 32%;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.7), transparent);
  transform: rotate(9deg);
  animation: routePulse 4.2s ease-in-out infinite 0.6s;
}
.route-3 {
  width: 28%; top: 22%; left: 58%;
  background: linear-gradient(90deg, transparent, rgba(0,255,136,0.5), transparent);
  transform: rotate(-6deg);
  animation: routePulse 3.6s ease-in-out infinite 1.1s;
}
@keyframes routePulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 1; }
}

.holo-truck {
  position: absolute;
  font-size: 0.72rem;
  animation: truckFloat 3s ease-in-out infinite;
}
.ht-1 { top: 33%; left: 22%; color: var(--neon-green); filter: drop-shadow(0 0 4px var(--neon-green)); }
.ht-2 { top: 56%; left: 62%; color: var(--electric-blue); filter: drop-shadow(0 0 4px var(--electric-blue)); animation-delay: 1.2s; }
@keyframes truckFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

.holo-pin {
  position: absolute;
  width: 7px; height: 7px;
  border-radius: 50%;
  animation: pinPulse 2.2s ease-in-out infinite;
}
.hp-1 { top: 18%; left: 12%; background: var(--neon-green); box-shadow: 0 0 8px var(--neon-green); }
.hp-2 { top: 72%; left: 42%; background: var(--electric-blue); box-shadow: 0 0 8px var(--electric-blue); animation-delay: 0.8s; }
.hp-3 { top: 42%; left: 82%; background: var(--neon-green); box-shadow: 0 0 8px var(--neon-green); animation-delay: 1.6s; }

.holo-scan {
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,255,136,0.5) 50%, transparent 100%);
  animation: scanLine 3.5s linear infinite;
  pointer-events: none;
}
@keyframes scanLine {
  0%   { top: 0; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.holo-cards-row {
  display: flex;
  border-top: 1px solid rgba(0,255,136,0.1);
  border-bottom: 1px solid rgba(0,255,136,0.1);
}
.holo-mini-card {
  flex: 1;
  padding: 7px 10px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.holo-mini-card:last-child { border-right: none; }
.hmc-label {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.hmc-val {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
}
.hmc-green { color: var(--neon-green); }
.hmc-blue  { color: var(--electric-blue); }

.holo-metrics {
  display: flex;
  padding: 10px 14px;
}
.holo-metric {
  flex: 1;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.holo-metric:last-child { border-right: none; }
.hm-label {
  display: block;
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 3px;
}
.hm-value {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--neon-green);
}

/* ── Blue icon modifier (reusable) ──────────────────────────── */
.sd-icon-blue {
  background: linear-gradient(135deg, var(--blue-dim) 0%, var(--neon-green-dim) 100%) !important;
  border-color: rgba(0,212,255,0.2) !important;
  color: var(--electric-blue) !important;
}

/* ── What We Offer ──────────────────────────────────────────── */
.sd-offer-section {
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(0,85,238,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 5% 80%, rgba(0,255,136,0.04) 0%, transparent 60%);
}

.sd-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.sd-offer-card {
  padding: 32px 26px;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.sd-offer-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0,255,136,0.04) 0%, rgba(0,212,255,0.02) 100%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}
@media (hover: hover) {
  .sd-offer-card:hover::after { opacity: 1; }
  .sd-offer-card:hover {
    border-color: var(--glass-border-h);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 24px rgba(0,255,136,0.1);
  }
  .sd-offer-card:hover .sd-offer-icon {
    transform: scale(1.1) rotate(-5deg);
    border-color: var(--neon-green);
    box-shadow: 0 0 18px var(--neon-green-glow);
  }
}

.sd-offer-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--neon-green-dim) 0%, var(--blue-dim) 100%);
  border: 1px solid rgba(0,255,136,0.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--neon-green);
  margin-bottom: 18px;
  transition: var(--trans);
}

.sd-offer-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.sd-offer-text {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Why Choose ─────────────────────────────────────────────── */
.sd-why-section {
  background:
    radial-gradient(ellipse 60% 50% at 0% 50%, rgba(0,255,136,0.05) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 100% 20%, rgba(0,212,255,0.04) 0%, transparent 60%);
}

.sd-why-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.sd-why-text {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
}

.sd-why-benefits { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.sd-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.sd-benefit i {
  color: var(--neon-green);
  font-size: 0.82rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px var(--neon-green));
}

/* Ops Panel */
.sd-ops-panel { padding: 0; overflow: hidden; }
.sdop-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(0,255,136,0.05);
  border-bottom: 1px solid rgba(0,255,136,0.15);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.sdop-header i { color: var(--neon-green); font-size: 0.9rem; }
.sdop-live {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--neon-green);
  text-transform: uppercase;
}

.sdop-items { padding: 8px 0; }
.sdop-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--trans);
}
.sdop-item:last-child { border-bottom: none; }
.sdop-item:hover { background: rgba(255,255,255,0.02); }

.sdop-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pinPulse 2.5s ease-in-out infinite;
}
.sdop-green { background: var(--neon-green); box-shadow: 0 0 6px var(--neon-green); }
.sdop-blue  { background: var(--electric-blue); box-shadow: 0 0 6px var(--electric-blue); animation-delay: 0.8s; }

.sdop-label { font-size: 0.85rem; color: var(--text-secondary); flex: 1; }
.sdop-val   { font-family: var(--font-display); font-size: 0.82rem; font-weight: 700; color: var(--neon-green); }

.sdop-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(0,255,136,0.03);
  border-top: 1px solid rgba(0,255,136,0.12);
}
.sdop-bar-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap; }
.sdop-progress {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
}
.sdop-progress-fill {
  height: 100%;
  width: 94%;
  background: linear-gradient(90deg, var(--neon-green), var(--electric-blue));
  border-radius: 2px;
  animation: progressGlow 2s ease-in-out infinite alternate;
}
@keyframes progressGlow {
  from { box-shadow: none; }
  to   { box-shadow: 0 0 8px var(--neon-green); }
}
.sdop-bar-val { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; color: var(--neon-green); }

/* ── Process ────────────────────────────────────────────────── */
.sd-process-section {
  background: radial-gradient(ellipse 55% 45% at 50% 50%, rgba(0,85,238,0.06) 0%, transparent 70%);
}

.sd-process-timeline {
  display: flex;
  align-items: flex-start;
}

.sd-process-step {
  flex: 1;
  text-align: center;
  padding: 0 12px;
}

.sd-step-num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--neon-green-dim) 0%, var(--blue-dim) 100%);
  border: 1.5px solid rgba(0,255,136,0.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--neon-green);
  margin: 0 auto 18px;
  box-shadow: 0 0 16px rgba(0,255,136,0.1);
  position: relative;
  z-index: 1;
  transition: var(--trans);
}
.sd-process-step:hover .sd-step-num {
  border-color: var(--neon-green);
  box-shadow: 0 0 24px rgba(0,255,136,0.3);
  transform: scale(1.05);
}

.sd-step-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.sd-step-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.sd-process-connector {
  flex-shrink: 0;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0,255,136,0.35), rgba(0,212,255,0.35));
  margin-top: 27px;
  position: relative;
}
.sd-process-connector::after {
  content: '';
  position: absolute;
  right: -4px; top: -3px;
  border: 4px solid transparent;
  border-left: 5px solid rgba(0,212,255,0.5);
}

/* ── Equipment ──────────────────────────────────────────────── */
.sd-equip-section {
  background: radial-gradient(ellipse 50% 40% at 80% 50%, rgba(0,85,238,0.06) 0%, transparent 65%);
}

.sd-equip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.sd-equip-card {
  padding: 28px 16px;
  text-align: center;
  transition: var(--trans);
}
@media (hover: hover) {
  .sd-equip-card:hover {
    border-color: var(--glass-border-h);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3), 0 0 16px rgba(0,255,136,0.1);
  }
  .sd-equip-card:hover .sd-equip-icon { transform: scale(1.15); }
}

.sd-equip-icon {
  font-size: 1.8rem;
  color: var(--neon-green);
  margin-bottom: 14px;
  transition: var(--trans);
  filter: drop-shadow(0 0 5px rgba(0,255,136,0.3));
}
.sd-equip-card:nth-child(even) .sd-equip-icon {
  color: var(--electric-blue);
  filter: drop-shadow(0 0 5px rgba(0,212,255,0.3));
}
.sd-equip-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
}

/* ── Results / Stats ────────────────────────────────────────── */
.sd-results-section {
  background:
    radial-gradient(ellipse 55% 50% at 10% 50%, rgba(0,255,136,0.05) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 90% 30%, rgba(0,85,238,0.06) 0%, transparent 60%);
}

.sd-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sd-result-item {
  padding: 30px 24px;
  text-align: center;
  transition: var(--trans);
}
@media (hover: hover) {
  .sd-result-item:hover {
    border-color: var(--glass-border-h);
    transform: translateY(-5px);
    box-shadow: var(--shadow-neon);
  }
  .sd-result-item:hover .sd-result-icon { box-shadow: 0 0 18px var(--neon-green-glow); }
}

.sd-result-icon {
  width: 52px; height: 52px;
  background: var(--neon-green-dim);
  border: 1px solid rgba(0,255,136,0.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--neon-green);
  margin: 0 auto 16px;
  transition: var(--trans);
}

.sd-result-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  line-height: 1;
}
.sd-result-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.sd-faq-section {
  background: radial-gradient(ellipse 50% 45% at 50% 60%, rgba(0,85,238,0.05) 0%, transparent 65%);
}

.sd-faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}
.faq-item.open { border-color: rgba(0,255,136,0.3); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: var(--glass-bg);
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: var(--trans);
}
.faq-question:hover { background: var(--glass-bg-hover); color: var(--neon-green); }
.faq-item.open .faq-question { color: var(--neon-green); background: rgba(0,255,136,0.04); }

.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--neon-green-dim);
  border: 1px solid rgba(0,255,136,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  color: var(--neon-green);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(0,255,136,0.15);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
  padding: 0 22px;
}
.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  padding: 4px 0 18px;
}

/* ── Final CTA ──────────────────────────────────────────────── */
.sd-final-cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}
.sd-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0,85,238,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(0,255,136,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(0,212,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.sd-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.sd-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 14px 0 18px;
  color: var(--text-primary);
}
.sd-cta-sub {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}
.sd-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ── Service Page Responsive ────────────────────────────────── */
@media (max-width: 1199px) {
  .sd-equip-grid  { grid-template-columns: repeat(3, 1fr); }
  .sd-hero-visual { width: 320px; height: 360px; }
  .holo-panel     { width: 300px; }
  .sd-orbit-1     { width: 310px; height: 310px; }
  .sd-orbit-2     { width: 370px; height: 370px; }
}

@media (max-width: 991px) {
  .sd-hero-inner    { flex-direction: column; gap: 40px; padding-bottom: 48px; }
  .sd-hero-content  { max-width: 100%; padding: 32px 0 0; text-align: center; }
  .sd-hero-sub      { margin-left: auto; margin-right: auto; }
  .sd-hero-ctas     { justify-content: center; }
  .sd-mini-stats    { justify-content: center; }
  .sd-hero-visual   { width: 320px; height: 340px; }

  .sd-offer-grid    { grid-template-columns: repeat(2, 1fr); }
  .sd-why-grid      { grid-template-columns: 1fr; gap: 44px; }
  .sd-results-grid  { grid-template-columns: repeat(2, 1fr); }
  .sd-equip-grid    { grid-template-columns: repeat(3, 1fr); }

  .sd-process-timeline  { flex-direction: column; gap: 0; }
  .sd-process-step      { text-align: left; padding: 0 0 28px 72px; position: relative; }
  .sd-step-num          { position: absolute; left: 0; top: 0; margin: 0; }
  .sd-process-connector { display: none; }
  .sd-process-step::after {
    content: '';
    position: absolute;
    left: 27px; top: 56px;
    width: 1px; height: calc(100% - 56px);
    background: linear-gradient(180deg, rgba(0,255,136,0.3), transparent);
  }
  .sd-process-step:last-child::after { display: none; }
}

@media (max-width: 767px) {
  .sd-offer-grid    { grid-template-columns: 1fr; }
  .sd-equip-grid    { grid-template-columns: repeat(2, 1fr); }
  .sd-results-grid  { grid-template-columns: 1fr 1fr; }

  .sd-hero-visual   { display: none; }
  .sd-hero-content  { text-align: left; }
  .sd-hero-ctas     { flex-direction: column; }
  .sd-hero-ctas .btn { width: 100%; }
  .sd-mini-stats    { justify-content: flex-start; }

  .sd-final-cta     { padding: 72px 0; }
  .sd-cta-btns      { flex-direction: column; align-items: center; }
  .sd-cta-btns .btn { width: 100%; max-width: 340px; }
}

@media (max-width: 479px) {
  .sd-equip-grid    { grid-template-columns: repeat(2, 1fr); }
  .sd-results-grid  { grid-template-columns: 1fr; }
}
/* ============================================================
   SERVICE HERO PREMIUM POLISH
============================================================ */

.sd-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.sd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 38%, rgba(0, 255, 136, 0.18), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(0, 212, 255, 0.16), transparent 28%),
    radial-gradient(circle at 18% 72%, rgba(0, 85, 238, 0.12), transparent 34%);
  filter: blur(12px);
  z-index: 1;
  pointer-events: none;
}

.sd-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(0, 255, 136, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.11) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 70% 45%, black, transparent 72%);
  animation: sdGridMove 18s linear infinite;
}

@keyframes sdGridMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 116px 116px;
  }
}

.sd-hero-beam {
  position: absolute;
  width: 520px;
  height: 2px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.75), rgba(0, 212, 255, 0.55), transparent);
  filter: blur(0.4px);
  opacity: 0.42;
  transform-origin: center;
}

.sd-beam-1 {
  top: 28%;
  right: -120px;
  transform: rotate(-22deg);
  animation: sdBeamFloat 5s ease-in-out infinite alternate;
}

.sd-beam-2 {
  bottom: 24%;
  left: -160px;
  transform: rotate(18deg);
  animation: sdBeamFloat 6s ease-in-out infinite alternate-reverse;
}

@keyframes sdBeamFloat {
  from {
    opacity: 0.22;
    translate: 0 0;
  }
  to {
    opacity: 0.65;
    translate: 24px -18px;
  }
}

.sd-hero-inner {
  position: relative;
  z-index: 5;
}

.sd-hero-heading {
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  text-shadow: 0 0 34px rgba(0, 255, 136, 0.12);
}

.sd-hero-sub {
  max-width: 650px;
  font-size: 1.05rem;
  color: rgba(196, 204, 216, 0.88);
}

.sd-hero-visual {
  position: relative;
  transform: translateZ(0);
}

.holo-panel {
  box-shadow:
    0 0 70px rgba(0, 255, 136, 0.18),
    0 0 120px rgba(0, 212, 255, 0.12),
    inset 0 0 45px rgba(0, 255, 136, 0.08);
  animation: sdPanelFloat 5s ease-in-out infinite;
}

@keyframes sdPanelFloat {
  0%, 100% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: translateY(-12px) rotateX(2deg) rotateY(-3deg);
  }
}

.sd-floating-chip {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(5, 10, 18, 0.72);
  border: 1px solid rgba(0, 255, 136, 0.28);
  backdrop-filter: blur(14px);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow:
    0 0 24px rgba(0, 255, 136, 0.16),
    inset 0 0 18px rgba(0, 255, 136, 0.06);
  pointer-events: none;
}

.sd-floating-chip i {
  color: var(--neon-green);
  filter: drop-shadow(0 0 6px rgba(0, 255, 136, 0.85));
}

.sd-chip-1 {
  top: 26%;
  right: 32%;
  animation: sdChipFloat 4.2s ease-in-out infinite;
}

.sd-chip-2 {
  top: 58%;
  right: 6%;
  animation: sdChipFloat 5.2s ease-in-out infinite reverse;
}

.sd-chip-3 {
  bottom: 18%;
  right: 27%;
  animation: sdChipFloat 4.8s ease-in-out infinite;
}

@keyframes sdChipFloat {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.78;
  }
  50% {
    transform: translateY(-14px);
    opacity: 1;
  }
}

.sd-mini-stats {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(0, 255, 136, 0.14);
  border-radius: 22px;
  padding: 18px 22px;
  backdrop-filter: blur(14px);
  width: fit-content;
  box-shadow: inset 0 0 25px rgba(0, 255, 136, 0.04);
}

@media (max-width: 991px) {
  .sd-floating-chip,
  .sd-hero-beam {
    display: none;
  }

  .sd-hero-heading {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .sd-mini-stats {
    width: 100%;
  }
}
/* Hero size balance fix */
.sd-hero-heading {
  font-size: clamp(2.7rem, 4.2vw, 4.35rem);
  line-height: 1.08;
  max-width: 760px;
}

.sd-hero {
  min-height: 100vh;
  padding-top: 90px;
}

.sd-hero-inner {
  align-items: center;
  padding-top: 40px;
  padding-bottom: 70px;
}

.sd-hero-sub {
  max-width: 720px;
}
.sd-hero-topline {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.sd-topline-text {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding-left: 20px;
}

.sd-topline-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 1px;
  background: rgba(0,255,136,0.6);
}
/* ============================================================
   WHAT WE OFFER CARD POLISH
============================================================ */

.sd-offer-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}

.sd-offer-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(0,255,136,0.45);
  box-shadow:
    0 0 35px rgba(0,255,136,0.16),
    0 0 70px rgba(0,212,255,0.08),
    inset 0 0 35px rgba(0,255,136,0.05);
}

.sd-offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.08),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.8s ease;
  z-index: 1;
}

.sd-offer-card:hover::before {
  left: 160%;
}

.sd-offer-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  width: 76%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0,255,136,0.8),
    transparent
  );
  opacity: 0.8;
}

.sd-offer-card > * {
  position: relative;
  z-index: 2;
}

.sd-offer-icon {
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.sd-offer-card:hover .sd-offer-icon {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 0 30px rgba(0,255,136,0.25);
}
/* ============================================================
   OFFER CARDS DEPTH IMPROVEMENT
============================================================ */

.sd-offer-card {
  min-height: 320px;

  background:
    linear-gradient(
      180deg,
      rgba(0,255,136,0.03),
      rgba(0,0,0,0)
    );

  backdrop-filter: blur(14px);

  padding: 42px 38px;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.sd-offer-card::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    radial-gradient(
      circle at top right,
      rgba(0,255,136,0.06),
      transparent 35%
    );

  pointer-events: none;
}

.sd-offer-title {
  margin-top: 26px;
  margin-bottom: 18px;

  font-size: 1.8rem;
  line-height: 1.2;
}

.sd-offer-text {
  font-size: 1rem;
  line-height: 1.9;

  color: rgba(255,255,255,0.68);

  max-width: 90%;
}

.sd-offer-icon {
  width: 84px;
  height: 84px;

  border-radius: 24px;

  box-shadow:
    inset 0 0 25px rgba(0,255,136,0.05),
    0 0 18px rgba(0,255,136,0.08);
}
/* ============================================================
   WHY TMK CINEMATIC POLISH
============================================================ */

.sd-why-section {
  position: relative;
  overflow: hidden;
}

.sd-why-section::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 80% 40%,
      rgba(0,255,136,0.08),
      transparent 35%
    );

  pointer-events: none;
}

.sd-why-grid {
  align-items: center;
  gap: 80px;
}

/* ============================================================
   CUSTOMER SERVICE PAGE — SUPPORT SCHEDULE PANEL
   Used by: services/customer-service-tech-support.html
============================================================ */

/* Replaces .holo-map for the support command center visual */
.supp-schedule {
  height: 190px;
  position: relative;
  overflow: hidden;
  background: rgba(0, 8, 20, 0.6);
}

.supp-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-bottom: 1px solid rgba(0, 255, 136, 0.06);
  font-size: 0.7rem;
  font-family: var(--font-display);
  position: relative;
  z-index: 2;
}
.supp-row:nth-child(even) { background: rgba(0, 255, 136, 0.02); }

.sr-icon {
  font-size: 0.72rem;
  color: var(--neon-green);
  filter: drop-shadow(0 0 4px var(--neon-green));
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.sr-text {
  flex: 1;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sr-badge {
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 100px;
  flex-shrink: 0;
}
.sr-confirmed {
  background: rgba(0, 255, 136, 0.12);
  color: var(--neon-green);
  border: 1px solid rgba(0, 255, 136, 0.28);
}
.sr-active {
  background: rgba(0, 212, 255, 0.12);
  color: var(--electric-blue);
  border: 1px solid rgba(0, 212, 255, 0.28);
  animation: rowPulse 2s ease-in-out infinite;
}
.sr-live {
  background: rgba(0, 255, 136, 0.18);
  color: var(--neon-green);
  border: 1px solid rgba(0, 255, 136, 0.38);
  animation: rowPulse 1.5s ease-in-out infinite;
}
@keyframes rowPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

/* Notification pulse dots inside schedule panel */
.supp-notif {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  z-index: 3;
  animation: pinPulse 2s ease-in-out infinite;
}
.sn-1 {
  top: 18%; right: 12%;
  background: var(--neon-green);
  box-shadow: 0 0 7px var(--neon-green);
}
.sn-2 {
  bottom: 20%; right: 30%;
  background: var(--electric-blue);
  box-shadow: 0 0 7px var(--electric-blue);
  animation-delay: 1s;
}

.sd-why-text {
  font-size: 1.05rem;
  line-height: 1.95;

  color: rgba(255,255,255,0.72);

  max-width: 650px;
}

.sd-benefit {
  transition:
    transform 0.35s ease,
    color 0.35s ease;
}

.sd-benefit:hover {
  transform: translateX(8px);
  color: #ffffff;
}

.sd-benefit i {
  filter:
    drop-shadow(0 0 8px rgba(0,255,136,0.6));
}

/* operations panel */

.sd-ops-panel {
  position: relative;

  overflow: hidden;

  border:
    1px solid rgba(0,255,136,0.16);

  box-shadow:
    0 0 40px rgba(0,255,136,0.12),
    0 0 90px rgba(0,212,255,0.06),
    inset 0 0 35px rgba(0,255,136,0.04);

  backdrop-filter: blur(20px);
}

/* animated scan line */

.sd-ops-panel::before {
  content: "";

  position: absolute;

  left: 0;
  top: -30%;

  width: 100%;
  height: 120px;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(0,255,136,0.08),
      transparent
    );

  animation: sdScan 5s linear infinite;
}

@keyframes sdScan {

  0% {
    top: -30%;
  }

  100% {
    top: 120%;
  }

}

/* top glow line */

.sd-ops-panel::after {
  content: "";

  position: absolute;

  top: 0;
  left: 10%;

  width: 80%;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(0,255,136,0.8),
      transparent
    );
}

/* dashboard items */

.sdop-item {
  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.sdop-item:hover {

  transform: translateX(6px);

  background:
    rgba(0,255,136,0.04);
}

/* progress bar */

.sdop-progress-fill {
  background:
    linear-gradient(
      90deg,
      #00ff88,
      #00d4ff
    );

  box-shadow:
    0 0 20px rgba(0,255,136,0.35);
}

/* live badge */

.sdop-live {
  box-shadow:
    0 0 15px rgba(0,255,136,0.2);
}
/* ============================================================
   PROCESS TIMELINE PREMIUM POLISH
============================================================ */

.sd-process-section {
  position: relative;
  overflow: hidden;
}

.sd-process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 40%, rgba(0, 212, 255, 0.08), transparent 35%),
    radial-gradient(circle at 80% 60%, rgba(0, 255, 136, 0.06), transparent 35%);
  pointer-events: none;
}

.sd-process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  z-index: 2;
}

.sd-process-timeline::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,255,136,0.75), rgba(0,212,255,0.55), transparent);
  box-shadow: 0 0 20px rgba(0,255,136,0.24);
  z-index: 0;
}

.sd-process-step {
  position: relative;
  z-index: 2;
  min-height: 250px;
  padding: 34px 24px;
  border: 1px solid rgba(0,255,136,0.16);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(0,255,136,0.045), rgba(255,255,255,0.025));
  backdrop-filter: blur(16px);
  box-shadow: inset 0 0 28px rgba(0,255,136,0.035);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

.sd-process-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0,212,255,0.08), transparent 42%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.sd-process-step:hover {
  transform: translateY(-10px);
  border-color: rgba(0,255,136,0.45);
  box-shadow:
    0 0 36px rgba(0,255,136,0.14),
    0 0 70px rgba(0,212,255,0.08),
    inset 0 0 30px rgba(0,255,136,0.055);
}

.sd-process-step:hover::before {
  opacity: 1;
}

.sd-step-num {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,255,136,0.1);
  border: 1px solid rgba(0,255,136,0.28);
  color: var(--neon-green);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 28px;
  box-shadow: 0 0 22px rgba(0,255,136,0.12);
}

.sd-step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.sd-step-text {
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  font-size: 0.95rem;
}

.sd-process-connector {
  display: none;
}

@media (max-width: 991px) {
  .sd-process-timeline {
    grid-template-columns: 1fr;
  }

  .sd-process-timeline::before {
    display: none;
  }

  .sd-process-step {
    min-height: auto;
  }
}
/* ============================================================
   EQUIPMENT TYPES PREMIUM POLISH
============================================================ */

.sd-equip-section {
  position: relative;
  overflow: hidden;
}

.sd-equip-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 45%, rgba(0, 255, 136, 0.07), transparent 34%),
    radial-gradient(circle at 82% 58%, rgba(0, 212, 255, 0.07), transparent 34%);
  pointer-events: none;
}

.sd-equip-grid {
  position: relative;
  z-index: 2;
}

.sd-equip-card {
  position: relative;
  min-height: 185px;
  padding: 34px 24px;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(0,255,136,0.16);
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.sd-equip-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,255,136,0.045), transparent),
    radial-gradient(circle at top, rgba(0,212,255,0.07), transparent 42%);
  opacity: 0.8;
  pointer-events: none;
}

.sd-equip-card::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,255,136,0.8), rgba(0,212,255,0.7), transparent);
  box-shadow: 0 0 18px rgba(0,255,136,0.4);
  opacity: 0.8;
}

.sd-equip-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,255,136,0.45);
  box-shadow:
    0 0 34px rgba(0,255,136,0.14),
    inset 0 0 28px rgba(0,255,136,0.04);
}

.sd-equip-card > * {
  position: relative;
  z-index: 2;
}

.sd-equip-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 22px;
  background: rgba(0,255,136,0.08);
  border: 1px solid rgba(0,255,136,0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-green);
  font-size: 1.8rem;
  box-shadow: inset 0 0 24px rgba(0,255,136,0.055);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.sd-equip-card:hover .sd-equip-icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 0 28px rgba(0,255,136,0.22);
}

.sd-equip-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #ffffff;
}
/* ============================================================
   RESULTS STATS PREMIUM POLISH
============================================================ */

.sd-results-section {
  position: relative;
  overflow: hidden;
}

.sd-results-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 35%, rgba(0, 255, 136, 0.08), transparent 34%),
    radial-gradient(circle at 78% 55%, rgba(0, 212, 255, 0.07), transparent 34%);
  pointer-events: none;
}

.sd-results-grid {
  position: relative;
  z-index: 2;
}

.sd-result-item {
  position: relative;
  min-height: 210px;
  padding: 34px 26px;
  overflow: hidden;
  border: 1px solid rgba(0,255,136,0.16);
  background:
    linear-gradient(180deg, rgba(0,255,136,0.04), rgba(255,255,255,0.025));
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.sd-result-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(0,212,255,0.09), transparent 38%);
  opacity: 0.8;
  pointer-events: none;
}

.sd-result-item::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,255,136,0.8), rgba(0,212,255,0.65), transparent);
  box-shadow: 0 0 18px rgba(0,255,136,0.35);
}

.sd-result-item:hover {
  transform: translateY(-8px);
  border-color: rgba(0,255,136,0.45);
  box-shadow:
    0 0 34px rgba(0,255,136,0.14),
    0 0 70px rgba(0,212,255,0.08),
    inset 0 0 28px rgba(0,255,136,0.04);
}

.sd-result-item > * {
  position: relative;
  z-index: 2;
}

.sd-result-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: rgba(0,255,136,0.08);
  border: 1px solid rgba(0,255,136,0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-green);
  font-size: 1.6rem;
  margin-bottom: 22px;
  box-shadow: inset 0 0 22px rgba(0,255,136,0.055);
}

.sd-result-title {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 10px;
  color: #ffffff;
}

.sd-result-text {
  color: rgba(255,255,255,0.62);
  font-size: 0.98rem;
  line-height: 1.7;
}
/* ============================================================
   FAQ + FINAL CTA PREMIUM POLISH
============================================================ */

.sd-faq-section {
  position: relative;
  overflow: hidden;
}

.sd-faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 40%, rgba(0,255,136,0.07), transparent 34%),
    radial-gradient(circle at 80% 60%, rgba(0,212,255,0.06), transparent 34%);
  pointer-events: none;
}

.sd-faq-list {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq-item {
  border: 1px solid rgba(0,255,136,0.16);
  border-radius: 18px;
  margin-bottom: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 0 24px rgba(0,255,136,0.035);
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  color: #ffffff;
}

.faq-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,255,136,0.1);
  border: 1px solid rgba(0,255,136,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-green);
  flex-shrink: 0;
}

.faq-answer {
  padding: 0 24px 22px;
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
  font-size: 0.95rem;
}

.sd-final-cta {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
}

.sd-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(0,255,136,0.13), transparent 38%),
    radial-gradient(circle at 80% 70%, rgba(0,212,255,0.09), transparent 34%);
  pointer-events: none;
}

.sd-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 940px;
  margin: 0 auto;
  padding: 64px 48px;
  text-align: center;
  border: 1px solid rgba(0,255,136,0.22);
  border-radius: 30px;
  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(18px);
  box-shadow:
    0 0 50px rgba(0,255,136,0.14),
    inset 0 0 45px rgba(0,255,136,0.045);
}

.sd-cta-inner::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,255,136,0.9), rgba(0,212,255,0.7), transparent);
}

.sd-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.2vw, 4rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

/* ============================================================
   ERP / CRM SOFTWARE PAGE — DASHBOARD PANEL
   Used by: services/erp-crm-software-solutions.html
============================================================ */

/* Distinct background for Core Capabilities section */
.sd-caps-section {
  background:
    radial-gradient(ellipse 55% 45% at 20% 60%, rgba(0, 212, 255, 0.06) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 85% 30%, rgba(0, 255, 136, 0.04) 0%, transparent 60%);
}

/* ── KPI Cards row ──────────────────────────────────────────── */
.erp-kpi-row {
  display: flex;
  border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}
.erp-kpi-card {
  flex: 1;
  padding: 12px 10px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}
.erp-kpi-card:last-child { border-right: none; }

.ekc-label {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.13em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.ekc-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--neon-green);
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.45);
}
.ekc-change {
  font-size: 0.56rem;
  font-weight: 600;
  color: var(--neon-green);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.ekc-blue { color: var(--electric-blue); }

/* ── Analytics / progress bars ─────────────────────────────── */
.erp-analytics {
  padding: 10px 14px;
  position: relative;
  background: rgba(0, 8, 20, 0.45);
  border-bottom: 1px solid rgba(0, 255, 136, 0.08);
  overflow: hidden;
}
.erp-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.erp-bar-row:last-of-type { margin-bottom: 0; }

.ebr-label {
  font-size: 0.58rem;
  color: var(--text-muted);
  width: 58px;
  flex-shrink: 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.ebr-track {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}
.ebr-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--neon-green), rgba(0, 255, 136, 0.45));
  border-radius: 2px;
  animation: erpBarGlow 2.5s ease-in-out infinite alternate;
}
.ebr-blue {
  background: linear-gradient(90deg, var(--electric-blue), rgba(0, 212, 255, 0.45));
  animation-delay: 0.6s;
}
@keyframes erpBarGlow {
  from { box-shadow: none; }
  to   { box-shadow: 0 0 6px var(--neon-green); }
}
.ebr-val {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--neon-green);
  width: 28px;
  text-align: right;
  flex-shrink: 0;
}
.ebr-val-blue { color: var(--electric-blue); }

.sd-cta-sub {
  max-width: 720px;
  margin: 0 auto 30px;
  color: rgba(255,255,255,0.68);
  font-size: 1.03rem;
  line-height: 1.8;
}

.sd-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.erp-kpi-card {
  border: 1px solid rgba(0,255,136,0.16);

  background:
    linear-gradient(
      180deg,
      rgba(0,255,136,0.04),
      rgba(255,255,255,0.025)
    );

  box-shadow:
    inset 0 0 20px rgba(0,255,136,0.04),
    0 0 20px rgba(0,255,136,0.06);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease;
}

.erp-kpi-card:hover {
  transform: translateY(-6px);

  border-color:
    rgba(0,255,136,0.4);
}
.sd-caps-section .sd-offer-card {

  min-height: 280px;

  background:
    linear-gradient(
      180deg,
      rgba(0,212,255,0.04),
      rgba(255,255,255,0.02)
    );
}

/* ============================================================
   WEB DEVELOPMENT PAGE — BROWSER UI PANEL
   Used by: services/web-development.html
============================================================ */

/* ── Browser chrome top bar ─────────────────────────────────── */
.wb-chrome {
  gap: 8px;
}

.wb-url-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(0, 255, 136, 0.14);
  border-radius: 5px;
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
  overflow: hidden;
  white-space: nowrap;
  text-transform: none;
}
.wb-lock {
  color: var(--neon-green);
  font-size: 0.52rem;
  flex-shrink: 0;
}

.wb-dots {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.wb-dots span {
  width: 7px; height: 7px;
  border-radius: 50%;
  display: block;
}
.wb-dots span:nth-child(1) { background: rgba(255, 80, 80, 0.65); }
.wb-dots span:nth-child(2) { background: rgba(255, 189, 65, 0.65); }
.wb-dots span:nth-child(3) { background: rgba(0, 255, 136, 0.65); }

/* ── Website wireframe preview area ─────────────────────────── */
.wb-preview {
  height: 190px;
  position: relative;
  overflow: hidden;
  background: rgba(0, 6, 18, 0.58);
  padding: 8px 10px;
}

/* Simulated nav bar */
.wb-page-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 7px;
  padding: 4px 7px;
  background: rgba(0, 255, 136, 0.04);
  border: 1px solid rgba(0, 255, 136, 0.1);
  border-radius: 4px;
}
.wb-nav-logo {
  width: 30px; height: 6px;
  background: linear-gradient(90deg, var(--neon-green), var(--electric-blue));
  border-radius: 2px;
  opacity: 0.65;
  flex-shrink: 0;
}
.wb-nav-links {
  display: flex;
  gap: 5px;
  flex: 1;
  justify-content: center;
}
.wb-nav-link {
  width: 22px; height: 4px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 2px;
}
.wb-nav-btn {
  width: 28px; height: 6px;
  background: rgba(0, 255, 136, 0.42);
  border-radius: 3px;
  box-shadow: 0 0 5px rgba(0, 255, 136, 0.28);
  flex-shrink: 0;
}

/* Simulated hero wireframe block */
.wb-hero-block {
  padding: 8px 7px;
  margin-bottom: 7px;
  border: 1px dashed rgba(0, 255, 136, 0.12);
  border-radius: 4px;
  background: rgba(0, 255, 136, 0.018);
}
.wb-h-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 7px;
}
.wb-line {
  height: 4px;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 2px;
}
.wb-line-lg {
  width: 72%;
  background: linear-gradient(90deg, rgba(0,255,136,0.5), rgba(0,212,255,0.3));
}
.wb-line-md { width: 52%; }
.wb-line-sm { width: 38%; }

.wb-h-ctas {
  display: flex;
  gap: 5px;
}
.wb-cta {
  height: 7px;
  border-radius: 3px;
  flex-shrink: 0;
}
.wb-cta-primary {
  width: 38px;
  background: rgba(0, 255, 136, 0.55);
  box-shadow: 0 0 6px rgba(0, 255, 136, 0.3);
  animation: wbCtaGlow 2.2s ease-in-out infinite alternate;
}
.wb-cta-outline {
  width: 38px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
@keyframes wbCtaGlow {
  from { box-shadow: 0 0 3px rgba(0,255,136,0.2); }
  to   { box-shadow: 0 0 10px rgba(0,255,136,0.55); }
}

/* Simulated 3-card features row */
.wb-cards-row {
  display: flex;
  gap: 5px;
}
.wb-card {
  flex: 1;
  height: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 255, 136, 0.1);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
/* Top accent line on card */
.wb-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--electric-blue), transparent);
  opacity: 0.45;
}
/* Inner text placeholder line */
.wb-card::after {
  content: '';
  position: absolute;
  top: 8px; left: 5px; right: 5px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1px;
}
/* ============================================================
   WEB DEVELOPMENT HERO POLISH
============================================================ */

.wb-preview {
  position: relative;
  overflow: hidden;
}

.wb-preview::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.06),
      transparent 35%
    );

  pointer-events: none;
}

.wb-card {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.wb-card:hover {

  transform:
    translateY(-6px);

  box-shadow:
    0 0 20px rgba(0,255,136,0.18);
}

.holo-mini-card {

  border:
    1px solid rgba(0,255,136,0.14);

  background:
    linear-gradient(
      180deg,
      rgba(0,255,136,0.04),
      rgba(255,255,255,0.02)
    );

  box-shadow:
    inset 0 0 18px rgba(0,255,136,0.04);
}

/* ============================================================
   AI APPS & INTEGRATIONS PAGE — AI COMMAND CENTER PANEL
   Used by: services/ai-apps-integrations.html
============================================================ */

/* ── Neural data flow ───────────────────────────────────────── */
.ai-flow {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: rgba(0, 8, 20, 0.55);
  border-bottom: 1px solid rgba(0, 255, 136, 0.08);
}

.ai-flow-node {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.afn-input {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.4);
  color: var(--neon-green);
  animation: aiNodeGlowGreen 2s ease-in-out infinite;
}
.afn-process {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.4);
  color: var(--electric-blue);
  animation: aiNodeGlowBlue 2s ease-in-out infinite 0.6s;
}
.afn-output {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.4);
  color: var(--neon-green);
  animation: aiNodeGlowGreen 2s ease-in-out infinite 1.2s;
}
@keyframes aiNodeGlowGreen {
  0%, 100% { box-shadow: 0 0 6px rgba(0,255,136,0.18); }
  50%       { box-shadow: 0 0 18px rgba(0,255,136,0.5); transform: scale(1.06); }
}
@keyframes aiNodeGlowBlue {
  0%, 100% { box-shadow: 0 0 6px rgba(0,212,255,0.18); }
  50%       { box-shadow: 0 0 18px rgba(0,212,255,0.5); transform: scale(1.06); }
}

/* Connecting lines with animated data-packet dots */
.ai-flow-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(0,255,136,0.4), rgba(0,212,255,0.4));
  position: relative;
  animation: aiLinePulse 2.5s ease-in-out infinite;
}
.ai-flow-line::after {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  top: -2.5px;
  left: 0;
  background: var(--neon-green);
  box-shadow: 0 0 5px var(--neon-green);
  animation: aiPacket 2s linear infinite;
}
.ai-flow-line:nth-child(4)::after {
  background: var(--electric-blue);
  box-shadow: 0 0 5px var(--electric-blue);
  animation-delay: 1s;
}
@keyframes aiPacket {
  0%   { left: 0;    opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
@keyframes aiLinePulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ── Chatbot conversation area ──────────────────────────────── */
.ai-chat {
  height: 135px;
  overflow: hidden;
  position: relative;
  background: rgba(0, 5, 16, 0.52);
  border-bottom: 1px solid rgba(0, 255, 136, 0.06);
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: flex-end;
}

.ai-msg {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  font-size: 0.62rem;
  line-height: 1.35;
  letter-spacing: 0.03em;
}

/* User bubble — right-aligned */
.ai-msg-user {
  align-self: flex-end;
  justify-content: flex-end;
}
.ai-msg-user > span {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.22);
  border-radius: 10px 10px 2px 10px;
  padding: 4px 9px;
  color: rgba(255, 255, 255, 0.72);
  display: block;
}

/* Bot bubble — left-aligned with icon */
.ai-msg-bot { align-self: flex-start; }

.ai-bot-icon {
  width: 18px; height: 18px;
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.48rem;
  color: var(--electric-blue);
  animation: aiNodeGlowBlue 2s ease-in-out infinite;
}
.ai-bot-text {
  background: rgba(0, 212, 255, 0.07);
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 10px 10px 10px 2px;
  padding: 4px 9px;
  color: rgba(255, 255, 255, 0.72);
  display: block;
}

/* ============================================================
   DIGITAL MARKETING PAGE — SEO COMMAND CENTER PANEL
   Used by: services/digital-marketing.html
============================================================ */

/* ── Keyword rankings panel ─────────────────────────────────── */
.seo-rankings {
  height: 165px;
  position: relative;
  overflow: hidden;
  background: rgba(0, 6, 18, 0.55);
  border-bottom: 1px solid rgba(0, 255, 136, 0.08);
}

.seo-rank-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-bottom: 1px solid rgba(0, 255, 136, 0.05);
  font-size: 0.64rem;
  position: relative;
  z-index: 2;
  transition: background 0.25s ease;
}
.seo-rank-row:last-of-type { border-bottom: none; }
.seo-rank-row:nth-child(even) { background: rgba(0, 255, 136, 0.018); }
.seo-rank-row:hover { background: rgba(0, 255, 136, 0.04); }

/* Keyword text */
.srr-keyword {
  flex: 1;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--font-display);
}

/* Position badge */
.srr-pos {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  flex-shrink: 0;
}
.seo-pos-green {
  background: rgba(0, 255, 136, 0.1);
  color: var(--neon-green);
  border: 1px solid rgba(0, 255, 136, 0.25);
}
.seo-pos-blue {
  background: rgba(0, 212, 255, 0.1);
  color: var(--electric-blue);
  border: 1px solid rgba(0, 212, 255, 0.22);
}

/* Trend arrow */
.srr-trend {
  flex-shrink: 0;
  width: 14px;
  text-align: center;
  font-size: 0.55rem;
}
.seo-up      { color: var(--neon-green); filter: drop-shadow(0 0 3px var(--neon-green)); }
.seo-neutral { color: rgba(255, 255, 255, 0.25); }

/* ============================================================
   CONTENT WRITING PAGE — EDITORIAL PIPELINE PANEL
   Used by: services/content-writing.html
============================================================ */

/* ── Content pipeline status rows ──────────────────────────── */
.content-pipeline {
  height: 165px;
  position: relative;
  overflow: hidden;
  background: rgba(0, 6, 18, 0.55);
  border-bottom: 1px solid rgba(0, 255, 136, 0.08);
}

.cp-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-bottom: 1px solid rgba(0, 255, 136, 0.05);
  font-size: 0.64rem;
  position: relative;
  z-index: 2;
  transition: background 0.25s ease;
}
.cp-row:last-of-type { border-bottom: none; }
.cp-row:nth-child(even) { background: rgba(0, 255, 136, 0.018); }
.cp-row:hover { background: rgba(0, 255, 136, 0.04); }

/* Content type icon */
.cpr-icon {
  font-size: 0.7rem;
  color: var(--neon-green);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
  filter: drop-shadow(0 0 3px rgba(0, 255, 136, 0.5));
}

/* Article/content title */
.cpr-title {
  flex: 1;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.03em;
  font-family: var(--font-display);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Status badge */
.cpr-badge {
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
  flex-shrink: 0;
}
.cpb-live {
  background: rgba(0, 255, 136, 0.12);
  color: var(--neon-green);
  border: 1px solid rgba(0, 255, 136, 0.28);
  animation: rowPulse 2s ease-in-out infinite;
}
.cpb-review {
  background: rgba(0, 212, 255, 0.1);
  color: var(--electric-blue);
  border: 1px solid rgba(0, 212, 255, 0.24);
}
.cpb-done {
  background: rgba(0, 255, 136, 0.06);
  color: rgba(0, 255, 136, 0.6);
  border: 1px solid rgba(0, 255, 136, 0.14);
}
.cpb-draft {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
/* ============================================================
   DIGITAL MARKETING HERO POLISH
============================================================ */

.seo-rankings {
  position: relative;
  overflow: hidden;

  border:
    1px solid rgba(0,255,136,0.12);

  background:
    linear-gradient(
      180deg,
      rgba(0,255,136,0.03),
      rgba(255,255,255,0.02)
    );

  box-shadow:
    inset 0 0 24px rgba(0,255,136,0.04);
}

.seo-rankings::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top right,
      rgba(0,212,255,0.08),
      transparent 40%
    );

  pointer-events: none;
}

.seo-rank-row {
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.seo-rank-row:hover {

  transform:
    translateX(6px);

  background:
    rgba(255,255,255,0.03);
}

.srr-pos {

  text-shadow:
    0 0 12px currentColor;
}
/* ============================================================
   CONTENT WRITING HERO POLISH
============================================================ */

.content-pipeline {
  position: relative;
  overflow: hidden;

  border:
    1px solid rgba(0,255,136,0.12);

  background:
    linear-gradient(
      180deg,
      rgba(0,255,136,0.03),
      rgba(255,255,255,0.02)
    );

  box-shadow:
    inset 0 0 24px rgba(0,255,136,0.04);
}

.content-pipeline::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top right,
      rgba(0,212,255,0.08),
      transparent 40%
    );

  pointer-events: none;
}

.cp-row {
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.cp-row:hover {

  transform:
    translateX(6px);

  background:
    rgba(255,255,255,0.03);
}

.cpr-badge {

  box-shadow:
    0 0 14px rgba(0,255,136,0.16);
}
.footer-links a {

  color: rgba(255,255,255,0.72);

  transition:
    color 0.3s ease,
    transform 0.3s ease;

  text-decoration: none;

  display: inline-block;
}

.footer-links a:hover {

  color: #00ff88;

  transform:
    translateX(6px);

  text-shadow:
    0 0 12px rgba(0,255,136,0.4);
}
@media (max-width: 768px) {
  .hero {
    padding: 80px 20px 40px !important;
    min-height: auto !important;
    text-align: center;
  }

  .hero h1 {
    font-size: 34px !important;
    line-height: 1.15 !important;
    letter-spacing: -0.5px;
    margin-bottom: 16px !important;
  }

  .hero p {
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin-bottom: 22px !important;
  }

  .hero-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  .cube,
  .cube-animation,
  .hero-cube,
  .cube-container {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: scale(0.65) !important;
    margin: 25px auto 0 !important;
    position: relative !important;
  }
}
/* MOBILE HERO PREMIUM FIX */
@media (max-width: 991px) {
  .hero {
    min-height: auto !important;
    padding-top: 90px !important;
  }

  .hero-inner {
    flex-direction: column !important;
    text-align: center !important;
    gap: 18px !important;
    padding: 30px 0 40px !important;
  }

  .hero-content {
    padding: 0 !important;
    max-width: 100% !important;
  }

  .hero-heading {
    font-size: 34px !important;
    line-height: 1.15 !important;
    margin-bottom: 18px !important;
  }

  .hero-subheading {
    font-size: 16px !important;
    line-height: 1.65 !important;
    margin-bottom: 24px !important;
  }

  .hero-visual {
    display: flex !important;
    width: 260px !important;
    height: 260px !important;
    margin: 0 auto 15px !important;
    transform: scale(0.78) !important;
  }

  .cube-wrapper {
    width: 260px !important;
    height: 260px !important;
  }

  .service-cube {
    width: 150px !important;
    height: 150px !important;
  }

  .service-cube .cube-face {
    width: 150px !important;
    height: 150px !important;
  }

  .service-cube .cube-front { transform: translateZ(75px) !important; }
  .service-cube .cube-back { transform: rotateY(180deg) translateZ(75px) !important; }
  .service-cube .cube-right { transform: rotateY(90deg) translateZ(75px) !important; }
  .service-cube .cube-left { transform: rotateY(-90deg) translateZ(75px) !important; }
  .service-cube .cube-top { transform: rotateX(90deg) translateZ(75px) !important; }
  .service-cube .cube-bottom { transform: rotateX(-90deg) translateZ(75px) !important; }

  .hero-cta-group {
    width: 100% !important;
  }

  .hero-cta-group .btn {
    width: 100% !important;
  }
}