

.pricing-page {
  background: #fafafa;
  color: #0f172a;
}

.byo-fiyat {
  overflow-x: clip;
}

.byo-fiyat__container {
  width: 100%;
  max-width: var(--content-max-width, 80rem);
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  box-sizing: border-box;
}

.byo-fiyat__hero {
  padding: 3.25rem 0 2.5rem;
  border-bottom: 1px solid #e2e8f0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99, 102, 241, 0.12), transparent),
    linear-gradient(180deg, #fff 0%, #fafbfc 100%);
}

.byo-fiyat__label {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6366f1;
}

.byo-fiyat__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #0f172a;
}

.byo-fiyat__lead {
  margin: 0 0 1.75rem;
  max-width: 38rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #64748b;
}

.byo-fiyat__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
}

.byo-fiyat__chips span {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #475569;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.byo-fiyat__hero--biyos {
  padding-bottom: 2.75rem;
}

.byo-fiyat__title--biyos {
  max-width: 22ch;
}

.byo-fiyat__lead--biyos {
  max-width: 40rem;
}

.byo-fiyat__rule {
  height: 1px;
  max-width: 4rem;
  margin-top: 1.75rem;
  background: linear-gradient(90deg, #6366f1, transparent);
  border-radius: 1px;
}

.byo-tiers {
  padding: 2.5rem 0 2rem;
  background: #fafbfc;
}

.byo-tiers__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .byo-tiers__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.byo-tier {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.35rem 1.4rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.byo-tier--popular {
  border-color: #c7d2fe;
  box-shadow:
    0 0 0 1px rgba(99, 102, 241, 0.12),
    0 20px 40px -28px rgba(79, 70, 229, 0.35);
}

.byo-tier__ribbon {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  padding: 0.25rem 0.55rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4338ca;
  background: #eef2ff;
  border-radius: 6px;
}

.byo-tier__name {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.byo-tier__pitch {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #64748b;
  flex: 0 0 auto;
}

.byo-tier__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
  margin-bottom: 0.35rem;
}

.byo-tier__price-note {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
}

.byo-tier__price {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1.1;
}

.byo-tier__price--muted {
  font-size: 1.05rem;
  font-weight: 700;
  color: #475569;
}

.byo-tier__period {
  margin: 0 0 1.15rem;
  font-size: 0.8125rem;
  color: #64748b;
}

.byo-tier__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.7rem 1rem;
  margin-bottom: 1.15rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
}

.byo-tier__btn--primary {
  color: #fff;
  background: #4f46e5;
  border-color: #4f46e5;
}

.byo-tier__btn--primary:hover {
  background: #4338ca;
  border-color: #4338ca;
  box-shadow: 0 8px 20px -8px rgba(79, 70, 229, 0.55);
}

.byo-tier__btn--dark {
  color: #fff;
  background: #0f172a;
  border-color: #0f172a;
}

.byo-tier__btn--dark:hover {
  background: #1e293b;
  border-color: #1e293b;
}

.byo-tier__btn--outline {
  color: #4f46e5;
  background: #fff;
  border-color: #c7d2fe;
}

.byo-tier__btn--outline:hover {
  background: #eef2ff;
  border-color: #a5b4fc;
}

.byo-tier__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: auto;
}

.byo-tier__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #334155;
}

.byo-tier__list .fa-check {
  margin-top: 0.2em;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: #6366f1;
}

.byo-tier-pro {
  margin-top: 1.5rem;
  padding: 1.5rem 1.35rem;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #3730a3 100%);
  border-radius: 16px;
  color: #e0e7ff;
  box-shadow: 0 20px 50px -24px rgba(30, 27, 75, 0.65);
}

.byo-tier-pro__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

@media (min-width: 720px) {
  .byo-tier-pro__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.byo-tier-pro__title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.byo-tier-pro__desc {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #c7d2fe;
  max-width: 36rem;
}

.byo-tier-pro__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.byo-tier-pro__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.875rem;
  color: #e0e7ff;
}

.byo-tier-pro__list .fa-check {
  margin-top: 0.15em;
  color: #a5b4fc;
  font-size: 0.75rem;
}

