/* =========================================
   Walmeric Bot Audit — styles.css
   ========================================= */

/* RESET & BASE */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --dark:     #0e0e1a;
  --dark2:    #16162a;
  --purple:   #6b21c8;
  --orange:   #f97316;
  --orange-d: #ea6b0a;
  --text:     #ffffff;
  --muted:    rgba(255, 255, 255, 0.65);
  --dim:      rgba(255, 255, 255, 0.38);
  --border:   rgba(255, 255, 255, 0.1);
  --card:     rgba(255, 255, 255, 0.05);
  --card-h:   rgba(255, 255, 255, 0.09);

  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* =========================================
   NAV
   ========================================= */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  border-bottom: 0.5px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 14, 26, 0.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

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

.logo-icon {
  width: 34px;
  height: 34px;
  background: var(--orange);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-name {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
}

.logo-sub {
  font-size: 10px;
  color: var(--orange);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.nav-btn {
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.nav-btn:hover {
  background: var(--orange-d);
  transform: translateY(-1px);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  padding: 6rem 2rem 5rem;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0e0e1a 0%, #2d1055 55%, #0e0e1a 100%);
  z-index: 0;
}

.hero-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(107, 33, 200, 0.35) 0%, transparent 68%);
  z-index: 1;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.18), transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-orb.o1 { top: 10%; left: 4%; }
.hero-orb.o2 { bottom: 5%; right: 6%; }

.particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0%   { transform: translateY(100%) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-120px) scale(1.5); opacity: 0; }
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, 0.13);
  border: 0.5px solid rgba(249, 115, 22, 0.4);
  color: var(--orange);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

.pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 500;
  line-height: 1.15;
  max-width: 620px;
  margin: 0 auto 1.25rem;
  color: #fff;
  animation: fadeUp 0.7s ease both;
}

.hero h1 span {
  color: var(--orange);
}

.hero-p {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: fadeUp 0.7s 0.1s ease both;
}

.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s 0.2s ease both;
}

.btn-p {
  background: var(--orange);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-p:hover {
  background: var(--orange-d);
  transform: translateY(-1px);
}

.btn-s {
  background: transparent;
  color: #fff;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 999px;
  border: 0.5px solid var(--border);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.btn-s:hover {
  background: var(--card);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero-note {
  font-size: 13px;
  color: var(--dim);
  animation: fadeUp 0.7s 0.3s ease both;
}

.chips {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 2rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.4s ease both;
}

.chip {
  background: rgba(255, 255, 255, 0.06);
  border: 0.5px solid var(--border);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background 0.2s;
}

.chip:hover {
  background: rgba(255, 255, 255, 0.1);
}

.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* =========================================
   SECTIONS (shared)
   ========================================= */
.section {
  padding: 4.5rem 2rem;
  max-width: 860px;
  margin: 0 auto;
}

.slabel {
  font-size: 11px;
  color: var(--orange);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section h2 {
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.section-p {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.sep {
  border: none;
  border-top: 0.5px solid var(--border);
  max-width: 860px;
  margin: 0 auto;
}

/* =========================================
   PROBLEMS GRID
   ========================================= */
.pgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.pcard {
  background: var(--card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: background 0.2s, transform 0.2s;
}

.pcard:hover {
  background: var(--card-h);
  transform: translateY(-2px);
}

.picon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: rgba(249, 115, 22, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.pcard h3 {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.4rem;
}

.pcard p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* =========================================
   STEPS GRID
   ========================================= */
.sgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.scard {
  background: var(--card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: background 0.2s, transform 0.2s;
}

.scard:hover {
  background: var(--card-h);
  transform: translateY(-2px);
}

.snum {
  font-size: 11px;
  color: var(--orange);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.scard h3 {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.4rem;
}

.scard p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* =========================================
   METRICS
   ========================================= */
.mgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-bottom: 2.5rem;
}

.mcard {
  background: var(--card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
}

.mnum {
  font-size: 32px;
  font-weight: 500;
  color: var(--orange);
}

.mlabel {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
}

/* =========================================
   CAROUSEL
   ========================================= */
.carousel-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.cslide {
  min-width: 100%;
  background: var(--card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
}

.cs-sector {
  font-size: 11px;
  color: var(--orange);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.cs-quote {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  font-style: italic;
  padding-left: 1rem;
  border-left: 2px solid var(--orange);
  margin-bottom: 1.25rem;
}

.cs-result {
  font-size: 13px;
  color: var(--dim);
}

.cs-result strong {
  color: var(--orange);
  font-weight: 500;
}

.carousel-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 1.25rem;
}

.carousel-arrows {
  display: flex;
  gap: 8px;
}

.carr-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 0.5px solid var(--border);
  border-radius: 999px;
  width: 38px;
  height: 38px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.carr-btn:hover {
  background: rgba(255, 255, 255, 0.14);
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.cdot.active {
  background: var(--orange);
  transform: scale(1.25);
}

/* =========================================
   FEATURES GRID
   ========================================= */
.fgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.feat {
  background: var(--card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  gap: 12px;
  transition: background 0.2s, transform 0.2s;
}

.feat:hover {
  background: var(--card-h);
  transform: translateY(-2px);
}

.fdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  margin-top: 7px;
  flex-shrink: 0;
}

.feat h3 {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.3rem;
}

.feat p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-sec {
  background: linear-gradient(135deg, #1e0845 0%, #2d1055 50%, #1a0a3a 100%);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 5rem 2rem;
  text-align: center;
}

.cta-sec h2 {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-sec > p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 2rem;
}

.frow {
  display: flex;
  gap: 8px;
  max-width: 460px;
  margin: 0 auto 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.frow input {
  flex: 1;
  min-width: 200px;
  padding: 13px 18px;
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.frow input::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.frow input:focus {
  border-color: rgba(249, 115, 22, 0.5);
}

.frow button {
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.frow button:hover {
  background: var(--orange-d);
  transform: translateY(-1px);
}

.fine {
  font-size: 12px;
  color: var(--dim);
}

/* =========================================
   FOOTER
   ========================================= */
.foot {
  padding: 1.75rem 2rem;
  text-align: center;
  border-top: 0.5px solid var(--border);
}

.foot p {
  font-size: 12px;
  color: var(--dim);
}

.foot a {
  color: var(--orange);
  text-decoration: none;
  transition: opacity 0.2s;
}

.foot a:hover {
  opacity: 0.8;
}

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 600px) {
  .nav { padding: 1rem 1.25rem; }
  .hero { padding: 4rem 1.25rem 3.5rem; }
  .section { padding: 3rem 1.25rem; }
  .cta-sec { padding: 3.5rem 1.25rem; }
  .pgrid, .sgrid, .fgrid { grid-template-columns: 1fr; }
  .mgrid { grid-template-columns: repeat(2, 1fr); }
  .cslide { padding: 1.5rem; }
}
