/* ================================================================
   EQTECH JORDAN — CINEMATIC DESIGN SYSTEM v2.0
   Theme: Deep Space × Blade Runner × Precision Tech
================================================================ */

/* === ROOT VARIABLES === */
:root {
  --black:       #000000;
  --deep:        #03030a;
  --dark:        #08080f;
  --surface:     #0d0d18;
  --surface-2:   #12121f;
  --border:      rgba(255, 255, 255, 0.07);
  --border-hover:rgba(255, 255, 255, 0.18);
  --border-cyan: rgba(0, 195, 255, 0.25);

  --cyan:        #00c3ff;
  --cyan-dim:    #008fbb;
  --blue:        #0044ff;
  --electric:    #3a7bff;
  --gold:        #ffd060;
  --amber:       #ff9500;
  --green:       #00ff88;
  --purple:      #7c55ff;
  --pink:        #ff2277;

  --text-primary:   #ffffff;
  --text-secondary: #c8c8d8;
  --text-muted:     #787890;
  --text-dim:       #3a3a50;

  --grad-white:  linear-gradient(135deg, #ffffff 0%, #b8b8c8 50%, #ffffff 100%);
  --grad-cyan:   linear-gradient(135deg, #00c3ff, #0044ff);
  --grad-gold:   linear-gradient(135deg, #ffd060, #ff9500);
  --grad-glow:   radial-gradient(circle, rgba(0,195,255,0.08) 0%, transparent 70%);

  --space-xs: 10px;
  --space-sm: 20px;
  --space-md: 40px;
  --space-lg: 80px;
  --space-xl: 120px;

  --radius-sm:  8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);

  --t-fast:   color 0.15s var(--ease), background-color 0.15s var(--ease), border-color 0.15s var(--ease), opacity 0.15s var(--ease), transform 0.15s var(--ease), box-shadow 0.15s var(--ease);
  --t-base:   color 0.2s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease), opacity 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.22s var(--ease);
  --t-slow:   transform 0.3s var(--ease), border-color 0.25s var(--ease), box-shadow 0.3s var(--ease), opacity 0.25s var(--ease);
  --t-bounce: transform 0.26s var(--ease-bounce), box-shadow 0.26s var(--ease-bounce), background-color 0.22s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease);
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

/* === BODY === */
body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--text-secondary);
  overflow-x: hidden;
  line-height: 1.7;
}

/* Film-grain texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  opacity: 0.4;
}

/* === SCROLLBAR === */
::-webkit-scrollbar          { width: 5px; }
::-webkit-scrollbar-track    { background: var(--deep); }
::-webkit-scrollbar-thumb    { background: linear-gradient(180deg, var(--cyan), var(--blue)); border-radius: 3px; }
*                            { scrollbar-color: var(--cyan) var(--deep); scrollbar-width: thin; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 5.5vw, 4.2rem);
  font-weight: 800;
  background: var(--grad-white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  background: var(--grad-white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

p { font-family: 'Inter', sans-serif; font-size: 0.97rem; line-height: 1.75; }

/* Section label pill */
.label-pill {
  display: inline-block;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid var(--border-cyan);
  background: rgba(0, 195, 255, 0.05);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

/* Accent divider line */
.divider {
  width: 48px;
  height: 2px;
  background: var(--grad-cyan);
  border-radius: 1px;
  margin: 0 auto 30px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ================================================================
   HEADER / NAVIGATION
================================================================ */
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 68px;
  z-index: 100;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
  transition: var(--t-base);
  transform: translateZ(0);
}

.main-header.scrolled {
  background: rgba(3, 3, 10, 0.96);
  border-bottom-color: var(--border-cyan);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.main-header .container {
  max-width: 1240px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 32px;
  height: 100%;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 38px;
  width: auto;
  transition: var(--t-base);
}

.logo img:hover {
  filter: drop-shadow(0 0 10px rgba(0, 195, 255, 0.6));
}

/* Desktop nav */
.nav > ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  transition: var(--t-base);
  display: inline-flex;
  align-items: center;
}

.nav a:hover { color: var(--text-primary); }

.nav a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--grad-cyan);
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav a:hover::after { transform: scaleX(1); }

/* Dropdown */
.nav li { position: relative; }
.has-dropdown > a { gap: 5px; }
.nav-chevron { font-size: .65rem; transition: transform .3s var(--ease); }
.has-dropdown:hover .nav-chevron { transform: rotate(180deg); }

/* Invisible hover bridge fills the gap between the button and dropdown */
.has-dropdown::after {
  content: '';
  position: absolute;
  left: -20px;
  right: -20px;
  bottom: -34px;
  height: 34px;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 34px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 230px;
  background: rgba(6, 6, 14, 0.97);
  backdrop-filter: blur(28px);
  border: 1px solid var(--border);
  border-top: 2px solid var(--cyan);
  border-radius: var(--radius-md);
  padding: 8px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  z-index: 200;
  box-shadow: 0 24px 60px rgba(0,0,0,.8), 0 0 0 1px var(--border);
}

.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: .82rem;
  white-space: nowrap;
  transition: var(--t-base);
}

.nav-dropdown li a::after,
.nav-dropdown li a:hover::after { display: none !important; width: 0 !important; }

/* Soon badge on nav items */
.nav-soon-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.48rem;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,195,255,0.09);
  border: 1px solid rgba(0,195,255,0.22);
  border-radius: 4px;
  padding: 2px 5px;
  margin-left: 5px;
  vertical-align: middle;
  line-height: 1.4;
}
.nav-dropdown li a:hover { color: var(--text-primary); background: rgba(0,195,255,.07); transform: translateX(4px); }
.nav-dropdown li a i { color: var(--cyan); font-size: .9rem; width: 16px; flex-shrink: 0; }

