/* ===============================
   Shared RDP - Optimized & Debloated v7
   Removed unused code, merged related blocks
   All functionality preserved
================================= */

:root {
  --cta: #ff6a00;
  --cta-hover: #e35a00;
  --text: #0b1b2b;
  --text-bold: #000000;
  --muted: #5b6b7a;
  --bg-light: #f9fbfc;
  --border: #e6edf3;
  --purple: #9c27b0;
  --purple-hover: #7b1fa2;
  --bg-orange: #FFBA76;
  --bg-orange-hover: #FFB266;
  --bg-purple: #D8B4FE;
  --bg-purple-hover: #C084FC;
  --container: 1200px;
  --background-width: 1500px;
  --conversion-green: #10b981;
  --conversion-green-hover: #059669;
  --conversion-blue: #3b82f6;
  --conversion-dark: #1f2937;
  --conversion-gray: #6b7280;
  --conversion-border: #e5e7eb;
  --seedbox-light-bg: #e0f7fa;
  --seedbox-border: #80deea;
  --seedbox-text: #0b1b2b;
  --seedbox-muted: #5b6b7a;
  --seedbox-primary: #00a8cc;
  --seedbox-secondary: #0097b2;
}

/* ========== CONTAINER & BACKGROUND ========== */
.snt-rdp-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0px 20px;
  position: relative;
  z-index: 1;
}

.snt-rdp-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 99vw;
  height: 100%;
  transform: translateX(-50%);
  background: linear-gradient(to right, #FCFEFF 0%, #ffe8cc 50%, #FCFEFF 100%), linear-gradient(to bottom, #ffe3d3 0%, #fff 15%, #fff 100%);
  z-index: -1;
  border-radius: 0 0 60px 60px;
}

.snt-rdp-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 99vw;
  height: 120px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent 0%, #FDEFDC 100%);
  z-index: -1;
  pointer-events: none;
}

/* ========== HERO SECTION ========== */
.snt-hero-compact {
  text-align: center;
  padding: 0px 20px 0px;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

/* Badge and Meta Pills Container - Centered with Wings */
.snt-hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.snt-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  background: linear-gradient(135deg, var(--cta), var(--cta-hover));
  color: #fff;
  border-radius: 50px;
  font-size: 0.9em;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(255, 106, 0, 0.35);
  transition: all 0.3s ease;
  flex-shrink: 0;
  order: 2;
}

.snt-hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.45);
}

/* Meta Pills - Split Left and Right */
.snt-hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: nowrap;
}

.snt-hero-meta-left {
  order: 1;
}

.snt-hero-meta-right {
  order: 3;
}

@media (max-width: 1023px) {
  .snt-hero-meta-left,
  .snt-hero-meta-right {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .snt-hero-badge {
    order: 1;
  }
}

.snt-hero-meta-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--text);
  font-size: 0.8em;
  font-weight: 600;
  padding: 6px 14px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(255, 106, 0, 0.08);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.snt-hero-meta-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.15);
  border-color: var(--cta);
}

.snt-hero-meta-icon {
  font-size: 1.2em;
}

.snt-hero-compact h1 {
  font-size: 3.8em;
  margin: 0 0 20px 0;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1.5px;
  line-height: 1.1;
}

@media (max-width: 1023px) {
  .snt-hero-compact h1 {
    font-size: 2.8em;
  }
}

@media (max-width: 600px) {
  .snt-hero-compact h1 {
    font-size: 2.2em;
  }
}

.snt-hero-compact h1 .highlight {
  color: var(--cta);
  position: relative;
  display: inline-block;
}

.snt-hero-compact h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: -2%;
  width: 104%;
  height: 4px;
  background: linear-gradient(90deg, var(--cta), var(--cta-hover));
  border-radius: 2px;
  opacity: 0.8;
}

.snt-hero-subtitle {
  font-size: 1.1em;
  color: #666;
  margin: 0 auto 25px;
  max-width: 700px;
  line-height: 1.6;
}

