/* Modern Premium Pricing Page Styles */

/* Hero Section - Moved Up & Better Design */
.pricing-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fff8f5 0%, #ffffff 100%);
  overflow: hidden;
  padding: 70px 0 50px;
}

/* Animated Gradient Shapes */
.pricing-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(229, 84, 0, 0.08), rgba(255, 140, 0, 0.05));
  border-radius: 50%;
  animation: morphShape 8s ease-in-out infinite;
  filter: blur(40px);
}

.pricing-hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 450px;
  height: 450px;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.06), rgba(229, 84, 0, 0.04));
  border-radius: 50%;
  animation: morphShape 10s ease-in-out infinite reverse;
  filter: blur(40px);
}

@keyframes morphShape {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    border-radius: 50%;
  }

  50% {
    transform: translate(30px, -30px) scale(1.1);
    border-radius: 40% 60% 50% 50%;
  }
}

/* Floating Particles */
.pricing-hero .hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgb(229, 84, 0);
  border-radius: 50%;
  opacity: 0.3;
  animation: floatParticle 15s linear infinite;
}

.pricing-hero .hero-particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.pricing-hero .hero-particle:nth-child(2) {
  top: 40%;
  right: 15%;
  animation-delay: 2s;
}

.pricing-hero .hero-particle:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes floatParticle {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 0.3;
  }

  90% {
    opacity: 0.3;
  }

  100% {
    transform: translateY(-100px) translateX(50px);
    opacity: 0;
  }
}

.pricing-hero .container {
  position: relative;
  z-index: 2;
}

.pricing-hero-content {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.pricing-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background: linear-gradient(135deg, rgba(229, 84, 0, 0.1), rgba(255, 140, 0, 0.08));
  color: rgb(229, 84, 0);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 35px;
  border: 2px solid rgba(229, 84, 0, 0.2);
  transition: all 0.4s ease;
  animation: badgeSlideDown 0.8s ease 0.2s backwards;
  box-shadow: 0 4px 15px rgba(229, 84, 0, 0.1);
}

@keyframes badgeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-hero-badge:hover {
  background: linear-gradient(135deg, rgba(229, 84, 0, 0.15), rgba(255, 140, 0, 0.12));
  border-color: rgba(229, 84, 0, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(229, 84, 0, 0.15);
}

.pricing-hero-badge i {
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

.pricing-hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: #0a0a0a;
  margin-bottom: 30px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  animation: titleFadeIn 1s ease 0.4s backwards;
}

@keyframes titleFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-hero-title .highlight {
  background: linear-gradient(135deg, rgb(229, 84, 0) 0%, rgb(255, 140, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
  animation: gradientShift 3s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.pricing-hero-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
  margin-bottom: 50px;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  animation: subtitleFadeIn 1s ease 0.6s backwards;
}

@keyframes subtitleFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CTA Buttons */
.pricing-hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: ctaFadeIn 1s ease 0.8s backwards;
}

@keyframes ctaFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-hero-cta .btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(255, 107, 0));
  color: #ffffff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(229, 84, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.pricing-hero-cta .btn-primary-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.pricing-hero-cta .btn-primary-hero:hover::before {
  left: 100%;
}

.pricing-hero-cta .btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(229, 84, 0, 0.4);
}

.pricing-hero-cta .btn-secondary-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: #ffffff;
  color: rgb(229, 84, 0);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.4s ease;
  border: 2px solid rgb(229, 84, 0);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.pricing-hero-cta .btn-secondary-hero:hover {
  background: rgb(229, 84, 0);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(229, 84, 0, 0.3);
}

/* Pricing Toggle */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}

.pricing-toggle-btn {
  padding: 12px 32px;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-toggle-btn.active {
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(204, 75, 0));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(229, 84, 0, 0.3);
}

.pricing-toggle-btn:hover:not(.active) {
  border-color: rgb(229, 84, 0);
  color: rgb(229, 84, 0);
}

/* ── Pricing card equal-height fix ── */
.pricing-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
  counter-reset: plan-step;
}

.pricing-card-modern {
  background: #ffffff;
  border-radius: 20px;
  padding: 44px 32px 36px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1.5px solid #ede9e4;
  animation: cardSlideUp 0.7s ease forwards;
  opacity: 0;
  counter-increment: plan-step;
}

/* Step number badge top-left */
.pricing-card-modern::after {
  content: "0" counter(plan-step);
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #d1c9c0;
  line-height: 1;
}

/* Features list grows to fill available space, pushing CTA to bottom */
.pricing-card-modern .pricing-features-list {
  flex-grow: 1;
}

/* CTA button always at bottom */
.pricing-card-modern .pricing-cta-modern {
  margin-top: auto;
}

/* Add borders to first and last cards (Starter and Enterprise) */
.pricing-card-modern:first-child,
.pricing-card-modern:last-child {
  border: 1.5px solid #ede9e4;
}

