/* THEME: ORGANIC NEO-BRUTALISM + CYBERPUNK DARK UI */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;700;800&family=Space+Grotesk:wght@300;400;600&family=Syne:wght@400;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");

:root {
  /* Dark Backgrounds */
  --bg-dark: #0a0a0a;
  --bg-dark-50: #1a1a1a;
  --bg-dark-100: #0f0f0f;
  --bg-dark-200: #141414;
  --bg-dark-300: #111;

  /* Neon Accents */
  --accent-lime: #ccff00;
  --accent-lime-light: #d1ff0f;
  --accent-cyan: #00ffff;
  --accent-magenta: #ff00ff;
  --accent-purple: #9d00ff;
  --accent-pink: #ff006e;

  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-tertiary: rgba(255, 255, 255, 0.5);

  /* Card Backgrounds */
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-bg-hover: rgba(255, 255, 255, 0.05);

  /* Fonts */
  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-ui: "Space Grotesk", sans-serif;
  --font-logo: "Syne", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-ui);
  overflow-x: hidden;
  margin: 0;
  cursor: none; /* Hide default cursor */
}

/* Tablet toggle button - hidden by default, shown only on mobile */
.tablet-toggle-btn {
  display: none;
}

@media (max-width: 768px) {
  body {
    cursor: auto !important;
  }
  .cursor-dot,
  .cursor-outline {
    display: none !important;
  }

  /* Full width layout for mobile */
  .container-wide {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px !important;
  }

  /* Hero section - full width, no grid */
  .hero .container-wide {
    display: block !important;
    width: 100% !important;
  }

  /* Telegram tablet - smaller, positioned top right */
  .telegram-tablet-wrapper {
    position: fixed !important;
    right: 5px !important;
    top: 80px !important;
    margin: 0 !important;
    z-index: 1000 !important;
    transition: transform 0.3s ease !important;
  }

  .telegram-tablet-wrapper.hidden {
    transform: translateX(calc(100% + 10px)) !important;
  }

  .telegram-tablet {
    width: 250px !important;
    max-width: 250px !important;
    height: 350px !important;
    transform: none !important;
    animation: none !important;
  }

  /* Toggle button for tablet */
  .tablet-toggle-btn {
    display: flex !important;
    position: fixed !important;
    right: 10px !important;
    top: 450px !important;
    z-index: 1001 !important;
    background: var(--accent-lime) !important;
    color: #000 !important;
    border: none !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px !important;
    cursor: pointer !important;
    box-shadow: 0 4px 12px rgba(204, 255, 0, 0.4) !important;
    transition: all 0.3s ease !important;
  }

  .tablet-toggle-btn:active {
    transform: scale(0.95) !important;
  }

  /* Hero text - FULL WIDTH */
  .hero-text {
    width: 100% !important;
    max-width: 100% !important;
    padding-right: 0 !important;
    margin-right: 0 !important;
  }

  h1.hero-title {
    font-size: 2rem !important;
    line-height: 1.1 !important;
  }

  .hero-desc {
    font-size: 0.95rem !important;
  }

  .hero-features {
    width: 100% !important;
  }

  .hero-feature-item {
    width: 100% !important;
  }

  /* All sections - FULL WIDTH (except footer) */
  section:not(.footer) {
    width: 100% !important;
  }

  /* All grids - FULL WIDTH */
  .ticker-grid,
  .steps-grid,
  .features-grid,
  .price-grid,
  .faq-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    width: 100% !important;
  }

  /* Navigation */
  .top-nav {
    padding: 12px 15px !important;
  }

  .nav-links {
    display: none !important;
  }

  .nav-right {
    display: flex !important;
    gap: 8px !important;
  }

  .nav-contact-icon {
    display: none !important; /* Hide contact icons on mobile */
  }

  /* Show support bell on mobile */
  #support-bell-btn {
    display: flex !important;
  }

  .logo {
    font-size: 1.2rem !important;
  }

  .btn-nav-action {
    display: block !important;
    padding: 10px 16px !important;
    font-size: 0.75rem !important;
    white-space: nowrap !important;
  }
}

h1,
h2,
h3 {
  margin: 0;
}

/* PARTICLE CANVAS */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* CUSTOM CURSOR */
.cursor-dot {
  width: 10px;
  height: 10px;
  background: var(--accent-lime);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    transform 0.15s ease,
    opacity 0.3s ease;
  box-shadow: 0 0 10px rgba(204, 255, 0, 0.6);
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid var(--accent-lime);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease;
  opacity: 0.6;
}