/* ========== ALERTS & PRODUCT CARD ========== */
.snt-alert {
  padding: 20px 24px;
  border-radius: 14px;
  margin: 30px 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.snt-alert-info {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border: 2px solid #90caf9;
  color: #0d47a1;
}

.snt-alert-content {
  flex: 1;
  line-height: 1.7;
  font-size: 0.95em;
}

.snt-product-card {
  background: #fff;
  border-radius: 24px;
  padding: 35px 45px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

/* ========== CONFIG HEADER ========== */
.config-header {
  text-align: center;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #fff8f0, #ffe8cc);
  padding: 15px;
  border-radius: 16px;
  border: 2px solid var(--bg-orange);
}

.config-title {
  font-size: 1.7em; 
  margin: 0 0 12px 0;
  color: var(--cta);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.config-title::before {
  content: '💾';
  font-size: 1.2em;
}

.config-subtitle {
  font-size: 1.05em;
  color: #666;
  margin: 0;
  font-weight: 600;
}

/* ========== SPECS GRID ========== */
.snt-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-bottom: 35px;
}

.snt-spec-item {
  background: linear-gradient(135deg, #fff8f0, #ffe8cc);
  border: 2px solid #ffd699;
  border-radius: 14px;
  padding: 15px 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.snt-spec-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.15);
}

.snt-spec-icon {
  font-size: 2.5em;
  display: block;
  margin-bottom: 10px;
}

.snt-spec-label {
  font-size: 0.75em;
  color: #999;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.snt-spec-value {
  font-size: 1.1em;
  color: var(--text);
  margin: 0;
  font-weight: 700;
}

/* ========== STORAGE CARDS ========== */
.storage-selection-area {
  margin: 40px 0;
}

.storage-grid-clean {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.storage-card-enhanced {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  opacity: 1;
  overflow: hidden;
}

.storage-card-enhanced:hover {
  border-color: var(--cta);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(255, 106, 0, 0.2);
}

.storage-card-enhanced.expanded {
  border-color: var(--cta);
  box-shadow: 0 16px 40px rgba(255, 106, 0, 0.2);
  transform: translateY(0);
  cursor: default;
  z-index: 100;
}

.storage-grid-clean:has(.storage-card-enhanced.expanded) .storage-card-enhanced:not(.expanded) {
  opacity: 0.4;
  cursor: pointer;
}

.storage-grid-clean:has(.storage-card-enhanced.expanded) .storage-card-enhanced:not(.expanded):hover {
  opacity: 0.6;
  transform: translateY(-3px);
}

.storage-card-front {
  padding: 20px 28px 32px;
  text-align: center;
  position: relative;
  border-radius: 20px;
}

.storage-card-expanded {
  background: linear-gradient(135deg, #fff 0%, #f9fbfc 100%);
  animation: expandCard 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 0 18px 18px;
}

@keyframes expandCard {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.storage-size-clean {
  font-size: 2.2em;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.storage-badge-clean {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.85em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.storage-badge-clean.starter {
  background: #e3f2fd;
  color: #0d47a1;
}

.storage-badge-clean.power {
  background: #fff3e0;
  color: #e65100;
}

.plan-value-props {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  padding: 0 12px;
    justify-self: center;
    left: -20px;
    position: relative;
}

.value-prop-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92em;
  color: var(--text);
  font-weight: 600;
}

.value-prop-icon {
  font-size: 1.4em;
  flex-shrink: 0;
  width: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-prop-text {
  flex: 1;
  line-height: 1.5;
}

.storage-price-clean {
  font-size: 2.4em;
  color: var(--cta);
  font-weight: 900;
  margin: 12px 0 12px;
  letter-spacing: -1px;
}

.storage-price-clean .currency {
  font-size: 0.6em;
  vertical-align: super;
}

.storage-price-clean .period {
  font-size: 0.5em;
  opacity: 0.8;
}

.price-savings {
  font-size: 0.85em;
  color: #4caf50;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.price-savings-icon {
  font-size: 1.2em;
}

.order-now-btn {
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, #FF6a00, #e35a00);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 106, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.order-now-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.order-now-btn:hover::before {
  left: 100%;
}

.order-now-btn:hover {
  background: linear-gradient(135deg, #e35a00, #cc5200);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 106, 0, 0.4);
}

.order-now-btn:active {
  transform: translateY(0);
}

.instant-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75em;
  font-weight: 700;
  margin-top: 12px;
}

/* ========== CONFIG FORM ========== */
.config-form-header {
  background: linear-gradient(135deg, var(--bg-orange), var(--bg-orange-hover));
  color: var(--text-bold);
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
}

.config-form-header h4 {
  margin: 0;
  font-size: 1.15em;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: var(--text-bold);
}

.close-config-btn {
  background: rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(0, 0, 0, 0.2);
  color: var(--text-bold);
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  max-width: 32px;
  max-height: 32px;
  border-radius: 50%;
  font-size: 1.3em;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-weight: 700;
  flex-shrink: 0;
}

.close-config-btn:hover {
  background: rgba(0, 0, 0, 0.25);
  transform: rotate(90deg);
}

.config-form-body {
  padding: 30px 25px;
  overflow: visible;
}

.config-field {
  margin-bottom: 25px;
  overflow: visible;
  position: relative;
  z-index: 1;
}

.config-field label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--text-bold);
  margin-bottom: 8px;
  font-size: 0.95em;
}

.required {
  color: #f44336;
  font-weight: 800;
}

/* ========== TOOLTIPS ========== */
.info-tooltip {
  cursor: help;
  font-size: 0.75em;
  color: #666;
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  z-index: 1;
  font-weight: 500;
  font-style: normal;
  padding: 2px 6px;
  background: #e3f2fd;
  border-radius: 4px;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}


/* Tooltip left-aligned variant for right-edge elements */
.info-tooltip.tooltip-left::after {
  left: auto;
  right: 0;
  transform: translate(0, -120%);
}

.info-tooltip.tooltip-left:hover::after,
.info-tooltip.tooltip-left.tooltip-active::after {
  transform: translate(0, -140%);
}

.info-tooltip.tooltip-left::before {
  left: auto;
  right: 12px;
  transform: translate(0, 50%);
}

.info-tooltip.tooltip-left:hover::before,
.info-tooltip.tooltip-left.tooltip-active::before {
  transform: translate(0, -220%);
}

/* ========== INPUT FIELDS ========== */
.config-field input[type="text"],
.config-field select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.95em;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: inherit;
  background: #fff;
  color: var(--text);
}

.config-field input[type="text"].valid {
  border-color: #4caf50;
  background: #f1f8f4;
  color: #2e7d32;
}

.config-field input[type="text"].invalid {
  border-color: #f44336;
  background: #ffebee;
  color: #c62828;
}

.config-field input[type="text"]:focus,
.config-field select:focus {
  outline: none;
  border-color: var(--cta);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
}

.validation-message {
  font-size: 0.85em;
  margin-top: 6px;
  font-weight: 600;
  display: none;
}

.validation-message.show {
  display: block;
}

.validation-message.error {
  color: #f44336;
}

.validation-message.success {
  color: #4caf50;
}

/* ========== ADDON CARDS ========== */
.config-addon {
  background: linear-gradient(135deg, #f9fbfc, #fff);
  border: 2px solid #e6edf3;
  border-radius: 12px;
  padding: 22px 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: visible;
  position: relative;
  z-index: 1;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.config-addon:hover {
  border-color: var(--cta);
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.1);
  background: linear-gradient(135deg, #fff8f0, #ffe8cc);
}

.addon-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 12px;
}

.addon-checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  flex: 1;
  pointer-events: none;
}

.addon-checkbox {
  width: 22px;
  height: 22px;
  cursor: pointer;
  accent-color: var(--cta);
  pointer-events: auto;
  flex-shrink: 0;
}

.addon-title {
  font-weight: 700;
  color: var(--text-bold);
  font-size: 1em;
  flex: 1;
}

.addon-price {
  font-weight: 800;
  color: var(--cta);
  font-size: 0.98em;
  white-space: nowrap;
  flex-shrink: 0;
}

.addon-desc {
  margin: 0 0 0 34px;
  font-size: 0.88em;
  color: #666;
  line-height: 1.5;
}

.config-addon:has(.addon-checkbox:checked) {
  background: linear-gradient(135deg, #fff8f0, #ffe8cc);
  border-color: var(--cta);
}

/* ========== PRICE SUMMARY ========== */
.config-price-summary {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border: 2px solid #0ea5e9;
  border-radius: 12px;
  padding: 20px;
  margin: 25px 0 20px 0;
  position: relative;
  overflow: visible;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.95em;
  color: #0c4a6e;
}

.summary-row span:first-child {
  font-weight: 600;
}

.summary-row span:last-child {
  font-weight: 700;
}

.summary-row.addons-list {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  margin: 12px 0;
}

.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 6px;
  font-size: 0.9em;
}

.addon-item span:first-child {
  font-weight: 600;
  color: #1e3a8a;
}

.addon-item span:last-child {
  font-weight: 700;
  color: #2563eb;
}

.summary-total {
  font-size: 1.2em;
  padding-top: 12px;
  border-top: 2px solid #0ea5e9;
  margin-top: 12px;
}

.summary-total span {
  font-weight: 800;
  color: #0c4a6e;
}

.period-suffix {
  font-size: 0.75em;
  opacity: 0.8;
  margin-left: 2px;
}

/* ========== CHECKOUT BUTTON ========== */
.proceed-checkout-btn {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
  position: relative;
  overflow: hidden;
}

.proceed-checkout-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease;
}

.proceed-checkout-btn:hover::before {
  transform: scale(1);
}

.proceed-checkout-btn:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
}

.proceed-checkout-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

/* ========== VALIDATION MODAL ========== */
.validation-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.validation-modal-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.validation-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 450px;
  width: 90%;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.validation-modal-overlay.show .validation-modal {
  transform: scale(1);
}

.validation-modal-header {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-bottom: 3px solid #f59e0b;
  padding: 20px 24px;
  text-align: center;
}

.validation-modal-header h3 {
  margin: 0;
  font-size: 1.4em;
  font-weight: 800;
  color: #92400e;
  letter-spacing: -0.3px;
}

.validation-modal-body {
  padding: 28px 24px;
  text-align: center;
}

.validation-modal-message {
  font-size: 1.05em;
  color: var(--conversion-dark);
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

.validation-modal-footer {
  padding: 0 24px 24px 24px;
}

.validation-modal-btn {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--conversion-green), var(--conversion-green-hover));
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.validation-modal-btn:hover {
  background: linear-gradient(135deg, var(--conversion-green-hover), #047857);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

/* ========== CUSTOM CONFIGURATOR (50-50 SPLIT) ========== */
.custom-split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin: 25px 0;
  align-items: start;
}

.custom-configurator-merged {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 3px solid var(--conversion-green);
  border-radius: 20px;
  padding: 0;
  margin: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.15);
  display: flex;
  flex-direction: column;
}

.custom-configurator-merged.expanded {
  border-color: #059669;
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.25);
}

.custom-badge-top {
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #4caf50, #43a047);
  color: #fff;
  padding: 6px 18px;
  border-radius: 0 0 8px 8px;
  font-size: 0.7em;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
  z-index: 10;
  white-space: nowrap;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
    transform: translateX(-50%) scale(1);
  }
  50% {
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.6);
    transform: translateX(-50%) scale(1.03);
  }
}

