/* dark Theme (default) */
:root {
  --bg-primary: #0f0f1a;
  --bg-secondary: #12121f;
  --bg-card: rgba(255, 255, 255, 0.06);
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --violet: #6c5ce7;
  --yellow: #ffcc33;
  --gradient: linear-gradient(90deg, #6c5ce7, #ffcc33);
  --border-glow: rgba(108, 92, 231, 0.4);
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 20px 50px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.5);
  --radius: 20px;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --duration: 50s;
}

/* Light Theme */
.light_theme_backup {
  --bg-primary: #f8f9fa;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --text-primary: #111111;
  --text-secondary: #555555;
  --border-glow: #6c5ce7;
  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* ------------------ HERO SECTION ------------------ */

#hero {
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.hero_section {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.hero_content {
  flex: 1;
  min-width: 300px;
}

.hero_content .subheading {
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}

.hero_content .heading {
  font-size: 3.3rem;
  font-weight: 800;
  line-height: 1.2;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.hero_content .underline {
  display: flex;
  width: 120px;
  height: 4px;
  margin: 20px 0;
  gap: 6px;
}

.hero_content .line {
  flex: 1;
  border-radius: 2px;
}

.purple {
  background: #6c5ce7;
}

.yellow {
  background: #ffcc33;
}

.hero_content .description {
  font-size: 1rem;
  margin-bottom: 12px;
}

.hero_content .text {
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 500px;
  font-size: 1rem;
}

.buttons {
  display: flex;
  gap: 16px;
}

.quote_btn {
  background: var(--gradient);
  color: #111;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.quote_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(108, 92, 231, 0.4);
}

.plan_btn {
  color: var(--text-primary);
  border: 1px solid var(--border-glow);
  padding: 12px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition);
}

.plan_btn:hover {
  background: rgba(108, 92, 231, 0.2);
  transform: translateY(-3px);
}

.hero_form {
  flex: 1;
  min-width: 320px;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.hero_form .heading {
  font-size: 0.9rem;
  color: var(--yellow);
  margin-bottom: 8px;
}

.hero_form .subheading {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 30px;
  color: var(--text-primary);
}

.form_container .form_group {
  display: flex;
  width: 100%;
  gap: 12px;
}

.form_row {
  width: 100%;
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.contact_form_input {
  width: 100%;
  padding: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: white;
  font-size: 1rem;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.contact_form_input:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 204, 51, 0.2);
}

.btn_submit {
  background: var(--gradient);
  color: #111;
  border: none;
  padding: 14px 24px;
  font-weight: 600;
  border-radius: 10px;
  width: 100%;
  cursor: pointer;
  transition: var(--transition);
}

.btn_submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
}

/* ------------------ AI FEATURES SECTION ------------------ */
#aiFeatures {
  padding: 50px 20px;
  background: #0f0f1a;
  color: #ffffff;
  position: relative;
}

.aiFeatures_container {
  max-width: 1400px;
  margin: 0 auto;
}

.ai_head {
  text-align: center;
}

.ai_head .heading {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #6c5ce7, #ffcc33);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  line-height: 1.3;
}

.ai_head .description {
  color: #cccccc;
  font-size: 1.1rem;
  opacity: 0.9;
}

.aiFeatures_section {
  padding-top: 80px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
}

.aiFeature_card__section {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature_circle {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(108, 92, 231, 0.3);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature_circle:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(108, 92, 231, 0.2);
  border-color: var(--yellow);
}

.feature_circle img {
  width: 30px;
  height: 30px;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.feature_circle:hover img {
  transform: scale(1.1);
}

.feature_text {
  display: flex;
  flex-direction: column;
}

.feature_text p {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}

.feature_text span {
  margin-top: 2px;
  font-size: 13px;
  color: #cccccc;
  font-weight: 500;
}

.aiFeatures_image {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.aiFeatures_image img {
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
}

/* --------------------------------- WHY PARTNER --------------------------------- */

#whyPartner {
  padding: 80px 20px;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.whyPartner_container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.whyPartner_head .subheading {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--yellow);
  margin-bottom: 12px;
}

.whyPartner_head .heading {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #6c5ce7, #ffcc33);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
}

.buySubscription_card__section {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline_connector {
  display: flex;
  justify-content: center;
  margin: 16px 0;
}

.connector_line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--violet));
  box-shadow: 0 0 10px rgba(255, 204, 51, 0.4);
}

.buySubscription_card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.buySubscription_card:nth-child(odd) {
  transform: translateX(-30px);
}

.buySubscription_card.appeared {
  opacity: 1;
  transform: translateX(0);
}

.buySubscription_card .step_icon_box {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  background: rgba(177, 51, 255, 0.15);
  border: 1px solid var(--violet);
  color: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 15px rgba(153, 51, 255, 0.2);
  flex-shrink: 0;
}

.buySubscription_card .step_content {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  backdrop-filter: blur(8px);
}

.buySubscription_card .step_content h3 {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 600;
}

.buySubscription_card .step_content p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.6;
}

