.pricing-section {
  padding-top: var(--_responsive---margin-80-px);
  padding-bottom: 10px;
}

.pricing-card {
  background: rgba(5, 75, 171, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.5s ease-out forwards;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 100, 13, 0.5);
}

.price {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  flex-grow: 1;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--primary-900);
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
}

.feature-icon {
  width: 20px;
  height: 20px;
  color: var(--primary-900);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card .button-02 {
  width: 100%;
  margin-top: auto;
  padding: 15px 20px;
  justify-content: center;
  text-align: center;
  color: white;
  font-weight: 600;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromTop {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

:root {
  --gutter: 16px;
  --gap: 16px;
  --site-max-width: 1200px;
  --radius: 6px;
  --transition: 220ms ease;
}

html,
body {
  overflow-x: hidden;
}

h1 {
  font-size: clamp(24px, calc(1.35rem + 1.2vw), 48px);
}

h2 {
  font-size: clamp(20px, calc(1.15rem + 1vw), 36px);
}

h3 {
  font-size: clamp(18px, calc(1rem + 0.6vw), 28px);
}

p,
li,
button {
  font-size: clamp(13px, calc(0.95rem + 0.2vw), 16px);
}

.container {
  width: 100%;
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 0 calc(var(--gutter));
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  align-items: flex-start;
}

.card {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  background: var(--white);
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

.w-button {
  padding: 12px 18px;
  border-radius: 6px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

* {
  transition: var(--transition);
}

@media (min-width: 768px) and (max-width: 1023px) {
  :root {
    --gutter: 20px;
    --gap: 20px;
  }
}

@media (min-width: 1024px) and (max-width: 1439px) {
  :root {
    --gutter: 28px;
    --gap: 28px;
  }

  .container {
    padding: 0 calc(var(--gutter) * 0.75);
  }
}

@media (min-width: 1440px) {
  :root {
    --gutter: 42px;
    --gap: 32px;
    --site-max-width: 1440px;
  }

  .container {
    padding: 0 calc(var(--gutter));
  }
}

/* Grid Glass Pricing Cards Styles */ .pricing-cards-section {
  position: relative;
  overflow: hidden;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(7, 51, 171, 0.5);
  padding: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(7, 51, 171, 0.5) 0%,
    rgba(7, 51, 171, 0.5) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.pricing-card.featured {
  border: 2px solid var(--primary-900);
  background: rgba(255, 255, 255, 0.12);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--primary-900);
  color: white;
  padding: 8px 45px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(45deg);
  box-shadow: 0 4px 15px rgba(7, 51, 171, 0.5);
  z-index: 10;
}

.card-header {
  padding: 40px 30px 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--primary-900);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
  box-shadow: 0 8px 24px rgba(7, 51, 171, 0.5);
  transition: all 0.3s ease;
}

.pricing-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(218, 73, 0, 0.5);
}

.pricing-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-900) !important;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.price-tag {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 8px;
}

.currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-900);
  margin-right: 5px;
  margin-top: 8px;
}

.amount {
  font-size: 48px;
  font-weight: 800;
  background: var(--primary-900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price-subtitle {
  font-size: 14px;
  color: rgba(7, 51, 171, 1);
  font-weight: 500;
}

.card-body {
  padding: 0 30px 40px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.delivery-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(7, 51, 171, 0.5);
  border-radius: 12px;
  margin-bottom: 20px;
  color: #000;
  font-weight: 600;
  font-size: 14px;
}

.delivery-info i {
  color: var(--primary-900);
}

.best-for {
  text-align: center;
  padding: 15px;
  background: rgba(5, 71, 171, 0.08);
  border-radius: 12px;
  margin-bottom: 25px;
  color: #000;
  font-size: 14px;
}

.best-for strong {
  color: #0547ab;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.benefits-list li {
  padding: 12px 0;
  color: #000;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.benefits-list li:last-child {
  border-bottom: none;
}

.benefits-list li:hover {
  padding-left: 8px;
  color: var(--primary-900);
}

.benefits-list li i {
  color: var(--primary-900);
  font-size: 16px;
  min-width: 20px;
}

.card-cta-btn {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: var(--primary-900);
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(7, 51, 171, 0.5);
  position: relative;
  overflow: hidden;
  margin-top: auto; /* push to bottom of card */
}

.card-cta-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.card-cta-btn:hover::before {
  left: 100%;
}

.card-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(7, 51, 171, 0.5);
}

.card-cta-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.card-cta-btn:hover i {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .pricing-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .pricing-card {
    margin: 0 15px;
  }

  .amount {
    font-size: 36px;
  }

  .card-header {
    padding: 30px 20px 20px;
  }

  .card-body {
    padding: 0 20px 30px;
  }
}

@media (max-width: 480px) {
  .amount {
    font-size: 32px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
}

.faq-section {
  padding: 40px 20px;
  background: transparent;
}
.faq-container {
  max-width: 1100px;
  margin: 0 auto;
}
.faq-headline {
  font-size: 46px;
  font-weight: 400;
  color: var(--primary-900, #044bab);
  text-align: center;
  margin-bottom: 8px;
}
.faq-sub {
  text-align: center;
  color: rgba(0, 0, 0, 0.65);
  max-width: 820px;
  margin: 0 auto 20px;
}
.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(4, 75, 171, 0.06);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(4, 75, 171, 0.04);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  font-weight: 700;
  color: #042a5f;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-answer {
  padding: 0 16px;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.28s ease,
    padding 0.22s ease;
}
.faq-item[aria-expanded="true"] .faq-answer {
  padding: 12px 16px 18px;
  max-height: 800px;
}
.faq-item[aria-expanded="false"] .faq-answer {
  padding: 0 16px;
  max-height: 0;
}

@media (min-width: 768px) {
  .faq-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .faq-headline {
    font-size: 69px;
  }
}
