:root {
  --bg: #050914;
  --bg-soft: #0c1529;
  --card: #0f1b33;
  --line: #21385f;
  --neon: #00d9ff;
  --neon-2: #5ca7ff;
  --accent: #ffd400;
  --text: #eef5ff;
  --muted: #a8bcda;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Segoe UI", "Inter", system-ui, sans-serif;
  line-height: 1.6;
}

/* Intro */
.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(0, 194, 255, 0.15), transparent 38%),
    radial-gradient(circle at 60% 45%, rgba(255, 205, 0, 0.08), transparent 30%),
    #050914;
  overflow: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.site-preloader::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(0, 210, 255, 0.18);
  box-shadow:
    0 0 40px rgba(0, 210, 255, 0.16),
    inset 0 0 40px rgba(0, 210, 255, 0.08);
  animation: preloaderPulse 2s ease-in-out infinite;
}
.preloader-logo-box {
  position: relative;
  z-index: 2;
  animation: logoFloat 2s ease-in-out infinite;
}
.preloader-logo {
  width: min(420px, 76vw);
  height: auto;
  filter:
    drop-shadow(0 0 20px rgba(0, 210, 255, 0.45))
    drop-shadow(0 0 34px rgba(0, 128, 255, 0.25));
}
.preloader-orbit {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  border: 1px solid rgba(0, 210, 255, 0.15);
  animation: orbitRotate 4s linear infinite;
}
.orbit-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00d9ff;
  box-shadow: 0 0 18px rgba(0, 217, 255, 0.9);
}
.orbit-dot-1 { top: -5px; left: 50%; }
.orbit-dot-2 {
  right: 10%;
  bottom: 12%;
  background: #ffd400;
  box-shadow: 0 0 18px rgba(255, 212, 0, 0.9);
}
.orbit-dot-3 { left: 8%; bottom: 22%; }
.preloader-text {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
body.is-loading { overflow: hidden; }

#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -3;
  opacity: 0.68;
}
.bg-gradient-flow {
  position: fixed;
  inset: -10%;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(30% 40% at 15% 8%, rgba(0, 217, 255, 0.18), transparent 70%),
    radial-gradient(28% 36% at 90% 25%, rgba(255, 212, 0, 0.09), transparent 75%),
    radial-gradient(36% 52% at 50% 90%, rgba(92, 167, 255, 0.12), transparent 70%);
  filter: blur(0.3px);
  animation: gradientShift 18s ease-in-out infinite alternate;
}

.container { width: min(1160px, 92vw); margin: 0 auto; }
.section { padding: 66px 0; position: relative; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 9, 20, 0.76);
  border-bottom: 1px solid rgba(33, 56, 95, 0.75);
  backdrop-filter: blur(10px);
}
.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
}
.brand-link { display: inline-flex; align-items: center; text-decoration: none; }
.site-logo {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(0, 210, 255, 0.25));
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}
.site-nav a:hover { color: var(--text); }
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  font-size: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 800;
  padding: 12px 18px;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 10px 14px; font-size: 14px; }
.btn-primary {
  color: #071425;
  background: linear-gradient(135deg, var(--accent), #ffe58a);
  box-shadow: 0 12px 28px rgba(255, 212, 0, 0.28);
}
.btn-primary:hover { box-shadow: 0 14px 34px rgba(255, 212, 0, 0.42); }
.btn-ghost {
  color: var(--text);
  border-color: rgba(0, 217, 255, 0.42);
  background: rgba(0, 217, 255, 0.08);
}
.btn-ghost:hover { box-shadow: 0 14px 34px rgba(0, 217, 255, 0.22); }
.btn-outline {
  color: var(--text);
  border-color: rgba(0, 217, 255, 0.35);
  background: rgba(255,255,255,0.03);
}
.btn-outline:hover { box-shadow: 0 0 24px rgba(0,217,255,.2); }

.hero { overflow: hidden; padding-top: 78px; }
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 56px;
  align-items: center;
}
.hero-brand { margin-bottom: 24px; }
.hero-logo {
  max-width: 340px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 24px rgba(0, 190, 255, 0.35));
}
h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.08;
}
.lead {
  margin: 0;
  color: var(--muted);
  max-width: 660px;
  font-size: clamp(1rem, 1.9vw, 1.18rem);
}
.hero-badges {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}
.hero-badges span {
  display: block;
  border-radius: 10px;
  padding: 9px 12px;
  border: 1px solid rgba(0, 217, 255, 0.18);
  background: rgba(0, 217, 255, 0.07);
  color: #c4f4ff;
  font-weight: 700;
}
.hero-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}
.device-orbit {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(0, 210, 255, 0.16);
  box-shadow: 0 0 60px rgba(0, 210, 255, 0.14);
  animation: slowSpin 14s linear infinite;
}
.device-orbit::before,
.device-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #00d9ff;
  box-shadow: 0 0 18px rgba(0, 217, 255, 0.9);
}
.device-orbit::before {
  width: 10px;
  height: 10px;
  top: 12%;
  right: 18%;
}
.device-orbit::after {
  width: 12px;
  height: 12px;
  left: 15%;
  bottom: 22%;
  background: #ffd400;
  box-shadow: 0 0 18px rgba(255, 212, 0, 0.9);
}

