/* ============================================================
   INOVETICS MODERN CORE DESIGN SYSTEM (assets/main.css)
   ============================================================ */

:root {
  --black: #050505;
  --ink: #0b0b0d;
  --card: rgba(15, 15, 18, 0.7);
  --yellow: #f3e600;
  --yellow-dim: #c9be00;
  --cream: #f6f3ea;
  --violet: #8a5cff;
  --violet-dim: #6b40d6;
  --cyan: #00f0ff;
  --line: rgba(255, 255, 255, 0.08);
  --muted: #a3a3a8;
  --glass-border: rgba(255, 255, 255, 0.07);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  background-image: 
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 60px 60px;
  color: var(--cream);
  font-family: 'Space Grotesk', sans-serif;
  cursor: default;
  position: relative;
}

::selection {
  background: var(--yellow);
  color: var(--black);
}

h1, h2, h3, .display {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--violet);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--yellow);
}

/* ---------- Background Glowing Orbs ---------- */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  opacity: 0.3;
  z-index: -1;
}
.orb-left {
  width: 600px;
  height: 600px;
  background: var(--violet);
  top: -150px;
  left: -200px;
  animation: pulseOrb 12s infinite alternate;
}
.orb-right {
  width: 500px;
  height: 500px;
  background: var(--yellow);
  top: 40%;
  right: -200px;
  animation: pulseOrb 10s infinite alternate-reverse;
}
.orb-center {
  width: 400px;
  height: 400px;
  background: var(--cyan);
  bottom: 10%;
  left: 25%;
  animation: pulseOrb 15s infinite alternate;
}

@keyframes pulseOrb {
  0% { transform: scale(1) translate(0, 0); opacity: 0.25; }
  100% { transform: scale(1.2) translate(50px, 30px); opacity: 0.4; }
}

/* ---------- Custom Interactive Cursor ---------- */
html, body {
  cursor: none;
}
a, button, select, input, textarea, [role="button"], .service-card, .work-row, .faq-item {
  cursor: none;
}
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--yellow);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, opacity 0.25s, border-color 0.25s;
}
.cursor-ring.grow {
  width: 65px;
  height: 65px;
  background: rgba(243, 230, 0, 0.08);
  border-color: var(--yellow);
}
@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader .pl-logo {
  height: 256px;
  width: auto;
  opacity: 0;
  animation: plfade 0.8s ease forwards 0.1s;
}
.preloader .pl-bar {
  width: 240px;
  height: 3px;
  background: var(--line);
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.preloader .pl-bar i {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--yellow);
  animation: plload 1.2s cubic-bezier(0.65, 0.05, 0.36, 1) forwards 0.2s;
}
@keyframes plfade {
  to { opacity: 1; transform: scale(1.02); }
}
@keyframes plload {
  to { width: 100%; }
}
.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Page Transition Wipe */
.wipe {
  position: fixed;
  inset: 0;
  background: var(--yellow);
  z-index: 10001;
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
  transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1);
}
.wipe.active {
  transform: scaleY(1);
}

/* ---------- Navigation Bar ---------- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 5%;
  transition: background 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(12px);
  padding: 10px 5%;
  border-color: var(--line);
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
nav .logo-wrap img {
  height: 180px;
  width: auto;
  display: block;
  transition: height 0.4s, transform 0.4s, opacity 0.3s;
  transform: translateY(12px);
}
nav .logo-wrap a {
  display: flex;
  align-items: center;
}
nav .logo-wrap a:hover img {
  opacity: 0.92;
}
nav.scrolled .logo-wrap img {
  height: 110px;
  width: auto;
  transform: translateY(0);
}
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
  align-items: center;
  transition: color 0.3s;
}
nav.scrolled .nav-links {
  /* centered */
}
.nav-links a.ai-badge-nav::after {
  display: none !important;
}
.nav-links a {
  position: relative;
  padding-bottom: 4px;
  color: var(--muted);
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--cream);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--yellow);
  transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}
.nav-links a.active {
  color: var(--yellow);
}
.nav-cta {
  border: 1.5px solid var(--yellow);
  color: var(--yellow);
  padding: 9px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
}
nav.scrolled .nav-cta {
  /* centered */
}
.nav-cta:hover {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 0 15px rgba(243, 230, 0, 0.4);
}

