* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #0f172a;
  overflow-x: hidden;
}

html,
body,
body * {
  cursor: auto;
}

a,
button,
[role="button"],
.btn-modern,
.pricing-cta,
.btn-compare,
.comparison-row.expandable {
  cursor: pointer;
}

input,
textarea,
[contenteditable="true"] {
  cursor: text;
}

/* Hero Section - Ultra Modern */
.hero-modern {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 60px;
}

.hero-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(148, 163, 184, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(203, 213, 225, 0.08) 0%,
      transparent 50%
    );
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid #e2e8f0;
  padding: 10px 24px;
  border-radius: 100px;
  color: #64748b;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.hero-badge span:first-child {
  font-size: 18px;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.gradient-text {
  background: linear-gradient(135deg, #981e20 0%, #7f1719 50%, #6d1214 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #64748b;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 560px;
  font-weight: 400;
}

.hero-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 320px;
  overflow: visible;
}

.hero-carousel-item {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
  opacity: 0;
  transform: translateX(0) scale(0.98);
  filter: blur(0);
  transition:
    opacity 0.5s ease,
    transform 0.8s ease,
    filter 0.8s ease;
}

.hero-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-carousel-item.is-active {
  opacity: 1;
  z-index: 3;
  transform: translateX(0) scale(1);
  filter: blur(0);
}

.hero-carousel-item.is-next {
  opacity: 0.7;
  z-index: 2;
  transform: translateX(70px) scale(0.96);
  filter: blur(3px);
}

.hero-carousel-item.is-third {
  opacity: 0.5;
  z-index: 1;
  transform: translateX(140px) scale(0.92);
  filter: blur(6px);
}

.hero-carousel-item.is-hidden {
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transform: translateX(200px) scale(0.9);
  filter: blur(8px);
}

@media (max-width: 992px) {
  .hero-carousel {
    aspect-ratio: 1 / 1;
    min-height: 280px;
  }

  .hero-carousel-item.is-next {
    transform: translateX(44px) scale(0.96);
  }

  .hero-carousel-item.is-third {
    transform: translateX(88px) scale(0.92);
  }
}