.pricing-card-modern:nth-child(1) { animation-delay: 0.1s; }
.pricing-card-modern:nth-child(2) { animation-delay: 0.25s; }
.pricing-card-modern:nth-child(3) { animation-delay: 0.4s; }

@keyframes cardSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pricing-card-modern::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgb(229,84,0), rgb(255,140,0));
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-card-modern:hover::before { opacity: 1; }

.pricing-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(229,84,0,0.12);
  border-color: rgba(229,84,0,0.25);
}

/* Featured Card */
.pricing-card-modern.featured {
  background: linear-gradient(160deg, #fff5f0 0%, #ffffff 60%);
  border: 2px solid rgb(229,84,0);
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(229,84,0,0.18);
  animation: featuredPulse 2.5s ease-in-out infinite;
}

/* Override step number for featured */
.pricing-card-modern.featured::after {
  color: rgba(229,84,0,0.25);
}

@keyframes featuredPulse {
  0%,100% { box-shadow: 0 8px 32px rgba(229,84,0,0.18); }
  50%      { box-shadow: 0 12px 40px rgba(229,84,0,0.28); }
}

.pricing-card-modern.featured::before {
  opacity: 1;
  height: 4px;
}

.pricing-card-modern.featured:hover {
  transform: translateY(-16px);
  box-shadow: 0 20px 50px rgba(229,84,0,0.28);
  animation: none;
}

/* Popular Badge — inline inside card, no overflow */
.popular-badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(255, 107, 0));
  color: #ffffff;
  padding: 7px 22px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 14px rgba(229, 84, 0, 0.3);
  margin-bottom: 16px;
  position: static;
  transform: none;
}

.popular-badge-modern::before { display: none; }

/* Card Header — desktop */
.pricing-card-header-modern {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 2px solid #f0f0f0;
}

.pricing-header-text { text-align: center; }

.pricing-icon-modern {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(255, 140, 0));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 2px 6px rgba(229, 84, 0, 0.08);
  transition: all 0.4s ease;
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }
}

.pricing-card-modern:hover .pricing-icon-modern {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 4px 10px rgba(229, 84, 0, 0.12);
  animation: none;
}

.pricing-icon-modern i {
  font-size: 2.2rem;
  color: #ffffff;
}

.pricing-plan-name {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.pricing-plan-description {
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 0;
  font-weight: 500;
}

/* Price Display */
.pricing-price-modern {
  text-align: center;
  margin-bottom: 35px;
}

.pricing-amount-modern {
  font-size: 4rem;
  font-weight: 900;
  color: rgb(229, 84, 0);
  line-height: 1;
  letter-spacing: -2px;
  display: block;
  margin-bottom: 8px;
}

.pricing-period-modern {
  color: #6b7280;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
}

.pricing-save-badge {
  display: inline-block;
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 10px;
}

/* Features List */
.pricing-features-modern {
  flex: 1;
  margin-bottom: 30px;
}

.pricing-features-modern ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features-modern li {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #374151;
  font-size: 0.93rem;
  line-height: 1.5;
  font-weight: 500;
  border-bottom: 1px solid #f5f5f5;
}

.pricing-features-modern li:last-child {
  border-bottom: none;
}

.pricing-features-modern li i {
  color: rgb(229, 84, 0);
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* CTA Button */
.pricing-cta-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  color: rgb(229, 84, 0);
  background: rgba(229, 84, 0, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.pricing-cta-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(204, 75, 0));
  transition: left 0.4s ease;
  z-index: -1;
}

.pricing-cta-modern:hover::before {
  left: 0;
}

.pricing-cta-modern:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(229, 84, 0, 0.4);
}

.pricing-cta-modern.primary {
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(204, 75, 0));
  color: #ffffff;
  border: none;
  box-shadow: 0 8px 25px rgba(229, 84, 0, 0.35);
}

.pricing-cta-modern.primary::before {
  background: linear-gradient(135deg, rgb(204, 75, 0), rgb(178, 65, 0));
}

.pricing-cta-modern.primary:hover {
  box-shadow: 0 15px 40px rgba(229, 84, 0, 0.5);
}

/* Desktop: collapse body always visible */
@media (min-width: 992px) {
  .pricing-collapse-body {
    max-height: none !important;
    overflow: visible !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
}

/* Comparison Table Section */
.pricing-comparison-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.comparison-table-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.01);
  overflow-x: auto;
  animation: fadeIn 0.8s ease;
  border: 1px solid #f5f5f5;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
}

.comparison-table thead th {
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(255, 140, 0));
  color: #ffffff;
  padding: 20px 15px;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-table thead th:last-child {
  border-right: none;
}

.comparison-table thead th:first-child {
  text-align: left;
}

.comparison-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.3s ease;
}