/* AI Badge in Navbar */
.ai-badge-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(138, 92, 255, 0.06);
  border: 1px solid rgba(138, 92, 255, 0.25);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(138, 92, 255, 0.1);
  margin-left: 15px;
}
.ai-badge-nav:hover, .ai-badge-nav.active {
  background: rgba(138, 92, 255, 0.15);
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.35);
  color: var(--cyan);
}
.ai-badge-nav .ai-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  position: relative;
  display: inline-block;
  box-shadow: 0 0 8px var(--cyan);
}
.ai-badge-nav .ai-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--cyan);
  animation: aiPulse 1.8s infinite;
}

@keyframes aiPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}
.burger {
  display: none;
  flex-direction: column;
  transition: transform 0.4s;
  gap: 5px;
  cursor: pointer;
  z-index: 200;
}
nav.scrolled .burger {
  /* centered */
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  display: block;
  transition: all 0.3s ease-in-out;
}
/* Burger to 'X' animation */
.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(.76, 0, .24, 1);
}
.mobile-menu.open {
  transform: translateY(0);
}
.mobile-menu a {
  font-family: 'Bricolage Grotesque';
  font-size: 28px;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.3s, transform 0.3s;
  display: block;
}
.mobile-menu a:hover, .mobile-menu a.active {
  color: var(--yellow);
  transform: scale(1.05);
}
.mobile-menu .ai-badge-nav {
  margin-left: 0;
  margin-top: 10px;
  font-size: 15px;
}

/* ---------- Hero Sections ---------- */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 260px 5% 60px;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--yellow);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-weight: 600;
}
.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(1.4); }
}

.hero h1 {
  font-size: clamp(40px, 8vw, 110px);
  line-height: 0.98;
  max-width: 1200px;
}
.hero h1 .line {
  display: block;
  overflow: hidden;
}
.hero h1 .reveal {
  display: inline-block;
  will-change: transform;
}
.hero h1 .accent {
  color: var(--black);
  background: var(--yellow);
  padding: 0 14px;
  border-radius: 8px;
  display: inline-block;
  transform: rotate(-1.5deg);
}
.hero h1 .accent-outline {
  color: var(--yellow);
  -webkit-text-stroke: 1.5px var(--yellow);
}
.hero-sub {
  margin-top: 30px;
  max-width: 580px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 42px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 30px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.35s cubic-bezier(.2, .9, .3, 1), box-shadow 0.35s;
  box-shadow: 0 0 0 0 rgba(243, 230, 0, 0.4);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -8px rgba(243, 230, 0, 0.6);
}
.btn-primary svg {
  transition: transform 0.35s;
}
.btn-primary:hover svg {
  transform: translateX(5px) rotate(45deg);
}
.btn-ghost {
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  border-bottom: 1.5px solid var(--line);
  padding-bottom: 4px;
  transition: 0.3s;
}
.btn-ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.hero-stats {
  display: flex;
  gap: 50px;
  margin-top: 80px;
  flex-wrap: wrap;
}
.stat .num {
  font-family: 'Bricolage Grotesque';
  font-size: 38px;
  font-weight: 700;
  color: var(--yellow);
}
.stat .label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: .04em;
}

/* ---------- Infinite Marquee ---------- */
.marquee-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  overflow: hidden;
  padding: 22px 0;
}
.marquee {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: scroll 30s linear infinite;
}
.marquee span {
  font-family: 'Bricolage Grotesque';
  font-size: 26px;
  font-weight: 700;
  margin-right: 50px;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 18px;
  text-transform: uppercase;
}
.marquee span.hot {
  color: var(--yellow);
}
.marquee span::after {
  content: '✦';
  color: var(--violet);
  font-size: 18px;
  margin-left: 50px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Logo Strip ---------- */
.logos-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 36px;
  padding: 50px 5%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.4);
}
.logos-strip span {
  font-family: 'Bricolage Grotesque';
  font-size: 18px;
  font-weight: 700;
  color: #4a4a4f;
  letter-spacing: .02em;
  transition: 0.3s;
}
.logos-strip span:hover {
  color: var(--cream);
}