.buySubscription_card:nth-child(4n+1) .buySubscription_card .step_content,
.buySubscription_card:nth-child(4n+3) .buySubscription_card .step_content {
  margin-left: auto;
}

.buySubscription_card:nth-child(4n+2),
.buySubscription_card:nth-child(4n+4) {
  flex-direction: row-reverse;
}

.buySubscription_card:nth-child(4n+2) .buySubscription_card .step_content,
.buySubscription_card:nth-child(4n+4) .buySubscription_card .step_content {
  margin-right: auto;
}

@keyframes slide_up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.buySubscription_card__section .buySubscription_card {
  animation: slide_up 0.7s ease forwards;
}

.buySubscription_card:nth-child(1) {
  animation-delay: 0.6s;
}

.buySubscription_card:nth-child(3) {
  animation-delay: 0.8s;
}

.buySubscription_card:nth-child(5) {
  animation-delay: 1.0s;
}

.buySubscription_card:nth-child(7) {
  animation-delay: 1.2s;
}

@media (prefers-reduced-motion: reduce) {

  .section_title,
  .section_subtitle,
  .buySubscription_card,
  .cta_wrapper {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ------------------ HOW IT WORKS ------------------ */

#howItWorks {
  padding: 80px 20px;
  background: var(--bg-secondary);
}

.howItWorks_container {
  max-width: 1400px;
  margin: 0 auto
}

.howItWorks_subHeading {
  text-align: center;
  color: var(--yellow);
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.howItWorks_heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 12px 0 20px;
  line-height: 1.3;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.howItWorks_description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--text-secondary);
}

.howItWorks_step_section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.howItWorks_step {
  width: calc(33.333% - 40px);
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 20px 10px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.howItWorks_step:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(108, 92, 231, 0.2);
}

.howItWorks_step_img {
  position: relative;
  z-index: 1;
}

.howItWorks_step_img img {
  width: 50px;
}

.step_number {
  position: absolute;
  z-index: 2;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
}

.howItWorks_step_heading {
  font-weight: 600;
  font-size: 1.4rem;
  text-transform: uppercase;
  line-height: 1.4;
}

.howItWorks_step_heading span {
  color: var(--yellow);
}

.howItWorks_step_description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 8px;
}

.howItWorks_button_section {
  text-align: center;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.howItWorks_button {
  background: var(--gradient);
  color: #111;
  padding: 10px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: var(--transition);
}

.howItWorks_button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(108, 92, 231, 0.4);
}

/* ------------------ OUR BENEFIT ------------------ */

#ourBenefits {
  padding: 80px 20px;
  /* background: linear-gradient(to bottom, #f9faff 0%, #ffffff 100%); */
  background: linear-gradient(180deg, #121212 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.benefits_container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.benefits_head {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.benefits_head .subheading {
  display: inline-block;
  /* background: rgba(108, 92, 231, 0.1);
  color: #6c5ce7; */
  background: rgba(108, 92, 231, 0.2);
  color: #a594ff;
  text-shadow: 0 0 8px rgba(108, 92, 231, 0.3);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.benefits_head .heading {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefits_head .description {
  font-size: 1.15rem;
  /* color: #4a5568; */
  color: #a1a1aa;
  line-height: 1.6;
  margin: 0 auto;
}

.benefits_card__section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.benefit_card {
  /* background: white; */
  border-radius: 16px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  /* box-shadow: 0 10px 30px rgba(108, 92, 231, 0.08); */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  /* border: 1px solid rgba(108, 92, 231, 0.1); */
  background: #1e1e1e;
  border: 1px solid #2e2e2e;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.benefit_card:hover {
  /* transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(108, 92, 231, 0.15); */
  box-shadow: 0 15px 40px rgba(108, 92, 231, 0.2);
  border-color: rgba(108, 92, 231, 0.3);
}

.benefit_card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 24px 0 16px;
  /* color: #2d3748; */
  color: #f3f4f6;
}

.benefit_card p {
  /* color: #718096; */
  color: #a1a1aa;
  line-height: 1.6;
  font-size: 0.9rem;
}

.benefit_card .card_icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: rgba(108, 92, 231, 0.1);
  color: #6c5ce7; */
  background: rgba(108, 92, 231, 0.15);
  color: #a594ff;
  box-shadow: 0 0 15px rgba(108, 92, 231, 0.1);
}