.comparison-table tbody tr:hover {
  background-color: rgba(229, 84, 0, 0.02);
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table tbody td {
  padding: 18px 15px;
  text-align: center;
  color: #374151;
  font-weight: 500;
  border-right: 1px solid #f0f0f0;
}

.comparison-table tbody td:last-child {
  border-right: none;
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: #0a0a0a;
  border-right: 2px solid #f0f0f0;
}

.comparison-table tbody td i.bi-check-circle-fill {
  color: #16a34a;
  font-size: 1.4rem;
}

.comparison-table tbody td i.bi-x-circle-fill {
  color: #dc2626;
  font-size: 1.4rem;
}

/* FAQ Section */
.pricing-faq-section {
  padding: 80px 0;
  background: #ffffff;
}

.faq-accordion-modern {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item-modern {
  background: #ffffff;
  border-radius: 16px;
  margin-bottom: 16px;
  border: 2px solid #f0f0f0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item-modern.active {
  border-color: rgb(229, 84, 0);
  box-shadow: 0 8px 25px rgba(229, 84, 0, 0.12);
}

.faq-question-modern {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 22px 28px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0a0a0a;
  transition: all 0.3s ease;
}

.faq-question-modern:hover {
  color: rgb(229, 84, 0);
}

.faq-question-modern i {
  font-size: 1.5rem;
  color: rgb(229, 84, 0);
  transition: transform 0.3s ease;
}

.faq-item-modern.active .faq-question-modern i {
  transform: rotate(45deg);
}

.faq-answer-modern {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
}

.faq-item-modern.active .faq-answer-modern {
  max-height: 500px;
  padding: 0 28px 22px 58px;
}

.faq-answer-modern p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════
   MOBILE / TABLET — Accordion pricing cards
   ═══════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .pricing-cards-wrapper {
    grid-template-columns: 1fr;
    max-width: 540px;
    gap: 10px;
    margin: 0 auto;
  }

  /* Card reset */
  .pricing-card-modern,
  .pricing-card-modern.featured {
    transform: none !important;
    animation: none !important;
    opacity: 1 !important;
    border-radius: 14px !important;
    border: 1.5px solid #e5e7eb !important;
    box-shadow: 0 1px 6px rgba(0,0,0,0.05) !important;
    padding: 0 !important;
    overflow: hidden;
    position: relative;
  }

  .pricing-card-modern.featured {
    border-color: rgb(229,84,0) !important;
    background: #fff !important;
  }

  /* Hide desktop decorations */
  .pricing-card-modern::before,
  .pricing-card-modern.featured::before,
  .pricing-card-modern::after { display: none !important; }

  /* ── Popular badge — absolute top-right pill ── */
  .popular-badge-modern {
    position: absolute !important;
    top: 14px !important;
    right: 44px !important;
    transform: none !important;
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
    font-size: 0.58rem !important;
    padding: 3px 9px !important;
    border-radius: 20px !important;
    white-space: nowrap;
    letter-spacing: 0.5px;
    z-index: 2;
    margin-bottom: 0 !important;
  }

  /* ── Accordion header row: icon | name | chevron ── */
  .pricing-card-header-modern {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    margin-bottom: 0;
    border-bottom: none;
    cursor: pointer;
    background: #fff;
    user-select: none;
    text-align: left;
  }

  .pricing-card-modern.featured .pricing-card-header-modern {
    background: #fff8f5;
  }

  /* Icon */
  .pricing-icon-modern {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    margin: 0;
    flex-shrink: 0;
    animation: none;
  }
  .pricing-icon-modern i { font-size: 1.35rem; }

  /* Text block */
  .pricing-header-text {
    flex: 1;
    min-width: 0;
    text-align: left;
  }

  .pricing-plan-name {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 3px;
    text-align: left;
    color: #111;
    line-height: 1.2;
  }

  .pricing-plan-description {
    font-size: 0.78rem;
    text-align: left;
    margin: 0;
    color: #6b7280;
    line-height: 1.4;
    /* Clamp to 2 lines so it doesn't push height */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Chevron */
  .pricing-card-header-modern::after {
    content: '\F282';
    font-family: "bootstrap-icons";
    font-size: 1rem;
    color: #9ca3af;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: auto;
  }

  .pricing-card-modern.pc-open .pricing-card-header-modern::after {
    transform: rotate(180deg);
    color: rgb(229,84,0);
  }

  /* ── Collapsible body ── */
  .pricing-collapse-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
    background: #fff;
  }

  .pricing-card-modern.featured .pricing-collapse-body {
    background: #fff8f5;
  }

  .pricing-card-modern.pc-open .pricing-collapse-body {
    max-height: 900px;
  }

  /* Price */
  .pricing-price-modern {
    padding: 14px 16px 0;
    margin-bottom: 14px;
    text-align: left;
    border-top: 1px solid #f0f0f0;
  }
  .pricing-amount-modern { font-size: 2.2rem; display: inline; }
  .pricing-period-modern { font-size: 0.9rem; display: inline; margin-left: 3px; }

  /* Features */
  .pricing-features-modern {
    margin-bottom: 14px;
    padding: 0 16px;
  }

  /* CTA */
  .pricing-cta-modern {
    width: calc(100% - 32px);
    margin: 0 16px 18px;
    justify-content: center;
  }

  /* No hover on mobile */
  .pricing-card-modern.featured:hover,
  .pricing-card-modern:hover {
    transform: none !important;
    box-shadow: 0 1px 6px rgba(0,0,0,0.05) !important;
  }
}

@media (max-width: 640px) {
  .pricing-cards-wrapper { max-width: 100%; }
}
  .pricing-period-modern { font-size: 0.95rem; display: inline; margin-left: 4px; }

  /* Features */
  .pricing-features-modern {
    margin-bottom: 16px;
    padding: 0 18px;
  }

  /* CTA */
  .pricing-cta-modern {
    width: calc(100% - 36px);
    margin: 0 18px 20px;
    justify-content: center;
  }

  /* No hover effects on mobile */
  .pricing-card-modern.featured:hover,
  .pricing-card-modern:hover {
    transform: none !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
  }
}