.btn-modern {
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary-modern {
  background: linear-gradient(135deg, #981e20 0%, #7f1719 100%);
  color: white;
  box-shadow: 0 10px 40px rgba(239, 68, 68, 0.4);
}

.btn-primary-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(239, 68, 68, 0.5);
  color: white;
}

.btn-secondary-modern {
  background: white;
  color: #0f172a;
  border: 2px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.btn-secondary-modern:hover {
  background: #f8fafc;
  border-color: #981e20;
  transform: translateY(-2px);
  color: #0f172a;
}

/* Stats Cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.stat-card {
  background: white;
  border: 1px solid #e2e8f0;
  padding: 1.25rem 1rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #981e20 0%, #7f1719 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3;
}

/* Quick CTA Banner */
.quick-cta-banner {
  padding: 0;
  margin: 80px 0;
}

.quick-cta-content {
  background: linear-gradient(135deg, #981e20 0%, #7f1719 50%, #6d1214 100%);
  border-radius: 24px;
  padding: 3rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 20px 60px rgba(239, 68, 68, 0.3);
  position: relative;
  overflow: hidden;
}

.quick-cta-content::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.quick-cta-content::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.quick-cta-left,
.quick-cta-right {
  position: relative;
  z-index: 2;
}

.quick-cta-left {
  flex: 1;
}

.quick-cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.quick-cta-title .gradient-text {
  color: white;
  font-weight: 700;
}

.quick-cta-text {
  font-size: 1.1rem;
  color: white;
  margin: 0;
}

.quick-cta-right {
  flex-shrink: 0;
}

.btn-cta-large {
  padding: 18px 45px;
  font-size: 1.1rem;
  font-weight: 800;
  background: white;
  color: #7f1719;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.btn-cta-large:hover {
  background: #fef3c7;
  color: #7f1719;
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.btn-cta-large i {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .quick-cta-banner {
    margin: 60px 0;
  }

  .quick-cta-content {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 2rem;
  }

  .quick-cta-right {
    width: 100%;
  }

  .btn-cta-large {
    width: 100%;
    justify-content: center;
  }
}

/* Pricing Section - Ultra Modern */
.pricing-section {
  padding: 100px 0;
  background: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #64748b;
}

.books-row-modern .books-row-modern-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.books-row-modern #books-row .box-title {
  display: none !important;
}

@media (max-width: 768px) {
  .books-row-modern #books-row .row.d-flex.container-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start !important;
    gap: 0.75rem;
    padding: 0 0.75rem 0.5rem;
  }

  .books-row-modern #books-row .row.d-flex.container-inner > .col {
    flex: 0 0 auto;
    width: 150px;
    max-width: 150px;
  }
}

.pricing-card {
  background: white;
  border: 2px solid #f1f5f9;
  border-radius: 24px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #981e20, #7f1719);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  border-color: #981e20;
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(239, 68, 68, 0.15);
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-card.featured {
  border: 2px solid #981e20;
  box-shadow: 0 20px 60px rgba(239, 68, 68, 0.2);
}

.pricing-card.featured::before {
  transform: scaleX(1);
  height: 6px;
}

.popular-badge {
  background: linear-gradient(135deg, #981e20, #7f1719);
  color: white;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 1rem;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .popular-badge {
    font-size: 0.75rem;
    padding: 5px 16px;
    top: 8px;
  }
}

.plan-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.plan-description {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.price-wrapper {
  margin-bottom: 2rem;
}

.price {
  font-size: 3.5rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1;
}

.price-currency {
  font-size: 2rem;
  vertical-align: super;
}

.price-period {
  color: #64748b;
  font-size: 1rem;
  font-weight: 500;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.features-list li {
  padding: 12px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #475569;
  font-size: 0.95rem;
}

.features-list li i {
  font-size: 1.25rem;
  margin-top: 2px;
}

.feature-included i {
  color: #10b981;
}

.feature-excluded {
  opacity: 0.4;
}

.feature-excluded i {
  color: #981e20;
}

.pricing-cta {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  border: 2px solid;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  text-align: center;
}

.pricing-cta-primary {
  background: linear-gradient(135deg, #981e20, #7f1719);
  color: white;
  border-color: transparent;
}

.pricing-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
  color: white;
}

.pricing-cta-secondary {
  background: transparent;
  color: #0f172a;
  border-color: #e2e8f0;
}

.pricing-cta-secondary:hover {
  border-color: #981e20;
  color: #981e20;
  transform: translateY(-2px);
}

/* Features Section */
.features-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background-image: url("/images/icons/bullish.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.04;
  animation: float-reverse 7s ease-in-out infinite;
  z-index: 0;
}

@keyframes float-reverse {
  0%,
  100% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(20px);
  }
}

.feature-card-modern {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem 3rem;
  height: 100%;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  gap: 2rem;
  overflow: hidden;
  padding-right: 11rem;
  padding-bottom: 4.5rem;
}

.feature-card-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: #981e20;
}

.feature-thumb {
  position: absolute;
  right: 1rem;
  bottom: -0.5rem;
  width: 170px;
  height: 189px;
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
  border: 1px solid #eef2f7;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
  transform: rotate(-1.5deg) translateY(52px);
  transition: transform 0.3s ease;
}

.feature-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}

.feature-card-modern:hover .feature-thumb {
  transform: rotate(4deg) scale(1.02);
}

.feature-card-modern:hover .feature-thumb img {
  transform: scale(1.12);
}

.feature-icon-modern {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon-modern i {
  font-size: 2rem;
  background: linear-gradient(135deg, #981e20, #7f1719);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-title-modern {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.feature-content {
  flex: 1 1 auto;
  max-width: 429px;
}

.feature-description-modern {
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .feature-card-modern {
    padding: 1.5rem;
    padding-bottom: 1.5rem;
    padding-right: 1.5rem;
    display: block;
  }

  .feature-content {
    max-width: none;
  }

  .feature-title-modern {
    font-size: 1.35rem;
    line-height: 1.3;
  }

  .feature-thumb {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 180px;
    margin-top: 1rem;
    transform: none;
    border-radius: 12px;
  }

  .feature-card-modern:hover .feature-thumb {
    transform: none;
  }
}

/* Get Started Section */
.get-started-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* What Makes BBT Different Section */
.bbt-different-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.bbt-different-section::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%) scaleX(-1);
  width: 550px;
  height: 550px;
  background-image: url("/images/icons/bearish.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.04;
  animation: float-flipped 8s ease-in-out infinite;
  z-index: 0;
}

@keyframes float-flipped {
  0%,
  100% {
    transform: translateY(-50%) scaleX(-1) translateX(0);
  }
  50% {
    transform: translateY(-50%) scaleX(-1) translateX(-20px);
  }
}

.bbt-feature-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  border: 1px solid #f1f5f9;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.bbt-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  border-color: rgba(239, 68, 68, 0.3);
}

.bbt-feature-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

.bbt-feature-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
  z-index: 1;
  transition: opacity 0.3s ease;
}

.bbt-feature-card:hover .bbt-feature-image::before {
  opacity: 0;
}

.bbt-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bbt-feature-card:hover .bbt-feature-image img {
  transform: scale(1.08);
}

.bbt-feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin: 1.5rem 1.5rem 0.75rem 1.5rem;
  position: relative;
}