/* SVG Icon Styles */
.hero-feature-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.icon-white {
  color: #ffffff;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.icon-lime {
  color: #ffffff;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.icon-cyan {
  color: #ffffff;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.icon-magenta {
  color: #ffffff;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.icon-pink {
  color: #ffffff;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.icon-glow {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.icon-glow-strong {
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 1));
}

.cursor-dot.hover {
  transform: translate(-50%, -50%) scale(1.5);
}

.cursor-outline.hover {
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 1;
}

.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  z-index: 900;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Top Navigation (Landing) */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 15px 50px;
  background: rgba(10, 10, 10, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.logo {
  font-family: var(--font-logo);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.5px;
}
.accent {
  color: var(--accent-lime-light);
}

.system-status-small {
  font-size: 0.65rem;
  color: var(--accent-lime);
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0.8;
  margin-left: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-self: center;
}
.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 28px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.nav-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(204, 255, 0, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.nav-links a:hover::before {
  left: 100%;
}

.nav-links a:hover {
  color: var(--accent-lime);
  background: linear-gradient(
    135deg,
    rgba(204, 255, 0, 0.1) 0%,
    rgba(204, 255, 0, 0.05) 100%
  );
  border-color: var(--accent-lime);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204, 255, 0, 0.2);
}

.nav-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.nav-contact-icon .material-icons {
  font-size: 18px;
  color: #fff;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.nav-contact-icon:hover {
  background: rgba(204, 255, 0, 0.1);
  border-color: var(--accent-lime);
  transform: translateY(-2px);
}

.nav-contact-icon:hover .material-icons {
  filter: drop-shadow(0 0 12px rgba(204, 255, 0, 0.8));
  color: var(--accent-lime);
}

.system-status {
  font-size: 0.75rem;
  color: var(--accent-lime);
  display: flex;
  align-items: center;
  gap: 6px;
}
.status-dot {
  width: 5px;
  height: 5px;
  background: var(--accent-lime);
  border-radius: 50%;
  box-shadow: 0 0 5px var(--accent-lime);
}

.btn-nav-action {
  background: var(--accent-lime);
  color: #000;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-nav-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(204, 255, 0, 0.4);
}

/* CONTAINER */
.container-wide {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

/* SECTIONS */
.section-block {
  padding: 60px 0;
  border-top: none;
}
.section-title {
  font-family: var(--font-display);
  font-size: 3rem;
  margin-bottom: 60px;
  text-transform: uppercase;
}

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

.hero .container-wide {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-tag {
  background: var(--accent-lime);
  color: #000;
  display: inline-block;
  padding: 6px 14px;
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: 4px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.hero-tag.section-tag {
  margin-bottom: 20px;
}

h1.hero-title {
  font-family: var(--font-display);
  font-size: 5.5rem;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 30px;
  letter-spacing: -2px;
}
h1.hero-title .highlight {
  color: var(--accent-lime);
}

.hero-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.5;
}

.btn-primary {
  background: var(--accent-lime);
  color: #000;
  font-family: var(--font-ui);
  font-weight: 800;
  padding: 18px 36px;
  font-size: 0.9rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(204, 255, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 18px 36px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s;
  text-transform: uppercase;
}
.btn-secondary:hover {
  border-color: #fff;
}

/* Push buttons to bottom in pricing cards */
.price-card .btn-primary,
.price-card .btn-secondary {
  margin-top: auto;
  margin-left: 0;
}

/* HERO FEATURES LIST */
.hero-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.hero-feature-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(204, 255, 0, 0.2);
  transform: translateX(5px);
}

.hero-feature-item .material-icons {
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-text h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #fff;
}

.feature-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* VISUAL WRAPPER (Robot) */
.visual-wrapper {
  position: relative;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* =========================================
   GLASS SECTION HEADERS
   ========================================= */

.section-header-glass {
  position: relative;
  padding: 40px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  margin-bottom: 60px;
  text-align: center;
  overflow: hidden;
  transition: all 0.4s ease;
}

.section-header-glass:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(204, 255, 0, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

/* Ensure tag overlaps properly or sits inside */
.section-header-glass .hero-tag {
  margin-bottom: 24px;
  background: var(--accent-lime);
  color: #000;
  box-shadow: 0 0 20px rgba(204, 255, 0, 0.4);
}

.section-header-glass .section-title {
  margin-bottom: 12px;
}

.section-header-glass .section-desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-secondary);
}

/* =========================================
   LANGUAGE TOGGLE
   ========================================= */

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  margin-right: 20px;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.lang-option {
  color: var(--text-tertiary);
  transition: color 0.3s;
}

.lang-option.active {
  color: var(--accent-lime);
  text-shadow: 0 0 10px rgba(204, 255, 0, 0.5);
}

.lang-separator {
  color: var(--text-tertiary);
  opacity: 0.5;
}

.chat-terminal {
  width: 100%;
  max-width: 500px;
  background: #000;
  border: 1px solid rgba(204, 255, 0, 0.2);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(204, 255, 0, 0.05);
}

.blob-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--accent-lime);
  filter: blur(120px);
  opacity: 0.1;
  z-index: -1;
  right: -50px;
}

.terminal-header {
  background: #111;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.term-dots {
  display: flex;
  gap: 6px;
}
.term-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #333;
}

