* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "DM Sans", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

.grid-bg {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
}

[data-theme="light"] .grid-bg {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
}

.tt .is,
.tt .im {
  position: absolute;
  transition: all 0.3s;
}

[data-theme="dark"] .is {
  opacity: 1;
  transform: scale(1);
}

[data-theme="dark"] .im {
  opacity: 0;
  transform: scale(0.5) rotate(90deg);
}

[data-theme="light"] .is {
  opacity: 0;
  transform: scale(0.5) rotate(-90deg);
}

[data-theme="light"] .im {
  opacity: 1;
  transform: scale(1);
}

.di-real {
  color: rgba(255, 255, 255, 0.22);
}

[data-theme="light"] .di-real {
  color: rgba(0, 0, 0, 0.5);
}

.d2 {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.5);
  max-width: 520px;
  margin: 0 auto 20px;
  line-height: 1.7;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.ai-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Geist Mono";
}

.custom-web {
  font-family: "Syne";
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.5px;
}

.custom-app-wrap {
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.custom-web-p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  max-width: 680px;
  margin-bottom: 16px;
}

.custom-web-p-s {
  color: rgba(255, 255, 255, 0.75);
}

.custom-web-span {
  font-size: 12px;
  font-family: "Geist Mono";
  color: rgba(255, 255, 255, 0.4);
  padding: 3px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.always-p {
  font-family: "Geist Mono";
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 10px;
}

.always-h2 {
  font-family: "Syne";
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -2px;
  color: #fff;
  line-height: 1.05;
}

.always-span {
  color: rgba(255, 255, 255, 0.3);
}

[data-theme="light"] .always-span {
  color: rgba(0, 0, 0, 0.5);
}

[data-theme="light"] .always-h2 {
  color: #09090b;
}

[data-theme="light"] .always-p {
  color: rgba(0, 0, 0, 0.5);
}

[data-theme="light"] .custom-web-span {
  color: rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.07);
}

[data-theme="light"] .custom-web-p-s {
  color: rgba(0, 0, 0, 0.5);
}

[data-theme="light"] .custom-web-p {
  color: rgba(0, 0, 0, 0.5);
}

[data-theme="light"] .custom-app-wrap {
  border: 1px solid #e5e7eb;
}

[data-theme="light"] .d2 {
  color: rgba(0, 0, 0, 0.7);
}

[data-theme="light"] .custom-web {
  color: #09090b;
}

[data-theme="light"] .ai-text {
  border: 1px solid rgba(0, 0, 0, 0.07);
  color: rgba(0, 0, 0, 0.5);
}

.currency-color {
  background: none;
  border: none;
  color: var(--accent, #6366f1);
  cursor: pointer;
  text-decoration: underline;
  font-size: 13px;
}

[data-theme="light"] .currency-color {
  color: #e5e7eb;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fu {
  animation: fadeUp 0.55s ease both;
}

.d1 {
  animation-delay: 0.08s;
}

.d2 {
  animation-delay: 0.16s;
}

.d3 {
  animation-delay: 0.24s;
}

.d4 {
  animation-delay: 0.32s;
}

@keyframes sp {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}

.sp {
  animation: sp 2s ease-in-out infinite;
}

/* Tabs */
.cat-tab {
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 7px;
}

[data-theme="light"] .cat-tab {
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.65);
}

.cat-tab:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

[data-theme="light"] .cat-tab:hover {
  border-color: rgba(0, 0, 0, 0.2);
  color: #000;
  background: rgba(0, 0, 0, 0.04);
}

.cat-tab.active {
  background: #fff;
  color: #000;
  border-color: transparent;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

[data-theme="light"] .cat-tab.active {
  background: #09090b;
  color: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
}

/* Billing toggle */
.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.03);
}

[data-theme="light"] .billing-toggle {
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.03);
}

.bill-opt {
  padding: 8px 20px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
}

[data-theme="light"] .bill-opt {
  color: rgba(0, 0, 0, 0.65);
}

