@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Sora', sans-serif;
  color: var(--text-primary);
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

:root {
  --purple-900: #3a0d54;
  --purple-800: #5A0B85;
  --purple-700: #640895;
  --purple-600: #5B2B74;
  --purple-500: #7a00df;
  --purple-400: #9b4dca;
  --purple-300: #c084fc;
  --purple-200: #e9d5ff;
  --purple-100: #F4E7FF;
  --accent-gold: #f59e0b;
  --accent-cyan: #06b6d4;
  --accent-green: #10b981;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-400: #a1a1aa;
  --gray-600: #63657e;
  --gray-800: #333333;
  --gray-900: #1a1a2e;
  --text-primary: #333333;
  --text-secondary: #555555;
  --text-muted: #63657e;
  --bg-light: #f8f9fa;
  --card-bg: #ffffff;
  --card-border: #e8e0f0;
}

.new-price-hero {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 160px 48px 80px !important;
  position: relative !important;
  overflow: hidden !important;
  text-align: center !important;
  background: linear-gradient(135deg, #7502AF 0%, #5A0B85 100%) !important;
}

.new-price-hero-bg {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(135deg, #7502AF 0%, #5A0B85 100%) !important;
  z-index: 0 !important;
}

.new-price-hero-grid {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  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) !important;
  background-size: 60px 60px !important;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 30%, transparent 80%);
  z-index: 1 !important;
}

.new-price-hero-content {
  position: relative !important;
  z-index: 2 !important;
  max-width: 820px;
}

.new-price-hero-eyebrow {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 28px;
  animation: new-price-fadeUp 0.7s ease both;
}

.new-price-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: new-price-pulse 2s ease infinite;
}

@keyframes new-price-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.new-price-hero h1 {
  font-family: 'Sora', sans-serif !important;
  font-size: clamp(40px, 6vw, 72px) !important;
  font-weight: 800 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.03em !important;
  margin-bottom: 24px !important;
  animation: new-price-fadeUp 0.7s 0.1s ease both;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.new-price-hero h1 em {
  font-style: normal !important;
  background: linear-gradient(135deg, #e9d5ff 0%, #ffffff 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.new-price-hero-sub {
  font-size: 18px !important;
  font-weight: 300 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.8) !important;
  line-height: 1.6 !important;
  max-width: 600px;
  margin: 0 auto 48px !important;
  animation: new-price-fadeUp 0.7s 0.2s ease both;
}

.new-price-hero-cta {
  animation: new-price-fadeUp 0.7s 0.3s ease both;
}

.new-price-btn-primary {
  background: var(--white);
  color: var(--purple-800);
  padding: 14px 32px;
  border-radius: 12px;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 8px 20px rgba(0, 0, 0, 0.08);
  text-decoration: none;
}

.new-price-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  background: #f0e6f6;
}

.new-price-trust-strip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 56px;
  flex-wrap: wrap;
  animation: new-price-fadeUp 0.7s 0.4s ease both;
}

.new-price-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.new-price-trust-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--accent-green);
}

.new-price-trust-div {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.2);
}

.new-price-pillars {
  position: relative;
  z-index: 2;
  display: flex;
  margin-top: 64px;
  gap: 0;
  animation: new-price-fadeUp 0.7s 0.5s ease both;
}

.new-price-pillar {
  padding: 24px 40px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.new-price-pillar:last-child {
  border-right: none;
}

.new-price-pillar-val {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
}

.new-price-pillar-label {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@keyframes new-price-fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.new-price-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-800);
  margin-bottom: 16px;
}

.new-price-section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--purple-800);
}

.new-price-section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.new-price-section-sub {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 56px;
}

.new-price-calc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.new-price-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04), 0 8px 20px rgba(0, 0, 0, 0.06);
}

.new-price-card:hover {
  border-color: rgba(91, 43, 116, 0.25);
  box-shadow: 0 8px 30px rgba(91, 43, 116, 0.1);
}

.new-price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-600), var(--purple-500));
  border-radius: 20px 20px 0 0;
}

.new-price-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.new-price-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.new-price-card-icon.new-price-purple {
  background: var(--purple-100);
}

.new-price-card-icon.new-price-cyan {
  background: rgba(6, 182, 212, 0.1);
}

.new-price-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.new-price-card-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

.new-price-field-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.new-price-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.new-price-field label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.new-price-field input {
  background: var(--bg-light);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  color: var(--text-primary);
  outline: none;
  transition: all 0.2s ease;
  width: 100%;
}

