/* ═══════════════════════════════════════════════════════════
   DevOrbit — Custom CSS
   Theme : Neon Cosmos (Dark · Electric Indigo · Cyan Glow)
   Fonts : Manrope (headline/body) · Inter (label)
═══════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ── */
:root {
  /* Backgrounds */
  --bg-base: #060b18;
  /* page */
  --bg-surface: #0d1528;
  /* card */
  --bg-surface2: #111d36;
  /* elevated */
  --bg-surface3: #1a2540;
  /* high */

  /* Brand */
  --p: #818cf8;
  /* primary — indigo 400 */
  --p2: #6366f1;
  /* primary deep */
  --accent: #38bdf8;
  /* sky blue */
  --violet: #a78bfa;
  /* violet glow */
  --gold: #fbbf24;
  /* amber CTA */
  --emerald: #34d399;
  --rose: #f87171;

  /* Gradient presets */
  --grad: linear-gradient(135deg, #818cf8 0%, #6366f1 50%, #38bdf8 100%);
  --grad-btn: linear-gradient(135deg, #818cf8 0%, #6366f1 100%);
  --grad-warm: linear-gradient(135deg, #f59e0b, #ef4444);

  /* Text */
  --tx: #eef2ff;
  /* primary text */
  --tx2: #94a3b8;
  /* secondary */
  --tx3: #475569;
  /* muted */

  /* Borders */
  --border: rgba(255, 255, 255, 0.07);
  --border-hi: rgba(129, 140, 248, 0.3);

  /* Glow */
  --glow-p: rgba(129, 140, 248, 0.25);
  --glow-accent: rgba(56, 189, 248, 0.2);

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Material Symbols ── */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  display: inline-flex;
  vertical-align: middle;
  line-height: 1;
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ══════════════════════════════════════
   PATTERNS
══════════════════════════════════════ */
.pattern-dots {
  background-image: radial-gradient(circle, var(--p) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.12;
}

.pattern-grid {
  background-image:
    linear-gradient(to right, var(--p) 1px, transparent 1px),
    linear-gradient(to bottom, var(--p) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.05;
}

/* ══════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════ */
.text-gradient {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradShift 6s ease-in-out infinite alternate;
}

@keyframes gradShift {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 100% 50%;
  }
}

.section-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.glass-nav {
  background: rgba(6, 11, 24, 0.75) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: box-shadow 0.3s ease, padding 0.3s ease;
  border-color: var(--border) !important;
}

.glass-nav.scrolled {
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5),
    0 1px 0 var(--border);
}

/* ── Logo image ── */
.logo-img {
  height: 36px;
  width: auto;
  display: block;
  /* Keep crisp at all sizes */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.footer-logo {
  height: 44px;
  margin-bottom: 1.5rem;
}

.nav-link {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--tx2);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-link:hover {
  color: var(--p);
}

.nav-link:hover::after {
  width: 100%;
}

.btn-pill {
  display: inline-block;
  background: var(--grad-btn);
  color: #fff;
  padding: 0.65rem 1.6rem;
  border-radius: 9999px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 20px var(--glow-p);
}

.btn-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px var(--glow-p), 0 8px 24px rgba(0, 0, 0, 0.4);
}

.btn-pill:active {
  transform: scale(0.97);
}

.mobile-menu {
  border-top: 1px solid var(--border);
  background: rgba(6, 11, 24, 0.98);
}

.mobile-nav-link {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--tx2);
  text-decoration: none;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-nav-link:hover {
  color: var(--p);
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero-badge {
  font-family: 'Inter', sans-serif;
}

.floating {
  animation: floating 7s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0px) skewX(-2deg);
  }

  50% {
    transform: translateY(-22px) skewX(-2deg);
  }

  100% {
    transform: translateY(0px) skewX(-2deg);
  }
}

/* ── Trust avatars ── */
.trust-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--bg-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
}

/* ── Stats bar ── */
.stats-bar {
  border-top: 1px solid var(--border);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
}

.stat-item strong {
  font-family: 'Manrope', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-item span {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--tx3);
  font-weight: 600;
}

/* ── Hero CTA buttons ── */
.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-btn);
  color: #fff;
  padding: 1.1rem 2.4rem;
  border-radius: 9999px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
  box-shadow: 0 0 30px var(--glow-p), 0 8px 32px rgba(0, 0, 0, 0.4);
}

.btn-primary-hero:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 50px var(--glow-p), 0 16px 40px rgba(0, 0, 0, 0.5);
}