.byo-tier-pro__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #312e81;
  text-decoration: none;
  background: #fff;
  border-radius: 10px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.byo-tier-pro__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -12px rgba(0, 0, 0, 0.35);
}

.pricing-page .faq-section-foot {
  margin: 1.75rem 0 0;
  text-align: center;
}

.byo-fiyat__plans {
  padding: 3rem 0 2.5rem;
}

.byo-fiyat__h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.byo-fiyat__sub {
  margin: 0 0 2rem;
  max-width: 36rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

.byo-fiyat__matrix {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .byo-fiyat__matrix {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.byo-fiyat__col {
  padding: 1.35rem 1.4rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}

.byo-fiyat__col-title {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6366f1;
}

.byo-fiyat__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.byo-fiyat__list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #334155;
}

.byo-fiyat__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #818cf8;
  box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.25);
}

.byo-fiyat__textlink {
  display: inline-block;
  margin-top: 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #4f46e5;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.byo-fiyat__textlink:hover {
  color: #4338ca;
  border-bottom-color: #c7d2fe;
}

.biyos-hero {
  position: relative;
  padding: 3rem 0 2.5rem;
  background: #fff;
  overflow: clip;
}

.biyos-hero--ikas {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 55%, #f1f5f9 100%);
}

.fiyat-calc-screen {
  position: relative;
  overflow-x: clip;
  background: var(--site-flow-solid-bg, #f3f4f6);
}

.fiyat-calc-screen__band {
  padding: clamp(2.75rem, 6.5vw, 4rem) 1.5rem clamp(5.5rem, 12vw, 7.25rem);
  background: transparent;
  border-bottom: none;
  text-align: center;
}

.fiyat-calc-screen__band-inner {
  max-width: 38rem;
  margin: 0 auto;
}

.fiyat-calc-screen__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #71717a;
}

.fiyat-calc-screen__title {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #18181b;
}

.fiyat-calc-screen__body {
  background: transparent;
  padding: 0 0 clamp(2.5rem, 5vw, 3.5rem);
}

.fiyat-calc-screen__card.fiyat-calc {
  margin: clamp(-4.5rem, -10vw, -3.25rem) auto 0;
  position: relative;
  z-index: 2;
  max-width: 60rem;
  text-align: left;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 28px 56px -20px rgba(15, 23, 42, 0.35),
    0 12px 28px -16px rgba(15, 23, 42, 0.22);
}

.fiyat-calc__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.fiyat-calc__grid {
  display: grid;
  gap: 0;
  align-items: stretch;
  min-height: 0;
}

@media (min-width: 880px) {
  .fiyat-calc__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 879px) {
  .fiyat-calc__grid {
    grid-template-columns: 1fr;
  }
}

.fiyat-calc__panel--dark {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  min-height: 0;
  padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 1.65rem);
  border-radius: 0;
  background: #152a45;
  color: #f8fafc;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.fiyat-calc__panel-main {
  flex: 0 0 auto;
}

.fiyat-calc__panel-bottom {
  flex-shrink: 0;
  margin-top: 1rem;
  padding-top: 0;
}

