/* =========================================
   MEGA DATABASE CLEANUP – LANDING PAGE CSS
   ========================================= */

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #00d4ff;
  --secondary: #7b2ff7;
  --accent-green: #00e676;
  --accent-orange: #ff6b35;
  --accent-yellow: #ffd740;
  --bg-base: #07071a;
  --bg-card: #0d0d28;
  --bg-card2: #10102e;
  --border: rgba(255, 255, 255, 0.07);
  --text: #e8eaf6;
  --text-muted: #7e8db8;
  --font-main: 'Inter', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 40px rgba(0, 212, 255, 0.06);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-base);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* ─── Scrollbar ─── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 6px;
}

/* ─── Typography ─── */
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Container ─── */
.container {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* Primary — Gradient + shimmer */
.btn-primary {
  background: linear-gradient(135deg, #00c8f0, #7b2ff7 60%, #00c8f0);
  background-size: 200% auto;
  color: #fff;
  box-shadow:
    0 4px 20px rgba(0, 212, 255, 0.3),
    0 0 0 1px rgba(0, 212, 255, 0.15) inset;
  animation: btnShimmer 3s linear infinite;
}

@keyframes btnShimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: rgba(255, 255, 255, 0.18);
  transform: skewX(-20deg);
  animation: btnGlare 3s ease-in-out infinite;
}

@keyframes btnGlare {

  0%,
  70%,
  100% {
    left: -75%;
    opacity: 0;
  }

  20% {
    left: 130%;
    opacity: 1;
  }
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 10px 36px rgba(0, 212, 255, 0.45),
    0 0 0 1px rgba(0, 212, 255, 0.3) inset;
  filter: brightness(1.08);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.99);
}

/* Ghost */
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(0, 212, 255, 0.35);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.1);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid rgba(0, 212, 255, 0.5);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(0, 212, 255, 0.08);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.15);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn-xl {
  padding: 14px 32px;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  border-radius: 14px;
  min-height: 62px;
}

