/* ============================================================
   GLOBAL RESET
   ============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0c0c0f;
  color: #f5f5f5;
  overflow-x: hidden;
  line-height: 1.6;
}

img, svg {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 6px;
}
::-webkit-scrollbar-track {
  background: #111;
}

/* ============================================================
   CONTAINERS & GRID
   ============================================================ */
.container {
  width: 92%;
  max-width: 1300px;
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 40px;
}
.grid--3-cols {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
}

.accent {
  background: linear-gradient(90deg, #5c9eff, #9f7bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.btn--primary {
  background: linear-gradient(90deg, #5c9eff, #8e62ff);
  color: white;
}

.btn--primary:hover {
  opacity: 0.85;
}

.btn--ghost {
  background: transparent;
  border: 1px solid #5c9eff;
  color: #5c9eff;
}

.btn--ghost:hover {
  background: rgba(92, 158, 255, 0.1);
}

.btn--outline {
  background: transparent;
  border: 1px solid #aaa;
  color: #aaa;
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  padding: 120px 0;
  background: linear-gradient(180deg, #0c0c11, #14141a);
  display: flex;
  align-items: center;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  font-size: 0.9rem;
  color: #aaa;
  border: 1px solid #333;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.hero__title {
  font-size: 3.4rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 1.15rem;
  max-width: 520px;
  color: #ccc;
  margin-bottom: 30px;
}

.hero__actions {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.hero__meta {
  font-size: 0.9rem;
  color: #999;
}

.hero__meta-separator {
  margin: 0 10px;
  color: #444;
}

/* ============================================================
   HERO CHAT BOX MOCKUP
   ============================================================ */
.hero-chat {
  width: 100%;
  background: #1a1a20;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #2a2a33;
  box-shadow: 0 0 40px rgba(0,0,0,0.4);
}

.hero-chat__header {
  padding: 12px;
  background: #111;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot--red { background: #ff5f57; }
.dot--yellow { background: #ffbd2e; }
.dot--green { background: #28c840; }

.hero-chat__title {
  font-size: 0.9rem;
  color: #bbb;
  margin-left: 10px;
}

.hero-chat__body {
  height: 260px;
  padding: 18px;
  overflow: hidden;
}

.bubble {
  max-width: 85%;
  padding: 12px 16px;
  margin-bottom: 12px;
  border-radius: 10px;
  font-size: 0.95rem;
}

.bubble--user {
  background: #5c9eff22;
  border-left: 2px solid #5c9eff;
}

.bubble--ai {
  background: #333;
  border-left: 2px solid #9f7bff;
}

.bubble--typing {
  width: 50px;
  display: flex;
  gap: 4px;
  background: #2b2b2b;
}

.dot-typing {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #999;
  animation: typingBounce 1s infinite ease-in-out;
}

.dot-typing:nth-child(2) { animation-delay: 0.15s; }
.dot-typing:nth-child(3) { animation-delay: 0.3s; }

@keyframes typingBounce {
  0% { transform: translateY(0); opacity: 0.2; }
  50% { transform: translateY(-4px); opacity: 1; }
  100% { transform: translateY(0); opacity: 0.2; }
}

.hero-chat__input {
  padding: 12px;
  background: #111;
  display: flex;
  gap: 10px;
}

.hero-chat__input input {
  flex-grow: 1;
  background: #222;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 10px;
  color: #ddd;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  padding: 70px 0;
  background: #0f0f13;
}

.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.trust-item h3 {
  margin-bottom: 10px;
  color: #9f7bff;
}

.trust-item p {
  color: #aaa;
}

/* ============================================================
   SECTION GENERIC STYLES
   ============================================================ */
.section {
  padding: 100px 0;
}

.section--light {
  background: #f7f7f9;
  color: #222;
}

.section--dark {
  background: #131318;
}

.section__header {
  margin-bottom: 40px;
}

.section__header--center {
  text-align: center;
  margin-bottom: 60px;
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.feature-card {
  background: #1a1a20;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #2e2e36;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.feature-card h3 {
  margin-bottom: 10px;
  color: #5c9eff;
}

.list--check li {
  margin-left: 16px;
  list-style: "✔  ";
  margin-bottom: 6px;
  color: #aaa;
}

/* ============================================================
   STEPS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.step {
  background: #1e1e24;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #333;
  text-align: center;
}

.step__badge {
  background: #5c9eff33;
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
  color: #5c9eff;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  margin-top: 20px;
}

.pricing-card {
  background: #fff;
  color: #222;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid #ddd;
  position: relative;
}

.pricing-card--highlight {
  border: 2px solid #8e62ff;
  box-shadow: 0 0 30px rgba(142, 98, 255, 0.25);
}

.pricing-card__tag {
  position: absolute;
  top: -12px;
  right: 14px;
  background: #8e62ff;
  padding: 4px 10px;
  border-radius: 6px;
  color: white;
  font-size: 0.8rem;
}

.pricing-card__price {
  font-size: 2rem;
  margin: 10px 0;
}

.pricing-card__desc {
  color: #ccc;
  margin-bottom: 18px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.faq-item {
  background: #1a1a1f;
  padding: 22px;
  border-radius: 10px;
  border: 1px solid #333;
}

.faq-item h3 {
  margin-bottom: 12px;
  color: #5c9eff;
}

.faq-item p {
  color: #ccc;
}

/* ============================================================
   BOTTOM CTA
   ============================================================ */
.section--bottom-cta {
  padding: 120px 0;
  background: #efeff3;
  color: #222;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

