﻿/* ============================================================
   ShiftItNow — Pricing Calculator v6
   Fluid responsive system — stable at 100% and 125% zoom.
   All spacing uses clamp() so it compresses as viewport shrinks.
   ============================================================ */

/* ── PAGE BACKGROUND ── */
body.pricing-page {
  background: var(--off-white);
}

/* ── HERO ── */
.calc-hero {
  padding: clamp(36px, 5vw, 72px) 0 clamp(20px, 2.8vw, 36px);
  text-align: center;
}
.calc-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(42, 126, 146, 0.10);
  border: 1px solid rgba(42, 126, 146, 0.22);
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: clamp(14px, 1.8vw, 22px);
}
.calc-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.8vw, 3rem);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 auto clamp(12px, 1.5vw, 20px);
  max-width: min(100%, 680px);
}
.calc-shopify-word {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: var(--teal);
  font-weight: 700;
}
.calc-hero-sub {
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  color: var(--gray-600);
  max-width: min(100%, 500px);
  margin: 0 auto clamp(16px, 2vw, 24px);
  line-height: 1.65;
}
.calc-migrate-tag {
  display: inline-block;
  background: var(--navy-deep);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}

/* ── CALCULATOR WRAPPER ── */
.calc-wrapper {
  max-width: min(100%, 860px);
  margin: 0 auto;
  padding-bottom: clamp(32px, 4.5vw, 64px);
}

/* ── PLATFORM SELECTOR ROW ── */
.calc-platform-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(8px, 1vw, 12px);
  margin-bottom: clamp(8px, 1vw, 12px);
}
.calc-platform-card {
  background: var(--white);
  border-radius: 14px;
  padding: clamp(13px, 1.6vw, 18px) clamp(15px, 1.8vw, 20px);
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: relative;
}
.calc-platform-card.is-from {
  cursor: pointer;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.calc-platform-card.is-from:hover {
  border-color: var(--teal-light);
  box-shadow: 0 4px 18px rgba(42,126,146,0.12);
}
.calc-plat-step {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
}
.calc-plat-num {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-size: 0.58rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.calc-plat-step-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.calc-locked-badge {
  margin-left: auto;
  background: rgba(34,139,87,0.12);
  color: #1A7A4D;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(34,139,87,0.22);
}
.calc-plat-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
.calc-plat-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--off-white);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.calc-plat-icon.shopify-icon {
  background: var(--navy-deep);
  border-color: transparent;
  color: white;
}
.calc-plat-info { flex: 1; min-width: 0; }
.calc-plat-name {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.01em;
  display: block;
}
.calc-plat-sub {
  font-size: 0.68rem;
  color: var(--gray-500);
  display: block;
  margin-top: 2px;
}
.calc-plat-chevron {
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform var(--t-base);
}
.calc-platform-card.is-from.open .calc-plat-chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.calc-plat-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
  z-index: 100;
  overflow: hidden;
  display: none;
}
.calc-platform-card.is-from.open .calc-plat-dropdown { display: block; }
.calc-plat-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background var(--t-fast);
  border-bottom: 1px solid var(--border);
}
.calc-plat-option:last-child { border-bottom: none; }
.calc-plat-option:hover { background: var(--off-white); }
.calc-plat-option.active { background: rgba(42,126,146,0.06); }
.calc-plat-opt-icon {
  width: 30px; height: 30px;
  border-radius: 7px;
  background: var(--off-white);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.calc-plat-opt-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gray-900);
}
.calc-plat-opt-sub {
  font-size: 0.68rem;
  color: var(--gray-500);
  display: block;
}

.calc-platform-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--teal);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

/* ── MAIN CALCULATOR CARD ── */
.calc-main-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 32px rgba(0,0,0,0.09), 0 1px 0 rgba(0,0,0,0.04);
  border: 1px solid var(--border);
}