.term-title {
  font-size: 0.7rem;
  font-family: var(--font-ui);
  color: #666;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}

.terminal-body {
  height: 350px;
  padding: 25px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.message {
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  max-width: 85%;
  line-height: 1.4;
  opacity: 0;
  animation: msgIn 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes msgIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.message.user,
.message.client {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.message.agent {
  align-self: flex-end;
  background: rgba(204, 255, 0, 0.05);
  color: var(--accent-lime);
  border: 1px solid rgba(204, 255, 0, 0.2);
  text-align: right;
}

.message.system {
  align-self: center;
  font-size: 0.75rem;
  color: var(--accent-lime);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 10px;
  background: transparent !important;
  border: 1px dashed rgba(204, 255, 0, 0.3) !important;
}

/* FEATURES TICKER */
.features-ticker {
  padding: 40px 0;
  border-top: none;
  background: #000;
}
.ticker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  justify-items: center;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}
.feature-item .icon {
  font-size: 1.5rem;
  color: #ffffff;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}
.feature-item h3 {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 4px;
  font-weight: 700;
}
.feature-item p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0;
}

/* DASHBOARD STYLES (Appended) */
.dashboard-layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  background: #0f0f0f;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 25px;
  display: flex;
  flex-direction: column;
  position: fixed;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 1100;
}

.sidebar-logo {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 50px;
  color: #fff;
  letter-spacing: -0.5px;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 12px 0;
  font-weight: 600;
  transition: 0.2s;
}
.menu-item:hover,
.menu-item.active {
  color: var(--accent-lime);
}

.resource-widget {
  margin-top: auto;
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 12px;
}
.res-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: #888;
}
.res-val {
  color: #fff;
  font-weight: 700;
}
.btn-mini-add {
  background: var(--accent-lime);
  color: #000;
  border: none;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-content {
  margin-left: 320px;
  flex-grow: 1;
  padding: 60px;
  min-height: 100vh;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.dash-title {
  font-size: 2rem;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.form-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  max-width: 800px;
}

.form-group {
  margin-bottom: 25px;
}
.form-label {
  display: block;
  color: var(--text-secondary);
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.input-dark {
  width: 100%;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px;
  color: #fff;
  border-radius: 8px;
  font-family: var(--font-ui);
  font-size: 1rem;
}
.input-dark:focus {
  outline: none;
  border-color: var(--accent-lime);
}

.toggle-group {
  display: flex;
  gap: 20px;
  background: #0a0a0a;
  padding: 5px;
  border-radius: 10px;
  display: inline-flex;
}
.toggle-opt {
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  color: #666;
  transition: 0.2s;
}
.toggle-opt.active {
  background: #222;
  color: #fff;
}

textarea.input-dark {
  resize: vertical;
  min-height: 100px;
}

/* HOW IT WORKS / STEPS (Architectural Flow) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.step-card {
  background: #0f0f0f; /* Darker bg per image */
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05); /* Subtle border */
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.step-card:hover {
  background: #141414;
  border-color: rgba(204, 255, 0, 0.2);
  transform: translateY(-5px);
}
.node-tag {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--accent-lime);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #fff;
  text-transform: uppercase;
}
.step-card p {
  font-size: 1rem;
  color: #888;
  line-height: 1.6;
}

.step-details {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.step-details p {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 12px;
}

.step-details strong {
  color: var(--accent-lime);
  font-weight: 700;
}

.step-details ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.step-details li {
  font-size: 0.85rem;
  color: #aaa;
  padding: 6px 0 6px 20px;
  position: relative;
  line-height: 1.5;
}

.step-details li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-lime);
  font-weight: bold;
}

/* CASES SECTION - NEW DESIGN */
.section-desc {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Mobile: horizontal scroll for cases */
@media (max-width: 768px) {
  .cases-grid {
    display: flex !important;
    overflow-x: auto !important;
    gap: 20px !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 20px !important;
  }

  .case-card {
    min-width: 300px !important;
    flex-shrink: 0 !important;
    scroll-snap-align: center !important;
  }
}

.case-card {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 35px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.case-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-lime),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s;
}

.case-card:hover {
  transform: translateY(-8px);
  border-color: rgba(204, 255, 0, 0.3);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(204, 255, 0, 0.1);
}

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

/* Featured Case */
.featured-case {
  border: 2px solid var(--accent-lime);
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  transform: scale(1.02);
}

.featured-label {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-lime);
  color: #000;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
}