.btn-primary-hero:active {
  transform: scale(0.97);
}

.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 1.1rem 2.4rem;
  border-radius: 9999px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--tx);
  border: 1.5px solid var(--border-hi);
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.2s ease, border-color 0.2s ease;
  backdrop-filter: blur(8px);
}

.btn-ghost-hero:hover {
  background: rgba(129, 140, 248, 0.1);
  border-color: var(--p);
}

/* ══════════════════════════════════════
   HERO CARD — dashboard mockup (dark)
══════════════════════════════════════ */
.hero-card-main {
  background: linear-gradient(160deg, var(--bg-surface) 0%, var(--bg-surface2) 100%);
  border: 1px solid var(--border-hi);
  box-shadow: 0 0 60px rgba(129, 140, 248, 0.1);
}

.hero-card-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-card-url {
  margin-left: 10px;
  font-family: 'Inter', monospace;
  font-size: 0.7rem;
  color: var(--tx3);
  background: rgba(255, 255, 255, 0.06);
  padding: 3px 12px;
  border-radius: 20px;
  flex: 1;
  max-width: 160px;
}

.hero-card-body {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: calc(100% - 44px);
}

.hero-metric-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-metric {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-metric-val {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--tx);
  width: 28px;
  flex-shrink: 0;
}

.hero-metric-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: var(--tx3);
  width: 80px;
  flex-shrink: 0;
}

.hero-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.hero-bar-fill {
  height: 100%;
  border-radius: 10px;
  transition: width 1.5s var(--ease);
  box-shadow: 0 0 8px currentColor;
}

.hero-chart-area {
  flex: 1;
  background: linear-gradient(180deg, rgba(129, 140, 248, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 110px;
  overflow: hidden;
}

.hero-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
}

.hero-bar-col {
  flex: 1;
  background: linear-gradient(180deg, var(--p) 0%, var(--p2) 100%);
  border-radius: 4px 4px 0 0;
  opacity: 0.7;
  box-shadow: 0 0 8px var(--glow-p);
  transition: opacity 0.3s;
}

.hero-bar-col:hover {
  opacity: 1;
}

.hero-chart-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--tx3);
  margin-top: 10px;
}

.hero-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.hero-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

.hero-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(13, 21, 40, 0.9);
  border: 1px solid var(--border-hi);
  border-radius: 50px;
  padding: 8px 14px;
  box-shadow: 0 0 20px var(--glow-p);
  animation: floatPill 4s ease-in-out infinite;
}

@keyframes floatPill {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--tx);
}

.stat-big {
  padding: 1.5rem 0;
}

.tech-tag {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  background: rgba(129, 140, 248, 0.08);
  border: 1px solid rgba(129, 140, 248, 0.2);
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--p);
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.tech-tag:hover {
  background: rgba(129, 140, 248, 0.18);
  border-color: var(--p);
  box-shadow: 0 0 12px var(--glow-p);
}

/* ══════════════════════════════════════
   SERVICES — TAB PANEL
══════════════════════════════════════ */
.svc-section {
  padding: 8rem 0 10rem;
}

.svc-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}

.svc-glow-1 {
  width: 600px;
  height: 600px;
  background: rgba(129, 140, 248, 0.07);
  top: -100px;
  right: -100px;
}

.svc-glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(56, 189, 248, 0.05);
  bottom: -80px;
  left: -80px;
}

.svc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 5rem;
  flex-wrap: wrap;
}

.svc-header-sub {
  max-width: 320px;
  font-size: 1.1rem;
  color: var(--tx2);
  line-height: 1.65;
}

.svc-tabs-wrap {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Tab list */
.svc-tab-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.svc-tab {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  border: 1.5px solid transparent;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}

.svc-tab::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(129, 140, 248, 0.08), rgba(56, 189, 248, 0.04));
  opacity: 0;
  transition: opacity 0.25s ease;
  border-radius: inherit;
}

.svc-tab:hover::before {
  opacity: 1;
}

.svc-tab:hover {
  border-color: rgba(129, 140, 248, 0.2);
}

.svc-tab.active {
  background: linear-gradient(135deg, rgba(129, 140, 248, 0.1), rgba(56, 189, 248, 0.06));
  border-color: rgba(129, 140, 248, 0.35);
  box-shadow: 0 0 24px rgba(129, 140, 248, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.svc-tab.active .svc-tab-num {
  color: var(--accent);
}

.svc-tab.active .svc-tab-name {
  color: var(--p);
}

.svc-tab.active .svc-tab-arrow {
  color: var(--accent);
  opacity: 1;
  transform: translateX(4px);
}

.svc-tab-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--tx3);
  min-width: 24px;
  transition: color 0.25s;
}