.benefit_card .card_icon svg {
  stroke-width: 1.5;
}

.benefit_card .card_hover_effect {
  position: absolute;
  width: 120px;
  height: 120px;
  /* background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, rgba(108, 92, 231, 0) 70%); */
  background: radial-gradient(circle, rgba(108, 92, 231, 0.15) 0%, rgba(108, 92, 231, 0) 70%);
  border-radius: 50%;
  top: -30px;
  right: -30px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.benefit_card:hover .card_hover_effect {
  opacity: 1;
}

.benefits_image__section {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  /* box-shadow: 0 30px 60px rgba(108, 92, 231, 0.15); */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.benefits_img__container {
  position: relative;
  padding-top: 56.25%;
  /* 16:9 aspect ratio */
  overflow: hidden;
  border-radius: 24px;
}

.benefits_img__container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.benefits_img__highlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(108, 92, 231, 0.1) 0%, rgba(108, 92, 231, 0) 50%);
  pointer-events: none;
}

/* ------------------ USE CASES ------------------ */

#useCases {
  padding: 80px 20px;
  background: linear-gradient(180deg, #0a0a0a 0%, #121212 100%);
  position: relative;
  overflow: hidden;
}

.useCases_container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

.usecase_head .badge {
  display: inline-block;
  background: rgba(108, 92, 231, 0.2);
  color: #a594ff;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-shadow: 0 0 8px rgba(108, 92, 231, 0.3);
}

.usecase_head .heading {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.usecase_head .description {
  font-size: 1.1rem;
  color: #a1a1aa;
  line-height: 1.6;
  margin: 0 auto;
}

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

.useCase_card {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  border: 1px solid #2a2a2a;
  z-index: 1;
}

.useCase_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(108, 92, 231, 0.2);
  border-color: rgba(108, 92, 231, 0.3);
}

.useCase_card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 24px 0 16px;
  color: #f3f4f6;
}

.useCase_card p {
  color: #a1a1aa;
  line-height: 1.6;
  font-size: 1rem;
}

.card_icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(108, 92, 231, 0.1);
  position: relative;
}

.card_icon img {
  width: 40px;
  z-index: 2;
}

.icon_glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.2) 0%, rgba(108, 92, 231, 0) 70%);
  border-radius: 16px;
}

.card_hover_effect {
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.15) 0%, rgba(108, 92, 231, 0) 70%);
  border-radius: 50%;
  top: -30px;
  right: -30px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.useCase_card:hover .card_hover_effect {
  opacity: 1;
}

/* ------------------ Download Sample Reports ------------------ */

#sampleReport {
  padding: 80px 20px;
  background: var(--bg-primary);
  color: var(--text-secondary);
  position: relative;
}

.sampleReport_container {
  max-width: 1400px;
  margin: 0 auto;
}

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

.sampleReport_head .heading {
  display: inline-block;
  background: var(--gradient);
  color: white;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.sampleReport_head .subheading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
  line-height: 1.3;
}

.sampleReport_head .description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.sampleReport_section {
  display: flex;
  gap: 40px;
}

.sampleReport_left__section {
  flex: 1;
}

.sampleReport_left__section .desc {
  margin-bottom: 40px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.reports_heading {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
}

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

.report_card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 30px;
  transition: var(--transition);
  border: 1px solid var(--border-glow);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  backdrop-filter: blur(10px);
}