/* Mobile sub-links */
.mobile-sub {
  padding-left: 28px !important;
  font-size: .82rem !important;
  border-left: 1px solid var(--border-cyan) !important;
  margin-left: 14px !important;
  color: var(--text-muted) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 20;
}

.hamburger div {
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: transform 0.22s var(--ease), opacity 0.18s var(--ease);
}

.hamburger.active div:nth-child(1) { transform: rotate(45deg) translateY(9px); }
.hamburger.active div:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active div:nth-child(3) { transform: rotate(-45deg) translateY(-9px); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 68px;
  right: 18px;
  width: 230px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(8, 8, 15, 0.97);
  backdrop-filter: blur(28px);
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px var(--border-cyan);
  opacity: 0;
  transform: translateY(-12px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.22s var(--ease-bounce);
  z-index: 99;
}

.mobile-nav.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.mobile-nav a {
  color: var(--text-muted);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
  transition: var(--t-base);
  border: 1px solid transparent;
}

.mobile-nav a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border);
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .nav       { display: none; }
  .hamburger { display: flex; }
}

/* ================================================================
   HERO / BANNER
================================================================ */
#banner {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

/* Horizontal scan-line grid */
#banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,255,255,0.006) 3px,
    rgba(255,255,255,0.006) 4px
  );
  pointer-events: none;
  z-index: 1;
}

/* Radial center glow */
#banner::after {
  content: '';
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(0, 100, 200, 0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

#particles-js {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  padding: 20px 24px;
  animation: heroIn 1.2s var(--ease-out) both;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(35px); }
  to   { opacity: 1; transform: translateY(0); }
}

.banner-content h1 {
  font-size: clamp(2rem, 6.5vw, 4.6rem);
  font-weight: 900;
  letter-spacing: 3px;
  margin-bottom: 24px;
  text-shadow: 0 0 80px rgba(255,255,255,0.08);
}

#dynamic-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 2.2vw, 1.3rem);
  color: var(--text-muted);
  min-height: 2.2em;
  margin-bottom: 42px;
  transition: opacity 0.5s ease, transform 0.5s ease;
  letter-spacing: 0.4px;
  line-height: 1.65;
}

/* Scroll indicator */
.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0.45;
  animation: scrollCue 2.5s ease-in-out infinite;
}

.scroll-cue span {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.scroll-cue::after {
  content: '';
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
}

@keyframes scrollCue {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.45; }
  50%       { transform: translateX(-50%) translateY(10px); opacity: 0.2; }
}

/* ================================================================
   BUTTONS
================================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #000;
  background: #fff;
  border-radius: var(--radius-sm);
  text-decoration: none;
  overflow: hidden;
  transition: var(--t-bounce);
  border: none;
  cursor: pointer;
  will-change: transform;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 24px rgba(255,255,255,0.55), 0 0 60px rgba(255,255,255,0.2);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,0.5) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.65s ease;
}

.btn:hover::before { transform: translateX(120%); }

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.25);
}

.btn-outline:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 0 18px rgba(255,255,255,0.12);
}

/* ================================================================
   ABOUT SECTION
================================================================ */
#about {
  background: var(--deep);
  padding: var(--space-xl) var(--space-sm);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 60, 140, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.about-inner {
  max-width: 820px;
  margin: auto;
  position: relative;
  z-index: 2;
}