.svc-tab-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.svc-tab-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--tx);
  transition: color 0.25s;
}

.svc-tab-hint {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--tx3);
}

.svc-tab-arrow {
  color: var(--tx3);
  opacity: 0.4;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.svc-tab:hover .svc-tab-arrow {
  opacity: 1;
  transform: translateX(2px);
}

/* Panels */
.svc-panels {
  position: relative;
  min-height: 420px;
}

.svc-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: 3rem;
  animation: panelIn 0.45s var(--ease);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.svc-panel.active {
  display: grid;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.99);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.svc-panel-svg {
  background: var(--bg-surface2);
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 0 40px rgba(129, 140, 248, 0.08);
}

.svc-svg {
  display: block;
  width: 100%;
  height: auto;
}

.svc-panel-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.svc-panel-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(129, 140, 248, 0.12);
  color: var(--p);
  border: 1px solid rgba(129, 140, 248, 0.2);
  width: fit-content;
}

.svc-panel-content h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--tx);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.svc-panel-content p {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  color: var(--tx2);
  line-height: 1.75;
  margin: 0;
}

.svc-feat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.svc-feat-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--tx);
}

.svc-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.svc-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent);
  text-decoration: none;
  margin-top: 0.5rem;
  transition: gap 0.2s ease;
}

.svc-panel-cta:hover {
  gap: 12px;
}

/* ── SVG animations ── */
.code-line {
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  animation: codeDraw 0.4s var(--ease) forwards;
}

@keyframes codeDraw {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.svg-cursor {
  animation: blink 1s step-end infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

.svg-dot {
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.15)
  }
}

.design-el {
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}

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

.design-cursor {
  opacity: 0;
  animation: cursorDrift 4s ease-in-out infinite;
}

@keyframes cursorDrift {
  0% {
    opacity: 0;
    transform: translate(0, 0);
  }

  10% {
    opacity: 1;
  }

  40% {
    transform: translate(40px, -20px);
  }

  70% {
    transform: translate(90px, 30px);
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(40px, 60px);
  }
}

.chart-line {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: drawLine 1.8s var(--ease) 0.3s forwards;
}