.new-price-field input::placeholder {
  color: var(--gray-400);
}

.new-price-field input:focus {
  border-color: var(--purple-600);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(91, 43, 116, 0.1);
}

.new-price-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.new-price-auto-badge {
  font-size: 10px;
  font-weight: 500;
  color: var(--purple-600);
  background: var(--purple-100);
  border: 1px solid rgba(91, 43, 116, 0.2);
  padding: 2px 8px;
  border-radius: 100px;
  text-transform: none;
}

.new-price-auto-input {
  color: var(--purple-600) !important;
  border-color: rgba(91, 43, 116, 0.2) !important;
  cursor: not-allowed !important;
}

.new-price-toast {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(-120%);
  z-index: 999999;
  background: #fff;
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-left: 4px solid #dc2626;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(220, 38, 38, 0.08);
  padding: 14px 44px 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 480px;
  width: max-content;
  font-family: 'Sora', sans-serif;
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
  pointer-events: none;
}

.new-price-toast.new-price-toast-show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.new-price-toast-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.new-price-toast-msg {
  font-size: 13px;
  font-weight: 500;
  color: #1a1a2e;
  line-height: 1.45;
}

.new-price-toast-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 18px;
  color: #94a3b8;
  cursor: pointer;
  padding: 2px 6px;
  line-height: 1;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}

.new-price-toast-close:hover {
  color: #dc2626;
  background: rgba(220, 38, 38, 0.06);
}

/* Info variant (blue theme) */
.new-price-toast-info {
  border-color: rgba(37, 99, 235, 0.3);
  border-left-color: #2563eb;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(37, 99, 235, 0.08);
}

.new-price-toast-info .new-price-toast-icon {
  background: rgba(37, 99, 235, 0.08);
}

.new-price-toast-info .new-price-toast-close:hover {
  color: #2563eb;
  background: rgba(37, 99, 235, 0.06);
}

/* Select All toggle in module header */
.new-price-select-all {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.new-price-select-all-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.new-price-pricing-fact {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: rgba(91, 43, 116, 0.04);
  border-radius: 12px;
  margin-bottom: 10px;
  border-left: 3px solid rgba(91, 43, 116, 0.3);
  transition: background 0.2s;
}

.new-price-pricing-fact:hover {
  background: rgba(91, 43, 116, 0.07);
}

.new-price-pf-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.new-price-pf-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.new-price-pf-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.new-price-offerings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.new-price-offering-module {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: visible;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04), 0 8px 20px rgba(0, 0, 0, 0.06);
}

.new-price-offering-module:hover {
  border-color: rgba(91, 43, 116, 0.25);
  box-shadow: 0 8px 30px rgba(91, 43, 116, 0.1);
}

.new-price-offering-module-header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.new-price-offering-module-title {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.new-price-rate-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--purple-100);
  border: 1px solid rgba(91, 43, 116, 0.2);
  color: var(--purple-600);
  padding: 4px 10px;
  border-radius: 100px;
}

.new-price-offering-items {
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: visible;
}

.new-price-offering-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--bg-light);
  transition: background 0.2s ease;
  cursor: pointer;
  position: relative;
  overflow: visible;
}

.new-price-offering-item:hover {
  background: var(--purple-100);
}

.new-price-offering-item-label {
  font-size: 13px;
  color: var(--text-secondary);
}

.new-price-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.new-price-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.new-price-toggle-track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gray-200);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
}

.new-price-toggle-track::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 2px;
  top: 2px;
  background: var(--white);
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.new-price-toggle input:checked+.new-price-toggle-track {
  background: var(--purple-600);
  border-color: var(--purple-600);
}

.new-price-toggle input:checked+.new-price-toggle-track::after {
  transform: translateX(20px);
  background: white;
}

.new-price-calc-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
}

.new-price-btn-calculate {
  background: var(--purple-600);
  color: white;
  padding: 18px 56px;
  border-radius: 12px;
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 40px rgba(91, 43, 116, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.new-price-btn-calculate:hover {
  transform: translateY(-3px);
  background: var(--purple-800);
  box-shadow: 0 8px 30px rgba(91, 43, 116, 0.3);
}

.new-price-btn-calculate .new-price-arrow {
  transition: transform 0.2s ease;
}

.new-price-btn-calculate:hover .new-price-arrow {
  transform: translateX(4px);
}

.new-price-calc-note {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.new-price-modal-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(16px);
  z-index: 999999 !important;
  display: none !important;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.new-price-modal-overlay.new-price-active {
  display: flex !important;
}

.new-price-modal {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 48px;
  max-width: 520px;
  width: 100%;
  position: relative;
  overflow: visible;
  overflow-y: auto;
  max-height: 90vh;
  animation: new-price-modalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 1000000 !important;
}

@keyframes new-price-modalIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }

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

.new-price-modal::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(91, 43, 116, 0.06), transparent 70%);
}