.fiyat-calc__foot {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.fiyat-calc__foot-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.fiyat-calc__foot-link:hover {
  color: #fff;
}

.fiyat-calc__question {
  margin: 0 0 0.85rem;
  font-size: clamp(1.0625rem, 2.3vw, 1.1875rem);
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  text-align: center;
}

.fiyat-calc__count {
  margin: 0 auto 1rem;
  font-size: clamp(2.5rem, 5.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  text-align: center;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 0.75rem;
  max-width: 14rem;
}

.fiyat-calc__slider-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.fiyat-calc__slider-track {
  --fill: 7.63%;
  position: relative;
  max-width: 24rem;
  margin: 0 auto 0.45rem;
  height: 8px;
  border-radius: 999px;
  background: #0f2137;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.35);
}

.fiyat-calc__slider-track::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: var(--fill);
  height: 8px;
  max-width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #5eead4, #99f6e4);
  pointer-events: none;
  z-index: 0;
}

.fiyat-calc__slider {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 8px;
  margin: 0;
  cursor: pointer;
  background: transparent !important;
  -webkit-appearance: none;
  appearance: none;
}

.fiyat-calc__slider::-webkit-slider-runnable-track {
  height: 8px;
  background: transparent;
  border-radius: 999px;
}

.fiyat-calc__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  margin-top: -6px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.fiyat-calc__slider::-moz-range-track {
  height: 8px;
  background: transparent;
  border-radius: 999px;
}

.fiyat-calc__slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.fiyat-calc__ticks {
  display: flex;
  justify-content: space-between;
  max-width: 24rem;
  margin: 0 auto 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.fiyat-calc__billing-wrap .ikas-billing {
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.fiyat-calc__panel--dark .ikas-billing__label {
  color: #cbd5e1;
}

.fiyat-calc__panel--dark .ikas-billing__switch {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.fiyat-calc__panel--dark .ikas-billing__opt {
  color: #cbd5e1;
}

.fiyat-calc__panel--dark .ikas-billing__opt:hover {
  color: #f1f5f9;
}

.fiyat-calc__panel--dark .ikas-billing__opt.is-active {
  color: #0f172a;
  background: #fff;
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

.fiyat-calc__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.5rem, 3.5vw, 2.25rem);
  border-radius: 0;
  background: #fff;
  border: none;
  border-left: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: none;
  text-align: center;
}

@media (max-width: 879px) {
  .fiyat-calc__card {
    border-left: none;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
  }
}

.fiyat-calc__price-block {
  margin-bottom: 1.25rem;
}

.fiyat-calc__price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem 0.45rem;
  margin: 0 0 0.5rem;
}

.fiyat-calc__card-total {
  margin: 0;
  font-size: clamp(2.65rem, 5.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  color: #0f172a;
  font-variant-numeric: tabular-nums;
}

.fiyat-calc__card-currency {
  font-size: clamp(1.5rem, 3.2vw, 1.875rem);
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.fiyat-calc__card-period {
  font-size: 1rem;
  font-weight: 500;
  color: #94a3b8;
}

.fiyat-calc__daire-line {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
}

.fiyat-calc__daire-line span {
  color: #334155;
  font-weight: 700;
}

.fiyat-calc__savings {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.65rem;
  padding: 0.55rem 0.85rem;
  width: 100%;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  border-radius: 12px;
  background: linear-gradient(180deg, #ecfdf5 0%, #d1fae5 100%);
  border: 1px solid rgba(16, 185, 129, 0.28);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.fiyat-calc__savings-line {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
  color: #166534;
}

.fiyat-calc__savings[hidden] {
  display: none !important;
}

.fiyat-calc__divider {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.15rem;
  width: 100%;
}

.fiyat-calc__divider::before,
.fiyat-calc__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.fiyat-calc__divider span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  white-space: nowrap;
}

.fiyat-calc__features {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1rem;
  text-align: left;
}

@media (max-width: 400px) {
  .fiyat-calc__features {
    grid-template-columns: 1fr;
  }
}

.fiyat-calc__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.35;
  color: #334155;
}

.fiyat-calc__check {
  flex-shrink: 0;
  margin-top: 1px;
}

.fiyat-calc__check svg circle {
  fill: #4ade80;
}

.fiyat-calc__cta {
  display: block;
  width: 100%;
  margin-top: auto;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #65a30d;
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 16px -4px rgba(101, 163, 13, 0.55);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.fiyat-calc__cta:hover {
  background: #4d7c0f;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px -6px rgba(101, 163, 13, 0.5);
}

.biyos-hero__includes-label {
  margin: 0 0 1.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #94a3b8;
}

.biyos-hero__feature-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.biyos-hero__feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  text-align: center;
}

.biyos-hero__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6366f1;
  flex-shrink: 0;
}

.biyos-hero__feature-icon svg {
  display: block;
}

.biyos-hero__feature-text {
  font-size: 0.8125rem;
  line-height: 1.4;
  font-weight: 500;
  color: #334155;
  max-width: 11.5rem;
}

@media (min-width: 640px) {
  .biyos-hero__feature-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .biyos-hero__feature-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.5rem 0.85rem;
  }
}

.biyos-hero__aurora {
  position: absolute;
  inset: -40% -20% auto;
  height: 85%;
  background:
    conic-gradient(from 200deg at 50% 120%, rgba(99, 102, 241, 0.14), rgba(16, 185, 129, 0.12), rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.14));
  filter: blur(48px);
  opacity: 0.85;
  animation: byo-aurora-shift 14s ease-in-out infinite alternate;
  pointer-events: none;
}

.biyos-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  opacity: 0.55;
  animation: byo-float-glow 9s ease-in-out infinite;
}