/* Left: inputs */
.calc-inputs-panel {
  padding: clamp(18px, 2.2vw, 24px) clamp(18px, 2.5vw, 28px);
  border-right: 1px solid var(--border);
}
.calc-inputs-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: clamp(12px, 1.5vw, 16px);
  display: flex;
  align-items: center;
  gap: 8px;
}
.calc-inputs-label::before {
  content: '';
  display: inline-block;
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7A85' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Cpath d='M9 9h6v6H9z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.calc-input-row {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 9px;
  padding: clamp(8px, 1vw, 11px) 0;
  border-bottom: 1px solid var(--border);
}
.calc-input-row:last-child { border-bottom: none; }
.calc-input-icon-sm {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400);
  flex-shrink: 0;
}
.calc-input-meta { min-width: 0; }
.calc-input-meta h4 {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin: 0 0 1px;
  font-family: var(--font-sans);
}
.calc-big-input {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--gray-900);
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  padding: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
  -moz-appearance: textfield;
}
.calc-big-input::-webkit-outer-spin-button,
.calc-big-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.calc-big-input::placeholder { color: var(--gray-300); font-weight: 400; }
.calc-big-input:focus { color: var(--teal-dark); }
.calc-input-edit-icon {
  color: var(--gray-300);
  flex-shrink: 0;
}

/* Right: result panel */
.calc-result-panel {
  background: var(--navy-deep);
  background-image: radial-gradient(ellipse 70% 45% at 50% 0%, rgba(95,177,192,0.18) 0%, transparent 100%);
  padding: clamp(18px, 2.2vw, 24px) clamp(18px, 2.5vw, 26px);
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.1vw, 12px);
  position: relative;
  overflow: hidden;
}
/* Shimmer sweep — triggered by .is-animating class */
.calc-result-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    transparent 30%,
    rgba(61, 190, 110, 0.09) 48%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(61, 190, 110, 0.09) 52%,
    transparent 70%
  );
  transform: translateX(-110%);
  pointer-events: none;
  z-index: 0;
}
.calc-result-panel.is-animating::after {
  animation: calc-shimmerSweep 650ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
/* Push all content above the shimmer overlay */
.calc-result-panel > * { position: relative; z-index: 1; }

.calc-result-live-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}
/* Pulsing live dot */
.calc-result-live-label::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-bright);
  flex-shrink: 0;
  animation: calc-liveDot 2s ease-in-out infinite;
}
.calc-price-display {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.04em;
  will-change: contents;
}
.calc-price-display.is-free { color: var(--gold-bright); }
.calc-price-display.is-contact { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.calc-price-meta {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.55);
  margin-top: -4px;
}
.calc-result-plan-name {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 5px;
  background: rgba(242,181,68,0.16);
  border: 1px solid rgba(61, 190, 110, 0.28);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.calc-result-plan-name::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-bright);
  flex-shrink: 0;
}
.calc-result-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
}
.calc-data-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.calc-data-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

/* Plan features list */
.calc-plan-features {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 0.8vw, 9px);
  padding: 2px 0;
}
.calc-plan-feature {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
.calc-plan-feature-check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(242,181,68,0.20);
  border: 1px solid rgba(61,190,110,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold-bright);
}
.calc-capacity-section {
  margin-top: auto;
  padding-top: clamp(10px, 1.2vw, 14px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.calc-capacity-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.calc-capacity-label {
  font-size: 0.64rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.calc-capacity-pct {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold);
}
.calc-capacity-bar-track {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}
.calc-capacity-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
  border-radius: 3px;
  width: 0%;
  transition: width 550ms cubic-bezier(0.4,0,0.2,1);
  animation: calc-barGlow 2.5s ease-in-out infinite;
}

/* ── PLAN SELECTOR ── */
.calc-plan-selector {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(5px, 0.7vw, 8px);
  margin-top: clamp(8px, 1vw, 12px);
}
.calc-plan-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: clamp(10px, 1.3vw, 14px) clamp(10px, 1.4vw, 14px);
  cursor: default;
  position: relative;
  transition: border-color 400ms ease, background 400ms ease, box-shadow 400ms ease;
}
.calc-plan-card.active {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  box-shadow: 0 6px 20px rgba(7,24,42,0.20);
}
.calc-plan-tier {
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 3px;
  display: block;
}
.calc-plan-card.active .calc-plan-tier { color: rgba(255,255,255,0.5); }
.calc-plan-price {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.03em;
  display: block;
  line-height: 1;
  margin-bottom: 3px;
}
.calc-plan-card.active .calc-plan-price { color: var(--white); }
.calc-plan-capacity {
  font-size: 0.58rem;
  color: var(--gray-500);
  line-height: 1.4;
  display: block;
}
.calc-plan-card.active .calc-plan-capacity { color: rgba(255,255,255,0.5); }
.calc-plan-check {
  position: absolute;
  top: 8px; right: 8px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold-bright);
  display: none;
  align-items: center; justify-content: center;
}
.calc-plan-card.active .calc-plan-check { display: flex; }

