:root {
  --bg: #020611;
  --bg-soft: #061121;
  --bg-elev: #0b1930;
  --card: #0c1b32;
  --card-2: #102645;
  --muted: #a9c4e8;
  --text: #f4fbff;
  --text-soft: #d8e9fb;
  --brand: #17bfff;
  --brand-strong: #69d9ff;
  --brand-deep: #0a4d97;
  --brand-accent: #eaf8ff;
  --line: rgba(116, 204, 255, 0.16);
  --line-strong: rgba(116, 204, 255, 0.28);
  --shadow: 0 20px 55px rgba(0, 0, 0, 0.48);
  --shadow-soft: 0 14px 35px rgba(0, 0, 0, 0.3);
  --radius: 22px;
  --ok: #35d6a2;
  --warn: #ffd166;
  --danger: #ff6f91;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  background:
    radial-gradient(
      circle at top left,
      rgba(23, 191, 255, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 85% 10%,
      rgba(105, 217, 255, 0.05),
      transparent 25%
    ),
    linear-gradient(180deg, #01050d 0%, #04101d 34%, #071624 100%);
  color: var(--text);
  min-height: 100vh;
}

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

img,
video {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1380px, 94%);
  margin: 0 auto;
}

.muted {
  color: var(--muted);
  line-height: 1.75;
}

.hidden {
  display: none !important;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(120, 220, 255, 0.025),
      transparent 16%,
      transparent 84%,
      rgba(120, 220, 255, 0.018)
    ),
    radial-gradient(
      circle at 50% -10%,
      rgba(23, 191, 255, 0.12),
      transparent 28%
    );
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.95rem 1.3rem;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: rgba(105, 217, 255, 0.05);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    color 0.28s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(105, 217, 255, 0.42);
}

.btn.primary {
  background: linear-gradient(
    135deg,
    rgba(105, 217, 255, 0.98),
    rgba(0, 93, 255, 0.96)
  );
  color: #02111f;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(23, 191, 255, 0.32);
}

.btn.primary:hover {
  box-shadow: 0 16px 36px rgba(23, 191, 255, 0.42);
}

.btn.ghost {
  background: rgba(120, 220, 255, 0.025);
}

.btn.full {
  width: 100%;
}

.badge,
.kicker-chip,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.46rem 0.9rem;
  border: 1px solid rgba(244, 241, 232, 0.12);
  background: rgba(120, 220, 255, 0.055);
  color: #eef9ff;
  border-radius: 999px;
  font-size: 0.84rem;
}

.eyebrow {
  box-shadow: inset 0 0 0 1px rgba(127, 180, 255, 0.06);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 8, 18, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 78px;
  gap: 1rem;
}

.brand {
  font-weight: 900;
  letter-spacing: 0.3px;
  font-size: 1.06rem;
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  display: block;
  width: auto;
  height: 100px;
  max-width: none;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: #dff2ff;
  padding: 0.72rem 0.92rem;
  border-radius: 12px;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(105, 217, 255, 0.1);
  color: #f8fdff;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 72px;
  border-bottom: 1px solid var(--line);
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  top: -180px;
  left: -120px;
  background: radial-gradient(
    circle,
    rgba(23, 191, 255, 0.20) 0%,
    rgba(23, 191, 255, 0.08) 34%,
    transparent 70%
  );
  filter: blur(14px);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(2, 6, 14, 0.72) 0%,
      rgba(2, 6, 14, 0.48) 38%,
      rgba(2, 6, 14, 0.28) 60%,
      rgba(2, 6, 14, 0.62) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.10) 0%,
      rgba(0, 0, 0, 0.22) 100%
    );
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #050b14;
}

.hero-bg-video,
.hero-bg-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg-video {
  filter: saturate(0.95) brightness(0.62) contrast(1.08);
  transform: scale(1.03);
}

.hero-bg-fallback {
  filter: saturate(0.78) brightness(0.34) contrast(1.05);
  z-index: -1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(2.6rem, 4.6vw, 5.4rem);
  line-height: 1;
  margin: 0.8rem 0 1.2rem;
  max-width: 13ch;
  letter-spacing: -0.03em;
}

.hero p {
  font-size: 1.08rem;
  color: #d9efff;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero-note {
  margin-top: 1rem;
  color: #b7d9ff;
  font-size: 0.96rem;
}

