/* ---------------Pricing Hero Section Start---------------- */
.pricing-hero,
.pricing-hero *,
.pricing-hero *::before,
.pricing-hero *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


.pricing-hero {
  position: relative;
  background: linear-gradient(to bottom right, #001F3F, #002952, #003d66);
  color: #ffffff;
  padding: 7rem 0; 
  overflow: hidden;
  font-family: system-ui, -apple-system, sans-serif;
}


.pricing-hero .bg-orbs {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
}

.pricing-hero .orb {
  position: absolute;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  mix-blend-mode: multiply;
  filter: blur(48px);
  animation: pricing-hero-float 6s ease-in-out infinite;
}

.pricing-hero .orb-teal {
  top: 5rem;
  left: 5rem;
  background-color: #2dd4bf; 
}

.pricing-hero .orb-emerald {
  bottom: 5rem;
  right: 5rem;
  background-color: #34d399; 
  animation-delay: 2s;
}

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

.pricing-hero .bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
}

.pricing-hero .pattern-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0px);
  background-size: 48px 48px;
}


.pricing-hero .container {
  position: relative;
  max-width: 80rem; 
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) { 
  .pricing-hero .container { padding: 0 1.5rem; } 
}
@media (min-width: 1024px) { 
  .pricing-hero .container { padding: 0 2rem; } 
}

.pricing-hero .text-center { text-align: center; }
.pricing-hero .mb-6 { margin-bottom: 1.5rem; }
.pricing-hero .mb-8 { margin-bottom: 2rem; }
.pricing-hero .mb-10 { margin-bottom: 2.5rem; }
.pricing-hero .mt-12 { margin-top: 3rem; }

.pricing-hero .w-4 { width: 1rem; height: 1rem; }
.pricing-hero .w-5 { width: 1.25rem; height: 1.25rem; }
.pricing-hero .icon-teal { color: #2dd4bf; }


.pricing-hero .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px); 
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-hero .badge-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

.pricing-hero .title {
  font-size: 2.25rem; 
  line-height: 1.2;
  font-weight: 400;
}

@media (min-width: 768px) { 
  .pricing-hero .title { font-size: 3rem; } 
} 

@media (min-width: 1024px) { 
  .pricing-hero .title { font-size: 3.75rem; } 
} 

.pricing-hero .text-gradient {
  background: linear-gradient(to right, #2dd4bf, #34d399); 
  background-clip: text;
  color: transparent;
}

.pricing-hero .subtitle {
  color: #e5e7eb; 
  font-size: 1.25rem; 
  max-width: 48rem; 
  margin-left: auto;
  margin-right: auto;
  line-height: 1.625;
}

.pricing-hero .badge-box {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 1rem; 
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-hero .guarantees-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  font-size: 0.875rem;
}

.pricing-hero .guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #d1d5db;
}



/* ---------------Pricing Hero Section End---------------- */


/* ---------------Pricing Card Section End---------------- */

.pricing-card {
  font-family: system-ui, -apple-system, sans-serif;
  padding: 4rem 1rem;
  position: relative;
  z-index: 10;
  margin-top: -8rem; 
}

.pricing-card .pricing-container {
  max-width: 1200px;
  margin: 0 auto;
}


.pricing-card .pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

@media (min-width: 768px) {
  .pricing-card .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: center; 
  }
}

.pricing-card .card {
  background-color: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid #f3f4f6;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card .card-popular {
  border: 2px solid #14b8a6; 
  transform: scale(1.03); 
  z-index: 2;
  box-shadow: 0 20px 40px rgba(11, 179, 133, 0.15);
}

.pricing-card .card-popular:hover {
  transform: scale(1.03) translateY(-5px);
}

@media (max-width: 767px) {
  .pricing-card .card-popular {
    transform: scale(1);
  }
  .pricing-card .card-popular:hover {
    transform: translateY(-5px);
  }
}

.pricing-card .popular-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to right,#0d9488,#14b8a6,#10b981);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  font-weight: 400;
  z-index: 10;
}