.custom-config-header {
  padding: 42px 28px 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.custom-config-header .custom-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #e5e7eb;
  color: #64748b;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.3em;
  cursor: pointer;
  transition: all 0.3s ease;
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.custom-config-header .custom-close-btn:hover {
  background: #fee2e2;
  border-color: #ef4444;
  color: #dc2626;
  transform: rotate(90deg) scale(1.1);
}

.custom-configurator-merged.expanded .custom-config-header {
  padding: 28px 28px 24px;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  border-bottom: 3px solid var(--conversion-green);
  cursor: default;
}

.custom-configurator-merged.expanded .custom-config-header .custom-close-btn {
  display: flex;
}

.custom-configurator-merged.expanded .custom-config-right {
  display: none;
}

.custom-configurator-merged.expanded .custom-config-top {
  gap: 15px;
}

.custom-config-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.custom-config-left {
  display: flex;
  position: relative;
  left: -28px;
  gap: 16px;
  padding-top: 20px;
}

.custom-config-icon {
  font-size: 2.8em;
  animation: rotate 6s linear infinite;
  filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.3));
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.custom-config-title-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.custom-config-title-section h4 {
  font-size: 1.2em;
  color: var(--conversion-dark);
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.custom-config-badge {
  display: inline-block;
  padding: 5px 12px;
  background: linear-gradient(135deg, var(--conversion-green), var(--conversion-green-hover));
  color: #fff;
  border-radius: 6px;
  font-size: 0.7em;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.custom-config-center {
  width: 100%;
}

.custom-config-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.custom-storage-display {
  font-size: 1.4em;
  font-weight: 900;
  color: var(--conversion-dark);
  letter-spacing: -1px;
}

.custom-price-display {
  font-size: 2.4em;
  font-weight: 900;
  color: var(--conversion-green);
  letter-spacing: -1px;
}

.custom-slider-wrapper {
  margin: 16px 0 0;
  padding: 0 20px;
}

.custom-storage-slider {
  width: 100%;
  height: 10px;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(to right, var(--conversion-green) 0%, #e0e0e0 0%);
  border-radius: 10px;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-storage-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  background: var(--conversion-green);
  border: 4px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
  transition: all 0.2s ease;
}

.custom-storage-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.5);
}

.custom-storage-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: var(--conversion-green);
  border: 4px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
  transition: all 0.2s ease;
}