.hero-card,
.card {
  background: linear-gradient(
    180deg,
    rgba(120, 220, 255, 0.08),
    rgba(120, 220, 255, 0.035)
  );
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.35rem;
  position: relative;
  overflow: hidden;
}

.hero-card::before,
.glow-panel::before {
  content: "";
  position: absolute;
  inset: auto -20% 70% auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(105, 217, 255, 0.24),
    transparent 66%
  );
  filter: blur(8px);
  pointer-events: none;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.45rem;
}

.stat {
  padding: 1rem 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(5, 16, 31, 0.76);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.stat b {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  color: #f8fdff;
}

.panel {
  padding: 1.45rem;
}

.section {
  padding: 78px 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(120, 220, 255, 0.045),
    transparent
  );
}

.section:nth-of-type(odd):not(.hero) {
  background: rgba(120, 220, 255, 0.022);
}

.section h2 {
  font-size: 2.1rem;
  margin: 0 0 0.8rem;
  letter-spacing: -0.02em;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 1.4rem;
  align-items: end;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.section-head p {
  max-width: 62ch;
  margin: 0;
}

.page-hero {
  padding: 66px 0 34px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(120, 220, 255, 0.035),
    rgba(120, 220, 255, 0.016)
  );
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -10%;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(23, 191, 255, 0.16),
    transparent 68%
  );
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 3.2vw, 3.4rem);
  margin: 0.55rem 0 0.95rem;
  max-width: 14ch;
  line-height: 1.05;
}

.kicker {
  color: #8fe9ff;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.glow-title {
  position: relative;
  color: var(--brand-strong);
  text-shadow:
    0 0 8px rgba(105, 217, 255, 0.44),
    0 0 18px rgba(105, 217, 255, 0.24),
    0 0 32px rgba(127, 180, 255, 0.12);
}

.glow-word {
  color: var(--text);
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.18),
    0 0 24px rgba(127, 180, 255, 0.14);
}

.glow-wrap {
  position: relative;
  display: inline-block;
}

.glow-wrap::before {
  content: "";
  position: absolute;
  inset: -22px -26px;
  background: radial-gradient(
    circle,
    rgba(105, 217, 255, 0.24),
    rgba(23, 191, 255, 0.12) 36%,
    transparent 74%
  );
  filter: blur(18px);
  z-index: -1;
  pointer-events: none;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.4rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature,
.service-card,
.portfolio-card,
.price-card,
.faq-item,
.review {
  padding: 1.4rem;
  position: relative;
  overflow: hidden;
}

.feature::after,
.service-card::after,
.price-card::after,
.portfolio-card::after,
.faq-item::after,
.panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(105, 217, 255, 0.32),
    transparent
  );
  opacity: 0.55;
}

.feature h3,
.service-card h3,
.price-card h3,
.portfolio-card h3 {
  margin: 0.6rem 0 0.45rem;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1rem 0 0;
  color: #d8ecff;
}

.price {
  font-size: 1.55rem;
  font-weight: 900;
  color: #f4fbff;
  margin: 0.75rem 0 1rem;
}

.list {
  padding-left: 1.15rem;
  color: #bfd8f2;
  line-height: 1.7;
}

.list li {
  margin: 0.5rem 0;
}

.cta-strip {
  padding: 1.4rem 1.45rem;
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  align-items: center;
}