.chart-line-2 {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: drawLine 2s var(--ease) 0.8s forwards;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.chart-area {
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards;
}

.chart-dot {
  opacity: 0;
  animation: dotAppear 0.4s ease forwards;
}

@keyframes dotAppear {
  from {
    opacity: 0;
    transform: scale(0)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

.chart-tooltip {
  opacity: 0;
  animation: fadeIn 0.5s ease 1.8s forwards;
}

.badge-pulse {
  animation: badgePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, badgePulse 2s ease-in-out 0.5s infinite;
}

@keyframes badgePop {
  from {
    transform: scale(0)
  }

  to {
    transform: scale(1)
  }
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(248, 113, 113, 0.4)
  }

  50% {
    box-shadow: 0 0 0 6px rgba(248, 113, 113, 0)
  }
}

.product-card {
  opacity: 0;
  animation: fadeIn 0.4s ease forwards;
}

.phone-main {
  animation: phoneFloat 5s ease-in-out infinite;
}

.phone-back {
  opacity: 0;
  animation: fadeIn 0.6s ease 0.3s forwards;
}

@keyframes phoneFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

.app-el {
  opacity: 0;
  animation: fadeIn 0.4s ease forwards;
}

.app-line {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawLine 1.5s ease 0.8s forwards;
}

.logo-ring {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: drawLine 1.5s ease 0.2s forwards;
}

.logo-shape {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

.swatch-el,
.type-el,
.brand-card {
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}

.svc-panel:not(.active) .svc-svg * {
  animation-play-state: paused !important;
}

.svc-panel.active .svc-svg * {
  animation-play-state: running;
}

/* Responsive services */
@media(max-width:1100px) {
  .svc-tabs-wrap {
    grid-template-columns: 300px 1fr;
    gap: 2rem
  }
}

/* ─── 900px — Services stack ─── */
@media (max-width: 900px) {
  .svc-tabs-wrap {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* 2-column pill grid — all tabs visible, no scroll */
  .svc-tab-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    width: 100%;
  }

  .svc-tab {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    padding: 0.9rem 1rem;
    border-radius: 0.875rem;
    flex: unset;
    width: 100%;
  }

  .svc-tab-num {
    font-size: 0.6rem;
    color: var(--tx3);
  }

  .svc-tab-name {
    font-size: 0.85rem;
    white-space: normal;
    line-height: 1.2;
  }

  .svc-tab-hint {
    display: none;
  }

  .svc-tab-arrow {
    display: none;
  }

  .svc-panel {
    grid-template-columns: 1fr;
  }
}


/* ══════════════════════════════════════
   PROCESS
══════════════════════════════════════ */
.process-card {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: 2.5rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.process-card:hover {
  box-shadow: 0 0 40px rgba(129, 140, 248, 0.12);
  transform: translateY(-4px);
  border-color: rgba(129, 140, 248, 0.25);
}

.process-card:hover .process-num {
  opacity: 0.15;
}

.process-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: 'Manrope', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.08;
  line-height: 1;
  transition: opacity 0.3s ease;
  user-select: none;
}

.process-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(129, 140, 248, 0.1);
  border: 1px solid rgba(129, 140, 248, 0.2);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonial-scroll-wrap {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 88%, transparent 100%);
}

.testimonial-scroll {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1.5rem 4rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonial-scroll::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex-shrink: 0;
  width: 420px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 2.5rem;
  padding: 3rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(129, 140, 248, 0.12);
  border-color: rgba(129, 140, 248, 0.25);
}

.featured-testimonial {
  background: linear-gradient(160deg, rgba(129, 140, 248, 0.1), var(--bg-surface));
  border-color: rgba(129, 140, 248, 0.25);
  box-shadow: 0 0 60px rgba(129, 140, 248, 0.15);
}

.t-stars {
  display: flex;
  gap: 2px;
  color: #fbbf24;
  margin-bottom: 1.5rem;
}

.t-quote {
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--tx2);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.t-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.t-av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease, border-color 0.3s;
}

.faq-item[open] {
  border-color: rgba(129, 140, 248, 0.3);
  box-shadow: 0 0 30px rgba(129, 140, 248, 0.1);
}

.faq-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2.5rem;
  cursor: pointer;
  list-style: none;
  gap: 2rem;
  user-select: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary:hover {
  background: rgba(129, 140, 248, 0.04);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
}

details[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 2.5rem 2rem;
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--tx2);
  animation: faqFadeIn 0.3s ease;
}

@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact-method {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.c-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 1rem;
  background: var(--grad-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s;
}

.contact-method:hover .c-icon-wrap {
  transform: rotate(10deg);
  box-shadow: 0 0 20px var(--glow-p);
}

.c-icon-outline {
  background: rgba(129, 140, 248, 0.08);
  border: 1.5px solid rgba(129, 140, 248, 0.2);
}

.contact-method:hover .c-icon-outline {
  transform: rotate(-10deg);
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.2);
}

.contact-form-card {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 3rem;
  padding: 3.5rem;
  box-shadow: 0 0 80px rgba(129, 140, 248, 0.08), 0 32px 80px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--p), var(--accent), transparent);
  opacity: 0.6;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--tx3);
  padding-left: 1rem;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid var(--border);
  border-radius: 1.75rem;
  padding: 1.1rem 1.6rem;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  color: var(--tx);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--tx3);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: rgba(129, 140, 248, 0.5);
  box-shadow: 0 0 0 4px rgba(129, 140, 248, 0.1), 0 0 20px rgba(129, 140, 248, 0.1);
}

.form-field textarea {
  resize: none;
  border-radius: 1.5rem;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2394a3b8'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 20px;
  padding-right: 3rem;
  cursor: pointer;
}

.form-field select option {
  background: var(--bg-surface2);
  color: var(--tx);
}

.form-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--grad-btn);
  color: #fff;
  padding: 1.3rem 2rem;
  border-radius: 9999px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 30px var(--glow-p), 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.form-submit-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 0 50px var(--glow-p), 0 16px 40px rgba(0, 0, 0, 0.5);
}

.form-submit-btn:active {
  transform: scale(0.98);
}

.form-output {
  margin-top: 1.5rem;
  padding: 1.5rem 2rem;
  background: rgba(129, 140, 248, 0.06);
  border: 1px solid rgba(129, 140, 248, 0.2);
  border-radius: 1.5rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--tx);
}

