:root {
  --purple: #602e9e;
  --orange: #d68e45;
  --light-purple: #f8f5fc;
  --light-orange: #fef8f3;
  --text-dark: #2d1b4e;
  --text-muted: #5d4a7a;
  --gradient-main: linear-gradient(135deg, #602e9e, #d68e45);
  --gradient-reverse: linear-gradient(135deg, #d68e45, #602e9e);
  --card-shadow: 0 8px 24px rgba(96, 46, 158, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
  background: #faf9fc;
}



/* Primary CTA Buttons */
.btn-cta,
.hero-cta-primary,
.cta-button,
.blueprint-download-btn {
  background: var(--gradient-main);
  color: #fff;
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 6px 18px rgba(96, 46, 158, 0.25);
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 300px;
}
.btn-cta::before,
.hero-cta-primary::before,
.cta-button::before,
.blueprint-download-btn::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;
}
.btn-cta:hover::before,
.hero-cta-primary:hover::before,
.cta-button:hover::before,
.blueprint-download-btn:hover::before {
  width: 300px;
  height: 300px;
}
.btn-cta:hover,
.hero-cta-primary:hover,
.cta-button:hover,
.blueprint-download-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(96, 46, 158, 0.35);
  color: #fff;
  background: var(--gradient-reverse);
}
.btn-cta i {
  margin-right: 0.5rem;
}

/* Secondary CTA */
.btn-explore,
.hero-cta-secondary {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  width: 100%;
  max-width: 300px;
}
.btn-explore:hover,
.hero-cta-secondary:hover {
  background: var(--purple);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(96, 46, 158, 0.3);
}
.btn-explore i {
  margin-right: 0.5rem;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #f8f5fc 0%, #fef8f3 50%, #f8f5fc 100%);
  padding: 80px 15px 60px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(96, 46, 158, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(214, 142, 69, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-size: clamp(1.8rem, 6vw, 3.5rem);
}
.hero h1 .highlight {
  display: inline-block;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p.lead {
  color: var(--text-muted);
  max-width: 600px;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero .cta-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.flywheel-wrapper {
  position: relative;
  max-width: 500px;
  margin: 2rem auto 0;
  width: 100%;
}
.flywheel-wrapper img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(96, 46, 158, 0.2));
  transition: transform 0.3s ease;
}
.flywheel-wrapper img:hover {
  transform: scale(1.05);
}

/* Section Header Spacing */
.section-header {
  margin-bottom: 60px;
}

/* STATS SECTION */
.stats-section {
  padding: 60px 15px;
  background: #ffffff;
}
.stats-title {
  text-align: center;
  margin-bottom: 3rem;
}
.stats-title h1 {
  font-family: "Poppins", sans-serif;
  margin-bottom: 1rem;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--text-dark);
  line-height: 1.2;
}
.stats-title p {
  color: var(--text-muted);
  font-size: 1.1rem;
}
.stat {
  text-align: center;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}
.stat:hover {
  transform: translateY(-10px);
}
.stat .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-main);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(96, 46, 158, 0.25);
}
.stat:hover .icon {
  transform: scale(1.1) rotate(10deg);
}
.stat h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 2rem);
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}
.stat p {
  color: var(--text-muted);
  font-weight: 600;
  margin: 0;
}

/* ABOUT SECTION */
.about-section {
  padding: 60px 15px;
  background: linear-gradient(180deg, #faf9fc 0%, #f8f5fc 100%);
  position: relative;
  overflow: hidden;
}
.section-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--text-dark);
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.badge-revenue {
  background: var(--gradient-main);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
  margin: 0.5rem 0;
}
.lead-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 900px;
  margin: 0 auto;
}
.highlight-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(96, 46, 158, 0.1);
  border: 2px solid rgba(96, 46, 158, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(96, 46, 158, 0.03) 0%,
    rgba(214, 142, 69, 0.03) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.highlight-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(96, 46, 158, 0.2);
  border-color: var(--orange);
}
.highlight-card:hover::before {
  opacity: 1;
}
.subtitle-text {
  color: #2d1b4e;
  margin-bottom: 1.5rem;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.5rem);
}