.custom-slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.8em;
  color: #666;
  font-weight: 700;
}

.custom-config-formula {
  text-align: center;
  font-size: 0.92em;
  color: var(--conversion-gray);
  margin-top: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.custom-config-right {
  width: 100%;
}

.custom-config-btn {
  width: 100%;
  padding: 18px 28px;
  background: linear-gradient(135deg, var(--conversion-green), var(--conversion-green-hover));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 58px;
}

.custom-config-btn:hover {
  background: linear-gradient(135deg, var(--conversion-green-hover), #047857);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.custom-config-btn::after {
  content: '⚡';
  font-size: 1.2em;
}

/* ========== CUSTOM CONFIG EXPANDED ========== */
.custom-config-expanded {
  display: none;
  padding: 0;
  background: #fff;
  animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-configurator-merged.expanded .custom-config-expanded {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom-config-slider-grid {
  padding: 28px 28px 0;
  margin-bottom: 0;
  gap: 18px 24px;
}

.storage-custom {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--conversion-dark);
  margin: 0 0 12px 0;
  font-size: 0.95em;
}

.custom-config-form-grid {
  display: grid;
  gap: 24px;
  padding: 24px 28px 32px;
  margin-bottom: 0;
}

.custom-form-field {
  display: flex;
  flex-direction: column;
  overflow: visible;
  position: relative;
  z-index: 1;
}

.custom-form-field label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--conversion-dark);
  margin-bottom: 10px;
  font-size: 0.95em;
}

.custom-form-field input[type="text"],
.custom-form-field select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--conversion-border);
  border-radius: 10px;
  font-size: 0.95em;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: inherit;
  background: #fff;
  color: var(--conversion-dark);
}

.custom-form-field input:focus,
.custom-form-field select:focus {
  outline: none;
  border-color: var(--conversion-green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.custom-form-field input.valid {
  border-color: var(--conversion-green);
  background: #f0fdf4;
}

.custom-form-field input.invalid {
  border-color: #ef4444;
  background: #fef2f2;
}

.custom-addon-card {
  background: linear-gradient(135deg, #f9fafb, #fff);
  border: 2px solid var(--conversion-border);
  border-radius: 12px;
  padding: 22px 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: visible;
  position: relative;
  z-index: 1;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.custom-addon-card:hover {
  border-color: var(--conversion-green);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.1);
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.custom-addon-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 12px;
}

.custom-addon-checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  flex: 1;
  pointer-events: none;
}

.custom-addon-checkbox {
  width: 22px;
  height: 22px;
  cursor: pointer;
  accent-color: var(--conversion-green);
  pointer-events: auto;
  flex-shrink: 0;
}

.custom-addon-title {
  font-weight: 700;
  color: var(--conversion-dark);
  font-size: 1em;
  flex: 1;
}

.custom-addon-price {
  font-weight: 800;
  color: var(--conversion-green);
  font-size: 0.98em;
  white-space: nowrap;
  flex-shrink: 0;
}

.custom-addon-desc {
  margin: 0 0 0 34px;
  font-size: 0.88em;
  color: var(--conversion-gray);
  line-height: 1.5;
}

.custom-addon-card:has(.custom-addon-checkbox:checked) {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-color: var(--conversion-green);
}

.custom-price-summary {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 2px solid var(--conversion-blue);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 0;
  grid-column: 1 / -1;
  overflow: visible;
  position: relative;
}

.custom-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.95em;
  color: #1e3a8a;
}

.custom-summary-row span:first-child {
  font-weight: 600;
}

.custom-summary-row span:last-child {
  font-weight: 700;
}

.custom-summary-row.addons-list {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  margin: 12px 0;
}

.custom-summary-total {
  font-size: 1.2em;
  padding-top: 12px;
  border-top: 2px solid var(--conversion-blue);
  margin-top: 8px;
}

.custom-summary-total span {
  font-weight: 800;
  color: #1e3a8a;
}

.custom-checkout-btn {
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--conversion-green), var(--conversion-green-hover));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.05em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
  grid-column: 1 / -1;
}