section {
  padding: 130px 5%;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--line);
}
section:nth-of-type(even) {
  background-color: rgba(11, 11, 13, 0.45);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.eyebrow {
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--violet);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.section-head h2 {
  font-size: clamp(32px, 4.8vw, 54px);
  max-width: 720px;
  line-height: 1.06;
}
.section-head p {
  max-width: 400px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

/* ---------- Modern Glassmorphic Cards Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 44px 36px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}
.service-card:hover {
  border-color: var(--yellow);
  transform: translateY(-8px);
  box-shadow: 0 15px 35px -10px rgba(243, 230, 0, 0.15);
}
.service-card .idx {
  font-family: 'Bricolage Grotesque';
  font-size: 13px;
  color: #555;
  transition: color 0.4s;
}
.service-card:hover .idx {
  color: var(--yellow);
}
.service-card h3 {
  font-size: 24px;
  margin: 40px 0 12px;
  transition: color 0.4s;
}
.service-card:hover h3 {
  color: var(--yellow);
}
.service-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  transition: color 0.4s;
}
.service-card:hover p {
  color: var(--cream);
}
.service-card .arrow {
  position: absolute;
  top: 36px;
  right: 36px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}
.service-card:hover .arrow {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
  transform: rotate(45deg);
}

/* ---------- Showcase Work Row ---------- */
.work-list {
  display: flex;
  flex-direction: column;
}
.work-row {
  display: grid;
  grid-template-columns: 80px 1fr 220px 140px;
  align-items: center;
  gap: 30px;
  padding: 30px 10px;
  border-top: 1px solid var(--line);
  cursor: pointer;
  position: relative;
  transition: padding 0.4s, background-color 0.4s;
}
.work-row:last-child {
  border-bottom: 1px solid var(--line);
}
.work-row .wnum {
  font-family: 'Bricolage Grotesque';
  color: #555;
  font-size: 14px;
  transition: color 0.3s;
}
.work-row:hover .wnum {
  color: var(--yellow);
}
.work-row h3 {
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 700;
  transition: transform 0.4s, color 0.4s;
}
.work-row .tag {
  color: var(--muted);
  font-size: 14px;
}
.work-row .yr {
  color: #555;
  font-size: 14px;
  text-align: right;
}
.work-row .thumb {
  position: absolute;
  right: 15%;
  top: 50%;
  width: 200px;
  height: 130px;
  border-radius: 12px;
  transform: translateY(-50%) scale(0.85) rotate(4deg);
  opacity: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--glass-border);
  transition: opacity 0.4s, transform 0.4s;
  z-index: 5;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}
.work-row:hover {
  background: rgba(255, 255, 255, 0.02);
}
.work-row:hover h3 {
  transform: translateX(12px);
  color: var(--yellow);
}
.work-row:hover .thumb {
  opacity: 1;
  transform: translateY(-50%) scale(1) rotate(0deg);
}

/* ---------- Interactive Process Section ---------- */
.process-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.process-step {
  display: flex;
  gap: 24px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.7;
}
.process-step.active {
  opacity: 1;
  border-top-color: var(--yellow);
}
.process-step.active .pnum {
  color: var(--yellow);
  text-shadow: 0 0 15px rgba(243, 230, 0, 0.4);
}
.process-step.active p {
  color: var(--cream);
}
.process-step:last-child {
  border-bottom: 1px solid var(--line);
}
.process-step .pnum {
  font-family: 'Bricolage Grotesque';
  font-size: 44px;
  color: var(--violet);
  font-weight: 700;
  min-width: 60px;
  transition: color 0.3s;
}
.process-step h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--cream);
}
.process-step p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 380px;
  transition: color 0.3s;
}
.process-visual {
  position: sticky;
  top: 120px;
  height: 480px;
  border-radius: 24px;
  background: linear-gradient(165deg, var(--card), #08080c 85%);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  position: relative;
}
.visual-grid-bg {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(rgba(243, 230, 0, 0.04) 1px, transparent 1px),
    radial-gradient(rgba(138, 92, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
  opacity: 0.8;
  pointer-events: none;
}
.visual-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  transform: scale(0.94);
  pointer-events: none;
  transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.visual-panel.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}

/* Panel 1: Scanner Radar */
.scanner-radar {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 1px solid rgba(138, 92, 255, 0.18);
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  background: rgba(138, 92, 255, 0.02);
}
.radar-sweep {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: conic-gradient(from 0deg, rgba(138, 92, 255, 0.22) 0deg, transparent 80deg, transparent 360deg);
  transform-origin: top left;
  animation: radarSweep 3.5s linear infinite;
  border-left: 1px solid var(--violet);
}
.radar-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(138, 92, 255, 0.12);
}
.circle-1 { width: 50px; height: 50px; }
.circle-2 { width: 110px; height: 110px; }
.circle-3 { width: 170px; height: 170px; }
.radar-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: pulseDot 1.8s infinite alternate;
}
.dot-1 { top: 25%; left: 35%; animation-delay: 0.2s; }
.dot-2 { top: 58%; left: 72%; animation-delay: 0.7s; }
.dot-3 { top: 78%; left: 30%; animation-delay: 1.3s; }