@media (max-width: 640px) {
  .pricing-cards-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .pricing-hero {
    padding: 60px 0 40px;
  }

  .pricing-hero-title {
    font-size: 2.2rem;
  }

  .pricing-hero-subtitle {
    font-size: 1rem;
  }

  .pricing-amount-modern {
    font-size: 3rem;
  }

  .pricing-card-modern {
    padding: 35px 25px;
  }

  .pricing-cards-section,
  .pricing-comparison-section,
  .pricing-faq-section {
    padding: 60px 0;
  }

  .comparison-table-wrapper {
    padding: 25px 15px;
  }

  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 12px 8px;
    font-size: 0.9rem;
  }

  .faq-question-modern {
    padding: 18px 20px;
    font-size: 1rem;
  }

  .faq-item-modern.active .faq-answer-modern {
    padding: 0 20px 18px 50px;
  }
}

/* Trust Badges */
.trust-badges-section {
  padding: 60px 0;
  background: #fafafa;
  text-align: center;
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto 0;
}

.trust-badge-item {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.01);
  transition: all 0.4s ease;
  border: 1px solid #f5f5f5;
  animation: slideUp 0.6s ease forwards;
  opacity: 0;
}

.trust-badge-item:nth-child(1) {
  animation-delay: 0.1s;
}

.trust-badge-item:nth-child(2) {
  animation-delay: 0.2s;
}

.trust-badge-item:nth-child(3) {
  animation-delay: 0.3s;
}

.trust-badge-item:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.trust-badge-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 2px 6px rgba(229, 84, 0, 0.03);
  border-color: rgba(229, 84, 0, 0.2);
}

.trust-badge-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(255, 140, 0));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.trust-badge-icon i {
  font-size: 1.8rem;
  color: #ffffff;
}

.trust-badge-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 8px;
}

.trust-badge-item p {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
}

/* Money Back Guarantee Banner */
.guarantee-banner {
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(255, 140, 0));
  color: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  margin: 60px auto;
  max-width: 800px;
  box-shadow: 0 2px 6px rgba(229, 84, 0, 0.08);
  animation: scaleIn 0.6s ease;
  position: relative;
  overflow: hidden;
}

.guarantee-banner::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: rotate 20s linear infinite;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.guarantee-banner i {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.guarantee-banner h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #ffffff;
}

.guarantee-banner p {
  font-size: 1.1rem;
  margin: 0;
  opacity: 0.95;
}

/* Why Choose Our Plans Section */
.why-plans-section {
  padding: 80px 0;
  background: #ffffff;
}

.why-plan-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  border: 2px solid #e5e7eb;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.01);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.why-plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(229, 84, 0, 0.05), transparent);
  transition: left 0.6s ease;
}

.why-plan-card:hover::before {
  left: 100%;
}

.why-plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 2px 8px rgba(229, 84, 0, 0.04);
  border-color: rgba(229, 84, 0, 0.2);
}

.why-plan-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(229, 84, 0, 0.1), rgba(255, 140, 0, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}

.why-plan-card:hover .why-plan-icon {
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(255, 140, 0));
  transform: scale(1.1) rotate(5deg);
}

.why-plan-icon i {
  font-size: 2rem;
  color: rgb(229, 84, 0);
  transition: color 0.4s ease;
}

.why-plan-card:hover .why-plan-icon i {
  color: #ffffff;
}

.why-plan-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 12px;
}

.why-plan-card p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Testimonials Section Enhancements */
.testimonials {
  position: relative;
  background: #fafafa;
}

.testimonials .section-title {
  position: relative;
  padding-bottom: 30px;
  text-align: center;
}

.testimonials .section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}

.testimonials .section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgb(229, 84, 0), transparent);
  border-radius: 2px;
}

