/* =========================================================
   CODERN
   PRICING COMPONENT
   ========================================================= */

.pricing-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 6rem 0 7rem;
  background: #080c21;
  color: #fff;
}

.pricing-container {
  position: relative;
  z-index: 2;
}


/* =========================================================
   BACKGROUND
   ========================================================= */

.pricing-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #111832 0%,
      #080c21 48%,
      #111832 100%
    );
}

.pricing-grid {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.8) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.8) 1px,
      transparent 1px
    );
  background-size: 50px 50px;
}

.pricing-ambient {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(140px);
}

.pricing-ambient-cyan {
  left: -180px;
  top: 20%;
  background: rgba(34, 211, 238, 0.07);
}

.pricing-ambient-violet {
  right: -180px;
  bottom: 15%;
  background: rgba(139, 92, 246, 0.08);
}

.pricing-ambient-center {
  top: 35%;
  left: 50%;
  width: 500px;
  height: 500px;
  transform: translateX(-50%);
  background: rgba(59, 130, 246, 0.025);
}


/* =========================================================
   REVEAL SYSTEM
   ========================================================= */

.pricing-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card {
  transition-delay: var(--pricing-delay, 0ms);
}


/* =========================================================
   INTERNATIONAL STATUS
   ========================================================= */

.pricing-status {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.pricing-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(34, 211, 238, 0.15);
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.035);
  color: rgba(103, 232, 249, 0.95);
  font-size: 0.8rem;
  font-weight: 500;
  backdrop-filter: blur(20px);
}

.pricing-status-pill svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.pricing-status-dot {
  width: 6px;
  height: 6px;
  margin-left: 0.15rem;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.8);
}


/* =========================================================
   HEADER
   ========================================================= */

.pricing-header {
  max-width: 48rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.pricing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.05);
  color: var(--color-primary, #22d3ee);
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-eyebrow svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.pricing-title {
  margin: 0 0 1.5rem;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.pricing-title > span {
  display: block;
}

.pricing-title .gradient-text {
  margin-top: 0.15em;
}

.pricing-description {
  max-width: 42rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}


/* =========================================================
   TRUST POINTS
   ========================================================= */

.pricing-trust-points {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-top: 2rem;
}

.pricing-trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.pricing-trust-item svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke-width: 1.7;
}

.pricing-trust-item:nth-of-type(1) svg {
  color: #22d3ee;
}

.pricing-trust-item:nth-of-type(2) svg {
  color: #a78bfa;
}

.pricing-trust-item:nth-of-type(3) svg {
  color: #34d399;
}

.pricing-trust-item:nth-of-type(4) svg {
  color: #60a5fa;
}

.pricing-trust-separator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}


/* =========================================================
   PLANS GRID
   ========================================================= */

.pricing-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.75rem;
}


/* =========================================================
   PRICING CARD
   ========================================================= */

.pricing-card {
  position: relative;
  display: flex;
  min-width: 0;
  border-radius: 1rem;
}

.pricing-card-highlighted {
  transform: translateY(-12px);
}

.pricing-card-glow {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 1rem;
  opacity: 0;
  filter: blur(3px);
  transition: opacity 0.5s ease;
}

.pricing-card:hover .pricing-card-glow {
  opacity: 1;
}

.pricing-card-starter .pricing-card-glow {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(34, 211, 238, 0.22),
    transparent
  );
}

.pricing-card-business .pricing-card-glow {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(96, 165, 250, 0.25),
    transparent
  );
}

.pricing-card-advanced .pricing-card-glow {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(168, 85, 247, 0.25),
    transparent
  );
}

.pricing-card-inner {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(22px);
}

.pricing-card-highlighted .pricing-card-inner {
  border-color: rgba(34, 211, 238, 0.35);
  background: rgba(34, 211, 238, 0.055);
  box-shadow:
    0 25px 80px rgba(0, 212, 255, 0.12);
}

.pricing-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 2rem;
}

.pricing-card-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    #22d3ee,
    #38bdf8,
    #3b82f6
  );
  animation: pricingTopPulse 3s ease-in-out infinite;
}

.pricing-card-business .pricing-card-top-line {
  background: linear-gradient(
    90deg,
    #60a5fa,
    #a78bfa,
    #8b5cf6
  );
}

