/* ===== Reset ===== */
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0b0b0b;
  color: #f5f5f5;
  overflow-x: hidden;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #0b0b0b;
  z-index: 10000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  background-color: #0b0b0b;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5vw;
  max-width: 1400px;
  margin: 0 auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo img {
  height: 35px;
  width: auto;
  transition: transform 0.2s ease;
}

.logo:hover img {
  transform: scale(1.04);
}

/* ===== Desktop Nav ===== */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

.nav-desktop a {
  color: #e0e0e0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s ease;
}

.nav-desktop a:hover::after {
  width: 100%;
}

.cta {
  background: #ffffff;
  color: #000;
  padding: 0.55rem 1.2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
  opacity: 1 !important;
  pointer-events: auto !important;
  -webkit-tap-highlight-color: transparent;
}

.cta:hover {
  background: #e0e0e0;
  color: #000000;
  transform: scale(1.04);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* ===== Desktop Nav Dropdown ===== */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-btn {
  background: none;
  border: none;
  color: #e0e0e0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-dropdown-btn:hover {
  color: #ffffff;
}

.dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(12px);
  min-width: 200px;
  border-radius: 8px;
  padding: 0.5rem;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-content a {
  display: block;
  color: #e0e0e0;
  padding: 0.6rem 1rem;
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.nav-dropdown-content a:hover {
  color: #ffffff;
}

/* ===== Hamburger ===== */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 36px;
  width: 36px;
  cursor: pointer;
  gap: 5px;
  z-index: 10001;
  padding: 0.5rem;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
}

.hamburger span {
  display: block;
  background: #ffffff;
  height: 2px;
  width: 24px;
  border-radius: 1px;
  transition: all 0.3s ease;
}

/* ===== Mobile Menu ===== */
.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  backdrop-filter: blur(12px);
  background: rgba(17, 17, 17, 0.8);
  height: 100vh;
  width: 72%;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.6);
  z-index: 9999;
}

.nav-mobile a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.nav-mobile.open {
  transform: translateX(0%);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: transparent;
  z-index: 9998;
  display: none;
}

.overlay.active {
  display: block;
}

/* Override any potential conflicting styles */
.cta:disabled,
.cta[disabled],
.cta.disabled {
  opacity: 1 !important;
  pointer-events: auto !important;
  background: #ffffff !important;
  color: #000000 !important;
}

/* Ensure no other styles override our CTA */
a.cta,
button.cta,
.nav-desktop .cta,
.nav-mobile .cta {
  background: #ffffff !important;
  color: #000000 !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease !important;
}

a.cta:hover,
button.cta:hover,
.nav-desktop .cta:hover,
.nav-mobile .cta:hover {
  background: #e0e0e0 !important;
  transform: scale(1.04) !important;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2) !important;
}

/* ===== Responsive ===== */
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    gap: 2.5rem;
  }

  .hamburger {
    display: none;
  }

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

@media (max-width: 1023px) {
  .nav-desktop {
    display: none;
  }

  .header-actions {
    gap: 0.8rem;
  }

  .cta {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
}

/* ---------- Animations ---------- */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Hero Section ===== */
#hero {
  min-height: 60vh;
  height: auto;
  padding: 8rem 5vw 4rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ✨ Background image - extremely subtle */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/background.jpg') center / cover no-repeat;
  opacity: 0.06;
  z-index: 0;
}

/* ✨ Particles */
#tsparticles {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.2;
  pointer-events: none;
}

/* ✨ Hero content */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  width: 100%;
  z-index: 2;
  position: relative;
}

.hero-text {
  color: white;
}

.hero-text h1 {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #d0d0d0;
  margin-bottom: 2rem;
}

