/* Rent vs Buy Calculator Styles */

/* Hero */
.rvb-hero {
  background: linear-gradient(135deg, #1E3A5F 0%, #1E88E5 60%, #8B5CF6 100%);
  color: white;
  padding: 80px 0 60px;
  text-align: center;
}

.rvb-hero h1 {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
}

.rvb-hero .lead {
  font-size: 1.15rem;
  opacity: 0.92;
  margin-bottom: 32px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.rvb-hero-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0;
}

.rvb-hero-badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 24px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Calculator Section */
.rvb-calculator-section {
  padding: 48px 0;
  background: #f8faff;
}

/* Calculator Card */
.rvb-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.rvb-card-header {
  text-align: center;
  margin-bottom: 2rem;
}

.rvb-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.rvb-card-subtitle {
  color: #6b7280;
  font-size: 0.9rem;
}

/* Section headings inside the card */
.rvb-section-heading {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8B5CF6;
  margin: 24px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rvb-section-heading:first-child {
  margin-top: 0;
}

.rvb-section-sub {
  color: #374151;
}

/* Scenario grouping */
.rvb-scenario-group {
  border-left: 3px solid #e5e7eb;
  padding-left: 16px;
  margin-bottom: 8px;
}
.rvb-scenario-buy   { border-left-color: #1E88E5; }
.rvb-scenario-rent  { border-left-color: #8B5CF6; }
.rvb-scenario-shared { border-left-color: #9ca3af; }

.rvb-scenario-badge {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: #6b7280;
  background: #f3f4f6;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 8px;
}

/* Form */
.rvb-form-group {
  margin-bottom: 1.5rem;
}

.rvb-form-label {
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  display: block;
  font-size: 0.92rem;
}

.rvb-form-input {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.98rem;
  transition: all 0.3s ease;
  background: white;
  width: 100%;
  font-family: 'Inter', sans-serif;
}

.rvb-form-input:focus {
  outline: none;
  border-color: var(--ai-purple);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
  transform: translateY(-1px);
}

.rvb-form-hint {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-top: 4px;
}

.rvb-value-display {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-align: right;
  min-width: 110px;
}

.rvb-dp-pln-display {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 2px;
  font-weight: 600;
}

.rvb-slider-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rvb-slider-row input[type="range"] {
  flex: 1;
}

/* Custom Range Slider */
input[type="range"].rvb-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #e5e7eb;
  outline: none;
  margin: 8px 0;
}

input[type="range"].rvb-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-gradient);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(30, 136, 229, 0.4);
  transition: transform 0.15s ease;
}

input[type="range"].rvb-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

input[type="range"].rvb-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-gradient);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(30, 136, 229, 0.4);
}

/* Primary Button */
.btn-rvb-primary {
  background: var(--primary-gradient);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  margin-top: 16px;
}

.btn-rvb-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.btn-rvb-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Disclaimer */
.rvb-disclaimer {
  background: #fff8e1;
  border: 1px solid #ffd54f;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.82rem;
  color: #5d4037;
  margin-top: 24px;
  line-height: 1.6;
}

/* Result Card */
.rvb-result-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  border: 2px solid #e5e7eb;
  margin-top: 24px;
}