.pricing-card-advanced .pricing-card-top-line {
  background: linear-gradient(
    90deg,
    #a78bfa,
    #d946ef,
    #ec4899
  );
}

@keyframes pricingTopPulse {
  0%,
  100% {
    opacity: 0.45;
  }

  50% {
    opacity: 1;
  }
}


/* =========================================================
   POPULAR BADGE
   ========================================================= */

.pricing-popular-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.1);
  color: var(--color-primary, #22d3ee);
  font-size: 0.7rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.pricing-popular-badge svg {
  width: 0.75rem;
  height: 0.75rem;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.5;
}


/* =========================================================
   PLAN ICON
   ========================================================= */

.pricing-plan-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.5rem;
  padding: 1px;
  border-radius: 0.75rem;
}

.pricing-plan-icon > div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 0.7rem;
  background: #111832;
}

.pricing-plan-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: #fff;
  stroke-width: 1.6;
}

.pricing-icon-cyan {
  background: linear-gradient(
    135deg,
    #22d3ee,
    #38bdf8,
    #3b82f6
  );
}

.pricing-icon-blue {
  background: linear-gradient(
    135deg,
    #60a5fa,
    #a78bfa,
    #8b5cf6
  );
}

.pricing-icon-violet {
  background: linear-gradient(
    135deg,
    #a78bfa,
    #d946ef,
    #ec4899
  );
}


/* =========================================================
   PLAN TITLE
   ========================================================= */

.pricing-plan-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
}

.pricing-plan-short-name {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pricing-recommended {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(110, 231, 183, 0.7);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-recommended span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
}

.pricing-plan-name {
  margin: 0 0 0.75rem;
  padding-right: 3rem;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.25;
}

.pricing-plan-description {
  min-height: 90px;
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}


/* =========================================================
   PRICE
   ========================================================= */

.pricing-price {
  margin-bottom: 1.5rem;
}

.pricing-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.5rem;
}

.pricing-price-label {
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.7rem;
}

.pricing-price-value {
  font-size: clamp(2.5rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
}

.pricing-price-period {
  display: block;
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.7rem;
}


/* =========================================================
   DELIVERY / SUPPORT
   ========================================================= */

.pricing-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.pricing-meta-box {
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.025);
}

.pricing-meta-heading {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.3rem;
}

.pricing-meta-heading svg {
  width: 0.875rem;
  height: 0.875rem;
  fill: none;
  stroke-width: 1.7;
}

.pricing-meta-box:first-child svg {
  color: #22d3ee;
}

.pricing-meta-box:last-child svg {
  color: #a78bfa;
}

.pricing-meta-heading span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-meta-box strong {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 600;
}


/* =========================================================
   IDEAL
   ========================================================= */

.pricing-ideal {
  margin-bottom: 1.75rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.025);
}

.pricing-ideal > span {
  display: block;
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pricing-ideal p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
}

.pricing-divider {
  width: 100%;
  height: 1px;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
}


/* =========================================================
   FEATURES
   ========================================================= */

.pricing-features {
  flex-grow: 1;
}

.pricing-features-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pricing-features-header strong {
  color: #fff;
  font-size: 0.875rem;
}

.pricing-features-header span {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-features ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  line-height: 1.6;
}

.pricing-check {
  display: flex;
  flex: 0 0 1.25rem;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.1);
  color: var(--color-primary, #22d3ee);
  font-size: 0.7rem;
  font-weight: 700;
}


/* =========================================================
   PLAN BUTTON
   ========================================================= */

.pricing-plan-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 2rem;
  padding: 0.875rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.pricing-plan-button svg,
.pricing-custom-button svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform 0.3s ease;
}