/* Case Badges */
.case-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.crypto-badge {
  background: rgba(255, 193, 7, 0.15);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.estate-badge {
  background: rgba(0, 255, 255, 0.15);
  color: #00ffff;
  border: 1px solid rgba(0, 255, 255, 0.3);
}

.info-badge {
  background: rgba(156, 39, 176, 0.15);
  color: #ce93d8;
  border: 1px solid rgba(156, 39, 176, 0.3);
}

/* Case Content */
.case-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.case-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 30px;
}

/* Metrics */
.case-metrics {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 25px;
}

.metric-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.metric-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.metric-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-lime);
}

.metric-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-lime), #d1ff0f);
  border-radius: 10px;
  transition: width 1s ease;
}

.estate-fill {
  background: linear-gradient(90deg, #00ffff, #00ced1);
}

.info-fill {
  background: linear-gradient(90deg, #ce93d8, #ab47bc);
}

/* Case Result */
.case-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.result-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.result-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-lime);
}

.highlighted-result {
  background: rgba(204, 255, 0, 0.1);
  border-color: rgba(204, 255, 0, 0.3);
}

/* Case Footer */
.case-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.case-period,
.case-budget {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* PRICING (Restoring Base Styles) */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 20px;
  align-items: center;
}
.price-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 450px;
}

.price-card:hover {
  border-color: rgba(204, 255, 0, 0.3);
  box-shadow: 0 0 30px rgba(204, 255, 0, 0.15);
}

.price-card:hover .card-header {
  color: var(--accent-lime);
  text-shadow: 0 0 10px rgba(204, 255, 0, 0.3);
}

.price-card:hover .btn-secondary {
  border-color: var(--accent-lime);
  box-shadow: 0 0 20px rgba(204, 255, 0, 0.2);
  color: var(--accent-lime);
}
.highlight-card {
  background: #111;
  border: 2px solid var(--accent-lime);
  transform: scale(1.05);
  z-index: 5;
}
.hit-badge {
  background: var(--accent-lime);
  color: #000;
  display: inline-block;
  padding: 4px 12px;
  font-weight: 700;
  font-size: 0.7rem;
  border-radius: 10px;
  margin-bottom: 15px;
}
.card-header {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
}
.price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 30px;
}
.features-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 30px;
}
.features-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
}

/* MODAL SYSTEM */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: none; /* Controlled by JS */
  align-items: center;
  justify-content: center;
}
.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 90%;
  max-width: 450px;
  padding: 40px;
  border-radius: 24px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.tab-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
}
.tab-btn.active {
  color: var(--accent-lime);
  border-bottom-color: var(--accent-lime);
}

.auth-form {
  display: none;
}
.auth-form.active {
  display: block;
}

.auth-helper {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 20px;
  cursor: pointer;
}
.full-width {
  width: 100%;
}

/* MATERIAL ICONS UTILITIES */
.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  color: #ffffff;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.material-icons.md-18 {
  font-size: 18px;
}
.material-icons.md-24 {
  font-size: 24px;
}
.material-icons.md-32 {
  font-size: 32px;
}
.material-icons.md-36 {
  font-size: 36px;
}
.material-icons.md-48 {
  font-size: 48px;
}

