/* =============================================
   QUNALINX — Main Landing Page Styles
   Matches: index.html (updated with pricing, 
   real page links, all animations)
   ============================================= */

:root {
  --bg: #030303;
  --border: #1a1a1a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: #fff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
}

.o0 {
  opacity: 0;
  transform: translateY(20px);
}

::selection {
  background: rgba(255, 255, 255, .1);
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 2px; }

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


/* ==============================================
   LOADER
   ============================================== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}

.loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
}

.loader-icon {
  animation: loaderSpin 2s linear infinite;
  margin: 0 auto 20px;
  display: block;
}

@keyframes loaderSpin {
  to { transform: rotateY(360deg); }
}

.loader-bar {
  width: 140px;
  height: 2px;
  background: #1a1a1a;
  margin: 0 auto 12px;
  border-radius: 1px;
  overflow: hidden;
}

.loader-bar-fill {
  width: 0;
  height: 100%;
  background: #fff;
  animation: loaderFill 2s ease forwards;
}

@keyframes loaderFill {
  to { width: 100%; }
}

.loader-text {
  font-size: 9px;
  color: #555;
  letter-spacing: .15em;
}


/* ==============================================
   COOKIE BANNER
   ============================================== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9000;
  background: rgba(10, 10, 10, .9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .06);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 480px;
  transition: transform .4s ease, opacity .4s ease;
}

.cookie-banner.hidden {
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner p {
  margin: 0;
}

.cookie-banner p a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-btn {
  font-size: 10px;
  font-weight: 600;
  padding: 6px 14px;
  border: none;
  cursor: pointer;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: all .3s;
}

.cookie-accept {
  background: #fff;
  color: #000;
}

.cookie-accept:hover {
  background: #ddd;
}

.cookie-decline {
  background: transparent;
  color: #666;
  border: 1px solid rgba(255, 255, 255, .1);
}

.cookie-decline:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .2);
}


/* ==============================================
   SCROLL PROGRESS BAR
   ============================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .25));
  z-index: 9998;
  width: 0;
  transition: width .05s linear;
}


/* ==============================================
   MOUSE GLOW
   ============================================== */
.mouse-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(60, 100, 255, .035), transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity .3s ease;
  opacity: 0;
  mix-blend-mode: screen;
}

.mouse-glow.active {
  opacity: 1;
}


/* ==============================================
   DATA STREAM (left edge)
   ============================================== */
.data-stream {
  position: fixed;
  left: 0;
  top: 0;
  width: 24px;
  height: 100%;
  z-index: 40;
  pointer-events: none;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, .02);
}

.data-stream .bit {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: rgba(74, 222, 128, .12);
  border-radius: 1px;
  animation: streamFall linear forwards;
}

@keyframes streamFall {
  0% { top: -20px; opacity: 1; }
  100% { top: 110vh; opacity: 0; }
}


/* ==============================================
   THREE.JS 3D BACKGROUND
   ============================================== */
#canvas-container {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .3;
}


/* ==============================================
   BACK TO TOP BUTTON
   ============================================== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 50;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(0, 0, 0, .8);
  backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: all .3s ease;
  pointer-events: none;
}

.back-to-top.show {
  opacity: 1;
  transform: none;
  pointer-events: all;
}

.back-to-top:hover {
  border-color: #fff;
  background: #fff;
  color: #000;
}


/* ==============================================
   COMMAND PALETTE
   ============================================== */
.cmd-palette {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, .7);
  backdrop-filter: blur(12px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20vh;
}

.cmd-palette.open {
  display: flex;
}

.cmd-inner {
  width: 100%;
  max-width: 480px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(10, 10, 10, .95);
  overflow: hidden;
}

.cmd-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.cmd-input {
  flex: 1;
  background: none;
  border: none;
  color: #fff;
  font-size: 14px;
  outline: none;
}

.cmd-input::placeholder {
  color: #444;
}

#cmdResults {
  max-height: 300px;
  overflow-y: auto;
}

.cmd-result {
  display: block;
  padding: 12px 16px;
  color: #888;
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .03);
  transition: all .15s ease;
}

.cmd-result:hover,
.cmd-result.active {
  background: rgba(255, 255, 255, .04);
  color: #fff;
}


/* ==============================================
   NAVIGATION
   ============================================== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  transition: all .5s ease;
}

nav.scrolled {
  background: rgba(0, 0, 0, .88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
  padding: 0 24px;
}

.nav-logo-icon {
  transition: transform .3s ease;
}

.nav-logo-icon:hover {
  transform: rotate(15deg);
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: #555;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-family: 'JetBrains Mono', monospace;
  transition: color .3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width .3s ease;
}

.nav-links a:hover {
  color: #fff;
}

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

.nav-cta {
  font-size: 10px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 7px 18px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-family: 'JetBrains Mono', monospace;
  transition: all .3s ease;
}

.nav-cta:hover {
  background: #fff;
  color: #000;
}

.live-users {
  display: flex;
  align-items: center;
  gap: 6px;
}

.uptime-badge {
  border: 1px solid rgba(255, 255, 255, .04);
  padding: 3px 10px;
  border-radius: 99px;
}

.nav-kbd {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 3px 8px;
  border-radius: 3px;
  cursor: pointer;
  transition: all .3s;
  color: #666;
  font-family: 'JetBrains Mono', monospace;
}

.nav-kbd:hover {
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  width: 24px;
  height: 18px;
  position: relative;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  transition: .3s ease;
}

.hamburger span:nth-child(1) { top: 2px; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { bottom: 2px; }

.hamburger.open span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  bottom: 8px;
  transform: rotate(-45deg);
}


/* ==============================================
   LIVE TICKER
   ============================================== */