/* WP Download Button — special two-line text style */
.btn-wp {
  padding: 10px 28px;
  gap: 12px;
  border-radius: 14px;
  align-items: center;
  box-shadow:
    0 6px 28px rgba(0, 212, 255, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.btn-wp svg {
  flex-shrink: 0;
}

.btn-text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
  text-align: left;
}

.btn-sup {
  font-size: 0.65rem;
  font-weight: 500;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.btn-main {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* Nav Download button — compact glow */
#navDownloadBtn {
  padding: 9px 22px;
  font-size: 0.88rem;
  box-shadow: 0 3px 16px rgba(0, 212, 255, 0.3);
}

/* ─── Section Base ─── */
.section {
  padding-block: 100px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(7, 7, 26, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-container {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}

.logo-accent {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
  top: -100px;
  left: -150px;
  animation: float1 8s ease-in-out infinite;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(123, 47, 247, 0.25) 0%, transparent 70%);
  top: 0;
  right: -200px;
  animation: float2 10s ease-in-out infinite;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.15) 0%, transparent 70%);
  bottom: 0;
  left: 40%;
  animation: float1 12s ease-in-out infinite reverse;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

@keyframes float1 {

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

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

@keyframes float2 {

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

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

.hero-container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(min-content, 0.8fr);
  align-items: center;
  gap: 40px;
  padding-block: 80px;
}

.hero-content {
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 50px;
  padding: 7px 16px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  max-width: 800px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-val {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ─── DB Card ─── */
.hero-visual {
  flex-shrink: 0;
  perspective: 1200px;
  display: flex;
  justify-content: flex-end;
  z-index: 2;
}

.db-card {
  background: linear-gradient(145deg, var(--bg-card), #0a0a22);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: var(--radius);
  padding: 24px;
  width: 300px;
  box-shadow:
    0 0 0 1px rgba(0, 212, 255, 0.05),
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(0, 212, 255, 0.05);
  animation: cardFloat 6s ease-in-out infinite;
  backdrop-filter: blur(20px);
}

@keyframes cardFloat {

  0%,
  100% {
    transform: translateY(0) rotateX(2deg) rotateY(-3deg);
  }

  50% {
    transform: translateY(-12px) rotateX(-1deg) rotateY(2deg);
  }
}

.db-card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.db-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.db-dot.red {
  background: #ff5f57;
}

.db-dot.yellow {
  background: #ffbd2e;
}

.db-dot.green {
  background: #28c840;
}

.db-card-header span {
  margin-left: 4px;
}

.health-score-ring {
  position: relative;
  width: 120px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.score-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.score-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.score-pct {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}

.score-label small {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.db-metrics {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.metric-name {
  color: var(--text-muted);
}

.metric-val {
  font-weight: 700;
  font-size: 0.9rem;
}

.metric-val.danger {
  color: #ff5252;
}

.metric-val.warning {
  color: var(--accent-yellow);
}

.metric-val.success {
  color: var(--accent-green);
}

.db-card-btn {
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.db-card-btn:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

/* ========================================
   FEATURES
   ======================================== */
.features {
  background: linear-gradient(180deg, var(--bg-base) 0%, #09091f 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.04), rgba(123, 47, 247, 0.04));
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: rgba(0, 212, 255, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 212, 255, 0.1);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card.featured {
  grid-column: span 2;
  background: linear-gradient(145deg, rgba(0, 212, 255, 0.06), rgba(123, 47, 247, 0.06));
  border-color: rgba(0, 212, 255, 0.2);
}

.feature-icon-wrap {
  margin-bottom: 16px;
  display: inline-block;
}

.feature-icon {
  width: 44px;
  height: 44px;
}

.feature-new-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 3px 10px;
  border-radius: 50px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how {
  background: #09091f;
}

.steps-container {
  max-width: 800px;
  margin-inline: auto;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.step:hover {
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateX(4px);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  min-width: 60px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.step-connector {
  display: flex;
  justify-content: center;
  padding: 4px 0;
}

.connector-line {
  width: 2px;
  height: 80px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.connector-line::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to bottom,
      transparent 0px,
      transparent 4px,
      currentColor 4px,
      currentColor 10px);
}

.connector-line-1 {
  color: #00d4ff;
  background: linear-gradient(180deg, #00d4ff, #7b2ff7);
  -webkit-mask: repeating-linear-gradient(to bottom,
      black 0px,
      black 6px,
      transparent 6px,
      transparent 10px);
  mask: repeating-linear-gradient(to bottom,
      black 0px,
      black 6px,
      transparent 6px,
      transparent 10px);
}

.connector-line-2 {
  background: linear-gradient(180deg, #7b2ff7, #00e676);
  -webkit-mask: repeating-linear-gradient(to bottom,
      black 0px,
      black 6px,
      transparent 6px,
      transparent 10px);
  mask: repeating-linear-gradient(to bottom,
      black 0px,
      black 6px,
      transparent 6px,
      transparent 10px);
}

/* Scan visual */
.step-visual {
  flex-shrink: 0;
}

.scan-visual {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 140px;
}

.scan-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: 4px;
  animation: scanAnim 2s ease-in-out infinite;
}

@keyframes scanAnim {

  0%,
  100% {
    width: 20%;
  }

  50% {
    width: 100%;
  }
}

.scan-result-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.scan-line {
  display: block;
  height: 10px;
  border-radius: 4px;
  animation: scanPulse 1.5s ease-in-out infinite;
}

.scan-line:nth-child(2) {
  animation-delay: 0.15s;
}

.scan-line:nth-child(3) {
  animation-delay: 0.3s;
}

.scan-line:nth-child(4) {
  animation-delay: 0.45s;
}

.scan-line:nth-child(5) {
  animation-delay: 0.6s;
}

.sl-danger {
  background: rgba(255, 82, 82, 0.3);
  border-left: 3px solid #ff5252;
  width: 90%;
}

.sl-warn {
  background: rgba(255, 215, 64, 0.2);
  border-left: 3px solid #ffd740;
  width: 75%;
}

.sl-ok {
  background: rgba(0, 230, 118, 0.15);
  border-left: 3px solid #00e676;
  width: 60%;
}

@keyframes scanPulse {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

/* Preview visual */
.preview-visual {
  width: 180px;
}

.preview-table {
  background: #0a0a22;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  font-size: 0.72rem;
}

.pt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 10px;
  border-bottom: 1px solid var(--border);
}

.pt-header {
  background: rgba(0, 212, 255, 0.05);
  color: var(--text-muted);
}

.pt-del {
  opacity: 0.9;
}

.pt-keep {
  opacity: 0.9;
}

.tag-del {
  background: rgba(255, 82, 82, 0.15);
  color: #ff5252;
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 700;
}

.tag-keep {
  background: rgba(0, 230, 118, 0.15);
  color: #00e676;
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 700;
}

/* Clean visual */
.clean-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.clean-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: cleanBounce 2s ease-in-out infinite;
}

.clean-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-green);
  letter-spacing: 0.05em;
}

@keyframes cleanBounce {

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

  50% {
    transform: scale(1.06);
  }
}

/* ========================================
   MODULES
   ======================================== */
.modules {
  background: var(--bg-base);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: var(--transition);
}

.module-card:hover {
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.module-icon {
  display: inline-flex;
}

.module-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.module-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.module-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(123, 47, 247, 0.15));
  border: 1px solid rgba(0, 212, 255, 0.25);
  color: var(--primary);
  padding: 3px 8px;
  border-radius: 50px;
}

/* ========================================
   WHY
   ======================================== */
.why {
  background: #09091f;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-content .section-tag {
  display: inline-block;
}

.why-content .section-title {
  text-align: left;
  margin-bottom: 32px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.why-check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.why-list strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.why-list span {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.why-list code {
  font-size: 0.78rem;
  background: rgba(0, 212, 255, 0.1);
  color: var(--primary);
  padding: 1px 6px;
  border-radius: 4px;
}

/* Comparison Card */
.comparison-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.comp-header {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 28px;
  color: var(--text-muted);
}

.comp-bar-group {
  margin-bottom: 24px;
}

.comp-bar-group label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.comp-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.comp-bar {
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  transition: width 1s ease;
}

.before-bar {
  background: rgba(255, 82, 82, 0.15);
  border-left: 3px solid #ff5252;
  color: #ff5252;
}

.after-bar {
  background: rgba(0, 230, 118, 0.12);
  border-left: 3px solid #00e676;
  color: #00e676;
}

.comp-legend {
  display: flex;
  gap: 20px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 16px;
}

.leg-before {
  color: #ff5252;
}

.leg-after {
  color: #00e676;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
  background: var(--bg-base);
}

.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: rgba(0, 212, 255, 0.25);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-main);
  font-size: 0.97rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.faq-q:hover {
  color: var(--primary);
}

.faq-arrow {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--text-muted);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-a {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 24px 20px;
}

/* ========================================
   CHANGELOG
   ======================================== */
.changelog {
  background: #09091f;
}

.timeline {
  max-width: 760px;
  margin-inline: auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--secondary), transparent);
}

.tl-item {
  position: relative;
  padding-left: 56px;
  margin-bottom: 40px;
}

.tl-dot {
  position: absolute;
  left: 12px;
  top: 16px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--secondary);
  transition: var(--transition);
}

.tl-dot.latest {
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.5);
}

.tl-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: var(--transition);
}

.tl-card:hover {
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateX(4px);
}

.tl-version {
  margin-bottom: 14px;
}

.tl-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--bg-base);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 5px 12px;
  border-radius: 50px;
}

.tl-badge.latest-badge {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(123, 47, 247, 0.1));
  border-color: rgba(0, 212, 255, 0.3);
  color: var(--primary);
}

.tl-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tl-card li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.tl-card li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.75rem;
}

/* ========================================
   CTA
   ======================================== */
.cta-section {
  background: var(--bg-base);
}

.cta-box {
  position: relative;
  background: linear-gradient(145deg, var(--bg-card), #0a0a25);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 24px;
  padding: 80px 48px;
  text-align: center;
  overflow: hidden;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.cta-orb1 {
  width: 400px;
  height: 400px;
  background: rgba(0, 212, 255, 0.08);
  top: -150px;
  left: -100px;
}

.cta-orb2 {
  width: 400px;
  height: 400px;
  background: rgba(123, 47, 247, 0.08);
  bottom: -150px;
  right: -100px;
}

.cta-content {
  position: relative;
}

.cta-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-box p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cta-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0 !important;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #040413;
  border-top: 1px solid var(--border);
  padding-block: 60px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 320px;
}

.footer-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.footer-meta span {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: 6px;
}

.footer-links-col h3 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--primary);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ========================================
   RESPONSIVE – Tablet (≤1024px)
   ======================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-block: 60px;
  }

  .hero-visual {
    display: none;
  }

  .hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .hero-subtitle {
    margin-inline: auto;
  }

  .hero-badge {
    display: inline-flex;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-content .section-title {
    text-align: center;
  }

  .why-content .section-tag {
    display: block;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .feature-card.featured {
    grid-column: span 1;
  }
}

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

  /* Section padding */
  .section {
    padding-block: 60px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  /* Nav */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(7, 7, 26, 0.97);
    backdrop-filter: blur(24px);
    padding: 20px 24px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }

  .nav-links.open li a {
    font-size: 1rem;
    color: var(--text);
  }

  .nav-links.open+.nav-cta {
    display: none;
  }

  /* Hero */
  .hero {
    padding-top: 80px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-block: 48px 56px;
    gap: 0;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 6px 13px;
    margin-bottom: 18px;
  }

  .hero-title {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
    margin-bottom: 14px;
  }

  .hero-subtitle {
    font-size: 0.97rem;
    margin-inline: auto;
    margin-bottom: 28px;
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
    gap: 12px;
    flex-direction: column;
    align-items: center;
    margin-bottom: 36px;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    align-items: center;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature-card.featured {
    grid-column: span 1;
  }

  .feature-card {
    padding: 22px;
  }

  /* Steps – How It Works */
  .step {
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 22px 20px;
  }

  .step-visual {
    display: none;
  }

  .step-num {
    font-size: 2rem;
    min-width: 48px;
  }

  .steps-container {
    max-width: 100%;
  }

  .connector-line {
    height: 48px;
  }

  /* Modules */
  .modules-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .module-card {
    padding: 20px;
  }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .why-content .section-title {
    text-align: center;
    font-size: 1.6rem;
  }

  .why-content .section-tag {
    display: block;
    text-align: center;
  }

  .why-list {
    gap: 16px;
  }

  .comparison-card {
    padding: 24px;
  }

  /* FAQ */
  .faq-q {
    font-size: 0.9rem;
    padding: 16px 18px;
  }

  .faq-a {
    font-size: 0.88rem;
    padding-inline: 18px;
  }

  .faq-item.open .faq-a {
    padding: 0 18px 16px;
  }

  /* Changelog */
  .timeline::before {
    left: 14px;
  }

  .tl-item {
    padding-left: 42px;
  }

  .tl-dot {
    left: 6px;
    width: 16px;
    height: 16px;
  }

  .tl-card {
    padding: 18px 20px;
  }

  /* CTA */
  .cta-box {
    padding: 48px 20px;
    border-radius: 16px;
  }

  .cta-box h2 {
    font-size: 1.6rem;
  }

  .cta-box p {
    font-size: 0.95rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 340px;
    justify-content: center;
    white-space: nowrap;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-meta {
    gap: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* ========================================
   RESPONSIVE – Small Mobile (≤480px)
   ======================================== */
@media (max-width: 480px) {
  .section {
    padding-block: 48px;
  }

  .container {
    padding-inline: 16px;
  }

  /* Hero */
  .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
    letter-spacing: -0.01em;
  }

  .hero-badge {
    font-size: 0.68rem;
  }

  .stat-val {
    font-size: 1.1rem;
  }

  /* Section headings */
  .section-title {
    font-size: clamp(1.5rem, 6vw, 1.9rem) !important;
  }

  .section-desc {
    font-size: 0.93rem;
  }

  /* Feature cards */
  .feature-card {
    padding: 18px;
  }

  .feature-icon {
    width: 38px;
    height: 38px;
  }

  .feature-card h3 {
    font-size: 1rem;
  }

  .feature-new-tag {
    font-size: 0.58rem;
    padding: 2px 8px;
  }

  /* Steps */
  .step {
    padding: 18px 16px;
    gap: 12px;
  }

  .step-num {
    font-size: 1.75rem;
    min-width: 42px;
  }

  .step-content h3 {
    font-size: 1rem;
  }

  .step-content p {
    font-size: 0.85rem;
  }

  /* Modules */
  .module-card {
    padding: 16px;
  }

  .module-badge {
    font-size: 0.55rem;
    padding: 2px 7px;
  }

  /* Why list */
  .why-check {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }

  .why-list strong {
    font-size: 0.88rem;
  }

  .why-list span {
    font-size: 0.83rem;
  }

  /* FAQ */
  .faq-q {
    font-size: 0.85rem;
    padding: 14px 16px;
    gap: 10px;
  }

  /* Changelog */
  .tl-card {
    padding: 14px 16px;
  }

  .tl-badge {
    font-size: 0.72rem;
  }

  .tl-card li {
    font-size: 0.82rem;
  }

  /* CTA */
  .cta-box {
    padding: 36px 16px;
  }

  .cta-box h2 {
    font-size: 1.4rem;
  }

  /* Footer */
  .footer {
    padding-block: 40px 24px;
  }

  .footer-grid {
    gap: 22px;
  }

  .footer-links-col h3 {
    margin-bottom: 10px;
  }

  .footer-links-col ul {
    gap: 8px;
  }

  .logo-text {
    font-size: 1rem;
  }
}

/* ========================================
   RESPONSIVE – Very Small (≤360px)
   ======================================== */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.65rem;
  }

  .btn-lg {
    padding: 12px 20px;
    font-size: 0.92rem;
  }

  .nav-container {
    padding-inline: 16px;
  }

  .hero-actions .btn {
    max-width: 280px;
  }
}

/* ─── Legal Pages ─── */
.legal-hero {
  position: relative;
  padding-top: 140px;
  padding-bottom: 80px;
  text-align: center;
  background: var(--bg-base);
  overflow: hidden;
}

.legal-container {
  max-width: 800px;
  margin-inline: auto;
  padding: 60px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  margin-block: 50px;
  position: relative;
  z-index: 2;
}

.legal-container::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text);
  margin-top: 40px;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.legal-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.legal-content ul {
  margin-bottom: 24px;
  padding-left: 20px;
}

.legal-content li {
  color: var(--text-muted);
  margin-bottom: 10px;
  list-style: disc;
  line-height: 1.6;
}

.legal-content strong {
  color: var(--primary);
}

.last-updated {
  font-family: var(--font-main);
  font-size: 0.8rem;
  color: var(--primary);
  opacity: 0.6;
  margin-bottom: 20px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .legal-hero {
    padding-top: 120px;
  }

  .legal-container {
    padding: 40px 20px;
    margin: 20px;
  }

  .legal-content h2 {
    font-size: 1.5rem;
  }
}