.form-output.hidden {
  display: none;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer-social {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s;
}

.footer-social:hover {
  background: var(--p);
  color: #fff;
  border-color: var(--p);
  box-shadow: 0 0 16px var(--glow-p);
}

.footer-link {
  color: #64748b;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--p);
}

/* ══════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}

.reveal-up.in-view {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ══════════════════════════════════════
   RESPONSIVE — Full breakpoint system
   1280px · 1024px · 900px · 768px · 640px · 480px
══════════════════════════════════════ */

/* ─── 1280px – Laptop ─── */
@media (max-width: 1280px) {
  .svc-tabs-wrap {
    grid-template-columns: 320px 1fr;
    gap: 2.5rem;
  }

  #hero h1 {
    font-size: 4.5rem;
  }
}

/* ─── 1024px – Tablet Landscape ─── */
@media (max-width: 1024px) {

  /* Nav */
  #mainNav .flex.justify-between.items-center {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  /* Hero */
  #hero {
    padding-top: 8rem;
    padding-bottom: 7rem;
  }

  #hero .max-w-7xl {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  #hero .grid {
    gap: 3rem;
  }

  #hero h1 {
    font-size: 3.75rem;
    line-height: 1;
  }

  #hero .hero-visual .relative {
    height: auto;
    max-width: 450px;
  }

  /* About */
  #about {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  #about .max-w-7xl {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  #about .grid {
    gap: 3rem;
  }

  #about h2 {
    font-size: 2.75rem;
    line-height: 1.15;
  }

  #about .text-xl {
    font-size: 1rem;
  }

  .stat-big .text-6xl {
    font-size: 3.25rem;
  }

  .stat-big .text-3xl {
    font-size: 1.6rem;
  }

  /* Services */
  .svc-section {
    padding: 5rem 0 6rem;
  }

  .svc-header h2 {
    font-size: 2.75rem;
  }

  .svc-tabs-wrap {
    grid-template-columns: 260px 1fr;
    gap: 2rem;
  }

  /* Process */

  /* Testimonials */
  #testimonials {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  #testimonials .max-w-7xl {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  #testimonials h2 {
    font-size: 2.75rem;
  }

  #testimonials .mb-24 {
    margin-bottom: 3rem;
  }

  #testimonials .text-xl {
    font-size: 1rem;
  }

  .testimonial-card {
    width: 360px;
    padding: 2.25rem;
  }

  /* FAQ */
  #faq {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  #faq .max-w-4xl {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  #faq h2 {
    font-size: 2.75rem;
  }

  #faq .mb-20 {
    margin-bottom: 2.5rem;
  }

  /* Contact */
  #contact {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  #contact .max-w-7xl {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  #contact h2 {
    font-size: 3.5rem;
  }

  #contact .text-2xl {
    font-size: 1.1rem;
  }

  #contact .text-xl {
    font-size: 1rem;
  }

  #contact .space-y-10>*+* {
    margin-top: 1.75rem;
  }

  #contact .mb-10 {
    margin-bottom: 2rem;
  }

  #contact .mb-16 {
    margin-bottom: 2.5rem;
  }

  /* Footer */
  footer {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }

  footer .max-w-7xl {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  footer .mb-20 {
    margin-bottom: 3.5rem;
  }

  footer .gap-14 {
    gap: 2.5rem;
  }
}

/* ─── 900px – Services stack ─── */
@media (max-width: 900px) {
  .svc-tabs-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .svc-tab-list {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }

  .svc-tab-list::-webkit-scrollbar {
    display: none;
  }

  .svc-tab {
    flex: 0 0 auto;
    white-space: nowrap;
    width: max-content;
    scroll-snap-align: start;
  }

  .svc-tab-hint {
    display: none;
  }

  .svc-panel {
    grid-template-columns: 1fr;
  }
}