.bill-opt.active {
  background: #fff;
  color: #000;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .bill-opt.active {
  background: #09090b;
  color: #fff;
}

/* Price Cards - BASE (dark mode) */
.price-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
  transition:
    border-color 0.25s,
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.price-name {
  font-family: "Syne";
  font-weight: 700;
  font-size: 17px;
  color: #fff;
}

.price-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin-bottom: 20px;
}

.price-amount {
  font-family: "Syne";
  font-weight: 800;
  font-size: 52px;
  letter-spacing: -3px;
  line-height: 1;
  color: #fff;
}

.price-period {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  margin-left: 4px;
}

.feat-category {
  font-size: 11px;
  font-family: "Geist Mono";
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.feat-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #34d399;
  font-size: 9px;
  margin-top: 1px;
}

.feat-cross {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.3);
  font-size: 9px;
  margin-top: 1px;
}

.price-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-family: "Syne";
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.price-card-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.price-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin-bottom: 22px;
}

/* Light mode overrides for price cards */
[data-theme="light"] .price-card {
  border-color: rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .price-card:hover {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .price-name {
  color: #09090b;
}

[data-theme="light"] .price-desc {
  color: rgba(0, 0, 0, 0.55);
}

[data-theme="light"] .price-amount {
  color: #09090b;
}

[data-theme="light"] .price-period {
  color: rgba(0, 0, 0, 0.45);
}

[data-theme="light"] .feat-category {
  color: rgba(0, 0, 0, 0.4);
}

[data-theme="light"] .feat-item {
  color: rgba(0, 0, 0, 0.7);
}

[data-theme="light"] .feat-cross {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .price-card-btn {
  border-color: rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.7);
}

[data-theme="light"] .price-card-btn:hover {
  border-color: rgba(0, 0, 0, 0.25);
  color: #000;
}

[data-theme="light"] .price-divider {
  background: rgba(0, 0, 0, 0.08);
}

/* Featured card - dark mode */
.price-card.featured {
  background: #fff;
  border-color: #fff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.3),
    0 24px 60px rgba(99, 102, 241, 0.2);
}

.price-card.featured .price-name,
.price-card.featured .price-amount {
  color: #000;
}

.price-card.featured .price-desc {
  color: rgba(0, 0, 0, 0.6);
}

.price-card.featured .price-period {
  color: rgba(0, 0, 0, 0.5);
}

.price-card.featured .feat-item {
  color: rgba(0, 0, 0, 0.7);
}

.price-card.featured .feat-check {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.15);
  color: #000;
}

.price-card.featured .feat-category {
  color: rgba(0, 0, 0, 0.45);
}

.price-card.featured .price-divider {
  background: rgba(0, 0, 0, 0.1);
}

.price-card.featured .price-card-btn {
  background: #000;
  color: #fff;
  border: none;
}

.price-card.featured .price-card-btn:hover {
  opacity: 0.85;
}

/* Featured card - light mode */
[data-theme="light"] .price-card.featured {
  background: #09090b;
  border-color: #09090b;
  box-shadow:
    0 0 0 1px rgba(9, 9, 11, 0.2),
    0 24px 60px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .price-card.featured .price-name,
[data-theme="light"] .price-card.featured .price-amount {
  color: #fff;
}

[data-theme="light"] .price-card.featured .price-desc {
  color: rgba(255, 255, 255, 0.7);
}

[data-theme="light"] .price-card.featured .price-period {
  color: rgba(255, 255, 255, 0.5);
}

[data-theme="light"] .price-card.featured .feat-item {
  color: rgba(255, 255, 255, 0.75);
}

[data-theme="light"] .price-card.featured .feat-check {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

[data-theme="light"] .price-card.featured .feat-category {
  color: rgba(255, 255, 255, 0.5);
}

[data-theme="light"] .price-card.featured .price-divider {
  background: rgba(255, 255, 255, 0.15);
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 28px;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  color: white;
  font-family: "Geist Mono";
  font-size: 10px;
  letter-spacing: 0.08em;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 0 0 8px 8px;
  z-index: 2;
}

/* Category content */
.cat-content {
  display: none;
  animation: panelIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cat-content.active {
  display: block;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Add-ons */
.addon-card {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.02);
  transition:
    border-color 0.2s,
    transform 0.2s;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

[data-theme="light"] .addon-card {
  border-color: rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.02);
}

.addon-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

[data-theme="light"] .addon-card:hover {
  border-color: rgba(0, 0, 0, 0.15);
}

.addon-card .addon-title {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  margin-bottom: 3px;
}

[data-theme="light"] .addon-card .addon-title {
  color: #09090b;
}

.addon-card .addon-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
  margin-bottom: 8px;
}

[data-theme="light"] .addon-card .addon-desc {
  color: rgba(0, 0, 0, 0.55);
}

.addon-card .addon-price {
  font-family: "Geist Mono";
  font-size: 13px;
  color: #818cf8;
}

[data-theme="light"] .addon-card .addon-price {
  color: #6366f1;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

[data-theme="light"] .faq-item {
  border-color: rgba(0, 0, 0, 0.08);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  gap: 16px;
}

.faq-q span {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

[data-theme="light"] .faq-q span {
  color: #09090b;
}

.faq-a {
  padding: 0 0 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  display: none;
}

[data-theme="light"] .faq-a {
  color: rgba(0, 0, 0, 0.6);
}

.faq-a.open {
  display: block;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.2s;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
}

[data-theme="light"] .faq-icon {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.5);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* Savings badge */
.savings-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-family: "Geist Mono";
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: #34d399;
}

/* Always included section */
.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
}

[data-theme="light"] .included-grid {
  border: 1px solid #e5e7eb;
}

.included-item {
  background: #000;
  padding: 28px 24px;
  transition: background 0.2s;
}

.talk-us-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s;
  border: 1px solid transparent;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.6);
  background: transparent;
}

.talk-us-btn:hover {
  background: rgb(71, 70, 70);
}

[data-theme="light"] .talk-us-btn {
  color: rgba(0, 0, 0, 0.6);
  border-color: rgba(0, 0, 0, 0.6);
}

[data-theme="light"] .talk-us-btn:hover {
  background: rgb(211, 209, 209);
}

[data-theme="light"] .included-item {
  background: #fff;
  border-color: #e5e7eb;
}

.included-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

[data-theme="light"] .included-item:hover {
  background: rgba(0, 0, 0, 0.02);
}

.included-icon {
  font-size: 22px;
  margin-bottom: 10px;
}

.included-title {
  font-family: "Syne";
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin-bottom: 6px;
}

[data-theme="light"] .included-title {
  color: #09090b;
}

.included-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

[data-theme="light"] .included-desc {
  color: rgba(0, 0, 0, 0.55);
}

.btn-proposal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  background: #fff;
  color: #000;
  text-decoration: none;
  transition: all 0.2s;
}