/* RX EXPLAIN SECTION */
.rx-explain {
  padding: 60px 15px;
  background: #ffffff;
}
.our-section {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.rx-explain .lead {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.7;
}
.rx-cir {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  transition: all 0.3s ease;
  background: var(--gradient-main);
  color: white;
  font-size: 2rem;
  box-shadow: 0 8px 20px rgba(96, 46, 158, 0.25);
}
.rx-cir:hover {
  transform: scale(1.1) rotate(10deg);
}
.rx-explain .col-md-4 > div {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  border: 2px solid rgba(96, 46, 158, 0.1);
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(96, 46, 158, 0.08);
}
.rx-explain .col-md-4 > div:hover {
  transform: translateY(-10px);
  border-color: var(--orange);
  box-shadow: 0 15px 35px rgba(96, 46, 158, 0.2);
}
.rx-explain h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* SERVICES SECTION */
.container-custom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
  background: linear-gradient(180deg, #faf9fc 0%, #f8f5fc 100%);
}
.main-title {
  text-align: center;
  color: var(--text-dark);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 30px;
  font-family: "Poppins", sans-serif;
}
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px 0;
  align-items: center;
  margin-top: 30px;
}
.service-ribbon {
  position: relative;
  background: white;
  border-radius: 15px;
  padding: 30px 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 2px solid rgba(96, 46, 158, 0.15);
  width: 100%;
  max-width: 1020px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 75px;
  box-shadow: 0 4px 15px rgba(96, 46, 158, 0.1);
}
.service-ribbon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(96, 46, 158, 0.03) 0%,
    rgba(214, 142, 69, 0.03) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-ribbon:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(96, 46, 158, 0.25);
  border-color: var(--orange);
}
.service-ribbon:hover::before {
  opacity: 1;
}
.corner-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 80px solid var(--purple);
  border-right: 80px solid transparent;
}
.service-header {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  z-index: 1;
}
.service-number {
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  opacity: 0.4;
  margin: 6px;
}
.service-title {
  color: var(--text-dark);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}
.glow-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-ribbon:hover .glow-effect {
  opacity: 1;
}