.report_card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--violet);
}

.report_icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(108, 92, 231, 0.15);
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.report_title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.report_description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.report_download__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(108, 92, 231, 0.15);
  color: var(--violet);
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: 1px solid var(--border-glow);
}

.report_download__btn:hover {
  background: rgba(108, 92, 231, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(108, 92, 231, 0.2);
}

.sampleReport_right__section {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.featured_report {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 35px;
  border: 1px solid var(--border-glow);
  box-shadow: var(--shadow-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
}

.featured_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.featured_badge {
  background: var(--gradient);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.featured_title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
  color: var(--text-primary);
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.featured_description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.pdf_preview {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 300px;
  margin-top: auto;
  border: 1px solid var(--border-glow);
}

.blurred_pdf {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(.5px) brightness(0.8);
  transition: var(--transition);
}

.pdf_preview:hover .blurred_pdf {
  filter: blur(.1px) brightness(1);
}

.pdf_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(15, 15, 26, 0.7);
  padding: 20px;
  text-align: center;
}

.featured_report__download {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
  font-size: 1.1rem;
}

.featured_report__download:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(108, 92, 231, 0.5);
}

.file_info {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 15px;
  font-weight: 500;
}

/* Animation for cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate_card {
  animation: fadeInUp 0.6s ease-out forwards;
}

.glow_effect {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--violet);
  opacity: 0.1;
  filter: blur(80px);
  z-index: 1;
}

.glow_1 {
  top: 10%;
  left: 10%;
  background: var(--violet);
}

.glow_2 {
  bottom: 10%;
  right: 10%;
  background: var(--yellow);
}

/* ------------------ FAQ ------------------ */
#faq {
  padding: 80px 20px;
}

.faq_container {
  max-width: 1400px;
  margin: 0 auto;
}

.faq_head .heading {
  font-size: 2.3rem;
  font-weight: 600;
  text-align: center;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 60px;
}

.faq_body_section {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.faqs_container {
  flex: 1;
  min-width: 300px;
}

.faq {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.faq_ques {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  color: var(--text-primary);
  font-weight: 600;
}

.faq_toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--yellow);
  display: flex;
}

.faq_text {
  padding: 0 20px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  color: var(--text-secondary);
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.faq.active .faq_text {
  padding: 0 20px 16px;
  max-height: 200px;
  opacity: 1;
}

.faq .right_icon {
  display: block;
}

.faq .down_icon {
  display: none;
}

.faq.active .right_icon {
  display: none;
}

.faq.active .down_icon {
  display: block;
}

.faq_right_section {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  flex: 1;
  min-width: 300px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq_right_section p {
  font-size: 0.9rem;
  color: var(--yellow);
  margin-bottom: 8px;
}

.faq_right_section h4 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--text-primary);
}

/* ------------------------------------------ Media Queries ------------------------------------------ */

/* Extra large desktops (optional) */
@media (min-width: 1600px) {}

/* small desktops and laptops */
@media (max-width: 1300px) {
  #hero {
    padding: 50px 20px;
  }

  .hero_section {
    gap: 20px;
  }

  .hero_content .subheading {
    font-size: 0.8rem;
  }

  .hero_content .heading {
    font-size: 2.2rem;
  }

  .howItWorks_step_section {
    gap: 30px;
  }

  .howItWorks_step {
    width: calc(50% - 25px);
  }

  .quote_btn,
  .plan_btn {
    font-size: 0.8rem;
    padding: 10px 15px;
  }

  .hero_form {
    padding: 30px;
  }

}

/* Standard tablet and below */
@media (max-width: 1024px) {

  /* ------------------ HERO SECTION ------------------ */

  .hero_section {
    flex-direction: column;
  }

  .hero_content,
  .hero_form {
    width: 100%;
  }

  .hero_section {
    gap: 50px;
  }

  /* ------------------ HOW IT WORKS ------------------ */

  .howItWorks_step {
    width: calc(50% - 25px);
  }

  /* ------------------ Download Sample Reports ------------------ */


  .sampleReport_section {
    flex-direction: column;
  }

  .reports_heading,
  .sampleReport_left__section .desc {
    display: none;
  }

  /* ------------------ FAQ ------------------ */


  .faq_body_section {
    flex-direction: column;
  }

  .faq_right_section {
    width: 100%;
  }

}