.pricing-card .card-content {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pricing-card .pt-20 {
  padding-top: 4.5rem; 
}

.pricing-card .card-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-card .icon-wrapper {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem auto;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card .icon-svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.pricing-card .icon-gray {
    background: linear-gradient(to right,#6b7280,#4b5563);
}

.pricing-card .icon-teal {
    background: linear-gradient(to right,#0d9488,#059669);

}

.pricing-card .icon-purple {
  background: linear-gradient(to right,#9333ea,#db2777);
}


.pricing-card .plan-name {
  font-size: 1.5rem;
  font-weight: 400;
  color: #1f2937;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.pricing-card .plan-desc {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.pricing-card .plan-price-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.pricing-card .plan-price {
  font-size: 3rem;
  font-weight: 400;
  color: #1f2937;
}

.pricing-card .plan-duration {
  font-size: 1.25rem;
  color: #6b7280;
}

.pricing-card .feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.pricing-card .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.pricing-card .check-bg {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: #d1fae5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-card .cross-bg {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-card .check-icon {
  width: 1rem;
  height: 1rem;
  color: #059669;
  stroke-width: 3;
}

.pricing-card .cross-icon {
  width: 1rem;
  height: 1rem;
  color: #9ca3af;
}

.pricing-card .feature-text {
  color: #4b5563;
}

.pricing-card .feature-text-disabled {
  color: #9ca3af;
}

/* --- Buttons --- */
.pricing-card .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 0;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.pricing-card .btn-arrow {
  width: 1.2rem;
  height: 1.2rem;
  transition: transform 0.3s ease;
}

.pricing-card .btn:hover .btn-arrow {
  transform: translateX(4px);
}

.pricing-card .btn-secondary {
  background-color: #f3f4f6;
  color: #1f2937;
}

.pricing-card .btn-secondary:hover {
  background-color: #e5e7eb;
}

.pricing-card .btn-primary {
   background: linear-gradient(to right,#0d9488,#14b8a6,#10b981);
  color: white;
}

.pricing-card .btn-primary:hover {
  background-color: #00a072;
}



.pricing-card .enterprise-section {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.pricing-card .enterprise-box {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 2rem 2rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  border: 1px solid #f3f4f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 630px;
}

@media (min-width: 768px) {
  .pricing-card .enterprise-box {
    flex-direction: row;
    justify-content: space-between;
  }
}

.pricing-card .enterprise-info {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.pricing-card .enterprise-icon-wrapper {
  background: linear-gradient(to right,#6366f1,#a855f7);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.pricing-card .enterprise-icon-wrapper svg {
  width: 1.75rem;
  height: 1.75rem;
}

.pricing-card .enterprise-text h3 {
  font-size: 1.25rem;
  color: #1f2937;
  margin-bottom: 0.25rem;
  font-weight: 400;
}

.pricing-card .enterprise-text p {
  color: #4B5563;
  font-size: 0.95rem;
  font-weight: 400;
}

.pricing-card .btn-contact {
  background: linear-gradient(to right,#4f46e5,#9333ea);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 1rem;
  text-decoration: none;
  font-weight: 400;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.pricing-card .btn-contact:hover {
  background-color: #6d28d9;
}

/* ---------------Pricing Card Section End---------------- */

/* ---------------Why Choose Section Start---------------- */
.why-choose {
  background-color: #ffffff;
  padding: 5rem 0;
}

.why-choose .wc-container {
  max-width: 1280px; 
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .why-choose .wc-container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .why-choose .wc-container { padding: 0 2rem; }
}

.why-choose .wc-header {
  text-align: center;
  margin-bottom: 4rem; 
}

.why-choose .wc-title {
  color: #111827; 
  margin-bottom: 1rem; 
  font-size: 2.25rem; 
  font-weight: 400;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .why-choose .wc-title { font-size: 2.5rem; }
}

.why-choose .wc-gradient-text {
  background: linear-gradient(to right, #0d9488, #059669); 
  background-clip: text;
  color: transparent;
}

.why-choose .wc-subtitle {
  color: #4b5563; 
  font-size: 1.25rem; 
  max-width: 42rem; 
  margin: 0 auto;
  line-height: 1.5;
}

.why-choose .wc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .why-choose .wc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


.why-choose .wc-card {
  text-align: center;
  padding: 2rem; 
  background: linear-gradient(to bottom, #f9fafb, #ffffff); 
  border-radius: 1.5rem; 
  border: 1px solid #f3f4f6;
  transition: all 0.5s ease;
}

.why-choose .wc-card:hover {
  transform: translateY(-0.5rem); 
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15); 
}

.why-choose .wc-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem; 
  height: 5rem; 
  border-radius: 1rem; 
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); 
  transition: transform 0.5s ease;
  color: #ffffff;
}

.why-choose .wc-card:hover .wc-icon-wrapper {
  transform: scale(1.1);
}

.why-choose .icon-blue {
  background: linear-gradient(to right, #3b82f6, #06b6d4); 
}

.why-choose .icon-purple {
  background: linear-gradient(to right, #a855f7, #ec4899); 
}

.why-choose .icon-emerald {
  background: linear-gradient(to right, #10b981, #14b8a6); 
}

.why-choose .wc-card-title {
  color: #111827; 
  margin-bottom: 1rem; 
  font-size: 1.5rem; 
  font-weight: 400;
}

.why-choose .wc-card-desc {
  color: #4b5563; 
  line-height: 1.625; 
  font-size: 1.125rem; 
}
/* ---------------Why Choose Section End---------------- */

/* ---------------Faq Section Start---------------- */

.faq {
  background: linear-gradient(to bottom, #f9fafb, #ffffff); 
  padding: 5rem 0
}

.faq .faq-container {
  max-width: 56rem; 
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .faq .faq-container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .faq .faq-container { padding: 0 2rem; }
}

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

.faq .faq-title {
  color: #111827; 
  margin-bottom: 1rem; 
  font-size: 2.25rem; 
  font-weight: 400;
  line-height: 1.2;
}

.faq .faq-subtitle {
  color: #4b5563; 
  font-size: 1.25rem; 
}

.faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem; 
}

.faq .faq-card {
  background-color: #ffffff; 
  border-radius: 1rem; 
  border: 1px solid #f3f4f6;
  padding: 2rem; 
  transition: all 0.3s ease; 
}

.faq .faq-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); 
}

.faq .faq-question {
  margin-bottom: 0.75rem;
  font-size: 1.25rem; 
  font-weight: 400;
}

.faq .faq-answer {
  color: #4b5563; 
  font-size: 1.125rem; 
  line-height: 1.625; 
}

.faq .faq-action {
  margin-top: 3rem; 
  text-align: center;
}

.faq .faq-action-text {
  color: #4b5563; 
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.faq .btn-support {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem; 
  padding: 1rem 2rem;
  background: linear-gradient(to right, #0d9488, #059669); 
  color: #ffffff; 
  border-radius: 1rem; 
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease; 
}

.faq .btn-support:hover {
  box-shadow: 0 20px 25px -5px rgba(20, 184, 166, 0.3); 
}

.faq .btn-arrow {
  width: 1.25rem; 
  height: 1.25rem; 
  transition: transform 0.3s ease;
}

.faq .btn-support:hover .btn-arrow {
  transform: translateX(4px); 
}   

/* ---------------Faq Section End---------------- */