.testimonials .section-badge {
  background: rgba(229, 84, 0, 0.08);
  color: rgb(229, 84, 0);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(229, 84, 0, 0.2);
  display: inline-block;
  margin-bottom: 15px;
}

.testimonials .testimonial-card {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.01);
  animation: cardFadeIn 0.6s ease forwards;
  opacity: 0;
  border: 1px solid #f0f0f0;
  background: #ffffff;
}

.testimonials .testimonial-item:nth-child(1) .testimonial-card {
  animation-delay: 0.1s;
}

.testimonials .testimonial-item:nth-child(2) .testimonial-card {
  animation-delay: 0.2s;
}

.testimonials .testimonial-item:nth-child(3) .testimonial-card {
  animation-delay: 0.3s;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonials .testimonial-card:hover {
  box-shadow: 0 2px 6px rgba(229, 84, 0, 0.03);
  transform: translateY(-5px);
}

/* Featured Testimonial - Orange Background */
.testimonials .testimonial-item.featured .testimonial-card {
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(255, 107, 0));
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(229, 84, 0, 0.25);
  position: relative;
}

.testimonials .testimonial-item.featured .testimonial-card:hover {
  box-shadow: 0 6px 20px rgba(229, 84, 0, 0.35);
  transform: translateY(-8px);
}

.testimonials .testimonial-item.featured .testimonial-card .rating-stars i,
.testimonials .testimonial-item.featured .testimonial-card .testimonial-body p,
.testimonials .testimonial-item.featured .testimonial-card .testimonial-meta h4,
.testimonials .testimonial-item.featured .testimonial-card .testimonial-meta .position,
.testimonials .testimonial-item.featured .testimonial-card .company-info {
  color: #ffffff !important;
}

.testimonials .testimonial-item.featured .testimonial-card .rating-stars i {
  color: #ffd700 !important;
}

.testimonials .testimonial-item.featured .testimonial-card .featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 6px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonials .testimonial-item.featured .testimonial-card .featured-badge i {
  color: #ffd700;
}

/* Guarantee Banner Enhancements */
.guarantee-banner i {
  position: relative;
  z-index: 2;
}

.guarantee-banner h3,
.guarantee-banner p {
  position: relative;
  z-index: 2;
}

/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* Section Badge Animation */
.section-badge {
  animation: badgeSlide 0.6s ease;
}

@keyframes badgeSlide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Enhancements */
@media (max-width: 991px) {
  .why-plans-section {
    padding: 60px 0;
  }

  .why-plan-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .why-plan-card {
    padding: 30px 20px;
  }

  .why-plan-icon {
    width: 60px;
    height: 60px;
  }

  .why-plan-icon i {
    font-size: 1.6rem;
  }

  .why-plan-card h4 {
    font-size: 1.15rem;
  }
}

/* What's Included Section */
.whats-included-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  position: relative;
  overflow: hidden;
}

.whats-included-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(229, 84, 0, 0.03) 0%, transparent 70%);
  border-radius: 50%;
}

.included-feature-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 20px;
  border: 1px solid #f5f5f5;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.01);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.included-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, rgb(229, 84, 0), rgb(255, 140, 0));
  transition: height 0.5s ease;
}

.included-feature-card:hover::before {
  height: 100%;
}

.included-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 2px 6px rgba(229, 84, 0, 0.03);
  border-color: rgba(229, 84, 0, 0.2);
}

.feature-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(229, 84, 0, 0.08);
  line-height: 1;
  transition: all 0.4s ease;
}

.included-feature-card:hover .feature-number {
  color: rgba(229, 84, 0, 0.15);
  transform: scale(1.1);
}

.feature-icon-circle {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, rgba(229, 84, 0, 0.1), rgba(255, 140, 0, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.included-feature-card:hover .feature-icon-circle {
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(255, 140, 0));
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(229, 84, 0, 0.3);
}

.feature-icon-circle i {
  font-size: 1.8rem;
  color: rgb(229, 84, 0);
  transition: color 0.4s ease;
}

.included-feature-card:hover .feature-icon-circle i {
  color: #ffffff;
}

.included-feature-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.included-feature-card p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Staggered Animation for Feature Cards */
.included-feature-card {
  animation: featureSlideIn 0.6s ease forwards;
  opacity: 0;
}

@keyframes featureSlideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .whats-included-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .included-feature-card {
    padding: 30px 25px;
  }

  .feature-number {
    font-size: 2.5rem;
    top: 15px;
    right: 15px;
  }

  .feature-icon-circle {
    width: 55px;
    height: 55px;
  }

  .feature-icon-circle i {
    font-size: 1.5rem;
  }

  .included-feature-card h4 {
    font-size: 1.15rem;
  }
}

/* Section Title Decorative Line - REMOVED */
.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}

/* Removed the ::after decorative line */