.timeline {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.timeline .step {
  padding: 1rem 1.05rem;
  border-left: 3px solid rgba(23, 191, 255, 0.95);
  background: rgba(105, 217, 255, 0.05);
  border-radius: 0 16px 16px 0;
  color: #eef9ff;
}

.portfolio-thumb {
  aspect-ratio: 16/10;
  border-radius: 18px;
  background: linear-gradient(135deg, #0f3d78, #071626);
  border: 1px solid var(--line);
  padding: 1rem;
  display: grid;
  place-items: center;
  color: #dff4ff;
  font-weight: 800;
}

.mini-browser {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: #edf8ff;
  color: #102035;
  padding: 0.8rem;
  overflow: hidden;
}

.mini-browser .bar {
  height: 10px;
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #bddcff;
}

.mini-browser .hero-line {
  height: 28px;
  width: 70%;
  background: #d9efff;
  border-radius: 8px;
  margin-bottom: 8px;
}

.mini-browser .line {
  height: 12px;
  background: #eff8ff;
  border-radius: 8px;
  margin: 6px 0;
}

.mini-browser .line.small {
  width: 70%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.58rem;
  margin-bottom: 1rem;
}

.field label {
  font-weight: 700;
  color: #eef8ff;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 1rem 1rem;
  border-radius: 14px;
  background: #071321;
  color: var(--text);
  border: 1px solid rgba(244, 241, 232, 0.12);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(105, 217, 255, 0.34);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(23, 191, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(127, 180, 255, 0.1);
  background: #081829;
}

.field textarea {
  min-height: 170px;
  resize: vertical;
}

.field input[type="checkbox"] {
  min-height: auto;
  width: auto;
  transform: translateY(2px);
  accent-color: var(--brand);
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.25rem;
}

.option-grid label {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 1rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(120, 220, 255, 0.035);
  line-height: 1.5;
  transition:
    border-color 0.22s ease,
    transform 0.22s ease,
    background 0.22s ease;
}

.option-grid label:hover {
  transform: translateY(-2px);
  border-color: rgba(105, 217, 255, 0.34);
  background: rgba(120, 220, 255, 0.045);
}

.consent-line {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding-top: 0.25rem;
}

.notice {
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(23, 191, 255, 0.16);
  border: 1px solid rgba(105, 217, 255, 0.22);
  color: #e7f8ff;
}

.success {
  background: rgba(53, 214, 162, 0.14);
  border-color: rgba(53, 214, 162, 0.3);
}

.warning {
  background: rgba(255, 209, 102, 0.14);
  border-color: rgba(255, 209, 102, 0.28);
}

.danger {
  background: rgba(255, 111, 145, 0.14);
  border-color: rgba(255, 111, 145, 0.28);
}

.table-wrap {
  overflow-x: auto;
  overflow-y: visible;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 0.95rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.table th {
  color: #eaf6ff;
}

.status {
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-block;
}

.status.new {
  background: rgba(23, 191, 255, 0.18);
  color: #eaf8ff;
}

.status.inprogress {
  background: rgba(223, 177, 92, 0.18);
  color: #fff8de;
}

.status.sent {
  background: rgba(63, 176, 124, 0.18);
  color: #dcfff2;
}

.status.closed {
  background: rgba(120, 220, 255, 0.11);
  color: #eef9ff;
}

.auth-wrap {
  max-width: 520px;
  margin: 0 auto;
}

.footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  margin-top: 30px;
  background: rgba(120, 220, 255, 0.018);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1.5rem;
}

.footer a {
  color: #d5edff;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease,
    filter 0.75s ease;
  filter: blur(6px);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
  filter: none;
}

.reveal-left {
  transform: translateX(-30px);
}

.reveal-right {
  transform: translateX(30px);
}

.zoom-in {
  transform: scale(0.96);
  opacity: 0;
}

.fade-up {
  transform: translateY(40px);
  opacity: 0;
}

.reveal.in-view.reveal-left,
.reveal.in-view.reveal-right,
.reveal.in-view.zoom-in,
.reveal.in-view.fade-up {
  transform: none;
  opacity: 1;
  filter: none;
}

.page-transition {
  animation: pageIn 0.5s ease both;
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    text-shadow:
      0 0 8px rgba(105, 217, 255, 0.42),
      0 0 18px rgba(127, 180, 255, 0.16),
      0 0 32px rgba(127, 180, 255, 0.1);
  }
  50% {
    text-shadow:
      0 0 12px rgba(127, 180, 255, 0.38),
      0 0 26px rgba(105, 217, 255, 0.32),
      0 0 42px rgba(127, 180, 255, 0.14);
  }
}

.hero .glow-title {
  animation: pulseGlow 4.2s ease-in-out infinite;
}

.hero-card {
  animation: floatCard 6s ease-in-out infinite;
}

.nav-admin-link {
  min-height: 44px;
  padding: 0.72rem 1rem;
}

.admin-shell {
  position: relative;
}

.admin-hero {
  overflow: hidden;
}

.admin-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(23, 191, 255, 0.16), transparent 24%),
    radial-gradient(circle at 18% 22%, rgba(105, 217, 255, 0.12), transparent 24%);
  pointer-events: none;
}

.admin-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 1.6rem;
  align-items: start;
}

.admin-intro {
  max-width: 760px;
}

.admin-glass {
  position: relative;
  padding: 1.4rem;
  border: 1px solid rgba(116, 204, 255, 0.22);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(10, 21, 40, 0.88), rgba(7, 17, 34, 0.82));
  box-shadow: var(--shadow);
}