[data-theme="light"] .btn-proposal {
  background: #09090b;
  color: #fff;
}

.btn-proposal:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* Footer */
.footer-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.15s;
}

[data-theme="light"] .footer-link {
  color: rgba(0, 0, 0, 0.5);
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

[data-theme="light"] .footer-link:hover {
  color: #000;
}

.price-amount {
  font-size: 1.5rem !important;
  /* Adjust as needed (was likely larger) */
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Optional: reduce padding around the price area */
.price-card .price-amount {
  margin-bottom: 2px;
}

/* ===== Discount / Savings styles — new additions ===== */

/* Strikethrough original price shown above the main amount */
.price-original {
  font-family: "Geist Mono";
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.25);
  margin-right: 6px;
}

.price-card.featured .price-original {
  color: rgba(0, 0, 0, 0.35);
  text-decoration-color: rgba(0, 0, 0, 0.25);
}

[data-theme="light"] .price-original {
  color: rgba(0, 0, 0, 0.35);
  text-decoration-color: rgba(0, 0, 0, 0.2);
}

/* Discount percentage pill — e.g. "20% OFF" */
.price-discount-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-family: "Geist Mono";
  font-weight: 500;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: #34d399;
  white-space: nowrap;
}

.price-card.featured .price-discount-pill {
  background: rgba(0, 0, 0, 0.07);
  border-color: rgba(0, 0, 0, 0.12);
  color: #059669;
}