.laptop-mockup {
  position: absolute;
  width: 520px;
  height: 330px;
  left: 0;
  top: 80px;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(9, 18, 38, 0.96), rgba(3, 8, 18, 0.98));
  border: 1px solid rgba(0, 217, 255, 0.25);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.5),
    0 0 40px rgba(0, 217, 255, 0.16);
  transform: rotateY(-12deg) rotateX(4deg);
  overflow: hidden;
  animation: deviceFloat 5.5s ease-in-out infinite;
}
.laptop-topbar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.laptop-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
}
.laptop-topbar span:nth-child(1) { background: #ff5f57; }
.laptop-topbar span:nth-child(2) { background: #ffbd2e; }
.laptop-topbar span:nth-child(3) { background: #28c840; }
.dashboard-screen { padding: 18px; }
.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  margin-bottom: 18px;
}
.dashboard-header span { color: rgba(255,255,255,0.72); }
.dashboard-header strong {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 217, 255, 0.12);
  color: #00d9ff;
  font-size: 12px;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.mini-stat {
  border: 1px solid rgba(0, 217, 255, 0.16);
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 12px;
}
.mini-stat span {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  margin-bottom: 6px;
}
.mini-stat strong { color: #fff; font-size: 22px; }
.flow-line {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  border-radius: 14px;
  padding: 8px 12px;
  margin-bottom: 10px;
  background: rgba(0, 217, 255, 0.06);
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  position: relative;
  overflow: hidden;
}
.flow-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.16), transparent);
  transform: translateX(-100%);
  animation: scanLine 3s ease-in-out infinite;
}
.flow-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: #00d9ff;
  box-shadow: 0 0 16px rgba(0,217,255,.9);
}
.animated-chart {
  height: 72px;
  display: flex;
  align-items: flex-end;
  gap: 9px;
  margin-top: 12px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255,255,255,0.035);
}
.animated-chart span {
  flex: 1;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, #00d9ff, #006dff);
  box-shadow: 0 0 14px rgba(0, 217, 255, 0.4);
  animation: barPulse 2.8s ease-in-out infinite;
}
.animated-chart span:nth-child(2) { animation-delay: .2s; }
.animated-chart span:nth-child(3) { animation-delay: .4s; }
.animated-chart span:nth-child(4) { animation-delay: .6s; }
.animated-chart span:nth-child(5) { animation-delay: .8s; }

.phone-mockup {
  position: absolute;
  width: 230px;
  height: 455px;
  right: 20px;
  bottom: 30px;
  border-radius: 38px;
  padding: 12px;
  background: linear-gradient(145deg, rgba(20, 30, 54, 1), rgba(3, 7, 16, 1));
  border: 1px solid rgba(0, 217, 255, 0.28);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.55),
    0 0 36px rgba(0, 217, 255, 0.24);
  transform: rotateY(13deg) rotateX(3deg);
  animation: phoneFloat 4.8s ease-in-out infinite;
  z-index: 3;
}
.phone-speaker {
  width: 68px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  margin: 5px auto 12px;
}
.phone-screen {
  height: calc(100% - 24px);
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(0, 217, 255, 0.12), transparent 42%),
    rgba(5, 10, 22, 0.94);
  padding: 14px;
  overflow: hidden;
}
.bot-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.bot-avatar {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, #00d9ff, #006dff);
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 0 18px rgba(0,217,255,.4);
}
.bot-header strong { display: block; color: #fff; font-size: 13px; }
.bot-header small { color: #00d9ff; font-size: 11px; }
.chat-bubble {
  max-width: 92%;
  border-radius: 16px;
  padding: 10px 11px;
  font-size: 12px;
  line-height: 1.35;
  margin-bottom: 10px;
  animation: messagePop 4s ease-in-out infinite;
}
.bot-bubble { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.82); }
.user-bubble {
  margin-left: auto;
  background: linear-gradient(135deg, rgba(0,217,255,0.9), rgba(0,109,255,0.9));
  color: #fff;
}
.bot-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 18px;
}
.bot-actions span {
  border-radius: 12px;
  padding: 9px 7px;
  text-align: center;
  background: rgba(0, 217, 255, 0.08);
  color: #bdefff;
  font-size: 11px;
  border: 1px solid rgba(0, 217, 255, 0.14);
}