.admin-badge-row,
.admin-meta-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
}

.admin-meta-row {
  margin-top: 1.2rem;
}

.data-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(105, 217, 255, 0.06);
  color: var(--text-soft);
}

.admin-stack {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.admin-stack-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.admin-stack-item span {
  color: var(--muted);
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.metric-card {
  padding: 1.45rem;
}

.metric-label {
  display: inline-block;
  color: var(--muted);
  margin-bottom: 0.55rem;
}

.metric-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.65rem;
}

.admin-layout {
  display: block;
}

.admin-main,
.admin-side {
  width: 100%;
  min-width: 0;
}

.admin-main {
  display: grid;
  gap: 1.25rem;
}

.admin-side {
  margin-top: 1.25rem;
}

.admin-side-card,
.admin-table-card {
  width: 100%;
  min-width: 0;
  padding: 1.35rem;
}

.admin-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 24px 0;
  padding: 0;
  background: transparent;
  border: 0;
}

.admin-tabs .admin-tab {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(82, 191, 255, 0.22);
  background: linear-gradient(180deg, rgba(12, 31, 52, 0.96), rgba(7, 20, 36, 0.98));
  color: #dff6ff;
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 10px 25px rgba(0, 110, 255, 0.10);
}

.admin-tabs .admin-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(76, 216, 255, 0.46);
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.07),
    0 12px 28px rgba(0, 153, 255, 0.16),
    0 0 18px rgba(54, 201, 255, 0.10);
}

.admin-tabs .admin-tab.active {
  background: linear-gradient(135deg, #38d8ff 0%, #1c8fff 55%, #0c6dff 100%);
  color: #ffffff;
  border-color: rgba(100, 223, 255, 0.70);
  box-shadow:
    0 12px 30px rgba(0, 132, 255, 0.26),
    0 0 22px rgba(56, 216, 255, 0.20);
}

.admin-tabs .admin-tab:focus {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(56, 216, 255, 0.18),
    0 12px 30px rgba(0, 132, 255, 0.22);
}

.compact-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.compact-head .eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(88, 190, 255, 0.22);
  background: linear-gradient(180deg, rgba(16, 42, 68, 0.96), rgba(10, 26, 45, 0.98));
  color: #e6f8ff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 10px 24px rgba(0, 140, 255, 0.10);
}

.compact-head h3 {
  margin: 10px 0 0 0;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
}

.flow-list,
.admin-list {
  display: grid;
  gap: 0.85rem;
}

.flow-item {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  padding: 0.88rem 0.95rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(105, 217, 255, 0.04);
}

.flow-item strong {
  width: 1.5rem;
  color: var(--brand-strong);
}

.admin-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-soft);
}

.admin-list li::marker {
  color: var(--brand);
}

.admin-page .status {
  white-space: nowrap;
}

.brand span {
  color: #35d6ff;
  text-shadow: 0 0 14px rgba(53, 214, 255, 0.28);
}

.admin-table-form,
.admin-delete-form {
  display: grid;
  gap: 0.75rem;
  width: 100%;
}

.admin-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.messages-table {
  width: 100%;
  table-layout: fixed;
}

.messages-table th:nth-child(1),
.messages-table td:nth-child(1) {
  width: 90px;
}

.messages-table th:nth-child(2),
.messages-table td:nth-child(2) {
  width: 280px;
}

.messages-table th:nth-child(3),
.messages-table td:nth-child(3) {
  width: auto;
}

.messages-table th:nth-child(4),
.messages-table td:nth-child(4) {
  width: 170px;
}

.messages-table th:nth-child(5),
.messages-table td:nth-child(5) {
  width: 360px;
}

.messages-table th,
.messages-table td {
  word-break: break-word;
}

.message-actions-cell {
  width: 360px;
  min-width: 360px;
}

.inline-select-wrap,
.status-select,
.admin-table-form .btn,
.admin-delete-form .btn,
.reply-form .btn,
.reply-form .field input,
.reply-form .field textarea {
  width: 100%;
  min-width: 0;
}

.inline-select-wrap {
  display: block;
}

.admin-table-form .status {
  justify-self: start;
}

.select-wrap {
  position: relative;
  display: block;
  width: 100%;
}

.select-wrap::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 2px solid rgba(185, 232, 255, 0.92);
  border-bottom: 2px solid rgba(185, 232, 255, 0.92);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
  filter: drop-shadow(0 0 8px rgba(53, 214, 255, 0.2));
}