.biyos-hero__glow--1 {
  width: min(42vw, 280px);
  height: min(42vw, 280px);
  background: rgba(16, 185, 129, 0.35);
  top: 10%;
  right: 5%;
  animation-delay: -2s;
}

.biyos-hero__glow--2 {
  width: min(36vw, 220px);
  height: min(36vw, 220px);
  background: rgba(99, 102, 241, 0.3);
  bottom: 5%;
  left: 0;
  animation-delay: -4s;
}

.biyos-hero__wrap {
  position: relative;
  z-index: 1;
}

.biyos-hero__eyebrow {
  margin: 0 0 1rem;
}

.biyos-hero__trial {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #065f46;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 999px;
  box-shadow: 0 4px 14px -6px rgba(5, 150, 105, 0.45);
  animation: byo-trial-pulse 3.2s ease-in-out infinite;
}

.biyos-hero__trial-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.35);
  animation: byo-dot-blink 2s ease-in-out infinite;
}

.biyos-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: #0f172a;
  max-width: 22ch;
  text-wrap: balance;
}

.biyos-hero__title.biyos-hero__title--centered {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.biyos-hero__lead {
  margin: 0;
  max-width: 46rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #475569;
}

.biyos-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.6rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.biyos-hero__chips li {
  padding: 0.38rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.biyos-hero__chips li:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 8px 20px -12px rgba(15, 23, 42, 0.2);
}

.biyos-hero__rule {
  margin: 1.75rem 0 0;
  max-width: 4rem;
  border: none;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #10b981, #6366f1, #3b82f6) 1;
  opacity: 1;
}

@keyframes byo-aurora-shift {
  0% { transform: translate(0, 0) rotate(0deg); opacity: 0.75; }
  100% { transform: translate(2%, -1%) rotate(8deg); opacity: 0.95; }
}

@keyframes byo-float-glow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(8px, -10px) scale(1.05); }
}

@keyframes byo-trial-pulse {
  0%, 100% { box-shadow: 0 4px 14px -6px rgba(5, 150, 105, 0.45); }
  50% { box-shadow: 0 6px 22px -4px rgba(5, 150, 105, 0.55); }
}

@keyframes byo-dot-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

@media (prefers-reduced-motion: reduce) {
  .biyos-hero__aurora,
  .biyos-hero__glow,
  .biyos-hero__trial,
  .biyos-hero__trial-dot {
    animation: none;
  }

  .biyos-hero__chips li:hover {
    transform: none;
  }

  .biyos-card__btn--green:hover {
    transform: none;
  }

  .compare-cta:hover {
    transform: none;
    box-shadow: none;
  }
}

.biyos-plans {
  padding: 2.25rem 0 1.5rem;
  background: #f9fafb;
}

.biyos-plans--ikas {
  background:
    linear-gradient(180deg, #f9fafb 0%, #f1f5f9 50%, #f9fafb 100%);
}

.ikas-billing {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin: 0 auto 1.75rem;
  max-width: 52rem;
}

.ikas-billing__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
}

.ikas-billing__switch {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
  padding: 4px;
  background: #e2e8f0;
  border-radius: 999px;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.06);
}

.ikas-billing__switch--triple .ikas-billing__opt {
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
}

@media (min-width: 480px) {
  .ikas-billing__switch--triple .ikas-billing__opt {
    padding: 0.5rem 1.2rem;
    font-size: 0.8125rem;
  }
}