.floating-card {
  position: absolute;
  z-index: 4;
  min-width: 175px;
  border-radius: 18px;
  padding: 13px 15px;
  background: rgba(5, 13, 29, 0.78);
  border: 1px solid rgba(0, 217, 255, 0.22);
  backdrop-filter: blur(14px);
  box-shadow:
    0 20px 50px rgba(0,0,0,.35),
    0 0 24px rgba(0,217,255,.12);
  animation: floatingCard 5s ease-in-out infinite;
}
.floating-card span {
  display: block;
  color: rgba(255,255,255,.55);
  font-size: 12px;
  margin-bottom: 4px;
}
.floating-card strong { color: #fff; font-size: 13px; }
.floating-card-1 { top: 55px; right: 40px; }
.floating-card-2 { left: 15px; bottom: 120px; animation-delay: .7s; }
.floating-card-3 { right: 8px; bottom: 0; animation-delay: 1.2s; }

.section-title {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}
.section-lead { color: var(--muted); margin: 0 0 14px; }
.section-note { margin-top: 16px; color: var(--text); }

.cards { display: grid; gap: 14px; }
.cards.six { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.cards.four { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.cards.three { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card {
  border-radius: 16px;
  border: 1px solid rgba(33, 56, 95, 0.9);
  background: linear-gradient(155deg, rgba(16, 27, 51, 0.94), rgba(8, 13, 24, 0.94));
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 217, 255, 0.5);
  box-shadow: 0 16px 30px rgba(0,0,0,.38);
}
.card h3 { margin: 0 0 8px; color: var(--neon); font-size: 1.06rem; }
.card p { margin: 0 0 8px; color: var(--muted); }

.process-flow-section .section-heading span {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,217,255,.3);
  background: rgba(0,217,255,.08);
  color: #9defff;
  font-size: 13px;
  margin-bottom: 8px;
}
.process-flow-section .section-heading h2 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
}
.process-flow-section .section-heading p { margin: 0; color: var(--muted); }

.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.process-flow::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, rgba(0,217,255,0.1), rgba(0,217,255,0.8), rgba(255,212,0,0.65), rgba(0,217,255,0.1));
  box-shadow: 0 0 20px rgba(0,217,255,0.35);
  z-index: 0;
  animation: flowGlow 3s ease-in-out infinite;
}
.process-step {
  position: relative;
  z-index: 1;
  border-radius: 22px;
  padding: 22px;
  background: rgba(5, 13, 29, 0.72);
  border: 1px solid rgba(0,217,255,0.16);
  backdrop-filter: blur(14px);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.process-step:hover {
  transform: translateY(-8px);
  border-color: rgba(0,217,255,0.45);
  box-shadow: 0 20px 50px rgba(0,0,0,.35), 0 0 30px rgba(0,217,255,.16);
}
.process-step h3 { margin: 0 0 8px; }
.process-step p { margin: 0; color: var(--muted); font-size: .94rem; }
.step-number {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,217,255,.18), rgba(0,109,255,.16));
  color: #00d9ff;
  border: 1px solid rgba(0,217,255,.25);
  font-weight: 800;
  margin-bottom: 16px;
}

.accordion { display: grid; gap: 10px; }
.acc-item {
  border: 1px solid rgba(33, 56, 95, 0.9);
  border-radius: 14px;
  background: rgba(11, 19, 38, 0.85);
  overflow: hidden;
}
.acc-trigger {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 16px;
  cursor: pointer;
  position: relative;
}
.acc-trigger::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.2rem;
}
.acc-item.open .acc-trigger::after { content: "−"; }
.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.acc-content p {
  margin: 0;
  padding: 12px 16px 14px;
  color: var(--muted);
}
.acc-content p + p { padding-top: 0; }

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tags span {
  display: inline-block;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(92, 167, 255, 0.12);
  border: 1px solid rgba(92, 167, 255, 0.32);
  color: #d4e5ff;
  font-weight: 600;
  font-size: 0.92rem;
}