[data-theme="light"] .price-discount-pill {
  background: rgba(5, 150, 105, 0.08);
  border-color: rgba(5, 150, 105, 0.25);
  color: #059669;
}

/* "You save $X" note shown below the price amount */
.price-save-note {
  display: block;
  font-size: 11px;
  font-family: "Geist Mono";
  color: rgba(52, 211, 153, 0.7);
  margin-top: 4px;
}

.price-card.featured .price-save-note {
  color: #059669;
}

[data-theme="light"] .price-save-note {
  color: #059669;
}

/* Retainer discount tag shown inline next to the pill */
.price-retainer-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-family: "Geist Mono";
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.28);
  color: #818cf8;
}

[data-theme="light"] .price-retainer-tag {
  background: rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.2);
  color: #6366f1;
}

/* Limited-time flash banner inside a card */
.price-flash-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.2);
  font-size: 12px;
  font-family: "Geist Mono";
  color: #fbbf24;
  margin-bottom: 14px;
}

.price-card.featured .price-flash-banner {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.1);
  color: #92400e;
}

[data-theme="light"] .price-flash-banner {
  background: rgba(251, 191, 36, 0.08);
  border-color: rgba(251, 191, 36, 0.25);
  color: #b45309;
}

/* Responsive */
@media (max-width: 900px) {
  .pricing-grid-3 {
    grid-template-columns: 1fr !important;
  }

  .included-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .custom-app-wrap {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .pricing-grid-3 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  .included-grid {
    grid-template-columns: 1fr !important;
  }

  .addon-grid {
    grid-template-columns: 1fr !important;
  }

  .price-amount {
    font-size: 42px;
  }
}

/* =====================================================
           NEW: Discount / Savings styles
           ===================================================== */

/* Row that holds the strikethrough + pill(s), sits above the price amount */
.price-label-row {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

/* Strikethrough original price */
.price-original {
  font-family: "Geist Mono";
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.25);
}

.price-card.featured .price-original {
  color: rgba(0, 0, 0, 0.35);
  text-decoration-color: rgba(0, 0, 0, 0.25);
}

[data-theme="light"] .price-original {
  color: rgba(0, 0, 0, 0.35);
  text-decoration-color: rgba(0, 0, 0, 0.2);
}

/* Discount percentage pill — e.g. "15% OFF" */
.price-discount-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-family: "Geist Mono";
  font-weight: 500;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: #34d399;
  white-space: nowrap;
}

.price-card.featured .price-discount-pill {
  background: rgba(0, 0, 0, 0.07);
  border-color: rgba(0, 0, 0, 0.12);
  color: #059669;
}

[data-theme="light"] .price-discount-pill {
  background: rgba(5, 150, 105, 0.08);
  border-color: rgba(5, 150, 105, 0.25);
  color: #059669;
}

[data-theme="light"] .price-card.featured .price-discount-pill {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #6ee7b7;
}

/* "You save $X" note shown below the price amount */
.price-save-note {
  display: block;
  font-size: 11px;
  font-family: "Geist Mono";
  color: rgba(52, 211, 153, 0.7);
  margin-top: 3px;
}

.price-card.featured .price-save-note {
  color: #059669;
}

[data-theme="light"] .price-save-note {
  color: #059669;
}

[data-theme="light"] .price-card.featured .price-save-note {
  color: #6ee7b7;
}

/* Retainer discount tag — shown next to pill when on monthly billing */
.price-retainer-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-family: "Geist Mono";
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.28);
  color: #818cf8;
}

[data-theme="light"] .price-retainer-tag {
  background: rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.2);
  color: #6366f1;
}