.bbt-feature-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #981e20, #7f1719);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.bbt-feature-card:hover .bbt-feature-title::after {
  width: 60px;
}

.bbt-feature-description {
  color: #64748b;
  line-height: 1.7;
  font-size: 1rem;
  margin: 0 1.5rem 1.5rem 1.5rem;
  padding-top: 0.75rem;
}

/* Mentors Section */
.mentors-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.mentors-section .rounded-circle {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border: 1px solid #f1f5f9;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.mentors-section .rounded-circle:hover {
  transform: scale(1.08) translateY(-5px);
  border-color: #981e20;
  box-shadow:
    0 20px 40px rgba(239, 68, 68, 0.25),
    0 0 30px rgba(239, 68, 68, 0.15);
}

.mentors-section a {
  display: inline-block;
  position: relative;
}

.mentors-section a::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #981e20, #7f1719);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
  filter: blur(15px);
}

.mentors-section a:hover::after {
  opacity: 0.3;
}

@media (max-width: 768px) {
  .mentors-section {
    display: none;
  }
}

/* Team + Retreat Galleries */
.retreat-gallery-section {
  padding: 90px 0;
}

.retreat-gallery-section {
  background: #f8fafc;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #0f172a;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 2;
  transition: transform 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
  }

  .gallery-card {
    flex: 0 0 82%;
    max-width: 82%;
    scroll-snap-align: start;
  }

  .gallery-card img {
    aspect-ratio: 4 / 3;
  }
}