#about h2 { margin-bottom: 20px; }

#about p {
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

/* Feature chips */
.about-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  transition: var(--t-base);
}

.chip:hover {
  border-color: var(--border-cyan);
  color: var(--text-primary);
  background: rgba(0,195,255,0.05);
}

.chip i { color: var(--cyan); font-size: 0.85rem; }

/* ================================================================
   SERVICES SECTION
================================================================ */
#services {
  background: var(--black);
  padding: var(--space-xl) var(--space-sm);
  text-align: center;
  position: relative;
}

.services-header { margin-bottom: 50px; }

/* Filter buttons */
.service-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: transparent;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: var(--t-base);
}

.filter-btn:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.filter-btn.active {
  background: #fff;
  color: #000;
  border-color: #fff;
  box-shadow: 0 0 18px rgba(255,255,255,0.15);
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: 22px;
  max-width: 1200px;
  margin: auto;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: left;
  transition: var(--t-slow);
  opacity: 1;
  transform: scale(1) translateY(0);
  position: relative;
  overflow: hidden;
  will-change: transform;
}

/* Top accent line */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.service-card:hover::before { transform: scaleX(1); }

/* Corner glow */
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle at top left, rgba(0,195,255,0.07), transparent 65%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.service-card:hover::after { opacity: 1; }

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-cyan);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0,195,255,0.08);
}

/* Icons */
.service-card > i {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
  transition: var(--t-base);
}

.service-card:hover > i { transform: scale(1.1) translateY(-2px); }

.service-card:nth-child(1) i { color: #00c3ff; }
.service-card:nth-child(2) i { color: #ffb703; }
.service-card:nth-child(3) i { color: #0dcaf0; }
.service-card:nth-child(4) i { color: #66ff99; }
.service-card:nth-child(5) i { color: #8ecae6; }
.service-card:nth-child(6) i { color: #f72585; }
.service-card:nth-child(7) i { color: #ff8fab; }

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.06);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--t-base);
}

.service-btn:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
  box-shadow: 0 0 22px rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
  .service-card { text-align: center; }
  .service-btn  { justify-content: center; width: 100%; }
}

/* ================================================================
   STATS / COUNTERS
================================================================ */
#stats {
  background: var(--deep);
  padding: var(--space-lg) var(--space-sm);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: '';
  position: absolute;
  bottom: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0, 60, 120, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

#stats h2 { margin-bottom: 55px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--t-slow);
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-cyan);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}

.stat-card:hover::after  { transform: scaleX(1); }

.stat-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-cyan);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.stat-card i {
  font-size: 1.7rem;
  margin-bottom: 14px;
  color: var(--text-dim);
  display: block;
  transition: var(--t-base);
}

.stat-card:hover i { color: var(--cyan); }

.stat-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  background: var(--grad-white);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card p {
  color: var(--text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   TECH STACK
================================================================ */
.tech-section {
  background: var(--black);
  padding: var(--space-xl) var(--space-sm);
  text-align: center;
}

.tech-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 12px;
  background: var(--grad-white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tech-subtitle {
  color: var(--text-muted);
  margin-bottom: 65px;
  font-size: 0.92rem;
}

.tech-category { margin-bottom: 55px; }

.tech-category h3 {
  font-size: 0.65rem;
  color: var(--text-dim);
  margin-bottom: 20px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(105px, 1fr));
  gap: 14px;
  max-width: 780px;
  margin: auto;
}

.tech-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--t-slow);
  aspect-ratio: 1;
  will-change: transform;
}

.tech-card:hover {
  transform: translateY(-6px) scale(1.04);
  border-color: var(--border-hover);
  box-shadow: 0 14px 35px rgba(0,0,0,0.5);
}

.tech-card img {
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
  transition: var(--t-base), filter 0.25s var(--ease);
  filter: brightness(0.85) saturate(0.7);
}

.tech-card:hover img {
  transform: scale(1.15);
  filter: brightness(1) saturate(1);
}

@media (max-width: 768px) {
  .tech-card img { max-width: 42px; max-height: 42px; }
  .tech-grid     { gap: 10px; }
}

/* ================================================================
   CONTACT SECTION
================================================================ */
#contact {
  background: var(--deep);
  padding: var(--space-xl) var(--space-sm);
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0, 50, 100, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contact-wrapper {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 42px;
  border-radius: var(--radius-xl);
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
}