.field .custom-select,
.admin-page .field select,
.admin-table-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: block;
  width: 100%;
  min-width: 100%;
  min-height: 52px;
  padding: 0.95rem 3.25rem 0.95rem 1rem;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(11, 27, 44, 0.98), rgba(7, 19, 33, 0.98));
  background-color: #071321;
  color: #f4fbff;
  border: 1px solid rgba(82, 191, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 10px 25px rgba(0, 110, 255, 0.08);
}

.field .custom-select:hover,
.admin-page .field select:hover,
.admin-table-form select:hover {
  border-color: rgba(76, 216, 255, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 28px rgba(0, 153, 255, 0.12);
}

.field .custom-select:focus,
.admin-page .field select:focus,
.admin-table-form select:focus {
  border-color: rgba(53, 214, 255, 0.56);
  box-shadow:
    0 0 0 4px rgba(53, 214, 255, 0.10),
    0 14px 30px rgba(0, 132, 255, 0.12);
}

.admin-table-form select,
.admin-page .field select,
.field .custom-select {
  color: #f4fbff;
  background-color: #071321;
}

.admin-table-form select option,
.admin-page .field select option,
.field .custom-select option {
  background: #071321;
  color: #f4fbff;
}

.admin-table-form select option:checked,
.admin-page .field select option:checked,
.field .custom-select option:checked {
  background: #0f3d78;
  color: #ffffff;
}

.reply-box {
  width: 100%;
  margin-top: 0.9rem;
  border: 1px solid rgba(82, 191, 255, 0.14);
  border-radius: 18px;
  background: rgba(7, 19, 33, 0.72);
  overflow: hidden;
}

.reply-box summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem;
  font-weight: 700;
  color: #e7f8ff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.reply-box summary::after {
  content: "+";
  font-size: 1.15rem;
  color: #35d6ff;
}

.reply-box[open] summary::after {
  content: "–";
}

.reply-form {
  padding: 0 1rem 1rem;
}

.reply-form textarea {
  min-height: 340px;
  resize: vertical;
}

.statistics-panel {
  overflow: hidden;
}

.statistics-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem 0 1.25rem;
}