.cta.large {
  background: linear-gradient(145deg, #fff, #eaeaea);
  color: black;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
}

.cta.large:hover {
  background: linear-gradient(145deg, #eaeaea, #fff);
  transform: scale(1.04);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.1);
}

.hero-image img {
  max-width: 600px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(4px);
  filter: drop-shadow(0 15px 35px rgba(0,0,0,0.4));
}

/* Hero Divider */
.hero-divider {
  background: linear-gradient(to bottom, transparent 0%, #0b0b0b 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mobile */
@media (max-width: 768px) {
  #hero {
    padding-top: 6rem;
    padding-bottom: 2rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-image img {
    max-width: 90%;
  }
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
}

/* ===== Why Section ===== */
.why-section {
  padding: 3rem 5vw;
  background: #0c0c0c;
  color: #f5f5f5;
  position: relative;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
  letter-spacing: 0.02em;
  background: linear-gradient(to right, #ffffff, #b0b0b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #b0b0b0;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(255,255,255,0.03), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

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

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  opacity: 0.9;
  display: inline-block;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #d0d0d0;
  margin: 0;
}

@media (max-width: 768px) {
  .why-section {
    padding: 4rem 5vw;
  }

  .section-title {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }
}

/* ===== Win Rate Section ===== */
.section-winrate {
  padding: 5rem 5vw;
  background: #0e0e0e;
  color: #f0f0f0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.winrate-chart {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 3rem auto;
  max-width: 800px;
}

.bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.bar {
  --bar-height: calc(var(--percent) * 3);
  width: 70px;
  height: calc(var(--percent) * 3);
  background: #444;
  border-radius: 8px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  position: relative;
  transition: height 0.4s ease;
  padding-bottom: 0.5rem;
}

.bar.draftedge {
  background: #1aff66;
  color: #000;
}

.bar.elite {
  background: #fff;
  color: #000;
}

.bar-group span {
  font-size: 0.95rem;
  font-weight: 500;
  color: #aaa;
}

.winrate-note {
  font-size: 0.85rem;
  color: #888;
  max-width: 600px;
  margin: 2rem auto 0;
}

@media (max-width: 768px) {
  .section-winrate {
    padding: 4rem 5vw;
  }

  .winrate-chart {
    gap: 1.5rem;
  }

  .bar {
    width: 60px;
  }

  .bar-group span {
    font-size: 0.85rem;
  }
}

/* ===== Edge Stats Section ===== */
.edge-stats {
  background-color: #0d0d0d;
  padding: 3rem 5vw 3rem;
  text-align: center;
  color: #f5f5f5;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.edge-stats .section-subtitle {
  margin-bottom: 2rem;
}

.section-intro-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #1aff66;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.stat-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 2.5rem auto 1.5rem;
  max-width: 900px;
}

.stat-card {
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.2rem 1rem;
  border-radius: 12px;
  flex: 1 1 200px;
  max-width: 220px;
  min-height: auto;
  text-align: center;
  transition: all 0.25s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.stat-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.stat-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
  font-weight: 700;
  background: linear-gradient(to right, #ffffff, #b0b0b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card .label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #aaa;
  margin-bottom: 0.25rem;
}

.stat-card p {
  font-size: 0.85rem;
  color: #bbb;
  line-height: 1.4;
  margin: 0;
}

.charts-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.chart-card {
  background: #121212;
  border: 1px solid rgba(255,255,255,0.05);
  padding: 1.25rem 1.25rem 0.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.chart-card h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.cta-wrapper {
  margin-top: 1.75rem;
}

@media (max-width: 1024px) {
  .stat-cards {
    gap: 1.25rem;
  }

  .stat-card {
    flex: 1 1 calc(50% - 1.25rem);
    max-width: calc(50% - 1.25rem);
  }

  .charts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .edge-stats {
    padding: 4rem 5vw 2.5rem;
  }

  .section-intro-label {
    font-size: 0.75rem;
  }

  .stat-cards {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .stat-card {
    width: 100%;
    max-width: 260px;
    padding: 1.125rem 1rem;
  }

  .stat-card h3 {
    font-size: 1.5rem;
  }

  .chart-card {
    padding: 1.25rem 1.25rem 0.5rem;
  }
}

/* ===== Compatible With Section (Refined) ===== */
.compatible-section {
  padding: 3rem 5vw 4rem;
  background: #0b0b0b;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.compatible-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.45rem 0.45rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  margin-bottom: 1rem;
}

.compatible-heading {
  font-size: 1.85rem;
  font-weight: 700;
  background: linear-gradient(to right, #ffffff, #b0b0b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

.compatible-subheading {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 2.25rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Glowing background ring behind logos */
.compatible-section::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.02) 0%, transparent 80%);
  z-index: 0;
  pointer-events: none;
}

/* Logo Grid */
.logo-grid {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem 3rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem 0;
}

.logo-grid img {
  height: 34px;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.8;
  transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
  filter: grayscale(100%) brightness(1.3);
  flex-shrink: 0;
}

.logo-grid img:hover {
  transform: scale(1.05);
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

@media (max-width: 768px) {
  .compatible-section {
    padding: 4rem 5vw 3.5rem;
  }

  .compatible-heading {
    font-size: 1.65rem;
  }

  .logo-grid {
    gap: 2rem 2.5rem;
  }

  .logo-grid img {
    height: 26px;
    max-width: 90px;
  }
}

/* ===== Tools Section ===== */
.tools-section {
  padding: 3rem 5vw;
  background: #0b0b0b;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tools-section::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.02) 0%, transparent 80%);
  z-index: 0;
  pointer-events: none;
}

.tools-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #ffffff, #bbbbbb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.tools-section .section-subtitle {
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

/* Toolkit Divider */
.toolkit-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  max-width: 720px;
  margin: 2.5rem auto;
  position: relative;
  z-index: 1;
}

/* Filter Buttons */
.tool-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.filter-btn {
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: #ccc;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Card Base */
.tool-card {
  display: none;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2rem;
  text-align: left;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  transform: translateY(10px);
}

.tool-card.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45),
              0 0 0 1px rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

/* Badge Styles */
.tool-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.badge-premium {
  background: rgba(138, 106, 40, 0.15);
  color: #ffd700;
  border: 1px solid rgba(138, 106, 40, 0.3);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08),
              0 2px 6px rgba(0, 0, 0, 0.3);
}

.badge-free {
  background: rgba(26, 255, 102, 0.15);
  color: #1aff66;
  border: 1px solid rgba(26, 255, 102, 0.3);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08),
              0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Tool Icon */
.tool-icon {
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.05);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.tool-card:hover .tool-icon {
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.12);
}

/* Headings + Paragraph */
.tool-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.tool-card p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* CTA */
.tool-cta {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
  font-size: 0.85rem;
  background: #fff;
  color: #000;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.tool-cta:hover {
  background: #f0f0f0;
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .tools-section {
    padding: 3rem 5vw;
  }

  .tools-section .section-title {
    font-size: 1.85rem;
  }

  .tool-filters {
    flex-direction: column;
    gap: 0.75rem;
  }

  .filter-btn {
    width: 100%;
    text-align: center;
  }

  .tools-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tool-card {
    padding: 1.5rem;
  }

  .tool-icon {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }

  .tool-card h3 {
    font-size: 1.15rem;
  }

  .tool-cta {
    width: 100%;
    text-align: center;
  }
}

/* ===== Footer ===== */
.site-footer {
  background: #0a0a0a;
  color: #d0d0d0;
  padding: 4rem 5vw;
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-brand {
  flex: 1 1 350px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1); /* Makes the logo white */
  opacity: 0.9;
}

.footer-brand .tagline {
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #ffffff;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.footer-brand .description {
  color: #888888;
  font-size: 0.92rem;
  max-width: 450px;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2.5rem;
  flex: 2 1 600px;
}

.footer-links h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #888888;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 3rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer-logo {
    height: 30px;
  }
}

/* ===== Insights Section ===== */
.insights-section {
    padding: 6rem 5vw;
    background: #0b0b0b;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.insights-section::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.02) 0%, transparent 80%);
    z-index: 0;
    pointer-events: none;
}

.insights-section .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #ffffff, #bbbbbb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.insights-section .section-subtitle {
    color: #aaa;
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem auto 2rem;
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.chart-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1.5rem;
    padding-bottom: 0.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.chart-card canvas {
    max-height: 240px;
}

.chart-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.03), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.chart-card:hover {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.chart-card h4 {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.kit-metrics {
    list-style: none;
    padding: 0;
    margin: 2rem auto;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.kit-metrics li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.kit-metrics li::before {
    content: "✓";
    color: #1aff66;
    font-weight: bold;
}

.kit-metrics strong {
    color: #ffffff;
    font-weight: 600;
}

.insights-section .cta.large {
    font-size: 1rem;
    padding: 0.75rem 2rem;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .insights-section {
        padding: 4rem 5vw;
    }

    .insights-section .section-title {
        font-size: 1.85rem;
    }

    .charts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .chart-card {
        padding: 1.25rem;
    }

    .kit-metrics {
        font-size: 0.9rem;
    }

    .kit-metrics li {
        text-align: left;
        justify-content: flex-start;
    }
}

/* ===== FAQ Section ===== */
.faq-section {
  background-color: #0b0b0b;
  padding: 5rem 5vw;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

.faq-section::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.02) 0%, transparent 80%);
  z-index: 0;
  pointer-events: none;
}

.faq-section .section-intro-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.45rem 0.45rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.faq-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #ffffff, #bbbbbb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.faq-section .section-subtitle {
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.faq-list {
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.faq-item {
  background: #121212;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.faq-question {
  width: 100%;
  background: none;
  color: #ffffff;
  text-align: left;
  padding: 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: left;
  justify-content: space-between;
  position: relative;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: #666;
  transition: all 0.3s ease;
  margin-left: 1rem;
}

.faq-item.open .faq-question::after {
  content: '−';
  color: #1aff66;
}

.faq-question:hover {
  background: #1a1a1a;
  color: #1aff66;
}

.faq-answer {
  padding: 0 1.25rem 1.25rem;
  display: none;
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  animation: fadeIn 0.3s ease;
  text-align: left;
}

.faq-answer p {
  margin: 0;
  padding-top: 1rem;
  text-align: left;
}

.faq-item.open .faq-answer {
  display: block;
}

@keyframes fadeIn {
  from { 
    opacity: 0; 
    transform: translateY(-4px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 4rem 5vw;
  }

  .faq-section .section-title {
    font-size: 1.85rem;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 1.1rem;
  }

  .faq-answer {
    font-size: 0.9rem;
    padding: 0 1.1rem 1.1rem;
  }
}

/* ===== AI Insights Section ===== */
.ai-insights-section {
  background: #0b0b0b;
  padding: 6rem 5vw;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

.ai-insights-section::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.02) 0%, transparent 80%);
  z-index: 0;
  pointer-events: none;
}

.ai-insights-section .section-intro-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.45rem 0.45rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.ai-insights-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #ffffff, #bbbbbb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.ai-insights-section .section-subtitle {
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.ai-insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.ai-step {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem 2rem;
  border-radius: 14px;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  overflow: hidden;
}

.ai-step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(255,255,255,0.03), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ai-step:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.ai-step:hover::before {
  opacity: 1;
}

.step-number {
  background: #1aff66;
  color: #000;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 8px rgba(26, 255, 102, 0.2);
}

.step-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #fff;
  letter-spacing: -0.01em;
}

.ai-step p {
  font-size: 0.95rem;
  color: #bbb;
  line-height: 1.6;
  margin: 0;
}

.ai-cta {
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .ai-insights-section {
    padding: 4rem 5vw;
  }

  .ai-insights-section .section-title {
    font-size: 1.85rem;
  }

  .ai-step {
    padding: 2rem 1.5rem;
  }

  .step-title {
    font-size: 1.2rem;
  }

  .ai-step p {
    font-size: 0.9rem;
  }
}

/* Pricing Section Styles */
.pricing-upgrade {
  padding: 6rem 5vw;
  text-align: center;
  background: #0c0c0c;
  color: #f5f5f5;
}

.pricing-tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 4rem auto 0;
}