/* ─── 768px – Tablet Portrait ─── */
@media (max-width: 768px) {

  /* Nav */
  #mainNav .flex.justify-between.items-center {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  #mainNav .mobile-menu {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .logo-img {
    height: 30px;
  }

  .footer-logo {
    height: 36px;
  }

  /* Hero */
  #hero {
    padding-top: 7rem;
    padding-bottom: 3rem;
    min-height: auto;
  }

  #hero .max-w-7xl {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  #hero .grid {
    gap: 2.5rem;
  }

  #hero h1 {
    font-size: 2.8rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
  }

  .hero-badge {
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-badge span:last-child {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
  }

  #hero .hero-visual .relative {
    height: auto;
    max-width: 400px;
  }

  .rock-badge {
    transform: scale(0.85);
    transform-origin: center;
  }

  /* Social proof */
  #hero .flex.items-center.gap-8 {
    gap: 1.25rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
  }

  /* Stats bar */
  .stats-bar {
    position: static;
  }

  .stats-bar .stat-item strong {
    font-size: 1.35rem;
  }

  .stats-bar .grid {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  /* About */
  #about {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  #about .max-w-7xl {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  #about .grid {
    gap: 2.5rem;
  }

  #about h2 {
    font-size: 2.2rem;
  }

  #about .text-xl {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  #about .text-lg {
    font-size: 0.9rem;
  }

  #about .mt-10 {
    margin-top: 1.5rem;
  }

  .stat-big .text-6xl {
    font-size: 2.75rem;
  }

  .stat-big .text-3xl {
    font-size: 1.4rem;
  }

  #about .mb-10 {
    margin-bottom: 1.5rem;
  }

  /* Services */
  .svc-section {
    padding: 4rem 0 5rem;
  }

  #services .max-w-7xl {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .svc-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .svc-header h2 {
    font-size: 2.2rem;
  }

  .svc-header-sub {
    max-width: none;
    font-size: 1rem;
  }

  .svc-panel {
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
  }

  .svc-panel-content h3 {
    font-size: 1.6rem;
  }

  .svc-panel-content p {
    font-size: 0.95rem;
  }

  .svc-tab {
    padding: 0.875rem 1.25rem;
  }

  .svc-tab-name {
    font-size: 0.9rem;
  }

  /* Process */

  /* Testimonials */
  #testimonials {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  #testimonials .max-w-7xl {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  #testimonials h2 {
    font-size: 2.2rem;
  }

  #testimonials .mb-24 {
    margin-bottom: 2rem;
  }

  #testimonials .text-xl {
    font-size: 0.95rem;
  }

  #testimonials .mt-20 {
    margin-top: 2.5rem;
  }

  .testimonial-card {
    width: 320px;
    padding: 2rem 1.75rem;
    border-radius: 2rem;
  }

  .testimonial-scroll-wrap {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
  }

  .testimonial-scroll {
    padding: 1rem;
    gap: 1rem;
  }

  .t-quote {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
  }

  /* FAQ */
  #faq {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  #faq .max-w-4xl {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  #faq h2 {
    font-size: 2.2rem;
  }

  #faq .mb-20 {
    margin-bottom: 2rem;
  }

  #faq .text-xl {
    font-size: 0.95rem;
  }

  .faq-summary {
    padding: 1.4rem 1.5rem;
    gap: 1rem;
  }

  .faq-summary>span:first-child {
    font-size: 1.05rem !important;
  }

  .faq-chevron {
    font-size: 1.5rem !important;
  }

  .faq-body {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.93rem;
  }

  /* Contact */
  #contact {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  #contact .max-w-7xl {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  #contact h2 {
    font-size: 2.75rem;
    line-height: 1.1;
  }

  #contact .text-2xl {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  #contact .text-xl {
    font-size: 1rem;
  }

  #contact .space-y-10>*+* {
    margin-top: 1.5rem;
  }

  #contact .mb-16 {
    margin-bottom: 2rem;
  }

  .contact-form-card {
    padding: 2rem 1.75rem;
    border-radius: 2rem;
  }

  .contact-form-card h3 {
    font-size: 1.5rem;
  }

  .c-icon-wrap {
    width: 48px;
    height: 48px;
  }

  .contact-method {
    gap: 1rem;
  }

  /* Footer */
  footer {
    padding-top: 3rem;
    padding-bottom: 2.5rem;
  }

  footer .max-w-7xl {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  footer .mb-20 {
    margin-bottom: 2.5rem;
  }

  footer .gap-14 {
    gap: 2rem;
  }

  footer .text-3xl {
    font-size: 1.8rem;
  }

  footer .text-lg {
    font-size: 0.9rem;
  }
}