@keyframes radarSweep {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes pulseDot {
  0% { opacity: 0.15; transform: scale(0.7); }
  100% { opacity: 1; transform: scale(1.3); }
}

/* Panel info */
.panel-info {
  text-align: center;
  z-index: 2;
}
.panel-title {
  font-family: 'Bricolage Grotesque';
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.panel-status {
  font-size: 13px;
  color: var(--violet);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.scan-logs {
  margin-top: 15px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.log-item {
  font-family: monospace;
  font-size: 11px;
  color: var(--muted);
}

/* Panel 2: Build the Plan */
.timeline-roadmap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  width: 210px;
  margin-bottom: 20px;
}
.timeline-line {
  position: absolute;
  left: 14px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--line);
}
.timeline-node {
  display: flex;
  gap: 14px;
  align-items: center;
  opacity: 0;
  transform: translateX(12px);
  transition: all 0.5s ease-out;
}
.visual-panel.active .timeline-node {
  opacity: 1;
  transform: translateX(0);
  transition-delay: var(--delay);
}
.timeline-node::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  border: 2px solid #08080c;
  box-shadow: 0 0 10px var(--yellow);
  z-index: 2;
}
.node-title {
  font-family: 'Bricolage Grotesque';
  font-size: 11px;
  font-weight: 700;
  color: var(--yellow);
  background: rgba(243, 230, 0, 0.1);
  padding: 3px 8px;
  border-radius: 12px;
}
.node-desc {
  font-size: 13px;
  color: var(--cream);
  font-weight: 500;
}

/* Panel 3: Launch & Iterate */
.launch-engine {
  position: relative;
  width: 130px;
  height: 130px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rocket-wrap {
  animation: hoverRocket 1.8s ease-in-out infinite alternate;
  color: var(--yellow);
  position: relative;
  z-index: 2;
}
.rocket-svg {
  filter: drop-shadow(0 0 12px rgba(243, 230, 0, 0.4));
}
.thruster-fire {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 20px;
  background: linear-gradient(to bottom, var(--yellow), transparent);
  border-radius: 50%;
  animation: flickerFire 0.12s infinite;
}
.particle-emitter {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50px;
  pointer-events: none;
}
.particle-emitter span {
  position: absolute;
  bottom: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--violet);
  animation: floatUp 1s infinite;
}
.particle-emitter span:nth-child(1) { left: 15%; animation-delay: 0.1s; width: 5px; height: 5px; }
.particle-emitter span:nth-child(2) { left: 38%; animation-delay: 0.3s; }
.particle-emitter span:nth-child(3) { left: 52%; animation-delay: 0.6s; width: 6px; height: 6px; }
.particle-emitter span:nth-child(4) { left: 72%; animation-delay: 0.2s; }
.particle-emitter span:nth-child(5) { left: 88%; animation-delay: 0.8s; }

@keyframes hoverRocket {
  0% { transform: translateY(-4px); }
  100% { transform: translateY(4px); }
}
@keyframes flickerFire {
  0% { height: 16px; opacity: 0.8; }
  50% { height: 24px; opacity: 1; }
  100% { height: 14px; opacity: 0.9; }
}
@keyframes floatUp {
  0% { transform: translateY(0) scale(1); opacity: 0.7; }
  100% { transform: translateY(-60px) scale(0.1); opacity: 0; }
}

/* Panel 4: Report & Grow */
.growth-chart {
  width: 220px;
  position: relative;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.chart-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}
.chart-line {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  transition: stroke-dashoffset 2s ease-out;
}
.visual-panel.active .chart-line {
  stroke-dashoffset: 0;
}
.chart-area {
  opacity: 0;
  transition: opacity 0.8s ease-out 1s;
}
.visual-panel.active .chart-area {
  opacity: 1;
}
.pulse-circle {
  animation: pulseGlow 1.4s infinite alternate;
}
.stats-counter {
  margin-top: 10px;
  text-align: center;
}
.counter-val {
  font-family: 'Bricolage Grotesque';
  font-size: 30px;
  font-weight: 800;
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(0, 240, 255, 0.4);
}
.counter-lbl {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@keyframes pulseGlow {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 1; }
}

/* ---------- Testimonial ---------- */
.testi {
  background: var(--card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 80px 6%;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}
.testi blockquote {
  font-family: 'Bricolage Grotesque';
  font-size: clamp(22px, 3.4vw, 40px);
  line-height: 1.28;
  font-weight: 600;
  max-width: 900px;
  margin: 0 auto;
}
.testi blockquote span {
  color: var(--yellow);
}
.testi .who {
  margin-top: 32px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

/* ---------- Call To Action ---------- */
.cta-section {
  text-align: center;
  padding: 120px 5%;
}
.cta-section h2 {
  font-size: clamp(36px, 7vw, 90px);
  line-height: 1.02;
  margin-bottom: 20px;
}
.cta-section h2 .accent {
  color: var(--black);
  background: var(--yellow);
  padding: 0 18px;
  border-radius: 12px;
  transform: rotate(-1.5deg);
  display: inline-block;
  box-shadow: 0 10px 25px rgba(243, 230, 0, 0.3);
}
.cta-section p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 36px;
  font-size: 17px;
  line-height: 1.6;
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 80px 5% 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  background: rgba(5, 5, 5, 0.6);
}
footer .logo-wrap img, .footer-logo {
  height: auto !important;
  width: 160px !important;
  max-width: 100%;
  display: block;
  transition: opacity 0.3s;
}
.footer-logo:hover {
  opacity: 0.9;
}
.foot-col h5 {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 20px;
}
.foot-col a {
  display: block;
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 12px;
  transition: 0.3s;
}
.foot-col a:hover {
  color: var(--yellow);
}
.foot-social-link {
  display: flex !important;
  align-items: center;
  gap: 8px;
}
.foot-social-link svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.foot-social-link:hover svg {
  transform: translateY(-2px);
}
.foot-bottom {
  text-align: center;
  padding: 30px 5% 50px;
  color: #444;
  font-size: 13px;
  border-top: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.8);
}

.page-head {
  padding: 260px 5% 80px;
  position: relative;
  z-index: 1;
}
.page-head .breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.page-head .breadcrumb a:hover {
  color: var(--yellow);
}
.page-head h1 {
  font-size: clamp(38px, 7vw, 86px);
  line-height: 1.04;
  max-width: 1000px;
}
.page-head p {
  margin-top: 24px;
  max-width: 580px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

/* ---------- About Page Values ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.value-card {
  background: var(--card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 36px 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.value-card:hover {
  border-color: var(--violet);
  transform: translateY(-5px);
}
.value-card .num {
  font-family: 'Bricolage Grotesque';
  font-size: 28px;
  color: var(--yellow);
  margin-bottom: 16px;
}
.value-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}
.value-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* ---------- About Page Timeline ---------- */
.timeline {
  position: relative;
  padding-left: 40px;
  border-left: 1.5px solid var(--line);
}
.tl-item {
  position: relative;
  padding: 0 0 50px 30px;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: -46px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 10px var(--yellow);
}
.tl-item .yr {
  font-family: 'Bricolage Grotesque';
  color: var(--violet);
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
}
.tl-item h4 {
  font-size: 20px;
  margin-bottom: 8px;
}
.tl-item p {
  color: var(--muted);
  font-size: 14.5px;
  max-width: 520px;
  line-height: 1.6;
}

/* ---------- About Page Team Grid ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--ink);
  border: 1px solid var(--glass-border);
}
.team-card .photo {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(.2, .9, .3, 1);
}
.team-card:hover .photo {
  transform: scale(1.08);
}
.team-card .info {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 22px;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.95), transparent 85%);
  z-index: 2;
}
.team-card .info h4 {
  font-size: 17px;
  margin-bottom: 3px;
}
.team-card .info span {
  font-size: 13px;
  color: var(--yellow);
  font-weight: 500;
}

/* ---------- Services Details Block ---------- */
.service-block {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 40px;
  padding: 60px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.service-block:last-child {
  border-bottom: 1px solid var(--line);
}
.service-block .sb-tag {
  font-family: 'Bricolage Grotesque';
  font-size: 15px;
  color: var(--violet);
  font-weight: 700;
}
.service-block h3 {
  font-size: clamp(26px, 3.4vw, 40px);
  margin-bottom: 16px;
}
.service-block p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 660px;
  margin-bottom: 24px;
}
.pill-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pill {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--cream);
  transition: 0.3s;
}
.pill:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(243, 230, 0, 0.05);
}