.new-price-modal-badge {
  width: 56px;
  height: 56px;
  background: var(--purple-100);
  border: 1px solid rgba(91, 43, 116, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  position: relative;
}

.new-price-modal h2 {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
  position: relative;
  color: var(--text-primary);
}

.new-price-modal p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  position: relative;
}

.new-price-modal-disclaimer {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 14px;
  position: relative;
}

.new-price-modal .forminator-custom-form {
  position: relative !important;
  z-index: 1 !important;
}

.new-price-modal .forminator-custom-form .forminator-field input {
  background: var(--bg-light) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 12px !important;
  padding: 14px 18px !important;
  font-family: 'Sora', sans-serif !important;
  font-size: 15px !important;
  color: var(--text-primary) !important;
}

.new-price-modal .forminator-custom-form .forminator-field input:focus {
  border-color: var(--purple-600) !important;
  background: var(--white) !important;
  box-shadow: 0 0 0 3px rgba(91, 43, 116, 0.1) !important;
}

.new-price-modal .forminator-custom-form .forminator-button-submit {
  width: 100% !important;
  background: var(--purple-600) !important;
  color: white !important;
  padding: 16px !important;
  border-radius: 12px !important;
  font-family: 'Sora', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 4px 15px rgba(91, 43, 116, 0.25) !important;
}

.new-price-modal .forminator-custom-form .forminator-button-submit:hover {
  transform: translateY(-2px) !important;
  background: var(--purple-800) !important;
}

.new-price-results-section {
  display: none;
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.new-price-results-section.new-price-visible {
  display: block;
}

.new-price-price-hero {
  text-align: center;
  padding: 52px 40px;
  background: var(--purple-100);
  border: 1px solid rgba(91, 43, 116, 0.15);
  border-radius: 24px;
  margin-bottom: 44px;
  position: relative;
  overflow: hidden;
}

.new-price-price-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(91, 43, 116, 0.08), transparent 70%);
  pointer-events: none;
}

.new-price-price-hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
  position: relative;
}

.new-price-price-hero-number {
	display: flex;
	justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  position: relative;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.new-price-price-hero-sub {
   display: none;
  font-size: 13px;
  color: var(--text-muted);
  position: relative;
}
.new-price-price-hero-sub.active{
	display: block;
	
}
.new-price-price-hero-sub2{
	display: none;
	font-size: 24px;
	font-weight: bold;
	    width: fit-content;
    margin: auto;
    padding: 10px 20px;
    border-radius: 55px;
	box-shadow: 0 6px 16px rgba(128, 0, 128, 0.35);
    background: linear-gradient(135deg, #7502AF 0%, #5A0B85 100%) !important;   
	color: white;
  position: relative;
}
.new-price-price-hero-sub2.active{
	display: block;
}

.new-price-result-metric-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: border-color 0.3s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04), 0 8px 20px rgba(0, 0, 0, 0.06);
}

.new-price-result-metric-card:hover {
  border-color: rgba(91, 43, 116, 0.25);
  transform: translateY(-2px);
}

.new-price-rmc-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.new-price-rmc-body {
  flex: 1;
  min-width: 0;
}

.new-price-rmc-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.new-price-rmc-value {
  font-family: 'Sora', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}

.new-price-rmc-value.new-price-col-purple {
  color: var(--purple-600);
}

.new-price-rmc-value.new-price-col-cyan {
  color: var(--accent-cyan);
}

.new-price-rmc-value.new-price-col-green {
  color: var(--accent-green);
}

.new-price-rmc-sub {
  font-size: 12px;
  color: var(--text-muted);
}

.new-price-results-disclaimer {
  margin-top: 24px;
  padding: 15px 20px;
  background: var(--bg-light);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.65;
  text-align: center;
}

.new-price-results-disclaimer a {
  color: var(--purple-600);
  text-decoration: none;
}

.new-price-step-bar {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 56px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 48px;
}

.new-price-step {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  position: relative;
}