/* Large phones and small tablets */
@media (max-width: 768px) {

  /* ------------------ HERO SECTION ------------------ */

  .hero_content .heading {
    font-size: 3rem;
  }


  /* ------------------ AI FEATURES SECTION ------------------ */

  .aiFeature_card__section {
    align-items: center;
  }

  .aiFeatures_section {
    gap: 30px;
    flex-direction: column-reverse;
  }

  .aiFeature_card__section,
  .aiFeatures_image {
    width: 100%;
  }

  .feature_circle {
    width: 100%;
    padding: 14px 18px;
  }

  /* ------------------ HOW IT WORKS ------------------ */

  .howItWorks_step_section {
    flex-direction: column;
  }

  .howItWorks_step {
    width: 100%;
  }

  /* ------------------ OUR BENEFIT ------------------ */

  .benefit_card {
    padding: 30px 20px;
  }

  /* ------------------ USE CASES ------------------ */

  .useCases_card__section {
    grid-template-columns: 1fr;
  }

  /* ------------------ Download Sample Reports ------------------ */

  .report_card__section {
    grid-template-columns: 1fr;
  }

}

/* Small phones */
@media (max-width: 480px) {

  /* ------------------ HERO SECTION ------------------ */

  #hero {
    padding: 50px 20px;
  }

  .hero_content .subheading {
    font-size: 0.8rem;
  }

  .hero_content .heading {
    font-size: 2.2rem;
  }

  .quote_btn,
  .plan_btn {
    font-size: 0.8rem;
    padding: 10px 15px;
  }

  .hero_form {
    padding: 30px;
  }

  /* ------------------ AI FEATURES SECTION ------------------ */

  .ai_head .heading {
    font-size: 2rem;
  }

  .ai_head .description {
    font-size: 1rem;
  }

  .feature_circle p {
    font-size: 1rem;
  }

  /* ------------------ WHY PARTNER ------------------ */

  .whyPartner_head .subheading {
    font-size: 0.8rem;
  }

  .whyPartner_head .heading {
    font-size: 1.7rem;
  }

  .buySubscription_card .step_content h3 {
    font-size: 1.2rem;
  }

  .buySubscription_card .step_content p {
    font-size: 0.9rem;
  }

  /* ------------------ HOW IT WORKS ------------------ */

  .howItWorks_subHeading {
    font-size: 0.8rem;
  }

  .howItWorks_heading {
    font-size: 1.7rem;
  }

  /* ------------------ OUR BENEFIT ------------------ */

  .benefits_head .heading {
    font-size: 1.7rem;
  }

  .benefits_head .description {
    font-size: 1rem;
  }

  .benefits_card__section {
    margin-bottom: 40px;
  }

  /* ------------------ USE CASES ------------------ */

  .usecase_head .heading {
    font-size: 1.7rem;
  }

  /* ------------------ Download Sample Reports ------------------ */

  .sampleReport_head .heading {
    font-size: .8rem;
  }

  .sampleReport_head .subheading {
    font-size: 1.7rem;
  }

  .sampleReport_head .description {
    font-size: 1rem;
  }

  .featured_description {
    font-size: 1rem;
  }

  .featured_report__download {
    padding: 13px 15px;
    font-size: 0.8rem;
  }

  /* ------------------ FAQ ------------------ */

  .faq_head .heading {
    font-size: 1.7rem;
  }

  .faq_right_section {
    padding: 25px;
  }

}

/* ------------------ FOOTER ------------------ */
footer {
  position: relative;
  overflow: hidden;
  padding-top: 50px;
  color: #e0e0e0;
  background: linear-gradient(135deg, #0a0a12 0%, #12121a 100%);
  border-top: 1px solid rgba(108, 92, 231, 0.1);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}

footer::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(150, 190, 255, 0.15) 0%, transparent 70%);
  filter: blur(15px);
  z-index: 0;
  pointer-events: none;
}

.footer_gradien_bg {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.15) 0%, transparent 60%);
  filter: blur(25px);
  pointer-events: none;
  animation: pulse 8s ease-in-out infinite;
}

.footer_container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer_links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer_logo img {
  transition: transform 0.3s ease;
}