/* Limited-time flash banner inside a card */
.price-flash-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.2);
  font-size: 12px;
  font-family: "Geist Mono";
  color: #fbbf24;
  margin-bottom: 14px;
}

.price-card.featured .price-flash-banner {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.1);
  color: #92400e;
}

[data-theme="light"] .price-flash-banner {
  background: rgba(251, 191, 36, 0.08);
  border-color: rgba(251, 191, 36, 0.25);
  color: #b45309;
}

[data-theme="light"] .price-card.featured .price-flash-banner {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fde68a;
}

/* Hidden by default — JS toggles these when billing = retainer */
.discount-retainer-only {
  display: none;
}

/* =====================================================
           DISCOUNT ANNOUNCEMENT BANNER
           ===================================================== */
.discount-banner {
  position: relative;
  z-index: 10;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    rgba(99, 102, 241, 0.12) 0%,
    rgba(168, 85, 247, 0.14) 40%,
    rgba(52, 211, 153, 0.1) 100%
  );
  border-bottom: 1px solid rgba(168, 85, 247, 0.2);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

/* animated shimmer line across the top of banner */
.discount-banner {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

/* animated border line */
.discount-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  /* border thickness */

  background: linear-gradient(
    90deg,
    transparent,
    rgba(168, 85, 247, 0.8),
    rgba(99, 102, 241, 0.6),
    transparent
  );

  background-size: 300% 300%;
  animation: bannerShimmer 8s linear infinite;
  /* slower */

  /* show only border */
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  border-radius: inherit;
}

.discount-banner::before {
  filter: blur(1px);
}

/* smooth movement around edges */
@keyframes bannerShimmer {
  0% {
    background-position: 0% 50%;
  }

  25% {
    background-position: 100% 50%;
  }

  50% {
    background-position: 100% 100%;
  }

  75% {
    background-position: 0% 100%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* light mode */
[data-theme="light"] .discount-banner {
  background: linear-gradient(
    90deg,
    rgba(99, 102, 241, 0.06) 0%,
    rgba(168, 85, 247, 0.09) 40%,
    rgba(52, 211, 153, 0.06) 100%
  );
  border-bottom: 1px solid rgba(99, 102, 241, 0.15);
}

.discount-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 11px 24px;
  width: 100%;
  max-width: 1280px;
  position: relative;
}

.discount-banner-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 999px;
  font-family: "Geist Mono";
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.4);
}

.discount-banner-text {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

[data-theme="light"] .discount-banner-text {
  color: rgba(0, 0, 0, 0.75);
}

.discount-banner-text strong {
  color: #fff;
  font-weight: 700;
}

[data-theme="light"] .discount-banner-text strong {
  color: #09090b;
}

.discount-banner-highlight {
  font-family: "Geist Mono";
  font-size: 12px;
  font-weight: 500;
  color: #34d399;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.25);
  padding: 1px 8px;
  border-radius: 5px;
}

[data-theme="light"] .discount-banner-highlight {
  color: #059669;
  background: rgba(5, 150, 105, 0.08);
  border-color: rgba(5, 150, 105, 0.2);
}

.discount-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: "Syne";
  font-weight: 700;
  font-size: 12px;
  color: #818cf8;
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.discount-banner-cta:hover {
  color: #a5b4fc;
}

[data-theme="light"] .discount-banner-cta {
  color: #6366f1;
}

[data-theme="light"] .discount-banner-cta:hover {
  color: #4f46e5;
}

.discount-banner-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

[data-theme="light"] .discount-banner-dot {
  background: rgba(0, 0, 0, 0.15);
}

.discount-banner-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.3);
  font-size: 16px;
  line-height: 1;
  padding: 4px;
  transition: color 0.15s;
  display: flex;
  align-items: center;
}

.discount-banner-close:hover {
  color: rgba(255, 255, 255, 0.7);
}