/* Break-even highlight box */
.rvb-breakeven-highlight {
  background: linear-gradient(135deg, #1E3A5F 0%, #1E88E5 60%, #8B5CF6 100%);
  color: white;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  margin-bottom: 28px;
}

.rvb-breakeven-label {
  font-size: 0.82rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 8px;
}

.rvb-breakeven-value {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 8px;
}

.rvb-breakeven-sub {
  font-size: 0.95rem;
  opacity: 0.92;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Two-column big stats */
.rvb-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.rvb-result-stat {
  background: #f8faff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 1px solid #e5e7eb;
}

.rvb-result-stat-buy {
  border-left: 4px solid #1E88E5;
}

.rvb-result-stat-rent {
  border-left: 4px solid #8B5CF6;
}

.rvb-result-stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  font-weight: 700;
  margin-bottom: 8px;
}

.rvb-result-stat-value {
  font-size: 1.6rem;
  font-weight: 900;
  color: #1E3A5F;
  line-height: 1.1;
}

.rvb-result-stat-sub {
  font-size: 0.82rem;
  color: #64748b;
  margin-top: 4px;
}

/* Recommendation box */
.rvb-recommendation {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.rvb-recommendation-buy {
  background: linear-gradient(135deg, #ecfdf5 0%, #f0f9ff 100%);
  border: 1px solid #10b981;
  color: #065f46;
}

.rvb-recommendation-rent {
  background: linear-gradient(135deg, #f5f3ff 0%, #fef3c7 100%);
  border: 1px solid #8B5CF6;
  color: #5b21b6;
}

.rvb-recommendation-neutral {
  background: linear-gradient(135deg, #fef3c7 0%, #fff8e1 100%);
  border: 1px solid #f59e0b;
  color: #92400e;
}

.rvb-recommendation-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rvb-recommendation-text {
  font-size: 0.98rem;
  flex: 1;
}

.rvb-recommendation-warning {
  flex-basis: 100%;
  margin-top: 16px;
  padding: 14px 16px;
  background: #fffbeb;
  border: 1px solid #f59e0b;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  color: #92400e;
  font-size: 0.9rem;
  line-height: 1.55;
}

.rvb-recommendation-warning strong {
  color: #7c2d12;
}

/* Cross-link banner to quiz */
.rvb-quiz-banner {
  background: linear-gradient(135deg, #faf5ff 0%, #f0f9ff 100%);
  border: 1px solid #ddd6fe;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: #374151;
}

.rvb-quiz-banner a {
  color: #7c3aed;
  font-weight: 700;
  text-decoration: none;
}

.rvb-quiz-banner a:hover {
  text-decoration: underline;
}

/* Breakdown table */
.rvb-breakdown-section {
  margin-bottom: 24px;
}

.rvb-breakdown-title {
  font-size: 1rem;
  font-weight: 800;
  color: #1E3A5F;
  margin-bottom: 12px;
}

.rvb-breakdown-wrapper {
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}

.rvb-breakdown-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 600px;
}

.rvb-breakdown-table thead th {
  background: #1E3A5F;
  color: white;
  padding: 12px 14px;
  font-weight: 700;
  text-align: right;
  font-size: 0.82rem;
}

.rvb-breakdown-table thead th:first-child {
  text-align: left;
}

.rvb-breakdown-table tbody td {
  padding: 11px 14px;
  border-bottom: 1px solid #f1f5f9;
  color: #374151;
  text-align: right;
}

.rvb-breakdown-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: #1E3A5F;
}

.rvb-breakdown-table tbody tr:nth-child(even) td {
  background: #f8faff;
}

.rvb-breakdown-table td.rvb-winning {
  color: #059669;
  font-weight: 800;
  background: #ecfdf5 !important;
}

/* Bar chart */
.rvb-bar-chart {
  background: #f8faff;
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 24px;
  border: 1px solid #e5e7eb;
}

.rvb-chart-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #1E3A5F;
  margin-bottom: 16px;
  text-align: center;
}

.rvb-chart-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.rvb-chart-label {
  width: 100px;
  flex-shrink: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1E3A5F;
  display: flex;
  align-items: center;
  gap: 6px;
}

.rvb-chart-bar-wrapper {
  flex: 1;
  background: #e5e7eb;
  border-radius: 8px;
  height: 40px;
  position: relative;
  overflow: hidden;
}

.rvb-chart-bar {
  height: 100%;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding-right: 12px;
  justify-content: flex-end;
  transition: width 0.8s ease;
  min-width: 40px;
}

.rvb-chart-bar-buy {
  background: linear-gradient(90deg, #1E88E5 0%, #1E3A5F 100%);
}

.rvb-chart-bar-rent {
  background: linear-gradient(90deg, #8B5CF6 0%, #6d28d9 100%);
}

.rvb-chart-bar-winning {
  box-shadow: 0 0 0 3px #10b981, 0 4px 12px rgba(16, 185, 129, 0.3);
}

.rvb-chart-value {
  color: white;
  font-weight: 800;
  font-size: 0.88rem;
  white-space: nowrap;
}

.rvb-chart-legend {
  font-size: 0.8rem;
  color: #64748b;
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* Save & Compare */
.rvb-save-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.btn-rvb-secondary {
  padding: 11px 22px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  background: white;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.btn-rvb-secondary:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

/* Saved scenarios grid */
.rvb-saved-title {
  font-weight: 800;
  color: #1E3A5F;
  font-size: 1rem;
  margin-bottom: 16px;
  margin-top: 8px;
}

.rvb-compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.rvb-compare-card {
  background: #f8faff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px 16px 16px;
  text-align: center;
  position: relative;
}

.rvb-compare-remove {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 2px;
  font-size: 1.2rem;
  line-height: 1;
}

.rvb-compare-remove:hover {
  color: #dc2626;
}

.rvb-compare-big {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.rvb-compare-big.buy-wins {
  color: #1E88E5;
}

.rvb-compare-big.rent-wins {
  color: #8B5CF6;
}

.rvb-compare-sub {
  font-size: 0.82rem;
  color: #64748b;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e7eb;
}

.rvb-compare-detail {
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 3px;
  text-align: left;
}

/* Educational Section */
.rvb-edu-section {
  padding: 64px 0;
  background: white;
}

.rvb-edu-section h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1E3A5F;
  margin-bottom: 16px;
}

.rvb-edu-section h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1E3A5F;
  margin: 28px 0 12px;
}

.rvb-edu-section p {
  color: #555;
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.rvb-edu-definition {
  background: linear-gradient(135deg, #f0f7ff 0%, #f5f3ff 100%);
  border-left: 4px solid var(--primary-blue);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 20px 0 32px;
  font-size: 1.02rem;
  line-height: 1.8;
  color: #1E3A5F;
}

.rvb-edu-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
}

.rvb-edu-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
}

.rvb-edu-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px;
  height: 22px;
  background: #ecfdf5;
  color: #10b981;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.82rem;
}

.rvb-edu-list.rvb-edu-list-cons li::before {
  content: '\00d7';
  background: #fef2f2;
  color: #dc2626;
  font-size: 1rem;
}

/* Steps */
.rvb-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 24px 0 0;
}

.rvb-step-card {
  background: #f8faff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.rvb-step-num {
  width: 48px;
  height: 48px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 12px;
}

.rvb-step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1E3A5F;
  margin-bottom: 8px;
  margin-top: 0;
}

.rvb-step-card p {
  color: #64748b;
  font-size: 0.88rem;
  margin: 0;
}

/* FAQ Section */
.rvb-faq-section {
  background: #f8faff;
  padding: 64px 0;
}

.rvb-faq-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1E3A5F;
  text-align: center;
  margin-bottom: 12px;
}

.rvb-faq-lead {
  text-align: center;
  color: #64748b;
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.rvb-faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: white;
}

.rvb-faq-question {
  padding: 18px 24px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1E3A5F;
  font-size: 0.95rem;
  transition: background 0.15s;
}

.rvb-faq-question:hover {
  background: #f0f7ff;
}

.rvb-faq-answer {
  padding: 0 24px 0;
  color: #555;
  font-size: 0.93rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  line-height: 1.7;
}

.rvb-faq-answer.open {
  max-height: 1500px;
  padding: 0 24px 18px;
}

.rvb-faq-chevron {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.rvb-faq-question.active .rvb-faq-chevron {
  transform: rotate(180deg);
}

/* Expert CTA */
.rvb-expert-cta {
  background: linear-gradient(135deg, #f8faff 0%, #f5f3ff 100%);
  border: 2px dashed #8B5CF6;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin: 32px 0;
}

.rvb-expert-cta h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1E3A5F;
  margin-bottom: 8px;
}

.rvb-expert-cta p {
  color: #64748b;
  margin-bottom: 20px;
  font-size: 0.98rem;
}

/* Related calculators grid */
.rvb-related-section {
  padding: 64px 0;
  background: white;
}

.rvb-related-section h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1E3A5F;
  text-align: center;
  margin-bottom: 32px;
}

.rvb-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.rvb-related-card {
  background: #f8faff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  display: block;
}

.rvb-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(30, 136, 229, 0.12);
  border-color: #1E88E5;
  color: inherit;
}

.rvb-related-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 14px;
}