.custom-checkout-btn:hover {
  background: linear-gradient(135deg, var(--conversion-green-hover), #047857);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

/* ========== ENTERPRISE PLAN ========== */
.enterprise-plan-card {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 3px solid #3b82f6;
  border-radius: 20px;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
  transition: all 0.3s ease;
}

.enterprise-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.25);
}

.enterprise-badge-top {
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  padding: 6px 18px;
  border-radius: 0 0 8px 8px;
  font-size: 0.7em;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
  z-index: 10;
}

.enterprise-content {
  padding: 50px 35px 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  justify-content: space-between;
}

.enterprise-icon {
  font-size: 4em;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.2));
}

.enterprise-title {
  font-size: 1.5em;
  font-weight: 800;
  color: #1e3a8a;
  margin: 0 0 10px 0;
  letter-spacing: -0.3px;
}

.enterprise-subtitle {
  font-size: 0.95em;
  color: #64748b;
  margin: 0 0 25px 0;
  line-height: 1.5;
  font-weight: 500;
}

.enterprise-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 25px;
  width: 100%;
  max-width: 350px;
}

.enterprise-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  background: #ffffff;
  border: 2px solid #93c5fd;
  border-radius: 10px;
  font-size: 0.88em;
  font-weight: 600;
  color: #1e3a8a;
  transition: all 0.3s ease;
  text-align: center;
}

.enterprise-feature:hover {
  background: #f0f9ff;
  border-color: #60a5fa;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.feature-icon {
  font-size: 1.4em;
  color: #3b82f6;
  font-weight: 800;
}

.enterprise-cta-btn {
  width: 100%;
  max-width: 300px;
  padding: 16px 28px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 0.95em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
  position: relative;
}

.enterprise-cta-btn:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.enterprise-cta-btn::after {
  content: '→';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3em;
  transition: transform 0.3s ease;
}

.enterprise-cta-btn:hover::after {
  transform: translate(5px, -50%);
}

.enterprise-note {
  font-size: 0.82em;
  color: #64748b;
  margin: 15px 0 0 0;
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
}

/* ========== ADDON NOTE ========== */
.addon-note-clean {
  background: #fff;
  border: 2px dashed #ffd699;
  border-radius: 10px;
  padding: 15px 20px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9em;
  color: #666;
  justify-content: center;
}

.addon-icon-clean {
  font-size: 1.5em;
  flex-shrink: 0;
}

.addon-note-clean a {
  color: var(--cta);
  font-weight: 700;
  text-decoration: underline;
}

/* ========== TRUST & SOCIAL PROOF ========== */
.trust-badges-inline {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px dashed #e0e0e0;
}

.trust-badge-inline {
  font-size: 0.9em;
  color: #666;
  font-weight: 600;
}

.social-proof-bar {
  box-shadow: unset;
  border: 2px dashed #e0e0e0;
}

/* ========== SOFTWARE SECTION ========== */
.software-section-compact {
  background: linear-gradient(135deg, var(--seedbox-light-bg) 0%, #fff 100%);
  border-radius: 24px;
  padding: 45px 40px;
  margin: 50px 0;
  box-shadow: 0 8px 32px rgba(0, 168, 204, 0.08);
  border: 2px solid var(--seedbox-border);
  transition: all 0.3s ease;
}

.software-section-compact:hover {
  box-shadow: 0 12px 40px rgba(0, 168, 204, 0.12);
}

.section-header-simple {
  text-align: center;
  margin-bottom: 35px;
}

.section-header-simple h2 {
  font-size: 2em;
  font-weight: 800;
  color: var(--seedbox-text);
  margin: 0 0 18px 0;
  letter-spacing: -0.5px;
}

.section-header-simple p {
  font-size: 1.05em;
  color: var(--seedbox-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header-simple a {
  color: var(--seedbox-primary);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  padding-bottom: 2px;
}

.section-header-simple a:hover {
  border-bottom-color: var(--seedbox-primary);
  color: var(--seedbox-secondary);
}

.software-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));
  gap: 20px;
  margin-top: 35px;
}

.software-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: #fff;
  border: 2px solid var(--seedbox-border);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.software-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--seedbox-primary), var(--seedbox-secondary));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.software-item:hover::before {
  transform: scaleX(1);
}

.software-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 168, 204, 0.15);
  border-color: var(--seedbox-primary);
}

.software-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 8px rgba(0, 168, 204, 0.15));
  transition: all 0.3s ease;
}

.software-item:hover .software-logo {
  transform: scale(1.12);
  filter: drop-shadow(0 4px 12px rgba(0, 168, 204, 0.25));
}