/* Book Consultation Section Title Enhancement */
.book-a-service .section-title h2 {
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(255, 140, 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.book-a-service .section-title .section-badge {
  background: linear-gradient(135deg, rgba(229, 84, 0, 0.1), rgba(255, 140, 0, 0.1));
  border: 2px solid rgba(229, 84, 0, 0.3);
  padding: 10px 28px;
  font-size: 0.9rem;
}

/* Pricing Card Featured - Extra Padding for Badge - REMOVED (now in main featured section) */

/* Hero Section Responsive */
@media (max-width: 991px) {
  .pricing-hero {
    min-height: 65vh;
    padding: 65px 0 45px;
  }

  .pricing-hero-title {
    font-size: 2.8rem;
  }

  .pricing-hero-subtitle {
    font-size: 1.1rem;
  }

  .pricing-hero-cta {
    flex-direction: column;
  }

  .pricing-hero-cta .btn-primary-hero,
  .pricing-hero-cta .btn-secondary-hero {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .pricing-hero {
    min-height: 60vh;
    padding: 60px 0 35px;
  }

  .pricing-hero-title {
    font-size: 2.2rem;
  }

  .pricing-hero-title br {
    display: none;
  }

  .pricing-hero-subtitle {
    font-size: 1rem;
    margin-bottom: 35px;
  }

  .pricing-hero-badge {
    font-size: 0.8rem;
    padding: 10px 24px;
  }

  .pricing-hero-cta .btn-primary-hero,
  .pricing-hero-cta .btn-secondary-hero {
    padding: 14px 32px;
    font-size: 0.95rem;
  }
}

/* Remove default section class padding for hero */
.pricing-hero.section {
  padding: 0;
}

/* Smooth scroll for anchor links */
html {
  scroll-behavior: smooth;
}

/* Book Consultation Section - Enhanced */
.book-a-service {
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
  padding: 80px 0;
}

.book-a-service .section-badge {
  background: linear-gradient(135deg, rgba(229, 84, 0, 0.1), rgba(255, 140, 0, 0.08));
  color: rgb(229, 84, 0);
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid rgba(229, 84, 0, 0.3);
  display: inline-block;
}

.book-a-service .section-title {
  text-align: center;
  margin-bottom: 24px;
}

.book-a-service .section-title h2 {
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(255, 140, 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  font-size: clamp(24px, 4vw, 46px);
  margin-top: 8px;
  position: relative;
  display: inline-block;
}

.book-a-service .section-title h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgb(229, 84, 0), transparent);
  border-radius: 2px;
}

.book-a-service .section-title h2::before {
  display: none !important;
}

/* Form Container with Icon */
.reservation-form-container {
  background: #ffffff;
  border-radius: 24px;
  padding: 45px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
}

.reservation-form-container:hover {
  box-shadow: 0 8px 30px rgba(229, 84, 0, 0.12);
  border-color: rgba(229, 84, 0, 0.2);
}

.reservation-form-container .form-header {
  text-align: center;
  margin-bottom: 40px;
}

.reservation-form-container .header-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(255, 140, 0));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(229, 84, 0, 0.25);
}

.reservation-form-container .header-icon i {
  font-size: 1.8rem;
  color: #ffffff;
}

.reservation-form-container .form-header h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 12px;
}

.reservation-form-container .form-header p {
  color: #6b7280;
  font-size: 1.05rem;
}

/* Info Card with Icon */
.consultation-info .info-card {
  background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 2px solid rgba(229, 84, 0, 0.15);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.consultation-info .info-card:hover {
  box-shadow: 0 8px 30px rgba(229, 84, 0, 0.15);
  transform: translateY(-5px);
}

.consultation-info .info-card .card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 2px solid rgba(229, 84, 0, 0.1);
}

.consultation-info .info-card .card-header i {
  font-size: 2.2rem;
  color: rgb(229, 84, 0);
}

.consultation-info .info-card .card-header h4 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0a0a0a;
  margin: 0;
}

.consultation-info .benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.consultation-info .benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  color: #374151;
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 500;
}

.consultation-info .benefits-list li i {
  color: rgb(229, 84, 0);
  font-size: 1.3rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Contact Methods */
.consultation-info .contact-methods {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px;
  border: 2px solid #f0f0f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.consultation-info .contact-methods h4 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 25px;
}

.consultation-info .method-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid #e5e7eb;
}

.consultation-info .method-item:last-child {
  border-bottom: none;
}

.consultation-info .method-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(255, 140, 0));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(229, 84, 0, 0.25);
  transition: all 0.3s ease;
}

.consultation-info .method-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(229, 84, 0, 0.35);
}

.consultation-info .method-icon i {
  font-size: 1.4rem;
  color: #ffffff;
}

.consultation-info .method-content {
  flex: 1;
}