/* ---------- Pricing Cards ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px 32px;
  background: var(--card);
  backdrop-filter: blur(10px);
  position: relative;
  transition: 0.4s cubic-bezier(.2, .9, .3, 1);
}
.price-card.feat {
  border-color: var(--yellow);
  background: linear-gradient(160deg, var(--card), rgba(243, 230, 0, 0.04));
}
.price-card:hover {
  transform: translateY(-8px);
  border-color: var(--violet);
}
.price-card.feat:hover {
  border-color: var(--yellow);
  box-shadow: 0 15px 30px rgba(243, 230, 0, 0.1);
}
.price-card .tag2 {
  position: absolute;
  top: -12px;
  right: 28px;
  background: var(--yellow);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
}
.price-card h4 {
  font-size: 22px;
  margin-bottom: 6px;
}
.price-card .price {
  font-family: 'Bricolage Grotesque';
  font-size: 38px;
  color: var(--yellow);
  margin: 18px 0;
}
.price-card .price small {
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
}
.price-card ul {
  list-style: none;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-card li {
  font-size: 14px;
  color: #ccc;
  display: flex;
  gap: 10px;
}
.price-card li::before {
  content: '✓';
  color: var(--yellow);
  font-weight: 700;
}

/* ---------- Contact Page Details ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.form-field {
  margin-bottom: 26px;
}
.form-field label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 10px;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--line);
  color: var(--cream);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  padding: 10px 2px;
  outline: none;
  transition: 0.3s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--yellow);
}
.form-field select option {
  background: var(--ink);
  color: var(--cream);
}
.contact-info-card {
  background: var(--card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: fit-content;
}
.cinfo-item h5 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 8px;
}
.cinfo-item a, .cinfo-item p {
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s;
}
.cinfo-item a:hover {
  color: var(--yellow);
}
.map-block {
  height: 240px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--violet), var(--ink));
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}
.faq-item {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  cursor: pointer;
}
.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Bricolage Grotesque';
  font-size: 19px;
  font-weight: 600;
}
.faq-q .plus {
  font-size: 24px;
  transition: transform 0.3s;
  color: var(--yellow);
}
.faq-item.open .faq-q .plus {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-a {
  max-height: 200px;
}
.faq-a p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  padding-top: 14px;
  max-width: 600px;
}

/* ---------- AI & Remote Resource Page Items ---------- */
.interactive-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.checklist-item {
  background: var(--card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 24px;
  border-radius: 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: 0.3s;
}
.checklist-item:hover {
  border-color: var(--yellow);
}
.checklist-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--yellow);
  cursor: pointer;
  margin-top: 3px;
}
.checklist-content h5 {
  font-size: 16px;
  margin-bottom: 6px;
}
.checklist-content p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.benefit-card {
  background: var(--card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 36px 28px;
  border-radius: 20px;
  transition: 0.3s;
}
.benefit-card:hover {
  border-color: var(--cyan);
}
.benefit-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--cyan);
}
.benefit-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ---------- Responsive Adjustments ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger {
    display: flex;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) !important;
  }
  nav .logo-wrap img {
    height: 100px !important;
    width: auto !important;
    transform: none !important;
  }
  nav.scrolled .logo-wrap img {
    height: 75px !important;
  }
  nav {
    padding: 10px 60px 10px 20px !important; /* Reserves space on the right for absolute burger */
  }
  .hero {
    padding: 110px 5% 40px !important;
    min-height: 80vh !important;
  }
  .page-head {
    padding: 120px 5% 40px !important;
  }
  .services-grid, .value-grid, .team-grid, .pricing-grid, .benefit-grid, .interactive-checklist {
    grid-template-columns: 1fr;
  }
  .process-wrap { grid-template-columns: 1fr; }
  .process-visual { position: relative; height: 320px !important; }
  .scanner-radar {
    width: 120px !important;
    height: 120px !important;
    margin-bottom: 12px !important;
  }
  .circle-1 { width: 36px !important; height: 36px !important; }
  .circle-2 { width: 72px !important; height: 72px !important; }
  .circle-3 { width: 120px !important; height: 120px !important; }
  .timeline-roadmap {
    width: 170px !important;
    gap: 12px !important;
    margin-bottom: 12px !important;
  }
  .launch-engine {
    width: 90px !important;
    height: 90px !important;
    margin-bottom: 12px !important;
  }
  .rocket-wrap svg {
    width: 44px !important;
    height: 44px !important;
  }
  .growth-chart {
    width: 170px !important;
  }
  .counter-val {
    font-size: 24px !important;
  }
  .panel-title {
    font-size: 15px !important;
  }
  .scan-logs {
    margin-top: 8px !important;
  }
  .work-row { grid-template-columns: 50px 1fr; }
  .work-row .tag, .work-row .yr { display: none; }
  .work-row .thumb { display: none; }
  .service-block { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  
  /* Prevent massive footer logo from breaking mobile layout width */
  footer .logo-wrap img, .footer-logo {
    height: auto !important;
    width: 130px !important;
    max-width: 100% !important;
  }
  .logos-strip {
    justify-content: center !important;
    gap: 20px 30px !important;
    padding: 30px 20px !important;
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 20px !important;
  }
  .hero {
    padding: 120px 20px 50px !important;
  }
  .page-head {
    padding: 120px 20px 40px !important;
  }
  footer {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 32px !important;
    padding: 60px 20px 30px !important;
  }
  footer .logo-wrap {
    width: 100% !important;
    margin-bottom: 8px !important;
  }
  .foot-col {
    width: 100% !important;
  }
}