.software-name {
  font-size: 0.95em;
  font-weight: 700;
  color: var(--seedbox-text);
  text-align: center;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.software-item:hover .software-name {
  color: var(--seedbox-primary);
}

/* ========== USE CASES ========== */
.use-cases-compact {
  margin: 50px 0;
}

.section-title-simple {
  font-size: 2em;
  font-weight: 800;
  color: var(--seedbox-text);
  text-align: center;
  margin: 0 0 40px 0;
  letter-spacing: -0.5px;
}

.use-cases-grid-simple {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding-top:20px;
}

.use-case-simple {
  background: #fff;
  border: 2px solid var(--seedbox-border);
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.use-case-simple::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--seedbox-primary), var(--seedbox-secondary));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.use-case-simple:hover::before {
  transform: scaleX(1);
}

.use-case-simple:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 168, 204, 0.15);
  border-color: var(--seedbox-primary);
}

.use-icon {
  font-size: 2.5em;
  display: block;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 8px rgba(0, 168, 204, 0.2));
  transition: transform 0.3s ease;
}

.use-case-simple:hover .use-icon {
  transform: scale(1.15);
}

.use-case-simple strong {
  font-size: 1.15em;
  font-weight: 800;
  color: var(--seedbox-text);
  display: block;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.use-case-simple p {
  font-size: 0.95em;
  color: var(--seedbox-muted);
  line-height: 1.6;
  margin: 0;
}

/* ========== WORKLOAD ROUTER ========== */
.workload-router-final {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border: 3px solid #fca5a5;
  border-radius: 20px;
  padding: 45px 40px;
  margin: 50px 0;
  box-shadow: 0 8px 24px rgba(252, 165, 165, 0.15);
}

.router-header-final {
  text-align: center;
  margin-bottom: 35px;
}

.router-header-final h3 {
  font-size: 2em;
  font-weight: 800;
  color: #dc2626;
  margin: 0 0 15px 0;
  letter-spacing: -0.5px;
}

.router-subtitle-final {
  font-size: 1.05em;
  color: #64748b;
  margin: 0;
  font-weight: 500;
}

.router-subtitle-final strong {
  color: #991b1b;
  font-weight: 800;
}

.prohibited-banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 25px;
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  border: 2px solid #f87171;
  border-radius: 12px;
  margin: 30px 0;
}

.prohibited-tag {
  padding: 10px 18px;
  background: #ffffff;
  border: 2px solid #dc2626;
  border-radius: 8px;
  font-size: 0.9em;
  font-weight: 700;
  color: #991b1b;
  transition: all 0.3s ease;
}

.prohibited-tag:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.2);
}

.routing-intro {
  text-align: center;
  font-size: 1.1em;
  color: #64748b;
  font-weight: 600;
  margin: 35px 0 30px 0;
}

.routing-grid-final {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 950px;
  margin: 0 auto;
}