.stat-kpi,
.stats-detail-card,
.statistics-chart-card {
  border: 1px solid rgba(82, 191, 255, 0.16);
  background: linear-gradient(180deg, rgba(8, 24, 41, 0.88), rgba(5, 16, 29, 0.9));
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.stat-kpi {
  padding: 1.05rem;
}

.stat-kpi span,
.stat-kpi small {
  display: block;
  color: var(--muted);
}

.stat-kpi strong {
  display: block;
  margin: 0.45rem 0 0.35rem;
  color: #ffffff;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.statistics-chart-card {
  padding: 1.2rem;
  margin-bottom: 1.25rem;
}

.chart-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.chart-toolbar h4,
.stats-detail-card h4 {
  margin: 0.55rem 0 0;
  color: #ffffff;
}

.eyebrow.soft {
  background: rgba(53, 214, 255, 0.08);
}

.visit-chart-frame {
  position: relative;
  width: 100%;
  min-height: 320px;
  border-radius: 20px;
  border: 1px solid rgba(120, 220, 255, 0.1);
  background:
    radial-gradient(circle at 18% 5%, rgba(53, 214, 255, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(2, 13, 25, 0.45), rgba(2, 10, 20, 0.16));
  overflow: hidden;
}

.visits-chart {
  display: block;
  width: 100%;
  height: 320px;
}

.chart-grid-line {
  stroke: rgba(190, 235, 255, 0.11);
  stroke-width: 1;
  stroke-dasharray: 8 10;
}

.chart-area {
  fill: url(#visitAreaGradient);
}

.chart-line {
  fill: none;
  stroke: #35d6ff;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: url(#visitLineGlow);
}

.chart-dot {
  fill: #eaffff;
  stroke: #35d6ff;
  stroke-width: 2.5;
  filter: drop-shadow(0 0 8px rgba(53, 214, 255, 0.55));
}

.chart-label-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.stats-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
  gap: 1rem;
}

.stats-detail-card {
  padding: 1.1rem;
}

.compact-table-wrap {
  margin-top: 0.85rem;
}

.compact-table th,
.compact-table td {
  padding: 0.85rem;
}

.stats-info-card p:last-child {
  margin-bottom: 0;
}

.project-form-card {
  max-width: none;
}

.project-form-card form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.2rem;
}

.project-form-card .field {
  margin-bottom: 0;
}

.project-form-card .field.full {
  grid-column: 1 / -1;
}

.project-form-card .hero-actions {
  grid-column: 1 / -1;
  margin-top: 0.25rem;
}

.admin-header-links {
  justify-content: flex-end;
}

.btn.danger {
  background: linear-gradient(180deg, rgba(62, 17, 28, 0.98), rgba(42, 11, 20, 0.98));
  border-color: rgba(255, 92, 130, 0.26);
  color: #ffe8ee;
  box-shadow: 0 12px 28px rgba(160, 26, 69, 0.16);
}

.btn.danger:hover {
  border-color: rgba(255, 121, 154, 0.44);
  box-shadow: 0 16px 36px rgba(160, 26, 69, 0.24);
}

.site-header.card-nav-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0;
  background: rgba(2, 8, 18, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.site-header.card-nav-header .nav {
  position: relative;
  min-height: 78px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

@media (max-width: 1200px) {
  .messages-table {
    table-layout: auto;
  }

  .message-actions-cell {
    width: 320px;
    min-width: 320px;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .footer-grid,
  .form-grid,
  .option-grid,
  .admin-hero-grid,
  .admin-metrics {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    max-width: 15ch;
  }

  .page-hero h1 {
    max-width: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% - 2px);
    flex-direction: column;
    align-items: stretch;
    width: min(320px, 92vw);
    min-width: min(320px, 92vw);
    background: linear-gradient(180deg, rgba(7, 20, 35, 0.98), rgba(5, 14, 26, 0.98));
    border: 1px solid rgba(112, 200, 255, 0.16);
    padding: 0.75rem;
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
    z-index: 60;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a,
  .nav-links .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .menu-toggle {
    display: block;
    background: none;
    border: 1px solid var(--line);
    color: var(--text);
    padding: 0.68rem 0.9rem;
    border-radius: 12px;
  }

  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-head {
    align-items: flex-start;
  }

  .admin-main,
  .admin-side {
    gap: 0.9rem;
  }

  .admin-tabs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .admin-tabs .admin-tab {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .statistics-kpis,
  .stats-detail-grid {
    grid-template-columns: 1fr;
  }

  .chart-toolbar {
    flex-direction: column;
  }

  .project-form-card form {
    grid-template-columns: 1fr;
  }

  .message-actions-cell {
    width: 100%;
    min-width: 100%;
  }

  .brand img {
    height: 72px;
  }
}

@media (max-width: 760px) {
  .admin-page .container {
    width: min(100% - 18px, 1380px);
  }

  .admin-hero-grid {
    gap: 1rem;
  }

  .admin-table-card,
  .admin-side-card,
  .metric-card {
    padding: 1rem;
  }

  .compact-head {
    align-items: flex-start;
  }

  .compact-head .eyebrow {
    padding: 9px 14px;
    font-size: 13px;
  }

  .compact-head h3 {
    font-size: 21px;
  }

  .admin-page .table,
  .admin-page .table thead,
  .admin-page .table tbody,
  .admin-page .table th,
  .admin-page .table td,
  .admin-page .table tr {
    display: block;
    width: 100%;
  }

  .admin-page .table thead {
    display: none;
  }

  .admin-page .table tbody {
    display: grid;
    gap: 0.9rem;
  }

  .admin-page .table tr {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(120, 220, 255, 0.035);
    padding: 0.25rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  }

  .admin-page .table td {
    border: 0;
    padding: 0.8rem 0.85rem;
  }

  .admin-page .table td + td {
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .admin-page .table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.42rem;
    font-size: 0.76rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    font-weight: 800;
  }

  .admin-table-form,
  .admin-delete-form,
  .admin-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .reply-form {
    padding: 0 0.9rem 0.9rem;
  }

  .reply-form textarea {
    min-height: 240px;
  }

  .site-header.card-nav-header .nav {
    min-height: 68px;
  }

  .brand img {
    height: 60px;
  }

  .nav-links {
    width: min(100%, 92vw);
  }
}

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

  .hero {
    padding-top: 76px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .section {
    padding: 58px 0;
  }

  .panel,
  .feature,
  .service-card,
  .portfolio-card,
  .price-card,
  .faq-item {
    padding: 1.12rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .admin-page .section {
    padding: 46px 0;
  }

  .admin-page .btn,
  .admin-page .field input,
  .admin-page .field select,
  .admin-page .field textarea {
    font-size: 16px;
  }

  .brand img {
    height: 100px;
  }
}

.extras-panel h2 {
  margin: 0 0 0.8rem;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.4rem;
}

.extras-card {
  padding: 1.2rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(120, 220, 255, 0.035);
}

.extras-card h3 {
  margin-top: 0;
  margin-bottom: 0.9rem;
}

.extras-list {
  margin: 0;
}

.feature-accordion {
  width: 100%;
  margin-top: 1rem;
  border: 1px solid rgba(82, 191, 255, 0.14);
  border-radius: 18px;
  background: rgba(7, 19, 33, 0.72);
  overflow: hidden;
}

.feature-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.1rem;
  font-weight: 700;
  color: #e7f8ff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.feature-accordion summary::after {
  content: "+";
  font-size: 1.15rem;
  color: #35d6ff;
}

.feature-accordion[open] summary::after {
  content: "–";
}

.accordion-content {
  padding: 0 1rem 1rem;
}
@media (max-width: 760px) {
  .extras-grid {
    grid-template-columns: 1fr;
  }

  .extras-card {
    width: 100%;
    min-width: 0;
  }

  .extras-list {
    padding-left: 5rem;
  }

  .extras-list li {
    word-break: break-word;
  }
}

@media (max-width: 520px) {
  .brand img {
    height: 60px;
  }

  .nav {
    min-height: 68px;
  }

  .panel {
    padding: 1rem;
  }

  .extras-card {
    padding: 1rem;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 96px 0 56px;
  }

  .hero::after {
    background:
      linear-gradient(
        180deg,
        rgba(2, 6, 14, 0.84) 0%,
        rgba(2, 6, 14, 0.70) 45%,
        rgba(2, 6, 14, 0.88) 100%
      ),
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.16) 0%,
        rgba(0, 0, 0, 0.34) 100%
      );
  }

  .hero-bg-video {
    transform: scale(1.08);
  }
}





/* Home services showcase */
.services-showcase .panel {
  padding: 1.2rem;
}

.services-showcase .panel h3 {
  margin-bottom: 0.45rem;
  font-size: 1.28rem;
}

.services-showcase .panel .muted {
  font-size: 0.96rem;
  line-height: 1.55;
}

.services-showcase-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.showcase-service-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(120, 220, 255, 0.14);
  background: linear-gradient(
    135deg,
    rgba(7, 20, 38, 0.92),
    rgba(8, 26, 48, 0.78)
  );
  overflow: hidden;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.showcase-service-item::before {
  content: "";
  position: absolute;
  inset: -35% auto auto -8%;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(105, 217, 255, 0.16),
    rgba(105, 217, 255, 0.04) 45%,
    transparent 72%
  );
  filter: blur(10px);
  opacity: 0;
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
}

.showcase-service-item::after {
  content: "";
  position: absolute;
  inset: auto -10% -55% auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(77, 160, 255, 0.18),
    transparent 68%
  );
  filter: blur(16px);
  opacity: 0;
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
}

.showcase-service-item:hover {
  transform: translateY(-3px);
  border-color: rgba(143, 233, 255, 0.42);
  box-shadow:
    0 16px 32px rgba(2, 10, 24, 0.42),
    0 0 0 1px rgba(143, 233, 255, 0.14),
    0 0 24px rgba(105, 217, 255, 0.16);
  background: linear-gradient(
    135deg,
    rgba(9, 28, 50, 0.96),
    rgba(10, 34, 62, 0.88)
  );
}

.showcase-service-item:hover::before,
.showcase-service-item:hover::after {
  opacity: 1;
  transform: scale(1.04);
}

.showcase-service-copy,
.showcase-price {
  position: relative;
  z-index: 1;
}

.showcase-service-copy h4 {
  margin: 0 0 0.28rem;
  font-size: 1rem;
  color: #f7fcff;
}

.showcase-service-copy p {
  margin: 0;
  color: #d0e6f8;
  line-height: 1.55;
  font-size: 0.94rem;
}

.showcase-price {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0.7rem 0.95rem;
  border-radius: 14px;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: #ffffff;
  white-space: nowrap;
  background: linear-gradient(
    135deg,
    rgba(99, 221, 255, 0.24),
    rgba(42, 145, 255, 0.26)
  );
  border: 1px solid rgba(143, 233, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(143, 233, 255, 0.08),
    0 0 22px rgba(99, 221, 255, 0.14);
}

@media (max-width: 900px) {
  .showcase-service-item {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .showcase-price {
    justify-self: start;
    margin-top: 0.15rem;
  }
}

.footer-social {
  margin-top: 22px;
}

.footer-social-title {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.footer-instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 260px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  color: #eaf2ff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.footer-instagram-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.footer-instagram-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}

.footer-instagram-icon svg {
  width: 22px !important;
  height: 22px !important;
  display: block;
  flex-shrink: 0;
}

.footer-instagram-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.2;
}

.footer-instagram-text strong {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer-instagram-text small {
  font-size: 13px;
  color: #9fb2cc;
}

@media (max-width: 768px) {
  .footer-social {
    margin-top: 18px;
  }

  .footer-instagram-link {
    max-width: 100%;
    width: 100%;
    padding: 10px 12px;
    gap: 10px;
  }

  .footer-instagram-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
  }

  .footer-instagram-icon svg {
    width: 20px !important;
    height: 20px !important;
  }

  .footer-instagram-text strong {
    font-size: 14px;
  }

  .footer-instagram-text small {
    font-size: 12px;
  }
}
.stats-design-card {
  position: relative;
  min-height: 300px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 25%, rgba(0, 174, 255, 0.18), transparent 34%),
    radial-gradient(circle at 20% 80%, rgba(0, 255, 180, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(3, 18, 40, 0.96), rgba(1, 10, 24, 0.98));
  border: 1px solid rgba(90, 170, 255, 0.18);
  box-shadow: inset 0 0 40px rgba(80, 180, 255, 0.04);
}

.stats-design-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(130, 210, 255, 0.12) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.22;
  animation: gridMove 18s linear infinite;
}

.stats-design-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -45%;
  width: 45%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(130, 220, 255, 0.9), transparent);
  box-shadow: 0 0 14px rgba(130, 220, 255, 0.6);
  animation: scanLine 5s linear infinite;
}

