@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #5b21b6;
  --primary-dark: #4c1d95;
  --secondary: #10b981;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --accent: #fbbf24;
}

body {
      font-family: "Poppins", sans-serif !important;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: var(--bg-white);
  padding: 20px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-space {
  width: 180px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 18px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 140px 0 80px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease;
}

.hero .subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form Styles */
.form-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  margin: 0 auto 30px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input {
  width: 100%;
  padding: 15px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(91, 33, 182, 0.1);
}

.cta-button {
  width: 100%;
  padding: 18px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(91, 33, 182, 0.3);
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-button:active::before {
  width: 300px;
  height: 300px;
}

.trust-signals {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.trust-signal {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.check {
  color: var(--secondary);
  font-size: 18px;
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-light {
  background: var(--bg-light);
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: var(--text-dark);
}
.why-bg  h2, .why-bg .section-subtitle {
    color:#fff !important;
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 50px;
}

/* How It Works */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.step {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.step-title img {
    width:30px;
    height:30px;
}
.step-title {
        display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom:15px;
}
.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 0;
  color: var(--text-dark);
}

/* Why Use Section */

.why-bg {
        background-image: url(/static/images/why-bg.jpg);
    background-size: cover;
}
.what-inside-bg {
    background-image: url(/static/images/whatinside-img.jpg);
    background-size: cover;
}
.video-wrapper {
  width: 100%;
  max-width: 800px;   /* optional, limits max size */
  margin: auto;
  aspect-ratio: 16 / 9; /* keeps 16:9 ratio */
}
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.problem-list {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  margin: 0 auto;
}

.problem-item {
  display: flex;
  align-items: start;
  margin-bottom: 25px;
  gap: 15px;
}

.problem-icon {
  color: #ef4444;
  font-size: 24px;
  flex-shrink: 0;
}

.solution-highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  margin-top: 40px;
  font-size: 1.2rem;
  font-weight: 600;
}

/* Comparison Section */
.comparison-container {
  max-width: 1000px;
  margin: 50px auto;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  padding: 20px;
}
.image-placeholder img {
    max-width:100%;
    height: 400px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 40px;
}

.feature {
  display: flex;
  align-items: start;
  gap: 15px;
}

.feature-icon {
  color: var(--secondary);
  font-size: 24px;
  flex-shrink: 0;
}

/* Report Preview Section */
.report-preview-container {
  max-width: 800px;
  margin: 50px auto;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.report-preview-placeholder {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #92400e;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  padding: 20px;
}

.report-features {
  padding: 40px;
}

.report-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

/* Target Audience */
.audience-grid {
display: flex;
  flex-wrap: wrap;        /* allow wrapping into multiple rows */
  justify-content: center; /* center horizontally */
  gap: 25px;              /* space between cards */
  margin-top: 50px;

}

.audience-card {
  flex: 1 1 calc(33.33% - 25px); /* 3 cards per row */
  max-width: 350px;              /* prevent from growing too wide */
  min-width: 250px;  
  background: white;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.audience-card strong {
    color:var(--primary);
}
.audience-card:hover {
  transform: translateX(5px);
}

/* About Section */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary);
}

.stat-label {
  color: var(--text-light);
  margin-top: 5px;
}

/* FAQ Section */
.faq-container {
      max-width: 700px;
      margin: auto;
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
    }

    .faq-item {
      border-bottom: 1px solid #ddd;
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      padding: 16px 20px;
      font-size: 16px;
      font-weight: 600;
      color: #333;
      transition: background 0.3s;
    }

    .faq-question:hover {
      background: #f3f0ff;
    }

    .faq-question svg {
      width: 20px;
      height: 20px;
      transition: transform 0.3s ease;
      fill: #5b21b6;
    }

    .faq-question.active svg {
      transform: rotate(180deg);
    }

    .faq-answer {
      display: none;
      padding: 0 20px;
      background: #fafafa;
      color: #555;
    }

    .faq-answer.open {
      display: block;
      padding: 16px 20px;
    }
.faq-container {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
  margin-bottom:10px;
}

.faq-question {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.faq-answer {
  color: var(--text-light);
  line-height: 1.6;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  padding: 80px 0;
  text-align: center;
  color: white;
}

.final-cta h2 {
  color: white;
  margin-bottom: 20px;
}

.final-cta .subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero .subtitle {
    font-size: 1.1rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .form-container {
    padding: 30px 20px;
  }

  .trust-signals {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .step-title img {
    width:30px;
    height:30px;
}
}