/* Icon Colors */
.icon-lime {
  color: #ffffff;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}
.icon-cyan {
  color: #ffffff;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}
.icon-magenta {
  color: #ffffff;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}
.icon-purple {
  color: #ffffff;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}
.icon-pink {
  color: #ffffff;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}
.icon-white {
  color: #ffffff;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}
.icon-gray {
  color: #ffffff;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

/* Icon with Glow Effect */
.icon-glow {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}
.icon-glow-strong {
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 1));
}

/* Step Number Badge */
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(204, 255, 0, 0.1);
  margin-bottom: 20px;
  line-height: 1;
}

/* FAQ SECTION */
/* FAQ Search */
.faq-search-wrapper {
  max-width: 900px;
  margin: 0 auto 40px;
}

.faq-search-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 18px 24px;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 1rem;
  transition: all 0.3s;
}

.faq-search-input:focus {
  outline: none;
  border-color: var(--accent-lime);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 20px rgba(204, 255, 0, 0.15);
}

.faq-search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .faq-container {
    grid-template-columns: 1fr;
  }
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.3s;
}

.faq-item:hover {
  border-color: rgba(204, 255, 0, 0.2);
}

.faq-question {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.faq-question h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--accent-lime);
  font-weight: 300;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease-out,
    padding 0.3s ease-out;
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 30px 25px 30px;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* FOOTER */
.footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 0 10px 0; /* Reduced bottom padding */
  margin-top: 60px; /* Matched section spacing reduction */
}

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

.footer-col h4 {
  font-size: 0.9rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: inline-block;
  position: relative;
}

.footer-links a:hover {
  color: var(--accent-lime);
  padding-left: 5px;
  text-shadow: 0 0 10px rgba(204, 255, 0, 0.4);
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 15px;
}

.footer-desc {
  color: #999;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--accent-lime);
  font-weight: 700;
}

.footer-status .status-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-lime);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* ... existing styles ... */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05); /* Keeping border as per structure or maybe user wants it gone? Screenshot showed text. I'll keep just padding tuning */
  padding-top: 20px;
  display: flex;
  flex-direction: column; /* Stack them for better control if needed, or keep row? Screenshot implies centered text. */
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: var(--text-tertiary);
  font-size: 0.8rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.footer-tech {
  color: var(--text-tertiary);
  font-family: var(--font-ui);
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

/* LEAD MARKETPLACE */
.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Mobile: horizontal scroll for marketplace */
@media (max-width: 768px) {
  .marketplace-grid {
    display: flex !important;
    overflow-x: auto !important;
    gap: 20px !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 20px !important;
  }

  .marketplace-card {
    min-width: 280px !important;
    flex-shrink: 0 !important;
    scroll-snap-align: center !important;
  }
}

.marketplace-card {
  background: var(--bg-dark-100);
  border: 2px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.marketplace-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.1);
}

.hot-card {
  border-color: rgba(255, 0, 110, 0.3);
}

.hot-card:hover {
  border-color: rgba(255, 0, 110, 0.5);
  box-shadow: 0 0 40px rgba(255, 0, 110, 0.2);
}

.warm-card {
  border-color: rgba(0, 255, 255, 0.3);
}

.warm-card:hover {
  border-color: rgba(0, 255, 255, 0.5);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.2);
}

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hot-badge {
  background: rgba(255, 0, 110, 0.15);
  color: var(--accent-pink);
  border: 1px solid rgba(255, 0, 110, 0.3);
}

.warm-badge {
  background: rgba(0, 255, 255, 0.15);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 255, 255, 0.3);
}

.marketplace-icon {
  margin: 20px 0;
}

.marketplace-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.marketplace-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 30px;
  min-height: 60px;
}

.marketplace-features {
  text-align: left;
  margin-bottom: 30px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.marketplace-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
}

.price-label {
  font-size: 0.9rem;
  color: var(--text-tertiary);
}

.price-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
}

.price-unit {
  font-size: 0.9rem;
  color: var(--text-tertiary);
}

.price-discount {
  background: var(--accent-lime);
  color: #000;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-left: 10px;
}

/* CUSTOM CURSOR STYLES */
body,
html {
  cursor: none !important;
}

a,
button,
input,
textarea,
select,
.btn-primary,
.btn-secondary,
.glass-card {
  cursor: none !important;
}

.cursor-dot {
  width: 10px;
  height: 10px;
  background: var(--accent-lime);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 2147483647;
  transform: translate(-50%, -50%);
  transition:
    transform 0.08s linear,
    opacity 0.3s ease;
  box-shadow: 0 0 10px rgba(204, 255, 0, 0.8);
  mix-blend-mode: exclusion;
  top: 0;
  left: 0;
}

.cursor-dot.hover {
  transform: translate(-50%, -50%) scale(1.5);
  background: var(--accent-lime);
  opacity: 0.5;
  border: none;
  backdrop-filter: none;
  box-shadow: 0 0 15px rgba(204, 255, 0, 0.4);
}

/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ======================================== */