/* Family Section */
.family-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.family-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(239, 68, 68, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.family-section .container {
  position: relative;
  z-index: 1;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid #e2e8f0;
  padding: 10px 24px;
  border-radius: 100px;
  color: #64748b;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.section-badge span:first-child {
  font-size: 18px;
}

.family-content {
  margin-top: 2rem;
}

.family-content p {
  color: #64748b;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.family-content strong {
  color: #0f172a;
}

.signature-text {
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 2rem;
}

.signature-text strong {
  background: linear-gradient(135deg, #981e20 0%, #7f1719 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.family-carousel {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.family-carousel .carousel-inner {
  border-radius: 24px;
}

.family-carousel .carousel-item img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 24px;
}

.family-carousel .carousel-caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  padding: 2rem;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.family-carousel .carousel-caption p {
  font-size: 0.9rem;
  margin: 0;
  color: white;
  line-height: 1.5;
}

.family-carousel .carousel-control-prev,
.family-carousel .carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.family-carousel:hover .carousel-control-prev,
.family-carousel:hover .carousel-control-next {
  opacity: 1;
}

.family-carousel .carousel-control-prev {
  left: 20px;
}

.family-carousel .carousel-control-next {
  right: 20px;
}

.family-carousel .carousel-control-prev-icon,
.family-carousel .carousel-control-next-icon {
  background-color: #981e20;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

.family-carousel .carousel-indicators {
  margin-bottom: 1.5rem;
}

.family-carousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: white;
  opacity: 0.5;
  border: none;
}

.family-carousel .carousel-indicators button.active {
  opacity: 1;
  background: linear-gradient(135deg, #981e20 0%, #7f1719 100%);
}

@media (max-width: 768px) {
  .family-carousel .carousel-item img {
    height: 350px;
  }

  .family-carousel .carousel-caption p {
    font-size: 0.75rem;
  }
}

/* Get Started Section - keeping existing styles */
.get-started-section-old {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.step-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.step-number-wrapper {
  flex-shrink: 0;
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #981e20 0%, #7f1719 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: white;
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
  transition: all 0.3s ease;
}

.step-item:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(239, 68, 68, 0.5);
}

.step-content {
  flex: 1;
  padding-top: 0.5rem;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.step-description {
  color: #64748b;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 0;
}

.step-description strong {
  color: #334155;
}

.step-link {
  color: #981e20;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  display: inline-block;
  margin-top: 0.5rem;
}

.step-link:hover {
  color: #7f1719;
  transform: translateX(5px);
}

.get-started-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.get-started-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.1) 0%,
    transparent 50%
  );
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.get-started-image:hover::before {
  opacity: 1;
}

.get-started-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.get-started-image:hover img {
  transform: scale(1.05);
}

/* Compare Section */
.compare-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.comparison-table-modern {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.comparison-scroll-wrap {
  width: 100%;
}

.comparison-scroll-hint {
  display: none;
}

.comparison-header {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 1.5rem 1.5rem;
  align-items: center;
}

.comparison-header-cell {
  text-align: center;
  color: white;
  position: relative;
  padding: 0.5rem;
}

.comparison-header-cell.feature-column {
  text-align: left;
  display: flex;
  align-items: center;
}

.comparison-header-cell.feature-column h4 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
}

.comparison-header-cell.featured-column {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.15) 0%,
    rgba(220, 38, 38, 0.1) 100%
  );
  border-radius: 12px;
  margin: -0.5rem 0;
  padding: 1rem 0.5rem 0.5rem 0.5rem;
}

.best-value-badge {
  background: linear-gradient(135deg, #981e20, #7f1719);
  color: white;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
  white-space: nowrap;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .best-value-badge {
    font-size: 0.65rem;
    padding: 3px 12px;
    top: -14px;
  }
}

.plan-badge {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  padding: 0;
  color: white;
}

.plan-badge.bronze {
  color: #cd7f32;
}

.plan-badge.silver {
  color: #c0c0c0;
}

.plan-badge.gold {
  color: #ffd700;
}

.plan-badge.diamond {
  color: #981e20;
}

.plan-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  line-height: 1.2;
}

.plan-price span {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.7;
  margin-left: 2px;
}

.comparison-body {
  padding: 0;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 0;
  padding: 1.5rem 1.5rem;
  border-bottom: 1px solid #f1f5f9;
  align-items: center;
  transition: all 0.2s ease;
}

.comparison-row.expandable {
  cursor: pointer;
  position: relative;
}