.live-ticker {
  position: fixed;
  top: 56px;
  width: 100%;
  z-index: 49;
  background: rgba(0, 0, 0, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .03);
  overflow: hidden;
  height: 28px;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity .4s ease;
}

.live-ticker.show {
  opacity: 1;
}

.ticker-track {
  display: flex;
  gap: 40px;
  animation: tickerScroll 40s linear infinite;
  white-space: nowrap;
}

.ticker-track span {
  font-size: 10px;
  color: #444;
  font-family: 'JetBrains Mono', monospace;
}

.ticker-track .ticker-highlight {
  color: #4ade80;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ==============================================
   HERO SECTION
   ============================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 60px;
  position: relative;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-wrap {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 9999px;
  padding: 8px 20px;
  margin-bottom: 32px;
  background: rgba(255, 255, 255, .02);
}

.hero-title {
  font-size: clamp(2.6rem, 8vw, 6rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: .9;
}

.sw {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
}

.gradient-text {
  background: linear-gradient(180deg, #fff 0%, #555 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  color: #555;
  font-size: clamp(.84rem, 1.4vw, 1rem);
  line-height: 1.7;
  margin-top: 22px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Buttons */
.btn-primary {
  background: #fff;
  color: #000;
  padding: 13px 30px;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .05em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .3s ease;
  border: 1px solid #fff;
}

.btn-primary:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, .06);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 13px 30px;
  font-size: .8rem;
  letter-spacing: .05em;
  color: #888;
  text-decoration: none;
  display: inline-block;
  transition: all .3s ease;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .05);
  color: #fff;
}

.magnetic {
  transition: transform .15s ease;
}


/* ==============================================
   PULSE DOTS
   ============================================== */
.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(74, 222, 128, .25);
  animation: pulseRing 2s ease-in-out infinite;
}

.pulse-dot-xs {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.pulse-dot-xs::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(74, 222, 128, .2);
  animation: pulseRing 2s ease-in-out infinite;
}

@keyframes pulseRing {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(2.5); opacity: 0; }
}


/* ==============================================
   HERO METRICS
   ============================================== */
.hero-metrics {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 52px;
  flex-wrap: wrap;
  justify-content: center;
}

.mi {
  text-align: center;
  min-width: 85px;
}

.mv {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -.03em;
}

.ml {
  font-size: .52rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 2px;
  display: block;
}

.mbar {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, .06);
  margin-top: 7px;
  border-radius: 1px;
  overflow: hidden;
}

.mbar-fill {
  height: 100%;
  width: 0;
  background: rgba(255, 255, 255, .15);
  border-radius: 1px;
  transition: width 2s ease;
}

.msep {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, .06);
}


/* ==============================================
   SCROLL INDICATOR
   ============================================== */
.scroll-indicator {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 2;
  opacity: .25;
}

.scroll-line {
  width: 1px;
  height: 26px;
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .6));
  animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop {
  0% { top: -100%; }
  100% { top: 200%; }
}


/* ==============================================
   MARQUEE LOGOS
   ============================================== */
.logos-strip {
  border-top: 1px solid rgba(255, 255, 255, .04);
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  padding: 22px 0;
  overflow: hidden;
}

.marquee {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 20px;
  animation: mq 25s linear infinite;
  width: max-content;
}

.marquee-track span {
  color: #222;
  font-weight: 700;
  font-size: .75rem;
  white-space: nowrap;
}