.ikas-billing__opt {
  position: relative;
  padding: 0.5rem 1.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #64748b;
  background: transparent;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.ikas-billing__opt:hover {
  color: #334155;
}

.ikas-billing__opt.is-active {
  color: #0f172a;
  background: #fff;
  box-shadow:
    0 2px 8px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(15, 23, 42, 0.04);
}

.ikas-billing__opt:active {
  transform: scale(0.98);
}

.biyos-plans__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .biyos-plans__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.biyos-plans__grid--single {
  max-width: 22rem;
  margin: 0 auto;
}

.biyos-plans__grid--two {
  max-width: 52rem;
  margin: 0 auto;
}

@media (min-width: 720px) {
  .biyos-plans__grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .biyos-plans__grid.biyos-plans__grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.biyos-card--highlight {
  padding-top: 2rem;
  border-color: transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(16, 185, 129, 0.45), rgba(99, 102, 241, 0.35), rgba(59, 130, 246, 0.4)) border-box;
  border-width: 2px;
  border-style: solid;
  box-shadow:
    0 0 0 1px rgba(5, 150, 105, 0.08),
    0 20px 48px -28px rgba(5, 150, 105, 0.35),
    0 16px 40px -32px rgba(99, 102, 241, 0.2);
}

.biyos-card--highlight:hover {
  border-color: transparent;
  box-shadow:
    0 0 0 1px rgba(5, 150, 105, 0.12),
    0 28px 56px -24px rgba(5, 150, 105, 0.4),
    0 20px 48px -28px rgba(99, 102, 241, 0.22);
}

@media (prefers-reduced-motion: reduce) {
  .biyos-card:hover,
  .biyos-card--highlight:hover {
    transform: none;
  }
}

.biyos-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.35rem 1.5rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.28s ease,
    border-color 0.25s ease;
}

.biyos-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 20px 40px -28px rgba(15, 23, 42, 0.25),
    0 12px 24px -18px rgba(15, 23, 42, 0.12);
  border-color: #d1d5db;
}

.biyos-card__ribbon {
  position: absolute;
  top: 0;
  right: 1rem;
  transform: translateY(-50%);
  padding: 0.3rem 0.65rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
  border-radius: 999px;
  box-shadow: 0 6px 16px -4px rgba(5, 150, 105, 0.55);
  white-space: nowrap;
}

.biyos-card__currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: #64748b;
  vertical-align: super;
  margin-left: 0.15rem;
}

.biyos-card__name {
  margin: 0 0 0.65rem;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111827;
}

.biyos-card__pitch {
  margin: 0 0 1.1rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #6b7280;
  min-height: 2.7em;
}

.biyos-card__price-block {
  margin-bottom: 0.35rem;
}

.biyos-card__price-main {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111827;
  line-height: 1.1;
}

.biyos-card__price-sub {
  margin: 0.35rem 0 1rem;
  font-size: 0.8125rem;
  color: #6b7280;
}

.biyos-card__price-range {
  margin-bottom: 0.25rem;
}

.biyos-card__usd-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
}

.biyos-card__usd {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111827;
}

.biyos-card__usd-sep {
  display: inline-block;
  width: 1.25rem;
  height: 2px;
  background: #d1d5db;
  vertical-align: middle;
}

.biyos-card__hint {
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #9ca3af;
}

.biyos-card__hint + .biyos-card__hint {
  margin-top: 0.15rem;
}

.biyos-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 1rem 0 1.15rem;
  padding: 0.72rem 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border-radius: 8px;
  border: 2px solid transparent;
  box-sizing: border-box;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.biyos-card__btn--dark {
  color: #fff;
  background: #111827;
  border-color: #111827;
}

.biyos-card__btn--dark:hover {
  background: #1f2937;
  border-color: #1f2937;
}

.biyos-card__btn--green {
  color: #fff;
  background: linear-gradient(135deg, #059669 0%, #10b981 50%, #14b8a6 100%);
  border-color: transparent;
  transition: transform 0.2s ease, box-shadow 0.25s ease, filter 0.2s ease;
}

.biyos-card__btn--green:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(5, 150, 105, 0.55);
}

.biyos-card__btn--outline {
  color: #059669;
  background: #fff;
  border-color: #059669;
}

.biyos-card__btn--outline:hover {
  background: #ecfdf5;
}