/* WHOM WE SERVE */
.whom-section {
  background: #ffffff;
  padding: 60px 15px;
}
.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.main-container h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--text-dark);
  line-height: 1.2;
  text-align: center;
  margin-bottom: 2rem;
}
.intro-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 3rem;
  text-align: center;
}
.card-custom {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(96, 46, 158, 0.1);
  box-shadow: 0 4px 15px rgba(96, 46, 158, 0.08);
  transition: all 0.4s ease;
  width: 100%;
}
.card-custom:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(96, 46, 158, 0.2);
  border-color: var(--orange);
}
.card-header-custom {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}
.check-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--purple);
  stroke-width: 2;
}
.card-title-custom {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}
.card-description {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* PACKAGES/NEON CARD */
.packages {
  padding: 60px 15px;
  background: linear-gradient(180deg, #faf9fc 0%, #f8f5fc 100%);
}
.neon-card {
  background: white;
  border-radius: 30px;
  border: 2px solid rgba(96, 46, 158, 0.2);
  box-shadow: 0 20px 50px rgba(96, 46, 158, 0.15);
  overflow: hidden;
  position: relative;
  padding: 3rem 2rem;
}
.neon-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(96, 46, 158, 0.03) 0%,
    rgba(214, 142, 69, 0.03) 100%
  );
}
.stat-box {
  background: white;
  padding: 1.3rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.5s ease;
  box-shadow: 0 10px 30px rgba(96, 46, 158, 0.15);
  border: 2px solid rgba(96, 46, 158, 0.1);
  position: relative;
  overflow: hidden;
}
.stat-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-main);
}
.stat-box:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(96, 46, 158, 0.25);
  border-color: var(--orange);
}
.stat-num {
  font-size: clamp(1.8rem, 5vw, 2rem);
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* BLUEPRINT SECTION */
.blueprint-hero-section {
  background: linear-gradient(135deg, #f8f5fc 0%, #fef8f3 50%, #f8f5fc 100%);
  padding: 60px 15px;
  min-height: auto;
}
.blueprint-content-wrapper {
  background: white;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 20px 40px rgba(96, 46, 158, 0.15);
  border: 2px solid rgba(96, 46, 158, 0.1);
}
.blueprint-heading {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 6vw, 3rem);
  color: var(--text-dark);
  line-height: 1.2;
  text-align: center;
  margin-bottom: 1.5rem;
}
.blueprint-form-container {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 15px 35px rgba(96, 46, 158, 0.1);
  border: 2px solid rgba(96, 46, 158, 0.1);
}
.blueprint-form-label {
  color: var(--purple);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.blueprint-form-input,
.blueprint-form-select {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 1rem;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  width: 100%;
}
.blueprint-form-input:focus,
.blueprint-form-select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(96, 46, 158, 0.1);
  outline: none;
}
.blueprint-download-btn {
  background: var(--gradient-main);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 10px;
  font-size: 1.1rem;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.blueprint-download-btn::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;
}
.blueprint-download-btn:hover::before {
  width: 300px;
  height: 300px;
}
.blueprint-download-btn:hover {
  background: var(--gradient-reverse);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(96, 46, 158, 0.3);
}
.blueprint-disclaimer {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}

/* REVIEWS SECTION */
.container-center {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 15px;
  background: #ffffff;
}
.reviews-container {
  max-width: 1400px;
  width: 100%;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(96, 46, 158, 0.1);
  overflow: hidden;
  margin: auto;
  border: 2px solid rgba(96, 46, 158, 0.1);
}
.reviews-container .header {
  text-align: center;
  padding: 60px 40px 40px;
  background: white;
}
.reviews-container .header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
}
.reviews-container .header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
.slider-wrapper {
  position: relative;
  padding: 0 20px 60px;
  background: white;
}
.slider-container {
  overflow: hidden;
  border-radius: 15px;
}
.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 30px;
}
.review-card {
  flex: 0 0 calc(33.333% - 20px);
  background: #f8f9fa;
  border-radius: 15px;
  padding: 30px;
  border: 2px solid rgba(96, 46, 158, 0.1);
  transition: all 0.3s ease;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(96, 46, 158, 0.15);
  border-color: var(--orange);
}
.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(96, 46, 158, 0.15);
}
.profile-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.profile-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.review-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
  flex-grow: 1;
}
.rating-section {
  margin-top: auto;
}
.star {
  color: #ffd700;
  font-size: 1.2rem;
}
.industry-location {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}
.navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.nav-btn {
  background: var(--gradient-main);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(96, 46, 158, 0.3);
}
.nav-btn:hover {
  background: var(--gradient-reverse);
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(96, 46, 158, 0.4);
}
.nav-btn:disabled {
  background: #bdc3c7;
  cursor: not-allowed;
  transform: scale(1);
  box-shadow: none;
}
.dots {
  display: flex;
  gap: 8px;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #bdc3c7;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active {
  background: var(--purple);
  transform: scale(1.2);
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #fef8f3 0%, #f8f5fc 50%, #fef8f3 100%);
  color: var(--text-dark);
  padding: 60px 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(96, 46, 158, 0.03) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  animation: float 20s linear infinite;
}
@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(-30px, -30px) rotate(360deg);
  }
}
.cta-banner .container {
  position: relative;
  z-index: 2;
}
.cta-banner h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 2rem);
  margin-bottom: 1rem;
}
.cta-banner p {
  max-width: 760px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.cta-banner .btn-light {
  background: white;
  color: var(--purple);
  border: 2px solid var(--purple);
  border-radius: 12px;
  padding: 0.8rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.cta-banner .btn-light:hover {
  background: var(--gradient-main);
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(96, 46, 158, 0.3);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: #f8f5fc;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #602e9e, #d68e45);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #d68e45, #602e9e);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */

.faq-section {
  padding: 80px 15px;
  background: linear-gradient(180deg, #ffffff 0%, #faf9fc 100%);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 25% 25%,
      rgba(96, 46, 158, 0.04) 1px,
      transparent 1px
    )
    0 0 / 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.faq-section .container {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
}

.faq-heading {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(2.1rem, 5.5vw, 3rem);
  color: var(--text-dark);
  text-align: center;
  line-height: 1.15;
  margin-bottom: 0.8rem;
}

.faq-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  max-width: 680px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: white;
  border: 2px solid rgba(96, 46, 158, 0.11);
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(96, 46, 158, 0.08);
  overflow: hidden;
  transition: all 0.35s ease;
}

.faq-item:hover {
  border-color: rgba(96, 46, 158, 0.25);
  box-shadow: 0 12px 32px rgba(96, 46, 158, 0.14);
  transform: translateY(-4px);
}

.faq-item.open {
  border-color: var(--orange);
  box-shadow: 0 14px 40px rgba(214, 142, 69, 0.18);
}

.faq-item::before {
  content: "";
  display: block;
  height: 4px;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.faq-item.open::before {
  opacity: 1;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  cursor: pointer;
  transition: background 0.25s ease;
}

.faq-question:hover {
  background: rgba(96, 46, 158, 0.02);
}

.faq-badge {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(96, 46, 158, 0.09),
    rgba(214, 142, 69, 0.09)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--purple);
  transition: all 0.35s ease;
}

.faq-item.open .faq-badge {
  background: var(--gradient-main);
  color: white;
  transform: scale(1.08);
}

.faq-question-text {
  flex: 1;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: clamp(1.05rem, 2.3vw, 1.12rem);
  color: var(--text-dark);
  line-height: 1.45;
  margin: 0;
}

.faq-chevron {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(96, 46, 158, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.faq-chevron svg {
  width: 18px;
  height: 18px;
  stroke: var(--purple);
  stroke-width: 2.8;
  transition: all 0.35s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--gradient-main);
}

.faq-item.open .faq-chevron svg {
  stroke: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.48s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 28px 28px 96px;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.78;
}

.faq-cta-wrap {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}

.faq-cta-wrap p {
  color: var(--text-muted);
  font-size: 1.08rem;
  margin-bottom: 1.5rem;
}

.faq-cta-wrap .btn-cta {
  width: auto;
  min-width: 260px;
  max-width: none;
  padding: 0.9rem 2.1rem;
}

/* ── RESPONSIVE ── */

@media (max-width: 992px) {
  .hero {
    padding: 100px 15px 60px;
  }
  .blueprint-content-wrapper {
    padding: 25px 15px;
  }
}

@media (max-width: 768px) {
  .container,
  .container-custom,
  .main-container {
    padding: 0 15px;
  }
  .hero .cta-row {
    flex-direction: column;
  }
  .btn-cta,
  .btn-explore,
  .blueprint-download-btn {
    width: 100%;
    max-width: none;
  }
  .service-ribbon {
    padding: 25px 15px;
  }
  .service-header {
    flex-direction: column;
    text-align: center;
  }
  .review-card {
    flex: 0 0 calc(50% - 15px);
  }
  .neon-card {
    padding: 2rem 1.5rem;
  }
  .blueprint-form-container {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 80px 15px 50px;
  }
  .review-card {
    flex: 0 0 100%;
  }
  .service-ribbon {
    width: 100%;
    padding: 20px 15px;
  }
  .subtitle-text {
    font-size: 1.8rem;
  }
  .blueprint-heading {
    font-size: 1.8rem;
  }
  .faq-question {
    padding: 18px 20px;
    gap: 16px;
  }
  .faq-badge {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }
  .faq-question-text {
    font-size: 1rem;
  }
  .faq-answer-inner {
    padding: 0 20px 24px 20px;
  }
  .faq-chevron {
    width: 32px;
    height: 32px;
  }
  .faq-chevron svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 400px) {
  .faq-heading {
    font-size: 1.9rem;
  }
  .faq-sub {
    font-size: 1rem;
  }
}

@media (min-width: 992px) {
  .rx-explain .mt-5 {
    margin-top: 80px !important;
  }
}