@media (max-width: 600px) {
  nav .nav-cta {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px !important;
  }
  .page-head h1 {
    font-size: 32px !important;
  }
  .section-head h2 {
    font-size: 28px !important;
  }
  .hero h1 .line, .page-head h1 .line {
    overflow: visible !important;
    height: auto !important;
  }
  .hero h1 .reveal, .page-head h1 .reveal {
    display: inline-block !important;
    white-space: normal !important;
    max-width: 100% !important;
  }
}

/* ---------- Testimonial Carousel ---------- */
.testi-carousel {
  background: var(--card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 80px 8% 60px;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
}
.testi-slide {
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: all 0.5s ease-in-out;
  position: absolute;
  width: 84%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testi-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  position: relative;
}
.testi-slide blockquote {
  font-family: 'Bricolage Grotesque';
  font-size: clamp(20px, 3vw, 36px);
  line-height: 1.35;
  font-weight: 600;
  max-width: 850px;
  color: var(--cream);
}
.testi-slide .who {
  margin-top: 24px;
  font-size: 14px;
  color: var(--yellow);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.carousel-dots {
  display: flex;
  gap: 10px;
  margin-top: 40px;
  z-index: 10;
}
.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: 0.3s;
}
.carousel-dots .dot:hover {
  background: rgba(255, 255, 255, 0.4);
}
.carousel-dots .dot.active {
  background: var(--yellow);
  transform: scale(1.3);
}

/* ---------- Tech Stack Showcase ---------- */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}
.tech-card {
  background: var(--card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 36px 30px;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.tech-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand-color);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 15px var(--brand-color);
}
.tech-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--brand-color);
  transition: all 0.3s;
}
.tech-card:hover .tech-icon {
  background: var(--brand-color);
  color: var(--black);
  box-shadow: 0 0 15px var(--brand-color);
  transform: scale(1.08) rotate(3deg);
}
.tech-card h4 {
  font-size: 19px;
  margin-bottom: 12px;
  color: var(--cream);
  font-family: 'Bricolage Grotesque';
  font-weight: 700;
}
.tech-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .tech-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .tech-card {
    padding: 30px 24px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