.consultation-info .method-content .label {
  display: block;
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.consultation-info .method-content .value {
  display: block;
  font-size: 1.1rem;
  color: #0a0a0a;
  font-weight: 700;
  margin-bottom: 3px;
  text-decoration: none;
}

.consultation-info .method-content .value:hover {
  color: rgb(229, 84, 0);
}

.consultation-info .method-content .note {
  display: block;
  font-size: 0.85rem;
  color: #9ca3af;
}

/* Enhanced Animations for All Sections */

/* Trust Badges Animation */
.trust-badge-item {
  animation: zoomIn 0.6s ease forwards;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Why Plans Cards Animation */
.why-plan-card {
  animation: slideInLeft 0.8s ease forwards;
  opacity: 0;
}

.why-plan-card:nth-child(1) {
  animation-delay: 0.1s;
}

.why-plan-card:nth-child(2) {
  animation-delay: 0.2s;
}

.why-plan-card:nth-child(3) {
  animation-delay: 0.3s;
}

.why-plan-card:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Feature Cards Animation */
.included-feature-card {
  animation: fadeInScale 0.8s ease forwards;
  opacity: 0;
}

.included-feature-card:nth-child(1) {
  animation-delay: 0.1s;
}

.included-feature-card:nth-child(2) {
  animation-delay: 0.2s;
}

.included-feature-card:nth-child(3) {
  animation-delay: 0.3s;
}

.included-feature-card:nth-child(4) {
  animation-delay: 0.4s;
}

.included-feature-card:nth-child(5) {
  animation-delay: 0.5s;
}

.included-feature-card:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Section Headers Animation */
.section-header {
  animation: headerFadeIn 0.8s ease;
}

@keyframes headerFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Comparison Table Animation */
.comparison-table tbody tr {
  animation: rowSlideIn 0.5s ease forwards;
  opacity: 0;
}

.comparison-table tbody tr:nth-child(1) {
  animation-delay: 0.1s;
}

.comparison-table tbody tr:nth-child(2) {
  animation-delay: 0.2s;
}

.comparison-table tbody tr:nth-child(3) {
  animation-delay: 0.3s;
}

.comparison-table tbody tr:nth-child(4) {
  animation-delay: 0.4s;
}

.comparison-table tbody tr:nth-child(5) {
  animation-delay: 0.5s;
}

.comparison-table tbody tr:nth-child(6) {
  animation-delay: 0.6s;
}

.comparison-table tbody tr:nth-child(7) {
  animation-delay: 0.7s;
}

.comparison-table tbody tr:nth-child(8) {
  animation-delay: 0.8s;
}

.comparison-table tbody tr:nth-child(9) {
  animation-delay: 0.9s;
}

@keyframes rowSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* FAQ Items Animation */
.faq-item-modern {
  animation: faqSlideIn 0.6s ease forwards;
  opacity: 0;
}

.faq-item-modern:nth-child(1) {
  animation-delay: 0.1s;
}

.faq-item-modern:nth-child(2) {
  animation-delay: 0.2s;
}

.faq-item-modern:nth-child(3) {
  animation-delay: 0.3s;
}

.faq-item-modern:nth-child(4) {
  animation-delay: 0.4s;
}

.faq-item-modern:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes faqSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Guarantee Banner Animation */
.guarantee-banner {
  animation: bannerZoom 0.8s ease;
}

@keyframes bannerZoom {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Icon Animations */
.pricing-icon-modern,
.trust-badge-icon,
.feature-icon-circle,
.why-plan-icon {
  animation: iconRotate 0.8s ease;
}

@keyframes iconRotate {
  from {
    transform: rotate(-180deg) scale(0);
  }

  to {
    transform: rotate(0deg) scale(1);
  }
}

/* Hover Glow Effect */
.pricing-card-modern:hover,
.trust-badge-item:hover,
.why-plan-card:hover,
.included-feature-card:hover {
  position: relative;
}

.pricing-card-modern:hover::after,
.trust-badge-item:hover::after,
.why-plan-card:hover::after,
.included-feature-card:hover::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, rgba(229, 84, 0, 0.1), rgba(255, 140, 0, 0.1));
  border-radius: inherit;
  z-index: -1;
  animation: glowPulse 1.5s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}


/* ============================================
   PRICING PAGE — TESTIMONIALS REDESIGN (prt-*)
   ============================================ */

.prt-section {
  position: relative;
  padding: 70px 0;
  background: #f8f4f1;
  overflow: hidden;
}

/* Mesh blobs */
.prt-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.prt-blob-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(229, 84, 0, 0.10) 0%, transparent 70%);
}

.prt-blob-2 {
  width: 350px;
  height: 350px;
  bottom: -60px;
  left: -60px;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.08) 0%, transparent 70%);
}

/* Split layout */
.prt-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.prt-split-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.prt-split-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Badge */
.prt-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(229, 84, 0, 0.08);
  color: rgb(229, 84, 0);
  border: 1.5px solid rgba(229, 84, 0, 0.2);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.prt-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #0a0a0a;
  margin-bottom: 10px;
  line-height: 1.2;
}