.rvb-related-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1E3A5F;
  margin-bottom: 6px;
}

.rvb-related-card p {
  font-size: 0.88rem;
  color: #64748b;
  margin: 0;
}

/* Final CTA */
.rvb-final-cta {
  background: var(--primary-gradient);
  color: white;
  padding: 64px 0;
  text-align: center;
}

.rvb-final-cta h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.rvb-final-cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 28px;
}

.rvb-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-rvb-cta-white {
  background: white;
  color: var(--primary-blue);
  border: none;
  border-radius: 10px;
  padding: 16px 28px;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-rvb-cta-white:hover {
  background: #f0f7ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  color: var(--primary-blue);
}

.btn-rvb-cta-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-rvb-cta-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  color: white;
  transform: translateY(-2px);
}

/* Toast notification */
.rvb-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

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

.rvb-toast-content {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1e293b;
  color: #fff;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 0.95rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  max-width: 440px;
}

/* Responsive */
@media (max-width: 991px) {
  .rvb-card {
    padding: 1.5rem;
  }

  .rvb-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rvb-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .rvb-hero {
    padding: 56px 0 44px;
  }

  .rvb-hero h1 {
    font-size: 1.9rem;
  }

  .rvb-hero .lead {
    font-size: 1rem;
  }

  .rvb-result-grid {
    grid-template-columns: 1fr;
  }

  .rvb-result-card {
    padding: 20px;
  }

  .rvb-breakeven-value {
    font-size: 2.2rem;
  }

  .rvb-breakeven-highlight {
    padding: 22px 16px;
  }

  .rvb-recommendation {
    flex-direction: column;
    gap: 10px;
    padding: 16px;
  }

  .rvb-related-grid {
    grid-template-columns: 1fr;
  }

  .rvb-steps {
    grid-template-columns: 1fr;
  }

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

  .rvb-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .rvb-chart-label {
    width: 80px;
    font-size: 0.8rem;
  }

  .rvb-chart-value {
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .rvb-hero h1 {
    font-size: 1.6rem;
  }

  .rvb-result-stat-value {
    font-size: 1.3rem;
  }

  .rvb-breakeven-value {
    font-size: 1.8rem;
  }

  .rvb-card-title {
    font-size: 1.15rem;
  }
}