.comparison-row.expandable .feature-name::before {
  content: "\f282";
  font-family: "bootstrap-icons";
  font-size: 14px;
  color: #94a3b8;
  margin-right: 0.5rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.comparison-row.expandable.expanded .feature-name::before {
  transform: rotate(180deg);
  color: #981e20;
}

.comparison-row-details {
  display: none;
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #fef2f2 0%, #fff7ed 100%);
  border-left: 3px solid #981e20;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    padding 0.3s ease;
}

.comparison-row-details.expanded {
  display: block;
  max-height: 1000px;
  opacity: 1;
  padding: 2rem;
  border-bottom: 1px solid #f1f5f9;
}

.details-content {
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.7;
}

.details-content p {
  margin-bottom: 0.75rem;
}

.details-content strong {
  color: #0f172a;
}

.details-content ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.details-content ul li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.details-content ul li::before {
  content: "\f26b";
  font-family: "bootstrap-icons";
  color: #981e20;
  position: absolute;
  left: 0;
  font-size: 0.85rem;
}

.comparison-row:hover {
  background: linear-gradient(90deg, #fef2f2 0%, #ffffff 100%);
}

.comparison-row:last-child {
  border-bottom: none;
}

.feature-name {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  color: #0f172a;
  font-size: 1rem;
}

.feature-name i {
  font-size: 1.25rem;
  color: #981e20;
  flex-shrink: 0;
}

.feature-value {
  text-align: center;
  font-size: 1.5rem;
}

.feature-value .bi-check-circle-fill {
  color: #10b981;
}

.feature-value .bi-x-circle-fill {
  color: #cbd5e1;
  opacity: 0.4;
}

.feature-value .bi-dash-circle-fill {
  color: #cbd5e1;
  opacity: 0.4;
}

.comparison-footer {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 0;
  padding: 2rem 1.5rem;
  background: #f8fafc;
}

.footer-cell {
  text-align: center;
}

.btn-compare {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #e2e8f0;
  background: white;
  color: #0f172a;
}

.btn-compare:hover {
  border-color: #981e20;
  color: #981e20;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-compare-primary {
  background: linear-gradient(135deg, #981e20, #7f1719);
  color: white;
  border-color: transparent;
}

.btn-compare-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
  color: white;
}

/* Responsive for comparison table */
@media (max-width: 992px) {
  .comparison-scroll-hint {
    display: block;
    margin: 0 0 0.75rem 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
  }

  .comparison-scroll-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
  }

  .comparison-table-modern {
    min-width: 860px;
  }

  .comparison-header,
  .comparison-row,
  .comparison-footer {
    grid-template-columns: 2.2fr repeat(4, minmax(110px, 1fr));
  }

  .comparison-header {
    padding: 1.25rem;
  }

  .comparison-row {
    padding: 1rem 1.25rem;
  }

  .comparison-footer {
    padding: 1.5rem 1.25rem;
  }

  .feature-name {
    font-size: 0.92rem;
    gap: 0.6rem;
  }

  .feature-name i {
    font-size: 1rem;
  }

  .feature-value {
    font-size: 1.25rem;
  }

  .footer-cell {
    padding: 0.75rem 0;
  }

  .btn-compare {
    width: auto;
    padding: 12px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .comparison-table-modern {
    min-width: 760px;
  }

  .comparison-header,
  .comparison-row,
  .comparison-footer {
    grid-template-columns: 2.4fr repeat(4, minmax(95px, 1fr));
  }

  .plan-price {
    font-size: 1.3rem;
  }

  .feature-value {
    font-size: 1.2rem;
  }
}

/* Reviews Section */
.reviews-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 5%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  background-image: url("/images/icons/forex.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.04;
  animation: float-reverse 7s ease-in-out infinite;
  z-index: 0;
}

.review-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: #981e20;
}

.review-stars {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.25rem;
}

.review-text {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f1f5f9;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #f1f5f9;
}

.review-author-info {
  flex: 1;
}

.review-author-name {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.review-author-title {
  color: #64748b;
  font-size: 0.9rem;
}

.review-quote {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 4rem;
  color: #fef2f2;
  line-height: 1;
  font-family: Georgia, serif;
}

/* CTA Section */
.cta-modern {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #2a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.cta-modern::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(239, 68, 68, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: left;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  max-width: 700px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-modern {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 11vw, 2.75rem);
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1.02rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 8px 14px;
    margin-bottom: 1.25rem;
  }

  .hero-carousel {
    min-height: 240px;
    overflow: hidden;
  }

  .hero-carousel-item.is-next {
    transform: translateX(22px) scale(0.96);
  }

  .hero-carousel-item.is-third {
    transform: translateX(44px) scale(0.92);
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pricing-section {
    padding: 60px 0;
  }

  .features-section {
    padding: 60px 0;
  }

  .cta-modern {
    padding: 60px 0;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ratio {
  position: relative;
  z-index: 3;
}

.animate-in {
  animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.1s;
  opacity: 0;
}

.delay-2 {
  animation-delay: 0.2s;
  opacity: 0;
}

.delay-3 {
  animation-delay: 0.3s;
  opacity: 0;
}

.delay-4 {
  animation-delay: 0.4s;
  opacity: 0;
}