[data-theme="light"] .discount-banner-close {
  color: rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .discount-banner-close:hover {
  color: rgba(0, 0, 0, 0.7);
}

/* countdown timer inside banner */
.discount-banner-timer {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: "Geist Mono";
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

[data-theme="light"] .discount-banner-timer {
  color: rgba(0, 0, 0, 0.45);
}

.discount-banner-timer span {
  font-weight: 500;
  color: #fbbf24;
  min-width: 20px;
  text-align: center;
}

[data-theme="light"] .discount-banner-timer span {
  color: #d97706;
}

@media (max-width: 640px) {
  .discount-banner-inner {
    gap: 8px;
    padding: 10px 40px 10px 16px;
  }

  .discount-banner-dot {
    display: none;
  }
  .discount-banner-text {
    font-size: 12px;
    text-align: center;
  }
}

/* Discount percentage pill — e.g. "20% OFF" */
.price-discount-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-family: "Geist Mono";
  font-weight: 500;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: #34d399;
  white-space: nowrap;
}

.price-card.featured .price-discount-pill {
  background: rgba(0, 0, 0, 0.07);
  border-color: rgba(0, 0, 0, 0.12);
  color: #059669;
}

[data-theme="light"] .price-discount-pill {
  background: rgba(5, 150, 105, 0.08);
  border-color: rgba(5, 150, 105, 0.25);
  color: #059669;
}

/* "You save $X" note shown below the price amount */
.price-save-note {
  display: block;
  font-size: 11px;
  font-family: "Geist Mono";
  color: rgba(52, 211, 153, 0.7);
  margin-top: 4px;
}

.price-card.featured .price-save-note {
  color: #059669;
}

[data-theme="light"] .price-save-note {
  color: #059669;
}

/* Retainer discount tag shown inline next to the pill */
.price-retainer-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-family: "Geist Mono";
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.28);
  color: #818cf8;
}

[data-theme="light"] .price-retainer-tag {
  background: rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.2);
  color: #6366f1;
}

/* Limited-time flash banner inside a card */
.price-flash-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.2);
  font-size: 12px;
  font-family: "Geist Mono";
  color: #fbbf24;
  margin-bottom: 14px;
}

/* bug fixing all-------------------------------------------------------->>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

.svg-div-cl {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: grid;
  place-items: center;
}

.mid-svg-col {
  stroke: #000;
}
.bug-fix-p {
  font-family: "Geist Mono";
  font-size: 13px;
  color: rgba(0, 0, 0, 0.35);
  text-decoration-color: rgba(0, 0, 0, 0.2);
  text-decoration: line-through;
  margin-right: 6px;
}
.para-bug-fix {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
}
[data-theme="light"] .para-bug-fix {
  color: rgba(255, 255, 255, 0.3);
}
.para-bug-fix-d {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}
[data-theme="light"] .para-bug-fix-d{
  color: rgba(0, 0, 0, 0.4);
}

/*--------------middle fix bug button---------------------------*/

.price-card-btn-bug-fix {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-family: "Syne";
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
  background: #000;
}
.price-card-btn-bug-fix:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
[data-theme="light"] .price-card-btn-bug-fix {
  border-color: rgba(182, 172, 172, 0.704);
  color: rgba(0, 0, 0, 0.7);
}

[data-theme="light"] .price-card-btn-bug-fix:hover {
  border-color: rgba(255, 255, 255, 0.901);
  color: #000;
  opacity: 0.85;
}
.price-card.featured .price-card-btn-bug-fix {
  background: #000;
  color: #fff;
}

/*--------------middle fix bug button---------------------------*/

[data-theme="light"] .mid-svg-col {
  stroke: #ffffff;
}
[data-theme="light"] .svg-div-cl {
  border: 1px solid #ffffff;
  background: #ffffff64;
}

.price-original {
  font-family: "Geist Mono";
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.25);
  margin-right: 6px;
}
[data-theme="light"] .bug-fix-p {
  color: rgba(255, 255, 255, 0.3);
  text-decoration-color: rgba(255, 255, 255, 0.25);
}