.contact-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 28px;
  text-align: center;
  background: var(--grad-white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-title-left {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 22px;
  background: var(--grad-white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-form form { display: flex; flex-direction: column; gap: 14px; }

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  outline: none;
  transition: var(--t-base);
  -webkit-appearance: none;
  appearance: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--border-cyan);
  background: rgba(0, 195, 255, 0.03);
  box-shadow: 0 0 0 3px rgba(0, 195, 255, 0.08);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-dim); }

.contact-form textarea { min-height: 115px; resize: vertical; }

.custom-select { position: relative; }

.custom-select select { cursor: pointer; }

.custom-select .arrow {
  position: absolute;
  top: 50%; right: 16px;
  width: 7px; height: 7px;
  border-right: 1.5px solid var(--text-muted);
  border-bottom: 1.5px solid var(--text-muted);
  transform: translateY(-68%) rotate(45deg);
  pointer-events: none;
}

.contact-form button {
  width: 100%;
  padding: 13px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  background: #fff;
  color: #000;
  cursor: pointer;
  transition: var(--t-bounce);
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255,255,255,0.45);
}

/* Contact info panel */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 10px 0;
  min-width: 300px;
  flex: 1;
  text-align: left;
}

.contact-info p {
  font-size: 1rem;
  color: var(--text-secondary);
}

.contact-info strong { color: var(--text-primary); }

/* Info card */
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--t-base);
}

.info-card:hover {
  border-color: var(--border-cyan);
}

.info-card i {
  color: var(--cyan);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.info-card .info-text strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-family: 'Orbitron', sans-serif;
}

.info-card .info-text span {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

@media (max-width: 920px) {
  .contact-wrapper { grid-template-columns: 1fr; }
}

/* ================================================================
   FOOTER
================================================================ */
footer {
  position: relative;
  overflow: hidden;
  padding: 72px var(--space-sm) 32px;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.88), rgba(0,0,0,1)),
    url('https://res.cloudinary.com/dcbxuax2c/image/upload/v1768953410/8524562990_7356f7804e_b_oyahhw.jpg')
    center 40% / cover no-repeat;
  z-index: 0;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr 1.1fr 1.3fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 14px;
  background: var(--grad-white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  color: #666;
  font-size: 0.88rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: #666;
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--t-base);
}

.footer-col a:hover { color: #fff; transform: translateX(5px); }

.footer-col p {
  color: #666;
  font-size: 0.88rem;
  margin-bottom: 10px;
}

.footer-col strong { color: var(--text-secondary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom p {
  color: var(--text-dim);
  font-size: 0.82rem;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--t-base);
}

.social-links a:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 580px) {
  .footer-grid   { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ================================================================
   SERVICE DETAIL PAGES (shared)
================================================================ */
.web-section {
  padding: var(--space-xl) var(--space-sm);
  padding-top: calc(var(--space-xl) + 68px);
  text-align: center;
}

.web-intro {
  max-width: 640px;
  margin: auto;
  margin-bottom: var(--space-lg);
}

.web-intro h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 14px;
}

.subtitle {
  color: var(--text-muted);
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.web-intro > p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
}

/* Feature items */
.features {
  display: grid;
  gap: 10px;
  margin-top: var(--space-md);
  text-align: left;
}

.feature-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 18px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--t-base);
}

.feature-item:hover {
  border-color: var(--border-cyan);
  color: var(--text-primary);
}

.feature-item i { color: var(--cyan); font-size: 1rem; }

/* Plans grid */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  align-items: stretch;
  max-width: 1100px;
  margin: auto;
}

.plan-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  min-height: 400px;
  transition: var(--t-slow);
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.plan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--border);
  transition: var(--t-base);
}

.plan-card:hover::before { background: var(--grad-cyan); }

.plan-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-cyan);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.plan-card.highlight {
  border-color: rgba(255,255,255,0.2);
}

.plan-card.highlight::before { background: var(--grad-white); }

.plan-card h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.plan-sub {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: var(--space-md);
}

.plan-card ul {
  list-style: none;
  margin-bottom: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.plan-card li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.plan-card li:last-child { border-bottom: none; }
.plan-card li i { color: var(--green); }

.choose-btn {
  margin-top: auto;
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--t-bounce);
}

.choose-btn:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 22px rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
  .plan-card { min-height: auto; }
  .web-section { padding-top: calc(60px + 68px); }
}