.new-price-step:not(:last-child)::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(91, 43, 116, 0.2), var(--card-border));
  margin: 0 16px;
}

.new-price-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
  background: var(--bg-light);
  transition: all 0.3s ease;
}

.new-price-step.new-price-active .new-price-step-num {
  background: var(--purple-600);
  border-color: var(--purple-600);
  color: white;
  box-shadow: 0 0 12px rgba(91, 43, 116, 0.3);
}

.new-price-step-text {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

.new-price-step.new-price-active .new-price-step-text {
  color: var(--text-primary);
}

.new-price-progress-bar-wrap {
  grid-column: 1/-1;
  background: var(--card-border);
  border-radius: 100px;
  height: 4px;
  overflow: hidden;
  margin-top: 8px;
}

.new-price-progress-bar-fill {
  height: 100%;
  background: var(--purple-600);
  border-radius: 100px;
  width: 0%;
  transition: width 0.5s ease;
}

.new-price-has-tooltip {
  position: relative;
  cursor: help;
}

.new-price-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-primary);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  color: var(--white);
  white-space: normal;
  width: 240px;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 10;
}

.new-price-has-tooltip:hover .new-price-tooltip {
  opacity: 1;
}

.new-price-info-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--purple-100);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--purple-600);
  margin-left: 4px;
  vertical-align: middle;
  cursor: help;
}

.new-price-full-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91, 43, 116, 0.15), transparent);
  margin: 0;
}

/* ================================================
   RESPONSIVE — TABLET  (≤ 900px)
   ================================================ */
@media (max-width: 900px) {

  /* Hero */
  .new-price-hero {
    padding: 100px 24px 64px !important;
  }

  .new-price-hero h1 {
    font-size: clamp(32px, 5vw, 48px) !important;
  }

  .new-price-hero-sub {
    font-size: 15px !important;
  }

  /* Trust strip */
  .new-price-trust-strip {
    gap: 16px;
    margin-top: 40px;
  }

  .new-price-trust-div {
    display: none;
  }

  /* Pillars */
  .new-price-pillars {
    flex-direction: column;
  }

  .new-price-pillar {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .new-price-pillar:last-child {
    border-bottom: none;
  }

  /* Calculator section */
  #calculator {
    padding: 36px 20px 56px !important;
  }

  .new-price-calc-layout {
    grid-template-columns: 1fr;
  }

  /* Offerings */
  .new-price-offerings-grid {
    grid-template-columns: 1fr;
  }

  /* Step bar */
  .new-price-step-bar {
    padding: 0 20px;
    gap: 0;
  }

  .new-price-step-text {
    display: none;
  }

  /* Modal */
  .new-price-modal {
    padding: 32px 24px;
  }

  /* Results section */
  .new-price-results-section {
    padding: 64px 20px;
  }

  /* Results 2-col → 1-col */
  .new-price-metrics-grid {
    grid-template-columns: 1fr !important;
  }

  /* Price hero number */
  .new-price-price-hero {
    padding: 36px 20px;
  }

  .new-price-price-hero-number {
    font-size: clamp(40px, 10vw, 64px);
  }

  /* Annual cost card — stack on tablet */
  .new-price-annual-cost-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
    padding: 24px 20px !important;
  }

  .new-price-annual-cost-card > div:last-child {
    font-size: 28px !important;
    align-self: flex-end;
  }

  /* Result metric values */
  .new-price-rmc-value {
    font-size: 22px;
  }

  /* CTA button */
  .new-price-btn-calculate {
    padding: 16px 40px;
    font-size: 15px;
  }

  /* Toast */
  .new-price-toast {
    max-width: calc(100vw - 32px);
    left: 16px;
    right: 16px;
    transform: translateX(0) translateY(-120%);
  }

  .new-price-toast.new-price-toast-show {
    transform: translateX(0) translateY(0);
  }
}

/* ================================================
   RESPONSIVE — MOBILE  (≤ 600px)
   ================================================ */
