body {
  margin: 0;
  padding-top: 80px;
  font-family: Arial, sans-serif;
  background: #0f172a;
  color: white;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  box-sizing: border-box;
}

/* ICON BAR */
.icon-bar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #020617;
  display: flex;
  justify-content: space-around;
  padding: 15px;
  z-index: 1000;
  box-sizing: border-box;
}

.icon-bar a {
  color: white;
  text-decoration: none;
  font-size: 24px;
  transition: 0.3s;
}

.icon-bar a:hover {
  color: #38bdf8;
}

/* HERO */
.hero {
  text-align: center;
  padding: 50px 20px 20px;
}

.hero h1 {
  font-size: 36px;
  margin: 0 0 10px;
}

.hero p {
  color: #94a3b8;
  font-size: 16px;
  margin: 0;
}

/* PROFILE BOX */
.profile-box {
  background: #1e293b;
  padding: 25px;
  border-radius: 12px;
  width: 250px;
  text-align: center;
  margin: 30px auto;
  border: 1px solid #334155;
  box-sizing: border-box;
  max-width: calc(100% - 40px);
}

.profile-box h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.profile-box p {
  color: #94a3b8;
  margin: 6px 0;
  font-size: 14px;
}

.profile_circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  overflow: hidden;
}

.profile_circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* PRICING SECTION */
.pricing-section {
  padding: 40px 20px;
  text-align: center;
  box-sizing: border-box;
  width: 100%;
}

.pricing-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.pricing-section > p {
  color: #94a3b8;
  font-size: 15px;
  margin-bottom: 30px;
}

.pricing-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.price-box {
  background: #1e293b;
  padding: 25px;
  border-radius: 12px;
  width: 250px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid #334155;
  box-sizing: border-box;
}

.price-box:hover {
  transform: translateY(-5px);
  border-color: #38bdf8;
}

.price-box h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.price-box p {
  color: #94a3b8;
  font-size: 14px;
  margin: 10px 0 0;
}

.price {
  font-size: 32px;
  font-weight: bold;
  color: #38bdf8;
  margin: 10px 0;
}

/* WHAT'S INCLUDED */
.price-box ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  text-align: left;
}

.price-box ul li {
  color: #94a3b8;
  font-size: 13px;
  padding: 4px 0;
}

.price-box ul li::before {
  content: '✓ ';
  color: #38bdf8;
  font-weight: bold;
}

/* DISCLAIMER BOX — fixed: moved outside pricing-container in HTML */
.disclaimer-box {
  background: #1e293b;
  border: 1px solid #475569;
  border-left: 4px solid #f59e0b;
  padding: 20px 24px;
  border-radius: 8px;
  margin: 30px auto 0;
  text-align: left;
  box-sizing: border-box;
  max-width: 800px;
}

.disclaimer-box h4 {
  margin: 0 0 12px;
  font-size: 15px;
  color: #f59e0b;
}

.disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.disclaimer-box ul li {
  color: #94a3b8;
  font-size: 13px;
  padding: 5px 0;
  border-bottom: 1px solid #334155;
  line-height: 1.6;
}

.disclaimer-box ul li:last-child {
  border-bottom: none;
}

.disclaimer-box ul li::before {
  content: '⚠ ';
  color: #f59e0b;
  font-size: 11px;
}

/* CONTACT FOOTER */
.contact {
  background: #020617;
  padding: 40px 20px;
  text-align: center;
  margin-top: auto;
  box-sizing: border-box;
}

.contact h2 {
  margin: 0 0 10px;
}

.contact p {
  color: #94a3b8;
  margin-bottom: 16px;
}

.contact a {
  color: #38bdf8;
  margin: 0 8px;
  text-decoration: none;
  border: 1px solid #38bdf8;
  padding: 6px 14px;
  border-radius: 6px;
  transition: 0.3s;
  display: inline-block;
  margin-top: 10px;
}

.contact a:hover {
  background: #38bdf8;
  color: #0f172a;
}

/* ─── MOBILE STYLES ─────────────────────────────── */
@media (max-width: 600px) {

  /* smaller hero text on phones */
  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 14px;
    padding: 0 10px;
  }

  /* pricing section padding */
  .pricing-section {
    padding: 30px 16px;
  }

  .pricing-section h2 {
    font-size: 22px;
  }

  .pricing-section > p {
    font-size: 14px;
  }

  /* pricing cards go full width and stack */
  .price-box {
    width: 100%;
    max-width: 340px;
  }

  /* disclaimer full width on mobile */
  .disclaimer-box {
    margin: 20px 16px 0;
    width: auto;
  }

  .disclaimer-box h4 {
    font-size: 14px;
  }

  .disclaimer-box ul li {
    font-size: 12px;
  }

  /* footer buttons stack vertically */
  .contact {
    padding: 30px 16px;
  }

  .contact a {
    display: block;
    margin: 8px auto;
    width: fit-content;
  }
}

.chat-section {
      padding: 40px 20px;
      max-width: 700px;
      margin: 0 auto;
      width: 100%;
      box-sizing: border-box;
    }

    .chat-section h2 {
      text-align: center;
      font-size: 28px;
      margin-bottom: 8px;
    }

    .chat-section > p {
      text-align: center;
      color: #94a3b8;
      margin-bottom: 24px;
      font-size: 15px;
    }

    .chat-box {
      background: #1e293b;
      border: 1px solid #334155;
      border-radius: 12px;
      padding: 20px;
      min-height: 400px;
      max-height: 500px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 16px;
    }

    .message {
      max-width: 80%;
      padding: 10px 14px;
      border-radius: 10px;
      font-size: 14px;
      line-height: 1.5;
    }

    .message.user {
      background: #38bdf8;
      color: #0f172a;
      align-self: flex-end;
      border-bottom-right-radius: 2px;
    }

    .message.bot {
      background: #0f172a;
      color: #e2e8f0;
      align-self: flex-start;
      border: 1px solid #334155;
      border-bottom-left-radius: 2px;
    }

    .message.thinking {
      background: #0f172a;
      color: #94a3b8;
      align-self: flex-start;
      border: 1px solid #334155;
      font-style: italic;
      font-size: 13px;
    }

    .chat-input-row {
      display: flex;
      gap: 10px;
    }

    .chat-input-row input {
      flex: 1;
      padding: 12px 16px;
      border-radius: 8px;
      border: 1px solid #334155;
      background: #1e293b;
      color: white;
      font-size: 14px;
      outline: none;
    }

    .chat-input-row input:focus {
      border-color: #38bdf8;
    }

    .chat-input-row button {
      padding: 12px 20px;
      border-radius: 8px;
      background: #38bdf8;
      color: #0f172a;
      border: none;
      font-weight: bold;
      font-size: 14px;
      cursor: pointer;
      transition: 0.2s;
    }

    .chat-input-row button:hover {
      background: #7dd3fc;
    }

    .chat-input-row button:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }

    @media (max-width: 600px) {
      .chat-section {
        padding: 30px 16px;
      }

      .chat-section h2 {
        font-size: 22px;
      }
    }