.footer_logo img:hover {
  transform: scale(1.03);
}

.footer_logo p {
  color: #aaa;
  line-height: 1.6;
  margin: 20px 0;
  font-size: 1rem;
  max-width: 400px;
}

.social_links {
  display: flex;
  gap: 18px;
  font-size: 1.3rem;
}

.social_links a {
  color: #a29bfe;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(108, 92, 231, 0.1);
  text-decoration: none;
}

.social_links a:hover {
  color: #ffffff;
  transform: translateY(-4px) scale(1.1);
  background: rgba(108, 92, 231, 0.2);
  box-shadow: 0 5px 15px rgba(162, 155, 254, 0.3);
}

.footer_links__section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-items: start;
}

.footer_column h4 {
  font-size: 1.15rem;
  background: linear-gradient(45deg, #a29bfe, #8a7cf9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.footer_column h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(45deg, #6c5ce7, #a29bfe);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(108, 92, 231, 0.4);
  transition: width 0.3s ease;
}

.footer_column h4:hover::after {
  width: 100%;
}

.footer_column a {
  display: block;
  color: #bbb;
  text-decoration: none;
  font-size: 0.95rem;
  margin: 12px 0;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer_column a::before {
  content: '›';
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #6c5ce7;
}

.footer_column a:hover {
  color: #ffffff;
  transform: translateX(6px);
  text-shadow: 0 0 8px rgba(108, 92, 231, 0.4);
}

.footer_column a:hover::before {
  opacity: 1;
  left: -12px;
}

.footer_cta {
  background: linear-gradient(145deg, rgba(30, 30, 45, 0.4), rgba(20, 20, 35, 0.4));
  padding: 25px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(108, 92, 231, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  max-width: 500px;
}

.footer_cta h4 {
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 12px;
  text-shadow: 0 0 8px rgba(108, 92, 231, 0.2);
}

.footer_cta p {
  color: #aaa;
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.newsletter_form {
  display: flex;
  gap: 12px;
}

.newsletter_form input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid rgba(108, 92, 231, 0.3);
  border-radius: 12px;
  background: rgba(30, 30, 45, 0.6);
  color: #fff;
  font-size: 0.95rem;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.newsletter_form input:focus {
  outline: none;
  border-color: #a29bfe;
  box-shadow: 0 0 0 3px rgba(162, 155, 254, 0.15), 0 0 15px rgba(108, 92, 231, 0.2);
}

.newsletter_form button {
  background: linear-gradient(45deg, #6c5ce7, #a29bfe);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(108, 92, 231, 0.2);
}

.newsletter_form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(108, 92, 231, 0.35);
  background: linear-gradient(45deg, #a29bfe, #6c5ce7);
}

.footer_bottom {
  border-top: 1px solid rgba(108, 92, 231, 0.15);
  font-size: 0.9rem;
  color: #888;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px;
}

.footer_badge {
  background: rgba(108, 92, 231, 0.15);
  color: #a29bfe;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(108, 92, 231, 0.3);
  box-shadow: 0 4px 12px rgba(108, 92, 231, 0.1);
}

/* Animation for gradient background */
@keyframes pulse {
  0% {
    opacity: 0.6;
  }

  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }

  100% {
    opacity: 0.6;
  }
}

@media (min-width: 769px) and (max-width: 1320px) {
  .footer_container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 40px;
  }

  .footer_logo {
    flex: 1 1 100%;
  }

  .footer_links {
    flex: 1 1 45%;
    display: flex;
    justify-content: space-between;
  }

  .footer_cta {
    flex: 1 1 45%; 
    max-width: 100%;
  }

  .footer_column {
    flex: 1;
    min-width: 150px;
  }
}


@media (max-width: 768px) {
.footer_container {
    flex-direction: column;
    align-items: flex-start; 
    gap: 24px;
    padding: 20px;
  }

  .footer_logo,
  .footer_links,
  .footer_cta {
    width: 100%;
  }

  .footer_links {
    flex-direction: column;
    gap: 20px;
  }

  .footer_column {
    width: 100%;
  }

  .newsletter_form {
    flex-direction: column;
    gap: 12px;
  }

  .footer_bottom {
    flex-direction: column-reverse;
    align-items: start;
    gap: 10px;
  }
}