.route-item-final {
  display: grid;
  grid-template-columns: 2fr auto 2fr;
  gap: 20px;
  align-items: center;
  padding: 20px 24px;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.route-item-final:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.workload-box-final {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #fef2f2;
  border: 2px solid #dc2626;
  border-radius: 10px;
  position: relative;
}

.workload-box-final::before {
  content: '✗';
  position: absolute;
  top: -12px;
  right: -12px;
  background: #dc2626;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  font-weight: 800;
  box-shadow: 0 3px 10px rgba(220, 38, 38, 0.4);
  z-index: 10;
}

.workload-box-final.multi {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  padding: 14px 16px;
}

.workload-tag-final {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #ffffff;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.workload-tag-final:hover {
  background: #fef2f2;
  border-color: #f87171;
}

.workload-icon-final {
  font-size: 1.4em;
  flex-shrink: 0;
}

.workload-name-final {
  font-size: 0.95em;
  font-weight: 700;
  color: #1f2937;
}

.route-arrow-final {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  pointer-events: none;
}

.solution-box-final {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
  border: 2px solid transparent;
  position: relative;
  z-index: 1;
}

.solution-box-final:hover {
  transform: translateX(8px) scale(1.02);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
  border-color: #047857;
  z-index: 10;
}

.solution-box-final.encoding {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.solution-box-final.encoding:hover {
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  border-color: #1d4ed8;
}

.solution-box-final.dedicated {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

.solution-box-final.dedicated:hover {
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
  border-color: #b45309;
}

.solution-box-final.vps {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
}

.solution-box-final.vps:hover {
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
  border-color: #6d28d9;
}

.solution-icon-final {
  font-size: 1.5em;
  flex-shrink: 0;
}

.solution-name-final {
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.router-footer-final {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px dashed #fca5a5;
}

.router-footer-final p {
  font-size: 1em;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

.router-footer-final a {
  color: #10b981;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.router-footer-final a:hover {
  border-bottom-color: #10b981;
  color: #059669;
}

/* ========== FAQ SECTION ========== */
.faq-section-open {
  background: #fff;
  border-radius: 20px;
  padding: 45px;
  margin-bottom: 35px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.faq-grid-open {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.faq-item-open {
  background: #fff;
  border: 2px solid var(--seedbox-border);
  border-radius: 16px;
  padding: 26px 28px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.faq-item-open::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--seedbox-primary), var(--seedbox-secondary));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.faq-item-open:hover::before {
  transform: scaleX(1);
}

.faq-item-open:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 168, 204, 0.15);
  border-color: var(--seedbox-primary);
}

.faq-q-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.faq-icon {
  font-size: 1.4em;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--seedbox-light-bg), #fff);
  border-radius: 12px;
  border: 2px solid var(--seedbox-border);
  transition: all 0.3s ease;
}

.faq-item-open:hover .faq-icon {
  background: var(--seedbox-primary);
  border-color: var(--seedbox-primary);
  transform: scale(1.08);
  filter: drop-shadow(0 4px 12px rgba(0, 168, 204, 0.3));
}

.faq-q-header strong {
  font-size: 1.05em;
  font-weight: 800;
  color: var(--seedbox-text);
  line-height: 1.4;
  flex: 1;
}

.faq-answer-text {
  font-size: 0.95em;
  color: var(--seedbox-muted);
  line-height: 1.7;
  margin: 0;
  padding-left: 58px;
}

.faq-answer-text a {
  color: var(--cta);
  font-weight: 700;
  text-decoration: underline;
}

/* ========== COMPARISON & TRUST ========== */
.snt-comparison {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  border: 2px solid #ffb74d;
  border-radius: 20px;
  padding: 40px;
  margin: 35px 0;
  text-align: center;
}

.snt-comparison-title {
  font-size: 1.8em;
  color: var(--text);
  margin: 0 0 10px 0;
  font-weight: 800;
}

.snt-comparison p {
  color: #666;
  margin: 0 0 25px 0;
  font-size: 1em;
}

.snt-comparison-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.snt-comparison-link {
  padding: 12px 24px;
  background: #fff;
  color: var(--cta);
  border: 2px solid var(--cta);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95em;
  transition: all 0.3s ease;
}

.snt-comparison-link:hover {
  background: var(--cta);
  color: #fff;
  transform: translateY(-3px);
}

.payment-trust-section {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.trust-title {
  font-size: 1.3em;
  color: var(--text);
  margin-bottom: 25px;
  font-weight: 700;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  flex-wrap: wrap;
}

.trust-logos img {
  height: 32px;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.trust-logos img:hover {
  opacity: 1;
  filter: none;
  transform: scale(1.05);
}

/* ========== SECTION DIVIDER ========== */
.section-divider-icon {
  text-align: center;
  margin: 50px 0;
  font-size: 1.5em;
  color: #5d3b22;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .custom-split-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .enterprise-content {
    padding: 45px 30px 40px;
  }

  .enterprise-features {
    max-width: 380px;
  }
}

@media (max-width: 1024px) {
  .faq-grid-open {
    gap: 20px;
  }
  
  .software-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  }
}

@media (max-width: 900px) {
  .route-item-final {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .route-arrow-final {
    transform: rotate(90deg);
  }

  .route-arrow-final svg {
    width: 40px;
    height: 60px;
  }

  .workload-box-final,
  .solution-box-final {
    justify-content: center;
    margin: 0 auto;
    max-width: 450px;
  }

  .solution-box-final:hover {
    transform: translateY(-5px) scale(1.02);
  }
}

@media (max-width: 768px) {
  .snt-rdp-container {
    padding: 30px 15px;
  }
  
  .snt-hero-compact h1 {
    font-size: 2.2em;
  }
  
  .snt-product-card,
  .software-section-compact,
  .use-cases-compact,
  .faq-section-open {
    padding: 30px 20px;
  }
  
  .storage-grid-clean {
    grid-template-columns: 1fr;
  }

  .storage-card-front {
    padding: 34px 20px 28px;
  }

  .custom-config-header {
    padding: 38px 22px 28px;
  }

  .custom-config-slider-grid {
    padding: 24px 22px 0;
  }

  .custom-config-form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 22px 28px;
  }

  .custom-price-summary,
  .custom-checkout-btn {
    grid-column: 1;
  }

  .custom-addon-card,
  .config-addon {
    min-height: auto;
  }

  .enterprise-features,
  .enterprise-content {
    max-width: 100%;
    padding: 40px 25px 35px;
  }
  
  .faq-grid-open {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq-answer-text {
    padding-left: 0;
    margin-top: 10px;
  }
  
  .use-cases-grid-simple {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  
  .software-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 16px;
  }
  
  .software-item {
    padding: 20px 12px;
  }
  
  .software-logo {
    width: 48px;
    height: 48px;
  }
  
  .software-name {
    font-size: 0.9em;
  }
  
  .section-title-simple,
  .section-header-simple h2,
  .faq-section-open .section-title-simple,
  .use-cases-compact .section-title-simple {
    font-size: 1.7em;
  }
  
  .faq-item-open {
    padding: 22px 24px;
  }
  
  .software-section-compact {
    padding: 35px 28px;
  }

  .workload-router-final {
    padding: 35px 25px;
  }

  .router-header-final h3 {
    font-size: 1.7em;
  }

  .routing-grid-final {
    gap: 20px;
  }

  .route-item-final {
    padding: 18px 16px;
  }

  .prohibited-banner {
    padding: 20px;
  }

  .prohibited-tag {
    font-size: 0.85em;
    padding: 8px 14px;
  }
}

@media (max-width: 480px) {
  .snt-hero-compact h1 {
    font-size: 1.8em;
  }
  
  .storage-size-clean {
    font-size: 1.6em;
  }
  
  .custom-storage-display {
    font-size: 1.6em;
  }
  
  .custom-price-display {
    font-size: 1.8em;
  }

  .custom-badge-top,
  .enterprise-badge-top {
    font-size: 0.65em;
    padding: 5px 14px;
  }

  .custom-slider-wrapper {
    padding: 0 10px;
  }

  .enterprise-features {
    grid-template-columns: 1fr;
    max-width: 280px;
  }

  .enterprise-feature {
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    text-align: left;
  }

  .enterprise-icon {
    font-size: 3.2em;
  }
  
  .section-title-simple,
  .section-header-simple h2,
  .faq-section-open .section-title-simple,
  .use-cases-compact .section-title-simple {
    font-size: 1.5em;
  }
  
  .use-cases-grid-simple {
    grid-template-columns: 1fr;
  }
  
  .software-grid {
    grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
    gap: 12px;
  }
  
  .software-item {
    padding: 16px 10px;
  }
  
  .software-logo {
    width: 42px;
    height: 42px;
  }
  
  .software-name {
    font-size: 0.85em;
  }
  
  .faq-q-header {
    align-items: flex-start;
  }
  
  .faq-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2em;
  }
  
  .faq-column {
    gap: 20px;
  }
  
  .software-section-compact {
    padding: 28px 20px;
    margin: 40px 0;
  }
  
  .section-header-simple p {
    font-size: 0.95em;
  }
  
  .prohibited-banner {
    flex-direction: column;
    align-items: stretch;
  }
  
  .prohibited-tag {
    text-align: center;
  }

  .workload-router-final {
    padding: 28px 18px;
  }

  .router-header-final h3 {
    font-size: 1.5em;
  }

  .router-subtitle-final {
    font-size: 0.95em;
  }

  .workload-box-final,
  .solution-box-final {
    max-width: 100%;
  }

  .workload-icon-final,
  .solution-icon-final {
    font-size: 1.2em;
  }

  .workload-name-final,
  .solution-name-final {
    font-size: 0.9em;
  }
}


/* ========== ACCESSIBILITY ========== */
.faq-item-open:focus-within,
.use-case-simple:focus-within,
.software-item:focus {
  outline: 3px solid var(--seedbox-primary);
  outline-offset: 2px;
}

/* ========== SMOOTH INTERACTIONS ========== */
* {
  -webkit-tap-highlight-color: transparent;
}

.solution-box-final:active {
  transform: scale(0.98);
}

html {
  scroll-behavior: smooth;
}

/* ========== PRINT STYLES ========== */
@media print {
  .faq-item-open,
  .use-case-simple,
  .software-section-compact,
  .software-item {
    page-break-inside: avoid;
  }
}
.hidden-custom {
  display: none !important;
}

.tooltip-bubble {
  position: fixed;
  background: #1a1a1a;
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  max-width: 260px;
  z-index: 999999;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  white-space: normal;
  animation: fadeIn 0.15s ease-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Pricing container */
.storage-price-container {
  text-align: center;
  margin: 12px 0 14px;
}

/* Original price inline */
.price-inline {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 2px;
}

.price-label {
  font-size: 0.65em;
  color: #6b7280;
}

/* Main sale price */
.new-price {
  font-size: 2.35em;
  font-weight: 900;
  color: var(--cta);
  line-height: 1;
  margin-top: 4px;
}

.new-price .currency {
  font-size: 0.45em;
  vertical-align: super;
}

.new-price .period {
  font-size: 0.45em;
  opacity: 0.8;
}

/* Small clean badge */
.deal-badge {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  color: #15803d;
  font-size: 0.75em;
  padding: 6px 12px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 6px;
  font-weight: 800;
  border: 1px solid #86efac;
  box-shadow: 0 2px 6px rgba(34, 197, 94, 0.15);
}
.old-price-wrapper {
  font-size: 1.1em;
  color: #4b5563;
  margin-bottom: 8px;
  font-weight: 700;
  text-align: center;
}

.old-price {
  text-decoration: line-through;
  text-decoration-color: #ef4444;
  text-decoration-thickness: 2px;
  font-weight: 800;
  margin-right: 6px;
  font-size: 1.15em;
  color: #6b7280;
}

.old-price-label {
  font-size: 0.7em;
  opacity: 0.85;
  color: #6b7280;
  font-weight: 600;
}


/* Hero Meta Pills */
.snt-hero-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: nowrap;
}

.snt-hero-meta-left {
  order: 1;
}

.snt-hero-meta-right {
  order: 3;
}

.snt-hero-top {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.snt-hero-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: nowrap;
}

@media (max-width: 1130px) {
    .snt-hero-top {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 10px;
        align-items: center;
    }
    .snt-hero-meta-left {
        grid-column: 1;
        justify-content: flex-start;
    }

    .snt-hero-meta-right {
        grid-column: 3;
        justify-content: flex-end;
    }

    /* Badge stays centered */
    .snt-hero-badge {
        grid-column: 2;
        justify-self: center;
    }

    /* Prevent wrapping icons on mobile */
    .snt-hero-meta {
        flex-wrap: nowrap;
    }
}
@media (max-width: 690px) {
    .snt-hero-top {
        display: none !important;
    }
}
  
  

@media (max-width: 950px) {
  .snt-hero-meta {
    flex-direction: column;
    gap: 12px;
  }

  .snt-hero-meta-item {
    width: 100%;
    justify-content: center;
  }
  }