.biyos-card__features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}

.biyos-card__features li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #374151;
}

.biyos-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
}

.biyos-card__footnote {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #9ca3af;
}

.biyos-card--pro {
  margin-top: 1.5rem;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(145deg, #064e3b 0%, #065f46 45%, #047857 100%);
  border: none;
  color: #ecfdf5;
  box-shadow: 0 20px 40px -20px rgba(6, 78, 59, 0.55);
}

.biyos-card--pro .biyos-card__name {
  color: #fff;
}

.biyos-card--pro .biyos-card__pitch {
  color: #a7f3d0;
  min-height: 0;
}

.biyos-card--pro .biyos-card__features li {
  color: #d1fae5;
}

.biyos-card--pro .biyos-card__features li::before {
  background: #6ee7b7;
}

.biyos-card--pro-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .biyos-card--pro-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.biyos-card--pro .biyos-card__btn--pro {
  flex-shrink: 0;
  width: auto;
  min-width: 11rem;
  margin: 0;
  padding: 0.75rem 1.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #065f46;
  background: #fff;
  border: 2px solid #fff;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: background 0.15s ease, color 0.15s ease;
}

.biyos-card--pro .biyos-card__btn--pro:hover {
  background: #ecfdf5;
  color: #064e3b;
  border-color: #ecfdf5;
}

.biyos-card__teaser {
  margin: 0.85rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #9ca3af;
}

.biyos-card__teaser--pro {
  margin: 0;
  max-width: 28rem;
  color: #a7f3d0;
}

.biyos-card__teaser--pro a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.biyos-card__teaser--pro a:hover {
  text-decoration: none;
}

.compare-plans {
  padding: clamp(2.5rem, 5vw, 3.75rem) 0 3rem;
  background: linear-gradient(180deg, #fafafa 0%, #f4f4f5 100%);
}

.compare-plans__inner {
  max-width: var(--content-max-width, 80rem);
}

.compare-plans__billing-outside {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 0 clamp(1rem, 2.2vw, 1.45rem);
}

.compare-plans__banner {
  display: block;
  padding: clamp(1.65rem, 3.8vw, 2.4rem) clamp(1.35rem, 3.2vw, 2.15rem);
  margin: 0 0 clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: 20px;
  background:
    radial-gradient(ellipse 90% 80% at 20% 20%, rgba(45, 212, 191, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(15, 118, 110, 0.35), transparent 50%),
    linear-gradient(145deg, #0f766e 0%, #0d4f4c 38%, #042f2e 72%, #020617 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 24px 48px -28px rgba(2, 6, 23, 0.55);
  color: #f8fafc;
  box-sizing: border-box;
}

.compare-plans__banner-row {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.94fr) minmax(0, 0.94fr);
  gap: clamp(1.35rem, 3.2vw, 2.25rem);
  align-items: stretch;
  width: 100%;
  min-width: 0;
}

.compare-plans__banner-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  gap: clamp(0.75rem, 2vw, 1rem);
  min-width: 0;
  padding-right: clamp(0, 1.5vw, 0.75rem);
}

.compare-plans__banner-title {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #fff;
}

.compare-plans__banner-lead {
  margin: 0;
  font-size: clamp(0.875rem, 1.6vw, 0.9375rem);
  line-height: 1.55;
  color: rgba(248, 250, 252, 0.78);
  max-width: 28rem;
}

.compare-plans__banner-plan {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.45rem;
  padding: clamp(1.1rem, 2.2vw, 1.45rem) clamp(1.05rem, 2vw, 1.35rem);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  min-width: 0;
  min-height: clamp(11.25rem, 22vw, 13.25rem);
  position: relative;
}

.compare-plans__banner-plan--pro {
  background: rgba(0, 0, 0, 0.28);
  border-color: rgba(52, 211, 153, 0.28);
}

.compare-plans__banner-badge {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  max-width: calc(100% - 1.3rem);
  padding: 0.28rem 0.55rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #022c22;
  background: linear-gradient(135deg, #6ee7b7, #34d399);
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
  line-height: 1.25;
  text-align: center;
  box-sizing: border-box;
}

.compare-plans__banner-plan-name {
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #fff;
}

.compare-plans__banner-plan--pro .compare-plans__banner-plan-name {
  padding-right: 0;
}

.compare-plans__banner-plan--pro.compare-plans__banner-plan--discount .compare-plans__banner-plan-name {
  padding-right: clamp(5rem, 32%, 7.5rem);
}

.compare-plans__banner-price-line {
  margin: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.2rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(248, 250, 252, 0.82);
}

.compare-plans__banner-plan--pro .compare-plans__banner-price-line {
  gap: 0.12rem;
}

.compare-plans__banner-from {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(248, 250, 252, 0.65);
}

.compare-plans__banner-amount {
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.compare-plans__banner-plan--pro .compare-plans__banner-amount {
  color: #6ee7b7;
}

.compare-plans__banner-period {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(167, 243, 208, 0.9);
}

.compare-plans__banner-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: auto;
  padding: 0.6rem 1.15rem;
  width: 100%;
  box-sizing: border-box;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.compare-plans__banner-cta--primary {
  color: #022c22;
  background: linear-gradient(135deg, #4ade80 0%, #34d399 100%);
  box-shadow: 0 4px 16px -4px rgba(52, 211, 153, 0.55);
}

.compare-plans__banner-cta--primary:hover {
  background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px -6px rgba(52, 211, 153, 0.6);
}

.compare-plans__banner-cta-chevron {
  flex-shrink: 0;
  margin-top: 1px;
}

.compare-plans__banner-cta--ghost {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.compare-plans__banner-cta--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
  .compare-plans__banner {
    text-align: center;
  }

  .compare-plans__banner-row {
    grid-template-columns: 1fr;
  }

  .compare-plans__banner-intro {
    align-items: center;
    padding-right: 0;
  }

  .compare-plans__banner-lead {
    max-width: 36rem;
  }

  .compare-plans__banner-plan {
    align-items: center;
    text-align: center;
    min-height: 0;
  }

  .compare-plans__banner-plan-name {
    padding-right: 0;
  }

  .compare-plans__banner-plan--pro.compare-plans__banner-plan--discount .compare-plans__banner-plan-name {
    padding-right: 0;
  }

  .compare-plans__banner-price-line {
    align-items: center;
  }

  .compare-plans__banner-plan--pro .compare-plans__banner-price-line {
    align-items: center;
  }

  .compare-plans__banner-cta {
    width: auto;
    min-width: min(100%, 14rem);
    margin-top: 0.5rem;
  }

  .compare-plans__banner-badge {
    position: static;
    align-self: center;
    margin-bottom: 0.25rem;
  }
}

@media (min-width: 901px) and (max-width: 1024px) {
  .compare-plans__banner-row {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1.35rem;
  }

  .compare-plans__banner-intro {
    grid-column: 1 / -1;
    padding-right: 0;
    text-align: center;
    align-items: center;
  }

  .compare-plans__banner-plan {
    min-height: clamp(10.5rem, 28vw, 12.5rem);
  }
}

.compare-plans__billing-wrap {
  display: flex;
  justify-content: center;
  margin: 0 0 clamp(1.1rem, 2.2vw, 1.5rem);
}

.compare-plans__billing-wrap .ikas-billing {
  margin: 0;
  max-width: none;
}

.compare-plans__billing-wrap .ikas-billing__switch--triple .ikas-billing__opt {
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
}

@media (min-width: 480px) {
  .compare-plans__billing-wrap .ikas-billing__switch--triple .ikas-billing__opt {
    padding: 0.4rem 1rem;
    font-size: 0.8125rem;
  }
}

.compare-plans__billing-wrap--outside {
  margin: 0;
  width: 100%;
  max-width: 100%;
  justify-content: center;
}

.compare-plans__billing-wrap--outside .ikas-billing {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem 1rem;
}

.compare-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -0.25rem;
  padding: 0 0.25rem;
}

.compare-table {
  width: 100%;
  min-width: 36rem;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  background: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 20px 40px -28px rgba(15, 23, 42, 0.12);
}

.compare-tr--tablehead .compare-th,
.compare-tr--tablehead .compare-td,
.compare-tr .compare-feature,
.compare-tr .compare-td {
  border: 1px solid #f4f4f5;
  vertical-align: middle;
}

.compare-tr--tablehead .compare-th {
  padding: 0.7rem 1rem;
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: #71717a;
  background: #f4f4f5;
  border-color: #e4e4e7;
}

.compare-tr--tablehead .compare-th--intro {
  text-align: left;
  padding-right: 0.75rem;
}

.compare-th--intro {
  width: 38%;
  text-align: left !important;
  vertical-align: top !important;
}

.compare-th--plan {
  width: 31%;
}

.compare-th--free {
  background: #fafafa !important;
  box-shadow: inset 0 1px 0 #f4f4f5;
}

.compare-th--popular {
  background: linear-gradient(180deg, #ecfdf5 0%, #ffffff 100%) !important;
  box-shadow: inset 0 1px 0 rgba(16, 185, 129, 0.2);
}

.compare-col-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a1a1aa;
}

.compare-plan__ribbon {
  display: inline-block;
  margin-bottom: 0.2rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #059669, #10b981);
  border-radius: 999px;
}

.compare-plan-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 11rem;
  margin: 0 auto;
}

.compare-th--popular .compare-plan-cell {
  padding-top: 0;
}

.compare-plan__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 1.85rem;
  width: 100%;
  box-sizing: border-box;
}

.compare-th--popular .compare-plan__meta {
  min-height: auto;
  justify-content: flex-start;
  padding-top: 0;
}

.compare-plan__free-tag {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #475569;
  line-height: 1.25;
  text-align: center;
}

.compare-intro__badge {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #065f46;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 999px;
  vertical-align: middle;
}

.compare-intro__sub {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #6b7280;
  text-align: left;
  max-width: 22rem;
}

.compare-plan-cell .compare-plan__name {
  margin-bottom: 0.2rem;
}

.compare-plan__name {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #18181b;
}

.compare-plan__price {
  line-height: 1.2;
}

.compare-plan__price--featured {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  text-align: center;
}

.compare-plan__amount {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111827;
  transition: color 0.2s ease;
}

.compare-plan__price--featured .compare-plan__amount {
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
}

.compare-th--popular .compare-plan__amount {
  color: #059669;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .compare-th--popular .compare-plan__amount {
    background: linear-gradient(90deg, #047857, #059669 45%, #0d9488);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.compare-plan__per-unit {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #0f172a;
}

.compare-plan__period-sub {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.02em;
}

.compare-plan__period {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #9ca3af;
}

.compare-plan-cell .compare-plan__hint {
  margin-top: 0.2rem;
}

.compare-plan__hint {
  margin: 0.45rem 0 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #9ca3af;
}

.compare-td--empty {
  border-top: none !important;
  background: #fafafa;
}

.compare-feature {
  padding: 0.8rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: left;
  color: #3f3f46;
  background: #fafafa;
}

.compare-td--icon,
.compare-td--text,
.compare-td--emptycell {
  padding: 0.85rem 0.75rem;
  text-align: center;
  background: #fff;
  transition: background-color 0.18s ease;
}

tbody .compare-tr:hover .compare-feature {
  background-color: #f1f5f9;
}

tbody .compare-tr:hover .compare-td {
  background-color: #f8fafc;
}

.compare-td--icon .compare-yes {
  display: inline-flex;
  vertical-align: middle;
}

.compare-yes svg circle {
  fill: #10b981;
}

.compare-yes svg path {
  stroke: #fff;
}

.compare-td--text {
  font-size: 0.8125rem;
}

.compare-strong {
  display: block;
  font-weight: 800;
  color: #111827;
}

.compare-sub {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: #9ca3af;
  line-height: 1.3;
}

.compare-dash {
  color: #d1d5db;
  font-weight: 300;
}

.compare-footnote {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  color: #9ca3af;
  line-height: 1.45;
}

.compare-tr:last-child .compare-feature,
.compare-tr:last-child .compare-td {
  border-bottom: none;
}

.biyos-hero__trial {
  animation: none;
}

.biyos-hero__trial-dot {
  animation: none;
}