@media (max-width: 600px) {

  /* Hero */
  .new-price-hero {
    padding: 80px 16px 48px !important;
  }

  .new-price-hero h1 {
    font-size: clamp(26px, 7vw, 36px) !important;
    line-height: 1.15 !important;
  }

  .new-price-hero-sub {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-bottom: 32px !important;
  }

  .new-price-hero-sub br {
    display: none;
  }

  .new-price-hero-eyebrow {
    font-size: 10px;
    padding: 5px 12px 5px 7px;
  }

  .new-price-btn-primary {
    padding: 12px 24px;
    font-size: 14px;
  }

  /* Trust strip — wrap to 2×2 */
  .new-price-trust-strip {
    gap: 12px;
    margin-top: 32px;
    justify-content: center;
  }

  .new-price-trust-item {
    font-size: 11px;
    gap: 5px;
  }

  .new-price-trust-check {
    width: 18px;
    height: 18px;
    font-size: 9px;
  }

  /* Step bar */
  .new-price-step-bar {
    padding: 0 16px;
    margin-bottom: 32px;
  }

  .new-price-step-num {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  /* Calculator section */
  #calculator {
    padding: 28px 16px 48px !important;
  }

  .new-price-section-title {
    font-size: clamp(22px, 5vw, 32px);
  }

  .new-price-section-sub {
    font-size: 14px;
    margin-bottom: 32px;
  }

  /* Cards */
  .new-price-card {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .new-price-card-header {
    margin-bottom: 24px;
  }

  .new-price-card-title {
    font-size: 14px;
  }

  .new-price-card-subtitle {
    font-size: 12px;
  }

  /* Input field row — stack vertically */
  .new-price-field-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .new-price-field input {
    padding: 11px 14px;
    font-size: 14px;
  }

  .new-price-field label {
    font-size: 11px;
  }

  /* Pricing facts in explainer */
  .new-price-pricing-fact {
    padding: 12px;
    gap: 10px;
  }

  .new-price-pf-title {
    font-size: 12px;
  }

  .new-price-pf-desc {
    font-size: 11px;
  }

  .new-price-pf-icon {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  /* Offering modules */
  .new-price-offering-module {
    border-radius: 16px;
  }

  .new-price-offering-module-header {
    padding: 16px 16px 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .new-price-offering-module-title {
    font-size: 13px;
  }

  .new-price-offering-items {
    padding: 12px 16px;
    gap: 8px;
  }

  .new-price-offering-item {
    padding: 8px 10px;
  }

  .new-price-offering-item-label {
    font-size: 12px;
  }

  /* Tooltip — full-width popover on mobile */
  .new-price-tooltip {
    width: 200px;
    font-size: 11px;
    padding: 6px 10px;
  }

  /* Calculate button */
  .new-price-btn-calculate {
    padding: 14px 32px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }

  .new-price-calc-note {
    font-size: 11px;
    text-align: center;
  }

  /* Results section */
  .new-price-results-section {
    padding: 48px 16px;
  }

  /* Price hero */
  .new-price-price-hero {
    padding: 28px 16px;
    border-radius: 16px;
    margin-bottom: 28px;
  }

  .new-price-price-hero-number {
    font-size: clamp(32px, 10vw, 48px);
  }

  .new-price-price-hero-label {
    font-size: 10px;
  }

  .new-price-price-hero-sub {
    font-size: 12px;
  }

  /* Result metric cards */
  .new-price-result-metric-card {
    padding: 16px;
    border-radius: 14px;
    gap: 12px;
  }

  .new-price-rmc-icon {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .new-price-rmc-label {
    font-size: 10px;
  }

  .new-price-rmc-value {
    font-size: 20px;
  }

  .new-price-rmc-sub {
    font-size: 11px;
  }

  /* Annual cost card */
  .new-price-annual-cost-card {
    padding: 20px 16px !important;
  }

  .new-price-annual-cost-card > div:last-child {
    font-size: 24px !important;
  }

  .new-price-annual-cost-card .new-price-rmc-icon {
    width: 40px !important;
    height: 40px !important;
    font-size: 17px !important;
  }

  /* Results disclaimer */
  .new-price-results-disclaimer {
    font-size: 11px;
    padding: 12px 16px;
  }

  /* Bottom CTA */
  .new-price-results-cta {
    margin-top: 36px !important;
  }

  .new-price-results-cta .new-price-btn-primary {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 14px !important;
    padding: 14px 24px !important;
  }

  /* Toast */
  .new-price-toast {
    top: 12px;
    max-width: calc(100vw - 24px);
    left: 12px;
    right: 12px;
    padding: 12px 36px 12px 12px;
  }

  .new-price-toast-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .new-price-toast-msg {
    font-size: 12px;
  }

  /* Modal */
  .new-price-modal {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .new-price-modal h2 {
    font-size: 22px;
  }

  .new-price-modal p {
    font-size: 13px;
  }

  .new-price-modal-badge {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
}