/* ── CTA ROW ── */
.calc-cta-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  margin-top: clamp(10px, 1.2vw, 14px);
}
.calc-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy-deep);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: clamp(11px, 1.3vw, 14px) clamp(18px, 2.2vw, 24px);
  font-size: clamp(0.82rem, 1.1vw, 0.92rem);
  font-weight: 700;
  font-family: var(--font-sans);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--t-fast), transform var(--t-fast);
  white-space: nowrap;
}
.calc-primary-btn:hover { background: var(--teal-dark); transform: translateY(-1px); }
.calc-primary-btn.is-contact { background: var(--gold); color: var(--navy-deep); }
.calc-primary-btn.is-contact:hover { background: var(--gold); }
.calc-btn-arrow {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.calc-primary-btn.is-contact .calc-btn-arrow { background: rgba(7,24,42,0.15); }
.calc-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  color: var(--gray-700);
  border: 1.5px solid var(--border-strong);
  border-radius: 999px;
  padding: clamp(11px, 1.3vw, 14px) clamp(16px, 2vw, 20px);
  font-size: clamp(0.78rem, 1vw, 0.86rem);
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  text-decoration: none;
  transition: border-color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}
.calc-secondary-btn:hover { border-color: var(--teal-light); background: var(--off-white); }

/* ── TRUST BAR ── */
.calc-trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px 20px;
  padding: clamp(14px, 1.6vw, 18px) 0 4px;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: clamp(14px, 1.6vw, 18px);
  font-size: 0.78rem;
  color: var(--gray-600);
}
.calc-trust-stars { color: var(--gold); letter-spacing: 2px; }
.calc-trust-left {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
}
.calc-trust-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.calc-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--gray-500);
  font-size: 0.76rem;
}
.calc-trust-item svg { color: var(--teal); flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .calc-platform-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .calc-platform-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }
}