/* ================================================================
   ANIMATIONS & KEYFRAMES
================================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255,255,255,0.3); }
  50%       { box-shadow: 0 0 35px rgba(255,255,255,0.55); }
}

/* Stagger for cards */
.service-card:nth-child(1) { animation-delay: 0.05s; }
.service-card:nth-child(2) { animation-delay: 0.10s; }
.service-card:nth-child(3) { animation-delay: 0.15s; }
.service-card:nth-child(4) { animation-delay: 0.20s; }
.service-card:nth-child(5) { animation-delay: 0.25s; }
.service-card:nth-child(6) { animation-delay: 0.30s; }
.service-card:nth-child(7) { animation-delay: 0.35s; }

/* ================================================================
   CINEMATIC TECH SECTION
================================================================ */

/* --- Section base --- */
#cinematic-section {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) 0;
}

/* --- Ambient canvas --- */
#cm-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* --- Grid overlay --- */
.cm-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,195,255,0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,195,255,0.032) 1px, transparent 1px);
  background-size: 64px 64px;
  z-index: 1;
  pointer-events: none;
  animation: cm-grid-pulse 10s ease-in-out infinite;
}

@keyframes cm-grid-pulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1;   }
}

/* --- Ambient glow orbs --- */
.cm-bg-glow-1,
.cm-bg-glow-2 {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.cm-bg-glow-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,195,255,0.09) 0%, transparent 68%);
  top: -200px; left: -200px;
  animation: cm-drift-1 14s ease-in-out infinite;
  will-change: transform;
}

.cm-bg-glow-2 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(0,255,136,0.07) 0%, transparent 68%);
  bottom: -160px; right: -160px;
  animation: cm-drift-2 18s ease-in-out infinite;
  will-change: transform;
}

@keyframes cm-drift-1 {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(80px, 60px); }
  66%       { transform: translate(-40px, 100px); }
}

@keyframes cm-drift-2 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-100px, -80px); }
}

/* --- Horizontal scanline sweep --- */
.cm-scanline {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,195,255,0.45), transparent);
  z-index: 2;
  pointer-events: none;
  will-change: transform;
  animation: cm-scan 10s linear infinite;
}

@keyframes cm-scan {
  0%   { transform: translateY(0);     opacity: 0; }
  4%   { opacity: 1; }
  96%  { opacity: 1; }
  100% { transform: translateY(100vh); opacity: 0; }
}

/* --- Container --- */
.cm-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

