/* ===========================
   Quoting Agent - Hero
   =========================== */
.qa-hero {
  padding: 200px 0 100px;
  background: linear-gradient(135deg, #1C0944 0%, #100329 100%);
  position: relative;
  overflow: hidden;
}

.qa-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(130, 94, 231, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.qa-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.qa-hero__title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
}

.qa-hero__subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 32px;
}

.qa-hero__image img {
  width: 100%;
  border-radius: 12px;
}

/* ===========================
   Feature Sections
   =========================== */
.qa-feature {
  padding: 80px 0;
  background: linear-gradient(180deg, #100329 0%, #0F0039 100%);
}

.qa-feature--alt {
  background: linear-gradient(180deg, #0F0039 0%, #1C0944 100%);
}

.qa-feature__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.qa-feature__inner--reverse {
  direction: rtl;
}

.qa-feature__inner--reverse > * {
  direction: ltr;
}

.qa-feature__title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 16px;
}

.qa-feature__text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 20px;
}

.qa-feature__list {
  list-style: none;
  counter-reset: feature-counter;
  padding: 0;
  margin: 0;
}

.qa-feature__list li {
  counter-increment: feature-counter;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 0;
  padding-left: 36px;
  position: relative;
  line-height: 1.5;
}

.qa-feature__list li::before {
  content: counter(feature-counter);
  position: absolute;
  left: 0;
  top: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #53389E;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qa-feature__image img {
  width: 100%;
  border-radius: 12px;
}

/* ===========================
   Outcomes
   =========================== */
.qa-outcomes {
  padding: 100px 0;
  background: linear-gradient(135deg, #53389E 0%, #42307D 100%);
}

.qa-outcomes__inner {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.qa-outcomes__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.qa-outcomes__intro {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 48px;
}

.qa-outcomes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.qa-outcome-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 28px;
  text-align: left;
}

.qa-outcome-card__number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.qa-outcome-card__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.qa-outcomes__closing {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  font-style: italic;
  line-height: 1.6;
}

/* ===========================
   Demo CTA
   =========================== */
.qa-demo {
  padding: 100px 0;
  background: linear-gradient(180deg, #0F0039 0%, #100329 50%, #1C0944 100%);
}

.qa-demo__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.qa-demo__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.qa-demo__text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 16px;
}

.qa-demo__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.qa-demo__list li {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 0;
}

.qa-demo__list li::before {
  content: '→';
  color: #825EE7;
  margin-right: 10px;
  font-weight: 700;
}

.qa-demo__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.qa-demo__badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
}

.qa-demo__booking {
  min-height: 500px;
  border-radius: 16px;
  overflow: hidden;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 992px) {
  .qa-hero__inner,
  .qa-feature__inner,
  .qa-demo__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .qa-feature__inner--reverse {
    direction: ltr;
  }

  .qa-hero__title {
    font-size: 2.75rem;
  }

  .qa-outcomes__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .qa-hero {
    padding: 160px 0 70px;
  }

  .qa-hero__title {
    font-size: 2.25rem;
  }

  .qa-feature,
  .qa-outcomes,
  .qa-demo {
    padding: 60px 0;
  }

  .qa-outcomes__title {
    font-size: 2rem;
  }

  .qa-demo__title {
    font-size: 1.75rem;
  }
}