.pricing-card {
  background: linear-gradient(to bottom, #111111, #0c0c0c);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 18px;
  padding: 2rem;
  text-align: left;
  position: relative;
  box-shadow: 0 0 0 transparent;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 1px #1aff66;
  transform: translateY(-4px);
}

.pricing-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-card .price-block {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(to right, #1aff66, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0.5rem 0 1rem;
}

.pricing-card .term {
  font-size: 0.85rem;
  color: #aaa;
}

.pricing-card .meta {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 1.5rem;
}

.pricing-card .features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.pricing-card .features li {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 0.65rem;
  padding-left: 0;
  position: relative;
  display: flex;
  align-items: center;
}

.pricing-card .features li::before {
  content: "✓";
  color: #1aff66;
  font-weight: bold;
  margin-right: 0.5rem;
  display: inline-block;
}

.pricing-card .cta.wide {
  display: block;
  text-align: center;
  padding: 0.75rem 1rem;
  font-weight: 600;
  background: white;
  color: black;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.pricing-card .cta.wide:hover {
  background: #f0f0f0;
  transform: scale(1.03);
}

.pricing-card.featured {
  border: 1px solid rgba(26, 255, 102, 0.4);
  box-shadow: 0 0 20px rgba(26, 255, 102, 0.2);
}

.pricing-card .badge-glow {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #1aff66;
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  box-shadow: 0 0 6px #1aff66;
}

.pricing-card .badge-glow-two {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: #1aff66;

  box-shadow: 0 0 6px #1aff66;
}

/* Responsive adjustments for pricing section */
@media (max-width: 768px) {
  .pricing-tier-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .pricing-card {
    padding: 1.75rem;
  }
  
  .pricing-card .badge-glow {
    font-size: 0.7rem;
    padding: 0.35rem 0.85rem;
  }
}

/* ===== Mobile Dropdown ===== */
.mobile-dropdown {
  position: relative;
  width: 100%;
}

.mobile-dropdown-btn {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1rem;
  text-align: left;
  padding: 1.1rem 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-dropdown-content {
  display: none;
  padding-left: 1rem;
  background: rgba(255, 255, 255, 0.03);
  margin: 0 -1rem;
}

.mobile-dropdown.active .mobile-dropdown-content {
  display: block;
}

.mobile-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.mobile-dropdown-content a {
  display: block;
  padding: 0.8rem 1rem;
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  margin-left: 1rem;
}

.mobile-dropdown-content a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
} 