/* Reset */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #1f1f1f;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Background Gradient */

.background-gradient {
  position: fixed;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 20%, #1f1f1f, transparent 50%),
              radial-gradient(circle at 80% 80%, #1f1f1f, transparent 50%);
  z-index: -1;
  opacity: 0.2;
}

/* Header */

.header {
  padding: 20px 0;
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo{
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
}

.logo span{
  color: #e65616;
}

.logo:hover{
  text-decoration: none;
  color: #ffffff;
}

.logo:visited{
  color: #ffffff;
}

.menu {
  display: flex;
  gap: 30px;
}

.menu a {
  text-decoration: none;
  color: #ccc;
  font-size: 14px;
  transition: 0.3s;
}

.menu a:hover {
  color: #ffffff;
}

/* Buttons */

.btn-primary {
  background: linear-gradient(135deg,#e65616,#d1310a);
  border: none;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid #555;
  color: white;
  padding: 10px 18px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-outline:hover {
  border-color: #fff;
}

.large {
  padding: 14px 32px;
  font-size: 16px;
}

.nav-buttons {
  display: flex;
  gap: 10px;
}

/* Hero */

.hero {
  padding: 120px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  color: #aaa;
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

/* Hero Visual */

.hero-visual {
  display: flex;
  justify-content: center;
}

.ai-card {
  position: relative;
  width: 300px;
  height: 300px;
}

.core-dot {
  width: 20px;
  height: 20px;
  background: #e65616;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 25px #e65616;
}

.pulse-circle {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: pulse 4s infinite;
}

.pulse-circle.delay {
  animation-delay: 1s;
}

.pulse-circle.delay2 {
  animation-delay: 2s;
}

@keyframes pulse {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Features */

.features {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
}

.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 30px;
  border-radius: 15px;
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.2);
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 15px;
}

.feature-card h3 {
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #aaa;
}

/* ================================= */
/* DARK INTELLIGENCE TOOLS DIRECTORY */
/* ================================= */

.intel-tools {
  padding: 100px 0;
}

/* Search */

.tools-search {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.tools-search input {
  width: 420px;
  max-width: 90%;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

.tools-search input::placeholder {
  color: #888;
}

.tools-search input:focus {
  border-color: #e65616;
  box-shadow: 0 0 10px rgba(230, 86, 22, 0.35);
}

/* Grid */

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

/* Card */

.tool-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 22px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

/* Glow effect */

.tool-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top,
              rgba(47,128,255,0.15),
              transparent 60%);
  opacity: 0;
  transition: 0.3s;
}

/* Hover */

.tool-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47,128,255,0.4);
}

.tool-card:hover::before {
  opacity: 1;
}

/* Title */

.tool-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: #9ec9ff;
  margin-bottom: 12px;
}

/* List */

.tool-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tool-card li {
  font-size: 13px;
  color: #b9c4d6;
  margin-bottom: 7px;
  position: relative;
  padding-left: 14px;
  line-height: 1.5;
}

/* Bullet */

.tool-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #e65616;
  font-size: 14px;
}

/* Responsive */

@media (max-width: 1100px) {

  .tools-grid {
    grid-template-columns: repeat(2,1fr);
  }

}

@media (max-width: 700px) {

  .tools-grid {
    grid-template-columns: 1fr;
  }

  .tools-search input {
    width: 100%;
  }

}

/* Platform */

.platform {
  padding: 120px 0;
}

.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.dashboard-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px;
  border-radius: 15px;
}

.bar {
  height: 10px;
  background: linear-gradient(90deg,#e65616,#e65616);
  margin-bottom: 15px;
  border-radius: 10px;
}

.short { width: 30%; }
.medium { width: 60%; }
.long { width: 90%; }

.platform-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.platform-text p {
  color: #aaa;
  margin-bottom: 20px;
}

.platform-text ul {
  list-style: none;
  margin-bottom: 20px;
}

.platform-text li {
  margin-bottom: 10px;
}

/* ======================= */
/* FAQ SECTION STYLES */
/* ======================= */

.faq-section {
  padding: 100px 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.faq-header p {
  color: #a0a8b8;
  font-size: 15px;
}

/* FAQ Container */

.faq-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}

/* Keep items full width inside grid */

.faq-item {
  width: 100%;
}

/* Responsive */

@media (max-width: 900px) {

  .faq-container {
    grid-template-columns: 1fr;
  }

}

/* FAQ Item */

.faq-item {
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  overflow: hidden;
  transition: all 0.25s ease;
}

/* Hover Glow */

.faq-item:hover {
  border-color: rgba(47,128,255,0.4);
  box-shadow: 0 0 12px rgba(47,128,255,0.15);
}

/* Question Button */

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  padding: 18px 22px;
  cursor: pointer;
  position: relative;
}

/* Plus Icon */

.faq-question::after {
  content: "+";
  position: absolute;
  right: 22px;
  font-size: 20px;
  color: #e65616;
  transition: transform 0.25s ease;
}

/* Answer */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 22px 18px 22px;
  font-size: 14px;
  color: #b7bfd0;
  line-height: 1.6;
}

/* Active State */

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

/* Responsive */

@media (max-width: 768px) {

  .faq-header h2 {
    font-size: 28px;
  }

  .faq-question {
    font-size: 15px;
  }

}

/* CTA */

.cta {
  padding: 120px 0;
  text-align: center;
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta p {
  color: #aaa;
  margin-bottom: 30px;
}

/* Footer */

.footer {
  background: #05060a;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 6px;
  font-size: 14px;
  color: #aaa;
}

/* Footer Link */

.footer-link {
  color: #e65616;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.footer-link:hover {
  color: #d1310a;
}

/* Responsive */

@media (max-width: 1000px) {

  .hero-grid,
  .platform-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .feature-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2,1fr);
  }

}

@media (max-width: 600px) {

  .hero-text h1 {
    font-size: 34px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

}