/* ─── 640px – Large Mobile ─── */
@media (max-width: 640px) {

  /* Hero */
  #hero h1 {
    font-size: 2.4rem;
  }

  #hero .hero-visual .relative {
    height: auto;
    max-width: 320px;
  }

  .rock-badge {
    display: none;
  }

  /* Hero copy: paragraph + buttons stack */
  #hero .hero-content .flex.flex-col {
    gap: 1.25rem;
  }

  /* About stats 2-col maintained */
  .stat-big .text-6xl {
    font-size: 2.5rem;
  }

  .stat-big .text-3xl {
    font-size: 1.25rem;
  }

  /* Services */
  .svc-tab-num {
    display: none;
  }

  /* Process 2-col at this size (md:grid-cols-2 kicks in at 768px via Tailwind) */

  /* Testimonials */
  #testimonials .mt-20 {
    margin-top: 2rem;
  }

  #testimonials .text-lg {
    font-size: 0.9rem;
  }

  /* Contact */
  #contact h2 {
    font-size: 2.4rem;
  }

  .contact-form-card {
    padding: 1.75rem 1.25rem;
  }

  /* Footer: stack columns */
  footer .grid {
    grid-template-columns: 1fr 1fr !important;
  }

  footer .md\:col-span-5 {
    grid-column: span 2 !important;
  }
}

/* ─── 480px – Small Mobile ─── */
@media (max-width: 480px) {

  /* Nav */
  .logo-img {
    height: 26px;
  }

  .footer-logo {
    height: 30px;
  }

  #mainNav .flex.justify-between.items-center {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  /* Hero */
  #hero {
    padding-top: 5.5rem;
    padding-bottom: 2.5rem;
  }

  #hero h1 {
    font-size: 2rem;
    letter-spacing: -0.01em;
  }

  .hero-badge span:last-child {
    display: block;
  }

  .hero-badge span.w-2 {
    display: none;
  }

  .hero-badge {
    padding: 0.4rem 0.75rem;
  }

  #hero .hero-visual .relative {
    height: auto;
    max-width: 250px;
  }

  #hero .flex.items-center.gap-8 {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  #hero .mt-14 {
    margin-top: 1.5rem;
  }

  #hero .pt-10 {
    padding-top: 1.25rem;
  }

  /* Hero CTAs */
  .btn-primary-hero,
  .btn-ghost-hero {
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
  }

  .btn-primary-hero {
    font-size: 0.875rem;
  }

  /* Stats bar */
  .stats-bar .stat-item strong {
    font-size: 1.2rem;
  }

  .stats-bar .stat-item span {
    font-size: 0.6rem;
  }

  /* About */
  #about h2 {
    font-size: 1.9rem;
  }

  .stat-big .text-6xl {
    font-size: 2.1rem;
  }

  .stat-big .text-3xl {
    font-size: 1.1rem;
  }

  .about-feat {
    font-size: 0.9rem;
  }

  /* Services */
  .svc-section {
    padding: 3rem 0 3.5rem;
  }

  .svc-header h2 {
    font-size: 1.9rem;
  }

  .svc-tab {
    padding: 0.75rem 1rem;
  }

  .svc-tab-name {
    font-size: 0.875rem;
  }

  .svc-panel {
    padding: 1.5rem 1.25rem;
  }

  .svc-panel-content h3 {
    font-size: 1.4rem;
  }

  .svc-panel-content p {
    font-size: 0.875rem;
  }

  .svc-feat-list li {
    font-size: 0.85rem;
  }

  /* Process */

  /* Testimonials */
  #testimonials h2 {
    font-size: 1.9rem;
  }

  .testimonial-card {
    width: 280px;
    padding: 1.5rem;
    border-radius: 1.5rem;
  }

  .testimonial-scroll {
    gap: 0.75rem;
    padding: 0.5rem;
  }

  .t-quote {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.6;
  }

  .t-av {
    width: 36px;
    height: 36px;
    font-size: 0.65rem;
  }

  /* FAQ */
  #faq h2 {
    font-size: 1.9rem;
  }

  .faq-summary {
    padding: 1.2rem;
  }

  .faq-summary>span:first-child {
    font-size: 0.95rem !important;
  }

  .faq-body {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.88rem;
  }

  /* Contact */
  #contact h2 {
    font-size: 2rem;
  }

  #contact .text-2xl {
    font-size: 0.95rem;
  }

  .contact-form-card {
    padding: 1.5rem 1.1rem;
    border-radius: 1.5rem;
  }

  .contact-form-card h3 {
    font-size: 1.3rem;
  }

  .form-field input,
  .form-field textarea,
  .form-field select {
    padding: 0.9rem 1.2rem;
    font-size: 0.9rem;
  }

  .form-submit-btn {
    padding: 1.1rem 1.5rem;
    font-size: 1rem;
  }

  /* Footer */
  footer .grid {
    grid-template-columns: 1fr !important;
  }

  footer .md\:col-span-5 {
    grid-column: span 1 !important;
  }

  footer .text-3xl {
    font-size: 1.6rem;
  }

  footer .text-lg {
    font-size: 0.875rem;
  }

  footer .gap-14 {
    gap: 1.75rem;
  }
}

