.solution-section {
  background: black;
  color: #ccc;
  padding: 60px 20px;
  font-family: 'Inter', sans-serif;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  color: whitesmoke;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 30px;
  border-bottom: 1px solid #222;
  padding-bottom: 10px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.solution-card {
  border-right: 1px solid #222;
  padding-right: 20px;
}

.solution-card:last-child {
  border-right: none;
}

.solution-card h3 {
  color: #3b5cff;
  font-size: 22px;
  margin-bottom: 15px;
}

.solution-card p {
  line-height: 1.6;
  color: #aaa;
}

.benefits {
  margin-top: 40px;
}

.benefits-list {
  margin-top: 30px;
}

.benefit-item {
  padding: 20px 0;
  color: #3b5cff;
  font-size: 22px;
}

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

  .solution-card {
    border-right: none;
    border-bottom: 1px solid #222;
    padding-bottom: 20px;
  }
}

.learn-section {
  background: black;
  color: #ccc;
  padding: 60px 20px;
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
  margin-top: 40px;
}

.learn-card h3 {
  color: #3b5cff;
  font-size: 22px;
  margin-bottom: 15px;
}

.learn-card p {
  line-height: 1.6;
  color: #aaa;
}

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

.learn-card {
  border-right: 1px solid #222;
  padding-right: 20px;
}

.learn-card:nth-child(3n) {
  border-right: none;
}

.faq-section {
  background: black;
  padding: 60px 20px;
}

.faq-item {
  border-bottom: 1px solid #222;
}

.faq-question {
  width: 100%;              /* 🔥 THIS fixes your problem */
  text-align: left;
  background: none;
  border: none;
  color: #ccc;
  font-size: 20px;
  padding: 20px 0;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.faq-question.active {
  color: #3b5cff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  color: #aaa;
  padding-bottom: 20px;
  line-height: 1.6;
}

/* open state */
.faq-answer.open {
  max-height: 500px;
}

.faq-question::after {
  content: "▾";
  float: right;
  color: #3b5cff;
  transition: transform 0.2s;
}

.faq-question.active::after {
  transform: rotate(180deg);
}

.team-section {
  background: #000;
  padding: 60px 20px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 36px;
  margin-top: 40px;
}

.team-card {
  min-height: 220px;
}

.team-name {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.team-name a {
  color: #3b5cff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.team-name a:hover {
  color: #ff4fa3;
}

.team-role {
  margin: 0 0 10px;
  color: #b3b3b3;
  font-size: 16px;
  font-weight: 500;
}

.team-bio {
  margin: 0;
  color: #8f8f8f;
  font-size: 15px;
  line-height: 1.6;
}

.team-card-ceo {
  border: 1px solid #1f1f1f;
  padding: 22px;
  background: rgba(255, 255, 255, 0.01);
}

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    min-height: auto;
  }
}

.bloodhound-section {
  background: #000;
  padding: 60px 20px;
}

.bloodhound-intro {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 70px;
}

.bloodhound-intro-image img {
  width: 100%;
  max-width: 260px;
  display: block;
  object-fit: cover;
}

.bloodhound-kicker {
  margin: 0 0 14px;
  color: #ff4fa3;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.bloodhound-headline {
  margin: 0 0 18px;
  color: #f2f2f2;
  font-size: 36px;
  line-height: 1.15;
  font-weight: 600;
}

.bloodhound-text {
  margin: 0 0 16px;
  color: #9a9a9a;
  font-size: 18px;
  line-height: 1.7;
  max-width: 900px;
}

.bloodhound-questions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 70px;
  border-top: 1px solid #1f1f1f;
  border-bottom: 1px solid #1f1f1f;
}

.bloodhound-question-card {
  padding: 34px 28px 30px;
  min-height: 250px;
  border-right: 1px solid #1f1f1f;
}

.bloodhound-question-card:last-child {
  border-right: none;
}

.bloodhound-question-card h4 {
  margin: 0 0 18px;
  color: #3b5cff;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 500;
}

.bloodhound-question-card p {
  margin: 0;
  color: #8f8f8f;
  font-size: 16px;
  line-height: 1.65;
}

.bloodhound-dashboard-block {
  margin-top: 10px;
}

.bloodhound-dashboard-title {
  margin: 0 0 24px;
  color: #f2f2f2;
  font-size: 28px;
  font-weight: 600;
}

.bloodhound-dashboard-frame {
  width: 100%;
  border: 1px solid #1f1f1f;
  background: #050505;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bloodhound-dashboard-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* optional placeholder styling if dashboard image is not there yet */
.bloodhound-dashboard-frame:empty::before {
  content: "Dashboard screenshot goes here";
  color: #666;
  font-size: 16px;
  letter-spacing: 0.02em;
}

@media (max-width: 1100px) {
  .bloodhound-questions {
    grid-template-columns: repeat(2, 1fr);
  }

  .bloodhound-question-card:nth-child(2) {
    border-right: none;
  }

  .bloodhound-question-card:nth-child(-n + 2) {
    border-bottom: 1px solid #1f1f1f;
  }
}

@media (max-width: 800px) {
  .bloodhound-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .bloodhound-intro-image img {
    max-width: 220px;
  }

  .bloodhound-headline {
    font-size: 30px;
  }
}

@media (max-width: 640px) {
  .bloodhound-questions {
    grid-template-columns: 1fr;
  }

  .bloodhound-question-card {
    border-right: none;
    border-bottom: 1px solid #1f1f1f;
    min-height: auto;
  }

  .bloodhound-question-card:last-child {
    border-bottom: none;
  }

  .bloodhound-dashboard-frame {
    min-height: 260px;
  }
}

.risk-questions-section {
  background: #000;
  padding: 60px 20px 60px;
}

.risk-title {
  margin: 0 0 40px;
  font-size: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3b5cff;
  font-weight: 600;
  border-bottom: 1px solid #1f1f1f;
  padding-bottom: 16px;
}

.risk-list {
  display: flex;
  flex-direction: column;
}

.risk-item {
  padding: 22px 0;
  border-bottom: 1px solid #1a1a1a;
}

.risk-item p {
  margin: 0;
  font-size: 18px;
  color: #d0d0d0;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.risk-item:hover p {
  color: #ffffff;
}

.contact-form {
  max-width: 500px;
  margin: 40px auto;
  color: white;
}

.form-group {
  margin-bottom: 20px;
}

/* Inputs + textarea */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: black;
  color: white;
  border: 1px solid white;
  outline: none;
  font-size: 14px;
}

/* Placeholder text */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

/* Focus state */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: white;
}

/* 🔥 Pill button */
.pill-button {
  background: black;
  color: white;
  border: 1px solid white;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
}

/* Hover effect */
.pill-button:hover {
  background: white;
  color: black;
}