.prt-highlight {
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(255, 140, 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.prt-subtitle {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

/* Inline stats */
.prt-inline-stats {
  display: flex;
  gap: 0;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 22px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  flex-wrap: wrap;
}

.prt-istat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 60px;
  padding: 4px 8px;
  border-right: 1px solid #e5e7eb;
}

.prt-istat:last-child {
  border-right: none;
}

.prt-istat-num {
  font-size: 1.3rem;
  font-weight: 900;
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(255, 140, 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 3px;
}

.prt-istat-lbl {
  font-size: 0.7rem;
  color: #9ca3af;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-align: center;
}

/* Small cards container */
.prt-small-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Cards */
.prt-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px 24px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.prt-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(229, 84, 0, 0.09);
  border-color: rgba(229, 84, 0, 0.15);
}

.prt-card-sm {
  padding: 22px 20px;
}

/* Featured card */
.prt-card-featured {
  background: linear-gradient(145deg, #fff8f5 0%, #ffffff 100%);
  border: 2px solid rgba(229, 84, 0, 0.22);
}

.prt-card-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(229, 84, 0, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Dark card */
.prt-card-dark {
  background: #1e1e2e;
  border-color: transparent;
}

.prt-card-dark:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  border-color: rgba(229, 84, 0, 0.25);
}

/* Quote icon */
.prt-quote-icon {
  font-size: 2.2rem;
  line-height: 1;
  color: rgba(229, 84, 0, 0.13);
  margin-bottom: 8px;
}

.prt-quote-light {
  color: rgba(255, 255, 255, 0.10);
}

/* Stars */
.prt-stars {
  margin-bottom: 12px;
}

.prt-stars i {
  color: rgb(229, 84, 0);
  font-size: 0.82rem;
}

.prt-stars-gold i {
  color: #ffd700;
}

/* Text */
.prt-text {
  font-size: 0.93rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 14px;
  flex: 1;
}

.prt-text-light {
  color: rgba(255, 255, 255, 0.82);
}

/* Metric pill */
.prt-metric-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: rgba(229, 84, 0, 0.08);
  color: rgb(229, 84, 0);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 18px;
  border: 1px solid rgba(229, 84, 0, 0.13);
  width: fit-content;
}

.prt-pill-green {
  background: rgba(22, 163, 74, 0.08);
  color: #16a34a;
  border-color: rgba(22, 163, 74, 0.13);
}

.prt-pill-blue {
  background: rgba(59, 130, 246, 0.08);
  color: #2563eb;
  border-color: rgba(59, 130, 246, 0.13);
}

.prt-pill-white {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
}

/* Author row */
.prt-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
  margin-top: auto;
}

.prt-card-dark .prt-author {
  border-top-color: rgba(255, 255, 255, 0.07);
}

.prt-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: #ffffff;
  flex-shrink: 0;
}

.prt-avatar-orange {
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(255, 140, 0));
}

.prt-avatar-dark {
  background: #374151;
}

.prt-avatar-blue {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
}

.prt-author-info {
  flex: 1;
}

.prt-author-name {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #0a0a0a;
}

.prt-author-role {
  display: block;
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 1px;
}

.prt-name-light {
  color: #ffffff;
}

.prt-role-light {
  color: rgba(255, 255, 255, 0.5);
}

.prt-verified {
  color: rgb(229, 84, 0);
  font-size: 1rem;
}

.prt-verified-light {
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================
   CTA BANNER BELOW TESTIMONIALS
   ============================================ */
.prt-cta-section {
  padding: 0 0 70px;
  background: #f8f4f1;
}

.prt-cta-inner {
  position: relative;
  background: linear-gradient(135deg, #1e1e2e 0%, #2d1f3d 100%);
  border-radius: 24px;
  padding: 50px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  overflow: hidden;
  flex-wrap: wrap;
}

.prt-cta-blob {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(229, 84, 0, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.prt-cta-content {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 260px;
}

.prt-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  background: rgba(229, 84, 0, 0.18);
  color: rgb(255, 140, 0);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.prt-cta-title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.prt-cta-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.prt-cta-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.prt-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(255, 107, 0));
  color: #ffffff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(229, 84, 0, 0.35);
  white-space: nowrap;
}

.prt-cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(229, 84, 0, 0.45);
  color: #ffffff;
}

.prt-cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.prt-cta-btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

/* Responsive */
@media (max-width: 991px) {
  .prt-split {
    grid-template-columns: 1fr;
  }

  .prt-small-cards {
    flex-direction: row;
  }

  .prt-small-cards .prt-card-sm {
    flex: 1;
  }

  .prt-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }

  .prt-cta-actions {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .prt-small-cards {
    flex-direction: column;
  }

  .prt-inline-stats {
    gap: 8px;
  }

  .prt-istat {
    padding: 4px 6px;
  }

  .prt-cta-inner {
    padding: 30px 20px;
  }
}