.pricing-plan-button:hover {
  border-color: rgba(34, 211, 238, 0.3);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.pricing-plan-button:hover svg,
.pricing-custom-button:hover svg {
  transform: translateX(4px);
}

.pricing-plan-button:active,
.pricing-custom-button:active {
  transform: scale(0.97);
}

.pricing-plan-button-primary {
  border-color: transparent;
  background: var(--color-primary, #22d3ee);
  color: #07111c;
  box-shadow: 0 12px 30px rgba(34, 211, 238, 0.2);
}

.pricing-plan-button-primary:hover {
  border-color: transparent;
  background: #67e8f9;
}


/* =========================================================
   CARD BOTTOM GLOW
   ========================================================= */

.pricing-card-bottom-glow {
  position: absolute;
  left: 50%;
  bottom: -7rem;
  width: 14rem;
  height: 10rem;
  transform: translateX(-50%);
  border-radius: 50%;
  opacity: 0;
  filter: blur(45px);
  transition: opacity 0.5s ease;
}

.pricing-card:hover .pricing-card-bottom-glow {
  opacity: 0.1;
}

.pricing-bottom-cyan {
  background: #22d3ee;
}

.pricing-bottom-blue {
  background: #3b82f6;
}

.pricing-bottom-violet {
  background: #a855f7;
}


/* =========================================================
   PROJECT MODEL
   ========================================================= */

.pricing-project-model {
  position: relative;
  margin-top: 2.5rem;
  overflow: hidden;
  padding: 1.75rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(20px);
}

.pricing-moving-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 12rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    #67e8f9,
    transparent
  );
  animation: pricingMovingLine 5s linear infinite;
}

@keyframes pricingMovingLine {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(700%);
  }
}

.pricing-model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.pricing-model-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pricing-model-icon {
  display: flex;
  flex: 0 0 2.75rem;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid;
  border-radius: 0.75rem;
}

.pricing-model-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.pricing-model-cyan {
  border-color: rgba(34, 211, 238, 0.15);
  background: rgba(34, 211, 238, 0.06);
  color: #67e8f9;
}

.pricing-model-violet {
  border-color: rgba(167, 139, 250, 0.15);
  background: rgba(167, 139, 250, 0.06);
  color: #c4b5fd;
}

.pricing-model-green {
  border-color: rgba(52, 211, 153, 0.15);
  background: rgba(52, 211, 153, 0.06);
  color: #6ee7b7;
}

.pricing-model-item h4 {
  margin: 0 0 0.25rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.pricing-model-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.875rem;
  line-height: 1.65;
}


/* =========================================================
   CUSTOM CTA
   ========================================================= */

.pricing-custom-cta {
  position: relative;
  margin-top: 2.5rem;
  overflow: hidden;
  padding: 2.25rem 2.5rem;
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 1rem;
  background: rgba(34, 211, 238, 0.035);
  backdrop-filter: blur(20px);
}

.pricing-cta-light {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(34, 211, 238, 0.12),
    transparent
  );
  animation: pricingCtaLight 5s linear infinite;
}