@keyframes mq {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ==============================================
   SECTION UTILITIES
   ============================================== */
.sp {
  padding: 110px 24px;
}

.sl {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #555;
  margin-bottom: 14px;
}

.sh {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.tb {
  color: #777;
  font-size: .9rem;
  line-height: 1.75;
  margin-bottom: 14px;
  font-weight: 300;
  max-width: 460px;
}

.hl {
  color: #aaa;
  transition: color .5s ease;
}

.hl.lit {
  color: #fff;
}


/* ==============================================
   GLASS PANELS
   ============================================== */
.glass-panel {
  background: rgba(8, 8, 8, .75);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
}

.glass-panel:hover {
  border-color: #2a2a2a;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
}


/* ==============================================
   3D TILT CARDS
   ============================================== */
.tilt-card {
  transform: perspective(800px) rotateX(0) rotateY(0);
  transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
}


/* ==============================================
   SVG ANIMATIONS
   ============================================== */
.pulse-circle {
  animation: cPulse 3s ease-in-out infinite;
}

@keyframes cPulse {
  0%, 100% { opacity: .8; }
  50% { opacity: .15; }
}

.radar-sweep {
  transform-origin: 50px 50px;
  animation: radarSpin 4s linear infinite;
}

@keyframes radarSpin {
  to { transform: rotate(360deg); }
}

.svg-draw {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawIn 3s ease forwards infinite;
}

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

.ring-grow {
  transition: stroke .4s ease;
}

.group:hover .ring-grow {
  stroke: #555;
}


/* ==============================================
   LIVE DASHBOARD — BAR CHART
   ============================================== */
.live-bar {
  fill: white;
  fill-opacity: .1;
  rx: 1;
}


/* ==============================================
   LIVE DASHBOARD — TERMINAL
   ============================================== */
.terminal-body {
  color: #4ade80;
  overflow: hidden;
}

.terminal-body .tl {
  opacity: 0;
  animation: tlIn .3s ease forwards;
}

.terminal-body .tl-dim {
  color: #444;
}

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

.terminal-cursor {
  width: 6px;
  height: 11px;
  background: #4ade80;
  animation: blink 1s step-end infinite;
  margin-top: 3px;
}

@keyframes blink {
  50% { opacity: 0; }
}


/* ==============================================
   PRICING SECTION
   ============================================== */
#pricing .glass-panel {
  position: relative;
}

#pricing .glass-panel:nth-child(2) {
  box-shadow: 0 0 60px rgba(255, 255, 255, .02);
}


/* ==============================================
   PROCESS — STEPS
   ============================================== */
.step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0 0 12px rgba(255, 255, 255, .2);
}

.step-tag {
  font-size: 9px;
  border: 1px solid rgba(255, 255, 255, .06);
  display: inline-block;
  padding: 3px 8px;
  margin-top: 10px;
  color: #555;
}

.step-tag-green {
  border-color: rgba(74, 222, 128, .15);
  color: #4ade80;
}


/* ==============================================
   TECHNOLOGY — STACK LAYERS
   ============================================== */
.tech-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tech-layer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  opacity: 0;
  transform: translateX(-30px);
}

.tech-layer.vis {
  opacity: 1;
  transform: none;
  transition: all .6s cubic-bezier(.16, 1, .3, 1);
}

.tech-bar {
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .02));
  border-radius: 2px;
  transition: width 1.2s ease;
}

.tech-layer.vis .tech-bar {
  width: 160px;
}

.tech-label {
  font-size: 12px;
  color: #aaa;
  flex: 1;
}

.tech-tag {
  font-size: 9px;
  color: #555;
  border: 1px solid rgba(255, 255, 255, .06);
  padding: 2px 8px;
}


/* ==============================================
   FAQ
   ============================================== */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.faq-item summary {
  padding: 16px 0;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ccc;
  transition: color .3s ease;
}

.faq-item summary:hover {
  color: #fff;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  color: #444;
  transition: transform .3s ease, color .3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: #fff;
}

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

.faq-item p {
  color: #666;
  font-size: .82rem;
  line-height: 1.7;
  padding-bottom: 16px;
  font-weight: 300;
}

.faq-item p a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* ==============================================
   CONTACT FORM
   ============================================== */
.form-input {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .86rem;
  outline: none;
}

.form-input::placeholder {
  color: #2a2a2a;
}


/* ==============================================
   FOOTER
   ============================================== */
.ft-h {
  font-size: 10px;
  font-family: 'JetBrains Mono', monospace;
  color: #555;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 10px;
}

.ft-l {
  display: block;
  color: #444;
  text-decoration: none;
  font-size: 12px;
  padding: 3px 0;
  transition: color .25s ease;
}

.ft-l:hover {
  color: #fff;
}


/* ==============================================
   GSAP FADE (initial state for scroll reveals)
   ============================================== */
.gsap-fade {
  opacity: 0;
  transform: translateY(40px);
}


/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 768px) {

  .nav-links,
  .uptime-badge,
  .live-users,
  .nav-kbd {
    display: none !important;
  }

  .hamburger {
    display: block;
  }

  .hero-metrics {
    gap: 14px;
  }

  .msep {
    width: 24px;
    height: 1px;
  }

  .sp {
    padding: 80px 20px;
  }

  .data-stream {
    display: none;
  }

  .live-ticker {
    top: 56px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    max-width: none;
    flex-direction: column;
    gap: 12px;
    bottom: 12px;
  }

  .back-to-top {
    bottom: 16px;
    right: 16px;
  }

  .tech-bar {
    max-width: 80px;
  }

  .tech-layer.vis .tech-bar {
    width: 80px;
  }

  #pricing .grid {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .sh {
    font-size: 1.4rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
/* ==============================================
   CONTACT EMAIL BUTTON
   ============================================== */
.contact-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .02);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
}

.contact-email-btn:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, .08);
}

.contact-email-btn svg {
  transition: transform .3s;
}

.contact-email-btn:hover svg {
  transform: translateX(-2px);
}