.feature-list { margin: 0; padding-left: 18px; color: var(--muted); }
.feature-list li { margin-bottom: 5px; }
.small-note { color: #8fa7c7; font-size: 0.92rem; }

.support-note {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 211, 79, 0.3);
  background: rgba(255, 211, 79, 0.08);
}

.cta-box {
  border: 1px solid rgba(33, 56, 95, 0.9);
  border-radius: 18px;
  padding: 24px;
  background: linear-gradient(145deg, rgba(0, 217, 255, 0.13), rgba(255, 211, 79, 0.09));
}
.cta-box h2 { margin: 0 0 8px; font-size: clamp(1.35rem, 2.8vw, 2rem); }
.cta-box p { margin: 0 0 14px; color: var(--muted); }

.site-footer {
  padding: 34px 0 24px;
  border-top: 1px solid rgba(33, 56, 95, 0.8);
  background: rgba(5, 9, 20, 0.95);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.footer-logo {
  width: min(220px, 80%);
  height: auto;
  filter: drop-shadow(0 0 14px rgba(0, 217, 255, 0.2));
}
.footer-grid p { margin: 6px 0; color: var(--muted); }
.footer-grid a { color: var(--text); text-decoration: none; }
.footer-grid a:hover { color: var(--neon); }
.copyright {
  margin: 10px 0 0;
  text-align: center;
  color: #7f96b5;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .62s ease, transform .62s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes orbitRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes logoFloat { 0%, 100% { transform: translateY(0) scale(1);} 50% { transform: translateY(-8px) scale(1.02);} }
@keyframes preloaderPulse { 0%, 100% { transform: scale(.96); opacity:.65;} 50% { transform: scale(1.04); opacity:1;} }
@keyframes gradientShift { from { transform: translate3d(0,0,0) scale(1);} to { transform: translate3d(2%, -1%, 0) scale(1.05);} }
@keyframes slowSpin { from { transform: rotate(0deg);} to { transform: rotate(360deg);} }
@keyframes deviceFloat { 0%,100% { transform: rotateY(-12deg) rotateX(4deg) translateY(0);} 50% { transform: rotateY(-10deg) rotateX(5deg) translateY(-14px);} }
@keyframes phoneFloat { 0%,100% { transform: rotateY(13deg) rotateX(3deg) translateY(0);} 50% { transform: rotateY(10deg) rotateX(4deg) translateY(-18px);} }
@keyframes floatingCard { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-14px);} }
@keyframes scanLine { 0% { transform: translateX(-100%);} 55%,100% { transform: translateX(100%);} }
@keyframes barPulse { 0%,100% { opacity:.72; transform: scaleY(.92);} 50% { opacity:1; transform: scaleY(1.06);} }
@keyframes messagePop { 0%,100% { transform: translateY(0); opacity:.88;} 50% { transform: translateY(-3px); opacity:1;} }
@keyframes flowGlow { 0%,100% { opacity:.55; filter: blur(0);} 50% { opacity:1; filter: blur(.4px);} }

@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { min-height: 560px; margin-top: 20px; }
}
@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    right: 4vw;
    top: 68px;
    min-width: 220px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(8, 13, 25, 0.96);
  }
  .site-nav.open { display: flex; }
  .menu-toggle { display: inline-block; }
  .header-inner > .btn-outline { display: none; }
  .process-flow { grid-template-columns: 1fr; }
  .process-flow::before {
    top: 0;
    bottom: 0;
    left: 22px;
    right: auto;
    width: 2px;
    height: auto;
  }
}
@media (max-width: 768px) {
  .site-logo { height: 40px; }
  .hero-logo { max-width: 250px; }
  .hero-actions .btn { width: 100%; }
  .preloader-orbit { width: 310px; height: 310px; }
  .site-preloader::before { width: 360px; height: 360px; }
  .preloader-text { font-size: 11px; text-align: center; padding: 0 20px; }
  .hero-visual {
    min-height: 520px;
    transform: scale(.86);
    transform-origin: center top;
    margin-bottom: -40px;
  }
  .laptop-mockup {
    width: 430px;
    height: 300px;
    left: 50%;
    transform: translateX(-55%) rotateY(-8deg) rotateX(4deg);
  }
  .phone-mockup {
    right: 50%;
    transform: translateX(75%) rotateY(10deg) rotateX(3deg);
  }
  .floating-card { min-width: 150px; font-size: 11px; }
}
@media (max-width: 700px) {
  .section { padding: 52px 0; }
  .hero { padding-top: 56px; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .hero-visual {
    transform: scale(.72);
    min-height: 470px;
    margin-bottom: -90px;
  }
}