@keyframes pricingCtaLight {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.pricing-cta-glow {
  position: absolute;
  top: 50%;
  width: 14rem;
  height: 14rem;
  transform: translateY(-50%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.pricing-cta-glow-left {
  left: -5rem;
  background: rgba(34, 211, 238, 0.06);
}

.pricing-cta-glow-right {
  right: -5rem;
  background: rgba(139, 92, 246, 0.06);
}

.pricing-custom-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.pricing-custom-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pricing-custom-icon {
  display: flex;
  flex: 0 0 3.5rem;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 0.75rem;
  background: rgba(34, 211, 238, 0.1);
  color: var(--color-primary, #22d3ee);
}

.pricing-custom-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.pricing-custom-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.pricing-custom-label span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.8);
}

.pricing-custom-label strong {
  color: rgba(110, 231, 183, 0.7);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pricing-custom-info h3 {
  margin: 0 0 0.5rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}

.pricing-custom-info p {
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  line-height: 1.7;
}

.pricing-custom-button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border: 0;
  border-radius: 0.75rem;
  background: var(--color-primary, #22d3ee);
  color: #07111c;
  font: inherit;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(34, 211, 238, 0.2);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.pricing-custom-button:hover {
  background: #67e8f9;
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(34, 211, 238, 0.25);
}


/* =========================================================
   FAQ
   ========================================================= */

.pricing-faq {
  max-width: 56rem;
  margin: 3.5rem auto 0;
}

.pricing-faq-header {
  margin-bottom: 1.75rem;
  text-align: center;
}

.pricing-faq-header > span {
  color: var(--color-primary, #22d3ee);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.pricing-faq-header h3 {
  margin: 0.5rem 0 0;
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.pricing-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-faq-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(18px);
}

.pricing-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.5rem;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background 0.25s ease;
}

.pricing-faq-question:hover {
  background: rgba(255, 255, 255, 0.035);
}

.pricing-faq-question svg {
  flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: var(--color-primary, #22d3ee);
  stroke-width: 1.8;
  transition: transform 0.3s ease;
}

.pricing-faq-question[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.pricing-faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.3s ease,
    opacity 0.25s ease;
}

.pricing-faq-answer:not([hidden]) {
  max-height: 500px;
  opacity: 1;
}

.pricing-faq-answer p {
  margin: 0;
  padding: 0 1.5rem 1.25rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  line-height: 1.7;
}


/* =========================================================
   PRICING NOTE
   ========================================================= */

.pricing-note {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.75rem;
  max-width: 48rem;
  margin: 2rem auto 0;
  text-align: center;
}

.pricing-note svg {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
  fill: none;
  stroke: rgba(34, 211, 238, 0.6);
  stroke-width: 1.7;
}

.pricing-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  line-height: 1.65;
}


/* =========================================================
   FOCUS
   ========================================================= */

.pricing-plan-button:focus-visible,
.pricing-custom-button:focus-visible,
.pricing-faq-question:focus-visible {
  outline: 2px solid var(--color-primary, #22d3ee);
  outline-offset: 3px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

  .pricing-plans {
    gap: 1rem;
  }

  .pricing-card-content {
    padding: 1.5rem;
  }

  .pricing-plan-name {
    font-size: 1.35rem;
  }

  .pricing-plan-description {
    min-height: 110px;
  }

  .pricing-model-grid {
    gap: 1rem;
  }

}


/* =========================================================
   MOBILE / TABLET
   ========================================================= */

@media (max-width: 900px) {

  .pricing-section {
    padding: 5rem 0 6rem;
  }

  .pricing-plans {
    grid-template-columns: 1fr;
    max-width: 42rem;
    margin: 0 auto;
  }

  .pricing-card-highlighted {
    transform: none;
  }

  .pricing-card-content {
    padding: 2rem;
  }

  .pricing-plan-description {
    min-height: auto;
  }

  .pricing-model-grid {
    grid-template-columns: 1fr;
  }

  .pricing-custom-content {
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-custom-button {
    align-self: flex-start;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .pricing-section {
    padding: 4rem 0 5rem;
  }

  .pricing-status {
    margin-bottom: 1.5rem;
  }

  .pricing-status-pill {
    font-size: 0.7rem;
  }

  .pricing-header {
    margin-bottom: 3rem;
  }

  .pricing-title {
    font-size: 2.35rem;
  }

  .pricing-description {
    font-size: 0.95rem;
  }

  .pricing-trust-points {
    gap: 0.65rem 0.9rem;
  }

  .pricing-trust-item {
    font-size: 0.75rem;
  }

  .pricing-trust-separator {
    display: none;
  }

  .pricing-card-content {
    padding: 1.5rem;
  }

  .pricing-plan-name {
    padding-right: 0;
    font-size: 1.45rem;
  }

  .pricing-price-value {
    font-size: 2.5rem;
  }

  .pricing-meta-grid {
    grid-template-columns: 1fr;
  }

  .pricing-project-model {
    padding: 1.5rem;
  }

  .pricing-custom-cta {
    padding: 1.5rem;
  }

  .pricing-custom-info {
    align-items: flex-start;
  }

  .pricing-custom-icon {
    display: none;
  }

  .pricing-custom-info h3 {
    font-size: 1.3rem;
  }

  .pricing-custom-info p {
    font-size: 0.875rem;
  }

  .pricing-custom-button {
    width: 100%;
  }

  .pricing-faq-question {
    padding: 1rem;
  }

  .pricing-faq-answer p {
    padding-right: 1rem;
    padding-left: 1rem;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .pricing-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .pricing-card-top-line,
  .pricing-moving-line,
  .pricing-cta-light {
    animation: none;
  }

  .pricing-plan-button,
  .pricing-custom-button,
  .pricing-plan-button svg,
  .pricing-custom-button svg,
  .pricing-faq-question svg,
  .pricing-card-glow,
  .pricing-card-bottom-glow {
    transition: none;
  }

}

/* =========================================================
   LIGHT THEME
   White / Purple Mood
   ---------------------------------------------------------
   IMPORTANT:
   - Dark mode remains completely unchanged.
   - Layout remains unchanged.
   - Spacing remains unchanged.
   - Animations remain unchanged.
   - Responsive behavior remains unchanged.
   - Only light-mode visual colors are overridden.
========================================================= */


/* =========================================================
   MAIN SECTION / BACKGROUND
========================================================= */

[data-theme="light"] .pricing-section {
  background: #ffffff;
  color: #0f172a;
}

[data-theme="light"] .pricing-background {
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8fafc 48%,
      #f3f0ff 100%
    );
}

[data-theme="light"] .pricing-grid {
  opacity: 0.035;
  background-image:
    linear-gradient(
      rgba(124, 58, 237, 0.16) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(124, 58, 237, 0.16) 1px,
      transparent 1px
    );
}

[data-theme="light"] .pricing-ambient-cyan {
  background: rgba(139, 92, 246, 0.075);
}

[data-theme="light"] .pricing-ambient-violet {
  background: rgba(168, 85, 247, 0.08);
}

[data-theme="light"] .pricing-ambient-center {
  background: rgba(124, 58, 237, 0.025);
}


/* =========================================================
   INTERNATIONAL STATUS
========================================================= */

[data-theme="light"] .pricing-status-pill {
  border-color: rgba(124, 58, 237, 0.16);
  background: rgba(139, 92, 246, 0.055);
  color: #6d28d9;
}


/* =========================================================
   HEADER
========================================================= */

[data-theme="light"] .pricing-eyebrow {
  border-color: rgba(124, 58, 237, 0.18);
  background: rgba(139, 92, 246, 0.06);
  color: #7c3aed;
}

[data-theme="light"] .pricing-title {
  color: #0f172a;
}

[data-theme="light"] .pricing-description {
  color: rgba(71, 85, 105, 0.9);
}


/* =========================================================
   TRUST POINTS
========================================================= */

[data-theme="light"] .pricing-trust-item {
  color: rgba(71, 85, 105, 0.72);
}

[data-theme="light"] .pricing-trust-item:nth-of-type(1) svg {
  color: #7c3aed;
}

[data-theme="light"] .pricing-trust-item:nth-of-type(2) svg {
  color: #8b5cf6;
}

[data-theme="light"] .pricing-trust-item:nth-of-type(3) svg {
  color: #34d399;
}

[data-theme="light"] .pricing-trust-item:nth-of-type(4) svg {
  color: #a855f7;
}

[data-theme="light"] .pricing-trust-separator {
  background: rgba(15, 23, 42, 0.15);
}


/* =========================================================
   PRICING CARDS
========================================================= */

[data-theme="light"] .pricing-card-starter .pricing-card-glow {
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(139, 92, 246, 0.22),
      transparent
    );
}

[data-theme="light"] .pricing-card-business .pricing-card-glow {
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(168, 85, 247, 0.22),
      transparent
    );
}

[data-theme="light"] .pricing-card-advanced .pricing-card-glow {
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(124, 58, 237, 0.24),
      transparent
    );
}

[data-theme="light"] .pricing-card-inner {
  border-color: rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 10px 40px rgba(15, 23, 42, 0.045);
}

[data-theme="light"] .pricing-card-highlighted .pricing-card-inner {
  border-color: rgba(124, 58, 237, 0.28);
  background: rgba(139, 92, 246, 0.055);
  box-shadow:
    0 25px 80px rgba(124, 58, 237, 0.12);
}


/* =========================================================
   CARD TOP LINES
========================================================= */

[data-theme="light"] .pricing-card-top-line {
  background:
    linear-gradient(
      90deg,
      #8b5cf6,
      #a855f7,
      #7c3aed
    );
}

[data-theme="light"] .pricing-card-business .pricing-card-top-line {
  background:
    linear-gradient(
      90deg,
      #a855f7,
      #8b5cf6,
      #7c3aed
    );
}

[data-theme="light"] .pricing-card-advanced .pricing-card-top-line {
  background:
    linear-gradient(
      90deg,
      #8b5cf6,
      #a855f7,
      #c084fc
    );
}


/* =========================================================
   POPULAR BADGE
========================================================= */

[data-theme="light"] .pricing-popular-badge {
  border-color: rgba(124, 58, 237, 0.18);
  background: rgba(139, 92, 246, 0.09);
  color: #7c3aed;
}


/* =========================================================
   PLAN ICONS
   ---------------------------------------------------------
   FIX:
   Original icon stroke is white.
   White mode uses purple icon background,
   therefore white icon remains visible.
========================================================= */

[data-theme="light"] .pricing-plan-icon > div {
  background: #ffffff;
}

[data-theme="light"] .pricing-plan-icon svg {
  stroke: #7c3aed;
}

[data-theme="light"] .pricing-icon-cyan {
  background:
    linear-gradient(
      135deg,
      #8b5cf6,
      #a855f7,
      #7c3aed
    );
}

[data-theme="light"] .pricing-icon-blue {
  background:
    linear-gradient(
      135deg,
      #a855f7,
      #8b5cf6,
      #7c3aed
    );
}

[data-theme="light"] .pricing-icon-violet {
  background:
    linear-gradient(
      135deg,
      #8b5cf6,
      #a855f7,
      #c084fc
    );
}


/* =========================================================
   PLAN TEXT
========================================================= */

[data-theme="light"] .pricing-plan-short-name {
  color: rgba(71, 85, 105, 0.55);
}

[data-theme="light"] .pricing-plan-name {
  color: #0f172a;
}

[data-theme="light"] .pricing-plan-description {
  color: rgba(71, 85, 105, 0.82);
}


/* =========================================================
   PRICE
========================================================= */

[data-theme="light"] .pricing-price-label {
  color: rgba(71, 85, 105, 0.6);
}

[data-theme="light"] .pricing-price-value {
  color: #0f172a;
}

[data-theme="light"] .pricing-price-period {
  color: rgba(71, 85, 105, 0.6);
}


/* =========================================================
   META
========================================================= */

[data-theme="light"] .pricing-meta-box {
  border-color: rgba(15, 23, 42, 0.08);
  background: rgba(248, 250, 252, 0.8);
}

[data-theme="light"] .pricing-meta-box:first-child svg {
  color: #7c3aed;
}

[data-theme="light"] .pricing-meta-box:last-child svg {
  color: #a855f7;
}

[data-theme="light"] .pricing-meta-heading span {
  color: rgba(71, 85, 105, 0.6);
}

[data-theme="light"] .pricing-meta-box strong {
  color: rgba(15, 23, 42, 0.75);
}


/* =========================================================
   IDEAL / DIVIDER
========================================================= */

[data-theme="light"] .pricing-ideal {
  border-color: rgba(15, 23, 42, 0.08);
  background: rgba(248, 250, 252, 0.8);
}

[data-theme="light"] .pricing-ideal > span {
  color: rgba(71, 85, 105, 0.6);
}

[data-theme="light"] .pricing-ideal p {
  color: rgba(15, 23, 42, 0.72);
}

[data-theme="light"] .pricing-divider {
  background: rgba(15, 23, 42, 0.1);
}


/* =========================================================
   FEATURES
========================================================= */

[data-theme="light"] .pricing-features-header strong {
  color: #0f172a;
}

[data-theme="light"] .pricing-features-header span {
  color: rgba(71, 85, 105, 0.55);
}

[data-theme="light"] .pricing-features li {
  color: rgba(71, 85, 105, 0.82);
}

[data-theme="light"] .pricing-check {
  background: rgba(139, 92, 246, 0.1);
  color: #7c3aed;
}


/* =========================================================
   PLAN BUTTONS
========================================================= */

[data-theme="light"] .pricing-plan-button {
  border-color: rgba(15, 23, 42, 0.1);
  background: rgba(248, 250, 252, 0.9);
  color: #0f172a;
}

[data-theme="light"] .pricing-plan-button:hover {
  border-color: rgba(124, 58, 237, 0.28);
  background: rgba(139, 92, 246, 0.07);
}

[data-theme="light"] .pricing-plan-button-primary {
  border-color: transparent;
  background: #7c3aed;
  color: #ffffff;
  box-shadow:
    0 12px 30px rgba(124, 58, 237, 0.2);
}

[data-theme="light"] .pricing-plan-button-primary:hover {
  background: #8b5cf6;
}


/* =========================================================
   CARD BOTTOM GLOW
========================================================= */

[data-theme="light"] .pricing-bottom-cyan {
  background: #8b5cf6;
}

[data-theme="light"] .pricing-bottom-blue {
  background: #a855f7;
}

[data-theme="light"] .pricing-bottom-violet {
  background: #7c3aed;
}


/* =========================================================
   PROJECT MODEL
========================================================= */

[data-theme="light"] .pricing-project-model {
  border-color: rgba(15, 23, 42, 0.09);
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 10px 35px rgba(15, 23, 42, 0.035);
}

[data-theme="light"] .pricing-moving-line {
  background:
    linear-gradient(
      90deg,
      transparent,
      #8b5cf6,
      transparent
    );
}

[data-theme="light"] .pricing-model-cyan {
  border-color: rgba(124, 58, 237, 0.16);
  background: rgba(139, 92, 246, 0.06);
  color: #7c3aed;
}

[data-theme="light"] .pricing-model-violet {
  border-color: rgba(168, 85, 247, 0.16);
  background: rgba(168, 85, 247, 0.06);
  color: #9333ea;
}

[data-theme="light"] .pricing-model-green {
  border-color: rgba(52, 211, 153, 0.16);
  background: rgba(52, 211, 153, 0.06);
  color: #059669;
}

[data-theme="light"] .pricing-model-item h4 {
  color: #0f172a;
}

[data-theme="light"] .pricing-model-item p {
  color: rgba(71, 85, 105, 0.75);
}


/* =========================================================
   CUSTOM CTA
========================================================= */

[data-theme="light"] .pricing-custom-cta {
  border-color: rgba(124, 58, 237, 0.18);
  background: rgba(139, 92, 246, 0.045);
}

[data-theme="light"] .pricing-cta-light {
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(139, 92, 246, 0.12),
      transparent
    );
}

[data-theme="light"] .pricing-cta-glow-left {
  background: rgba(139, 92, 246, 0.065);
}

[data-theme="light"] .pricing-cta-glow-right {
  background: rgba(168, 85, 247, 0.065);
}

[data-theme="light"] .pricing-custom-icon {
  border-color: rgba(124, 58, 237, 0.18);
  background: rgba(139, 92, 246, 0.08);
  color: #7c3aed;
}

[data-theme="light"] .pricing-custom-info h3 {
  color: #0f172a;
}

[data-theme="light"] .pricing-custom-info p {
  color: rgba(71, 85, 105, 0.78);
}

[data-theme="light"] .pricing-custom-button {
  background: #7c3aed;
  color: #ffffff;
  box-shadow:
    0 12px 30px rgba(124, 58, 237, 0.2);
}

[data-theme="light"] .pricing-custom-button:hover {
  background: #8b5cf6;
  box-shadow:
    0 16px 35px rgba(124, 58, 237, 0.25);
}


/* =========================================================
   FAQ
========================================================= */

[data-theme="light"] .pricing-faq-header > span {
  color: #7c3aed;
}

[data-theme="light"] .pricing-faq-header h3 {
  color: #0f172a;
}

[data-theme="light"] .pricing-faq-item {
  border-color: rgba(15, 23, 42, 0.09);
  background: rgba(255, 255, 255, 0.72);
}

[data-theme="light"] .pricing-faq-question {
  color: rgba(15, 23, 42, 0.82);
}

[data-theme="light"] .pricing-faq-question:hover {
  background: rgba(139, 92, 246, 0.045);
}

[data-theme="light"] .pricing-faq-question svg {
  stroke: #7c3aed;
}

[data-theme="light"] .pricing-faq-answer p {
  color: rgba(71, 85, 105, 0.78);
}


/* =========================================================
   NOTE
========================================================= */

[data-theme="light"] .pricing-note svg {
  stroke: rgba(124, 58, 237, 0.65);
}

[data-theme="light"] .pricing-note p {
  color: rgba(71, 85, 105, 0.62);
}


/* =========================================================
   FOCUS
========================================================= */

[data-theme="light"] .pricing-plan-button:focus-visible,
[data-theme="light"] .pricing-custom-button:focus-visible,
[data-theme="light"] .pricing-faq-question:focus-visible {
  outline-color: #7c3aed;
}