.stats-orb {
  position: absolute;
  width: 150px;
  height: 150px;
  right: 68px;
  top: 58px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.7), transparent 9%),
    radial-gradient(circle, rgba(0, 183, 255, 0.55), rgba(0, 183, 255, 0.08) 58%, transparent 72%);
  filter: blur(0.2px);
  box-shadow:
    0 0 36px rgba(0, 183, 255, 0.35),
    0 0 90px rgba(0, 183, 255, 0.16);
  animation: orbFloat 7s ease-in-out infinite;
}

.stats-ring {
  position: absolute;
  width: 220px;
  height: 220px;
  right: 33px;
  top: 23px;
  border-radius: 50%;
  border: 1px solid rgba(130, 220, 255, 0.2);
  box-shadow: inset 0 0 20px rgba(130, 220, 255, 0.08);
  animation: ringPulse 4.5s ease-in-out infinite;
}

.stats-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(120, 220, 255, 0.9);
  box-shadow: 0 0 18px rgba(120, 220, 255, 0.8);
  animation: dotFloat 6s ease-in-out infinite;
}

.dot-1 {
  left: 18%;
  top: 28%;
}

.dot-2 {
  left: 34%;
  bottom: 24%;
  animation-delay: -2s;
}

.dot-3 {
  right: 18%;
  bottom: 25%;
  animation-delay: -4s;
}

.stats-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 32px;
  width: 100%;
  height: 150px;
  opacity: 0.78;
}

.stats-wave path {
  fill: none;
  stroke: rgba(110, 220, 255, 0.72);
  stroke-width: 3;
  stroke-linecap: round;
  filter: drop-shadow(0 0 10px rgba(110, 220, 255, 0.45));
  stroke-dasharray: 640;
  stroke-dashoffset: 640;
  animation: drawWave 4s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-14px) scale(1.04);
  }
}

@keyframes ringPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.9;
  }
}

@keyframes dotFloat {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.55;
  }
  50% {
    transform: translateY(-16px);
    opacity: 1;
  }
}

@keyframes drawWave {
  0% {
    stroke-dashoffset: 640;
    opacity: 0.25;
  }
  45%, 70% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -640;
    opacity: 0.25;
  }
}

@keyframes scanLine {
  0% {
    left: -45%;
  }
  100% {
    left: 120%;
  }
}

@keyframes gridMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-22px);
  }
}