@media (max-width: 780px) {
  .calc-main-card {
    grid-template-columns: 1fr;
  }
  .calc-inputs-panel {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 640px) {
  .calc-hero { padding: 36px 0 24px; }
  .calc-plan-selector { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .calc-cta-row { flex-direction: column; align-items: stretch; }
  .calc-primary-btn, .calc-secondary-btn { justify-content: center; width: 100%; }
  .calc-trust-bar { flex-direction: column; align-items: flex-start; gap: 8px; }
  .calc-trust-right { gap: 10px; }
}

@media (max-width: 480px) {
  .calc-hero-title { font-size: clamp(1.5rem, 6.5vw, 2rem); }
  .calc-big-input { font-size: 1.15rem; }
  .calc-price-display { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .calc-platform-card { padding: 12px 14px; }
  .calc-plat-name { font-size: 0.9rem; }
  .calc-plan-card { padding: 10px 10px; }
  .calc-plan-price { font-size: 1rem; }
}

@media (max-width: 380px) {
  .calc-plan-selector { grid-template-columns: 1fr 1fr; }
  .calc-input-row { grid-template-columns: 20px 1fr auto; gap: 6px; }
  .calc-trust-right { flex-direction: column; align-items: flex-start; gap: 7px; }
}

/* ── ANIMATION KEYFRAMES ── */

/* Panel-wide shimmer sweep on update */
@keyframes calc-shimmerSweep {
  0%   { transform: translateX(-110%); }
  100% { transform: translateX(110%); }
}

/* Pulsing dot on "LIVE" label */
@keyframes calc-liveDot {
  0%, 100% { opacity: 1;   box-shadow: 0 0 0 0 rgba(61,190,110,0.5); }
  50%       { opacity: 0.6; box-shadow: 0 0 0 3px rgba(61,190,110,0.15); }
}

/* Price: blur+slide reveal (text transitions) */
@keyframes calc-priceIn {
  from { opacity: 0; transform: translateY(8px) scale(0.96); filter: blur(2px); }
  to   { opacity: 1; transform: translateY(0)   scale(1);    filter: blur(0); }
}

/* Price: spring punch after count-up lands */
@keyframes calc-pricePunch {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* Feature rows slide in */
@keyframes calc-featureIn {
  from { opacity: 0; transform: translateX(-10px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Badge pop with glow ring */
@keyframes calc-badgeGlow {
  0%   { transform: scale(1);    box-shadow: 0 0 0 0   rgba(61,190,110,0); }
  35%  { transform: scale(1.09); box-shadow: 0 0 0 6px rgba(61,190,110,0.28), 0 0 16px rgba(242,181,68,0.20); }
  100% { transform: scale(1);    box-shadow: 0 0 0 0   rgba(61,190,110,0); }
}

/* Data pill pop-in */
@keyframes calc-pillIn {
  from { opacity: 0; transform: scale(0.78); }
  to   { opacity: 1; transform: scale(1); }
}

/* Capacity bar breathing glow (continuous) */
@keyframes calc-barGlow {
  0%, 100% { box-shadow: 0 0 5px rgba(61,190,110,0.30); }
  50%       { box-shadow: 0 0 14px rgba(61,190,110,0.6), 0 0 24px rgba(242,181,68,0.16); }
}

/* Capacity bar burst on fill change */
@keyframes calc-barBurst {
  0%   { box-shadow: 0 0 20px rgba(61,190,110,0.85), 0 0 40px rgba(61,190,110,0.35); }
  100% { box-shadow: 0 0 5px rgba(61,190,110,0.30); }
}

/* ── ANIMATION STATES ── */

/* Panel shimmer (triggered by JS adding .is-animating) */
.calc-result-panel.is-animating::after {
  animation: calc-shimmerSweep 650ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Price text reveal (non-numeric switch) */
.calc-price-display.is-switching {
  animation: calc-priceIn 280ms cubic-bezier(0.2, 0, 0, 1) both;
}

/* Price spring punch (after count-up lands) */
.calc-price-display.is-punch {
  animation: calc-pricePunch 280ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Plan badge glow ring on change */
.calc-result-plan-name.is-pulsing {
  animation: calc-badgeGlow 420ms cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* Feature rows staggered slide-in */
.calc-plan-features.is-populating .calc-plan-feature:nth-child(1) { animation: calc-featureIn 220ms   0ms ease-out both; }
.calc-plan-features.is-populating .calc-plan-feature:nth-child(2) { animation: calc-featureIn 220ms  50ms ease-out both; }
.calc-plan-features.is-populating .calc-plan-feature:nth-child(3) { animation: calc-featureIn 220ms 100ms ease-out both; }
.calc-plan-features.is-populating .calc-plan-feature:nth-child(4) { animation: calc-featureIn 220ms 150ms ease-out both; }

/* Data pill entry */
.calc-data-pill { animation: calc-pillIn 180ms ease-out both; }

/* Capacity bar burst on value change */
.calc-capacity-bar-fill.is-filling {
  animation: calc-barGlow 2.5s ease-in-out infinite, calc-barBurst 900ms ease-out;
}

/* ── PREFERS-REDUCED-MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .calc-result-live-label::before { animation: none !important; }
  .calc-result-panel::after       { display: none !important; }
  .calc-price-display.is-switching,
  .calc-price-display.is-punch,
  .calc-result-plan-name.is-pulsing,
  .calc-plan-features.is-populating .calc-plan-feature,
  .calc-data-pill {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .calc-capacity-bar-fill {
    animation: none !important;
    box-shadow: 0 0 7px rgba(61,190,110,0.4);
    transition: width 300ms ease !important;
  }
}