/* ══════════════════════════════════════
   HERO ROCKET SVG ANIMATIONS
══════════════════════════════════════ */
.hero-rocket-wrapper {
  perspective: 1000px;
}

.rocket-particles .r-particle {
  animation: floatParticle 3s linear infinite;
  opacity: 0;
}

@keyframes floatParticle {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    transform: translateY(-80px);
    opacity: 0;
  }
}

.rocket-smoke .smoke-puff {
  transform-origin: center;
  animation: puffSmoke 2s ease-out infinite;
}

@keyframes puffSmoke {
  0% {
    transform: scale(0.8) translateY(0);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.5) translateY(40px);
    opacity: 0;
  }
}

.rocket-flame-main {
  transform-origin: center top;
  animation: flickerOuter 0.15s infinite alternate;
}

.rocket-flame-inner {
  transform-origin: center top;
  animation: flickerInner 0.1s infinite alternate;
}

@keyframes flickerOuter {
  0% {
    transform: scaleY(0.9) scaleX(0.95);
    opacity: 0.8;
  }

  100% {
    transform: scaleY(1.1) scaleX(1.05);
    opacity: 1;
  }
}

@keyframes flickerInner {
  0% {
    transform: scaleY(0.8) scaleX(0.9);
  }

  100% {
    transform: scaleY(1.2) scaleX(1.1);
  }
}

.rock-badge {
  background: rgba(13, 21, 40, 0.85);
  border: 1px solid var(--border-hi);
  padding: 10px 14px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 15px var(--glow-p);
  animation: badgeFloat 4s ease-in-out infinite;
}

@keyframes badgeFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-6px) scale(1.02);
  }
}

@keyframes orbSpin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes orbSpinRev {
  100% {
    transform: rotate(-360deg);
  }
}

/* ══════════════════════════════════════
   PROCESS SVG ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  50%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cursorMove {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(30px, -40px);
  }

  50% {
    transform: translate(-20px, -60px);
  }

  75% {
    transform: translate(-50px, -10px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes typeCode {

  0%,
  10% {
    opacity: 0;
  }

  20%,
  100% {
    opacity: 1;
  }
}

@keyframes checkDraw {
  0% {
    stroke-dasharray: 0 50;
  }

  100% {
    stroke-dasharray: 50 50;
  }
}

@keyframes scanSweep {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(220px);
  }
}

@keyframes meterFill {
  0% {
    stroke-dasharray: 0 150;
  }

  100% {
    stroke-dasharray: 120 150;
  }
}

@keyframes rocketShake {

  0%,
  100% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(-1px, 2px);
  }

  50% {
    transform: translate(1px, -1px);
  }

  75% {
    transform: translate(-1px, -2px);
  }
}

@keyframes orbitSpin {
  0% {
    stroke-dashoffset: 800;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes thrustFlicker {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.8;
  }

  50% {
    transform: scaleY(1.3);
    opacity: 1;
  }
}

.process-svg-anim {
  animation: fadeUp 3s infinite alternate;
}

.process-svg-spin {
  transform-origin: 300px 180px;
  animation: orbSpin 8s linear infinite;
}

.process-svg-float {
  animation: badgeFloat 4s ease-in-out infinite;
}

.process-svg-fade {
  animation: fadeUp 3s ease-out infinite alternate;
}

.process-svg-code {
  opacity: 0;
  animation: typeCode 4s steps(1) infinite;
}

.process-svg-cursor-blink {
  animation: pulseOpacity 1s step-end infinite;
}

.process-svg-scan {
  animation: scanSweep 3s linear infinite alternate;
}

.process-svg-check {
  stroke-dasharray: 0 50;
  animation: checkDraw 4s ease-out infinite;
}

.process-svg-meter {
  animation: meterFill 4s ease-out infinite;
}

.process-svg-star {
  animation: pulseOpacity 2s infinite alternate;
}

.process-svg-rocket {
  animation: rocketShake 0.3s linear infinite;
}

.process-svg-thrust {
  transform-origin: 200px 180px;
  animation: thrustFlicker 0.1s linear infinite;
}

.process-svg-orbit {
  animation: orbitSpin 8s linear infinite;
}