/* ================================================================
   TERMINAL
================================================================ */
.cm-terminal {
  width: 100%;
  max-width: 820px;
  background: rgba(4, 9, 20, 0.9);
  border: 1px solid rgba(0,195,255,0.28);
  border-radius: 14px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 0 0 1px rgba(0,195,255,0.07),
    0 0 60px rgba(0,195,255,0.08),
    0 24px 64px rgba(0,0,0,0.65);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.cm-terminal.visible  { opacity: 1; transform: translateY(0); }
.cm-terminal.fade-out {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

/* titlebar */
.cm-tbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: rgba(0,195,255,0.04);
  border-bottom: 1px solid rgba(0,195,255,0.12);
}

.cm-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.cm-dot-r { background: #ff5f57; }
.cm-dot-y { background: #febc2e; }
.cm-dot-g { background: #28c840; }

.cm-tbar-title {
  margin-left: 8px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(0,195,255,0.45);
}

/* body */
.cm-tbody {
  padding: 22px 26px 28px;
  min-height: 200px;
}

.cm-tline {
  margin-bottom: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  transition: opacity 0.3s ease;
}

.cm-prompt { color: var(--cyan); font-weight: 700; }
.cm-cmd    { color: rgba(255,255,255,0.7); }

.cm-code {
  margin: 2px 0 14px 22px;
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  line-height: 1.75;
  white-space: pre;
  overflow-x: auto;
  min-height: 1em;
}

.cm-color-cyan  { color: var(--cyan);  text-shadow: 0 0 14px rgba(0,195,255,0.5); }
.cm-color-green { color: var(--green); text-shadow: 0 0 14px rgba(0,255,136,0.45); }

/* SYSTEM ONLINE */
.cm-sysline {
  margin-top: 12px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 4px;
  color: var(--green);
  text-shadow: 0 0 24px rgba(0,255,136,0.9), 0 0 50px rgba(0,255,136,0.4);
  animation: cm-sys-pop 0.3s var(--ease-out) forwards;
}

@keyframes cm-sys-pop {
  from { opacity: 0; transform: scaleX(0.96); }
  to   { opacity: 1; transform: scaleX(1); }
}

.cm-check { font-size: 1.2rem; color: var(--green); }

/* Blinking block cursor */
.cm-cursor {
  display: inline-block;
  width: 9px;
  height: 17px;
  background: var(--cyan);
  margin-left: 3px;
  vertical-align: text-bottom;
  animation: cm-blink 0.75s step-end infinite;
  box-shadow: 0 0 10px rgba(0,195,255,0.9);
}

@keyframes cm-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ================================================================
   FEATURE CARDS
================================================================ */
.cm-features {
  width: 100%;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}

.cm-features.visible { opacity: 1; }

.cm-feat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 14px 22px;
  background: rgba(0,195,255,0.04);
  border: 1px solid rgba(0,195,255,0.13);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  opacity: 0;
  transform: translateY(32px) scale(0.94);
  transition:
    opacity 0.5s var(--ease-out),
    transform 0.5s var(--ease-out),
    border-color 0.3s,
    box-shadow 0.3s;
}

.cm-feat-card.visible { opacity: 1; transform: translateY(0) scale(1); }

.cm-feat-card:hover {
  border-color: rgba(0,195,255,0.4);
  box-shadow: 0 0 28px rgba(0,195,255,0.14);
  transform: translateY(-6px) scale(1.03);
}

/* ambient floating animation */
.cm-feat-card.cm-float {
  animation: cm-float-anim var(--cm-fdur, 5s) ease-in-out var(--cm-fdelay, 0s) infinite;
  will-change: transform;
}

@keyframes cm-float-anim {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.cm-feat-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(0,195,255,0.07);
  border: 1px solid rgba(0,195,255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  color: var(--cyan);
  transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
}

.cm-feat-card:hover .cm-feat-icon {
  box-shadow: 0 0 24px rgba(0,195,255,0.5);
  transform: rotate(8deg) scale(1.12);
  background: rgba(0,195,255,0.12);
}

/* ambient icon glow pulse */
.cm-feat-icon.cm-icon-pulse {
  animation: cm-icon-glow 4s ease-in-out infinite;
}

@keyframes cm-icon-glow {
  0%, 100% { box-shadow: 0 0 6px rgba(0,195,255,0.18); }
  50%       { box-shadow: 0 0 28px rgba(0,195,255,0.65); }
}

.cm-feat-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.57rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* ================================================================
   FINALE
================================================================ */
.cm-finale {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.cm-finale.visible { opacity: 1; transform: translateY(0); }

.cm-hl-label {
  display: inline-block;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid var(--border-cyan);
  background: rgba(0,195,255,0.05);
  padding: 5px 16px;
  border-radius: 100px;
}

/* Override global h2 gradient for this specific headline */
.cm-headline {
  font-family: 'Orbitron', sans-serif !important;
  font-size: clamp(1.5rem, 3.5vw, 2.8rem) !important;
  font-weight: 800 !important;
  line-height: 1.18 !important;
  letter-spacing: 1px !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
  text-shadow: 0 0 40px rgba(255,255,255,0.08) !important;
}

.cm-hl-accent {
  background: linear-gradient(135deg, var(--cyan), var(--blue)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* CTA button */
.cm-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 38px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #000;
  background: linear-gradient(135deg, var(--cyan), #0055cc);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-bounce), box-shadow 0.35s;
}

.cm-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,0.45) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.65s ease;
}

.cm-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 32px rgba(0,195,255,0.65), 0 0 70px rgba(0,195,255,0.2);
}

.cm-cta:hover::before { transform: translateX(120%); }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 900px) {
  .cm-features { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 580px) {
  .cm-features  { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cm-tbody     { padding: 14px 16px 18px; }
  .cm-code      { font-size: 0.72rem; margin-left: 10px; }
  .cm-tline     { font-size: 0.78rem; }
  .cm-tbar-title { display: none; }
  .cm-feat-card { padding: 20px 10px 16px; }
  .cm-feat-icon { width: 44px; height: 44px; font-size: 1.25rem; }
  .cm-feat-name { font-size: 0.52rem; }
}

/* ================================================================
   PERFORMANCE — GPU LAYER CONTAINMENT
================================================================ */
#cinematic-section { contain: layout style paint; }

/* ================================================================
   ACCESSIBILITY — REDUCED MOTION
================================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .cm-bg-glow-1, .cm-bg-glow-2, .cm-scanline,
  .cm-feat-card.cm-float, .cm-feat-icon.cm-icon-pulse,
  .cm-bg-grid, .scroll-cue {
    animation: none !important;
  }
}
