/* ROI Calculator Styles */

.roi-calculator-page {
  overflow-x: hidden;
}

/* Hero Section */
.roi-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  overflow: hidden;
  padding: 6rem 2rem;
}

.roi-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: roi-float 25s ease-in-out infinite;
  pointer-events: none;
}

.roi-orb-1 {
  top: 10%;
  left: 15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.5) 0%, transparent 70%);
  animation-delay: 0s;
}

.roi-orb-2 {
  top: 40%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
  animation-delay: -8s;
}

.roi-orb-3 {
  bottom: 15%;
  left: 45%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
  animation-delay: -16s;
}

@keyframes roi-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(60px, -60px) scale(1.15); }
  50% { transform: translate(-40px, 40px) scale(0.9); }
  75% { transform: translate(50px, 25px) scale(1.08); }
}

.roi-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.roi-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.5rem;
  background: rgba(139, 92, 246, 0.2);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(139, 92, 246, 0.5);
  border-radius: 50px;
  color: #e9d5ff;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
}

.roi-badge svg {
  color: #fbbf24;
  flex-shrink: 0;
}

.roi-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
  color: #ffffff;
  margin: 0 0 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.roi-gradient-text {
  background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 50%, #c4b5fd 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: roi-gradient-shift 6s ease infinite;
  display: inline-block;
}

@keyframes roi-gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.roi-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  margin: 0;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Calculator Section */
.roi-calculator-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.roi-calculator-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.roi-calculator-card,
.roi-results-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--roi-gray-200);
  position: sticky;
  top: 2rem;
}

.roi-card-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.roi-card-title {
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--roi-gray-900);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.roi-card-subtitle {
  color: var(--roi-gray-600);
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

.roi-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.roi-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.roi-label {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--roi-gray-900);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.roi-label svg {
  color: var(--roi-purple-600);
  flex-shrink: 0;
}

.roi-input {
  padding: 1rem 1.25rem;
  border: 2px solid var(--roi-gray-200);
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  color: var(--roi-gray-900);
  background: #ffffff;
  transition: all 0.3s ease;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}

.roi-input::-webkit-outer-spin-button,
.roi-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.roi-input:focus {
  outline: none;
  border-color: var(--roi-purple-600);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.roi-input-hint {
  font-size: 0.875rem;
  color: var(--roi-gray-600);
  font-style: italic;
}

.roi-calculate-btn {
  width: 100%;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: #ffffff;
  border: none;
  border-radius: 14px;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.4);
}

.roi-calculate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 50px rgba(139, 92, 246, 0.6);
}

.roi-calculate-btn:active {
  transform: translateY(0);
}

/* Results Card */
.roi-results-card {
  background: linear-gradient(135deg, #faf5ff 0%, #ffffff 100%);
  border: 2px solid var(--roi-purple-600);
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.roi-results-card.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.roi-results-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.roi-results-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.roi-results-title {
  font-size: 1.75rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--roi-gray-900);
  margin: 0;
}

.roi-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.roi-metric-card {
  background: #ffffff;
  border: 2px solid var(--roi-gray-200);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.roi-metric-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.15);
  border-color: var(--roi-purple-600);
}

.roi-metric-primary {
  grid-column: span 2;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  border: none;
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.4);
}

.roi-metric-primary .roi-metric-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.roi-metric-primary .roi-metric-label,
.roi-metric-primary .roi-metric-value {
  color: #ffffff;
}

.roi-metric-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  color: var(--roi-purple-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.roi-metric-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.roi-metric-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--roi-gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.roi-metric-value {
  font-size: 2.25rem;
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--roi-gray-900);
  line-height: 1;
  letter-spacing: -0.02em;
}

/* Breakdown */
.roi-breakdown {
  background: rgba(139, 92, 246, 0.05);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.roi-breakdown-title {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--roi-gray-900);
  margin: 0 0 1.5rem;
}

.roi-breakdown-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.roi-breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.roi-breakdown-item:last-child {
  border-bottom: none;
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 2px solid rgba(139, 92, 246, 0.2);
}

.roi-breakdown-label {
  font-size: 0.9375rem;
  color: var(--roi-gray-700);
  font-weight: 500;
}

.roi-breakdown-value {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--roi-gray-900);
}

.roi-breakdown-highlight {
  color: var(--roi-purple-600);
  font-size: 1.375rem;
}

.roi-get-report-btn {
  width: 100%;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border: none;
  border-radius: 14px;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.4);
}

.roi-get-report-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 50px rgba(16, 185, 129, 0.6);
}

/* Modal */
.roi-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.roi-modal.active {
  opacity: 1;
  visibility: visible;
}

.roi-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
}

.roi-modal-content {
  position: relative;
  z-index: 10001;
  background: #ffffff;
  border-radius: 24px;
  padding: 3rem;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.roi-modal.active .roi-modal-content {
  transform: scale(1);
}

.roi-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--roi-gray-100);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--roi-gray-600);
  transition: all 0.3s ease;
}

.roi-modal-close:hover {
  background: var(--roi-gray-200);
  color: var(--roi-gray-900);
  transform: rotate(90deg);
}

.roi-modal-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.roi-modal-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  color: var(--roi-purple-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.2);
}

.roi-modal-title {
  font-size: 1.875rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--roi-gray-900);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.roi-modal-subtitle {
  color: var(--roi-gray-600);
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

.roi-lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.roi-lead-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.roi-checkbox-group {
  margin-top: 0.5rem;
}

.roi-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  cursor: pointer;
  user-select: none;
}

.roi-checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.roi-checkbox-custom {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid var(--roi-gray-300);
  border-radius: 6px;
  background: #ffffff;
  transition: all 0.3s ease;
  position: relative;
  margin-top: 2px;
}

.roi-checkbox-label input[type="checkbox"]:checked + .roi-checkbox-custom {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  border-color: var(--roi-purple-600);
}

.roi-checkbox-label input[type="checkbox"]:checked + .roi-checkbox-custom::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 7px;
  width: 5px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.roi-checkbox-text {
  font-size: 0.9375rem;
  color: var(--roi-gray-700);
  line-height: 1.6;
}

.roi-submit-btn {
  width: 100%;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: #ffffff;
  border: none;
  border-radius: 14px;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.4);
  margin-top: 0.5rem;
}

.roi-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 50px rgba(139, 92, 246, 0.6);
}

.roi-form-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--roi-gray-600);
  margin: 0;
  text-align: center;
  justify-content: center;
}

.roi-form-note svg {
  color: var(--roi-emerald-500);
  flex-shrink: 0;
}

/* Success Toast */
.roi-success-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(16, 185, 129, 0.4);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10002;
  transform: translateY(150%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.roi-success-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.roi-toast-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.roi-toast-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.roi-toast-message {
  font-size: 0.9375rem;
  opacity: 0.95;
  margin: 0;
}

/* Benefits Section */
.roi-benefits-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.roi-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.roi-section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--roi-gray-900);
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.roi-section-subtitle {
  font-size: 1.25rem;
  color: var(--roi-gray-600);
  margin: 0;
}

.roi-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.roi-benefit-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--roi-gray-200);
  transition: all 0.4s ease;
}

.roi-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(139, 92, 246, 0.2);
  border-color: var(--roi-purple-600);
}

.roi-benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  color: var(--roi-purple-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.roi-benefit-card:hover .roi-benefit-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
}

.roi-benefit-title {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--roi-gray-900);
  margin: 0 0 1rem;
}

.roi-benefit-text {
  font-size: 1rem;
  color: var(--roi-gray-600);
  margin: 0;
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .roi-calculator-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .roi-calculator-card,
  .roi-results-card {
    position: static;
  }

  .roi-metrics-grid {
    grid-template-columns: 1fr 1fr;
  }

  .roi-metric-primary {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .roi-hero {
    padding: 3rem 1.25rem;
    min-height: 50vh;
  }

  .roi-orb {
    filter: blur(60px);
  }

  .roi-orb-1 {
    width: 300px;
    height: 300px;
  }

  .roi-orb-2 {
    width: 250px;
    height: 250px;
  }

  .roi-orb-3 {
    width: 350px;
    height: 350px;
  }

  .roi-hero-title {
    font-size: clamp(1.875rem, 8vw, 2.5rem);
  }

  .roi-hero-subtitle {
    font-size: 1rem;
  }

  .roi-badge {
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
  }

  .roi-calculator-section {
    padding: 3rem 1.25rem;
  }

  .roi-calculator-card,
  .roi-results-card {
    padding: 1.75rem;
    border-radius: 20px;
  }

  .roi-card-title {
    font-size: 1.5rem;
  }

  .roi-card-subtitle {
    font-size: 0.9375rem;
  }

  .roi-form-grid {
    gap: 1.5rem;
  }

  .roi-benefits-section {
    padding: 3rem 1.25rem;
  }

  .roi-section-header {
    margin-bottom: 2.5rem;
  }

  .roi-benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .roi-benefit-card {
    padding: 2rem;
  }

  .roi-modal-content {
    padding: 2rem;
    width: 92%;
  }

  .roi-modal-header {
    margin-bottom: 2rem;
  }

  .roi-modal-title {
    font-size: 1.5rem;
  }

  .roi-success-toast {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    padding: 1.25rem 1.5rem;
  }

  .roi-toast-content {
    flex: 1;
  }

  .roi-toast-title {
    font-size: 1rem;
  }

  .roi-toast-message {
    font-size: 0.875rem;
  }
}

@media (max-width: 600px) {
  .roi-metrics-grid {
    grid-template-columns: 1fr;
  }

  .roi-metric-primary {
    grid-column: span 1;
  }

  .roi-metric-card {
    padding: 1.5rem;
  }

  .roi-metric-value {
    font-size: 1.875rem;
  }

  .roi-metric-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .roi-metric-icon svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .roi-hero {
    padding: 2.5rem 1rem;
    min-height: auto;
  }

  .roi-hero-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .roi-hero-subtitle {
    font-size: 0.9375rem;
  }

  .roi-badge {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .roi-badge svg {
    width: 14px;
    height: 14px;
  }

  .roi-calculator-section {
    padding: 2.5rem 1rem;
  }

  .roi-calculator-card,
  .roi-results-card {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .roi-card-title {
    font-size: 1.375rem;
  }

  .roi-card-subtitle {
    font-size: 0.875rem;
  }

  .roi-form-grid {
    gap: 1.25rem;
    margin-bottom: 2rem;
  }

  .roi-label {
    font-size: 0.875rem;
  }

  .roi-label svg {
    width: 18px;
    height: 18px;
  }

  .roi-input {
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
  }

  .roi-input-hint {
    font-size: 0.8125rem;
  }

  .roi-calculate-btn,
  .roi-get-report-btn,
  .roi-submit-btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .roi-calculate-btn svg,
  .roi-get-report-btn svg,
  .roi-submit-btn svg {
    width: 18px;
    height: 18px;
  }

  .roi-results-header {
    margin-bottom: 2rem;
  }

  .roi-results-badge {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }

  .roi-results-title {
    font-size: 1.375rem;
  }

  .roi-metrics-grid {
    gap: 1.25rem;
    margin-bottom: 2rem;
  }

  .roi-metric-card {
    padding: 1.25rem;
    gap: 1rem;
  }

  .roi-metric-value {
    font-size: 1.625rem;
  }

  .roi-metric-label {
    font-size: 0.8125rem;
  }

  .roi-breakdown {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .roi-breakdown-title {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  .roi-breakdown-item {
    padding: 0.625rem 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.375rem;
  }

  .roi-breakdown-label {
    font-size: 0.875rem;
  }

  .roi-breakdown-value {
    font-size: 1rem;
  }

  .roi-breakdown-highlight {
    font-size: 1.125rem;
  }

  .roi-benefits-section {
    padding: 2.5rem 1rem;
  }

  .roi-section-header {
    margin-bottom: 2rem;
  }

  .roi-section-title {
    font-size: 1.75rem;
  }

  .roi-section-subtitle {
    font-size: 1rem;
  }

  .roi-benefits-grid {
    gap: 1.5rem;
  }

  .roi-benefit-card {
    padding: 1.75rem;
  }

  .roi-benefit-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
  }

  .roi-benefit-icon svg {
    width: 28px;
    height: 28px;
  }

  .roi-benefit-title {
    font-size: 1.25rem;
  }

  .roi-benefit-text {
    font-size: 0.9375rem;
  }

  .roi-modal-content {
    padding: 1.5rem;
    width: 94%;
    border-radius: 20px;
  }

  .roi-modal-close {
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
  }

  .roi-modal-close svg {
    width: 20px;
    height: 20px;
  }

  .roi-modal-header {
    margin-bottom: 1.75rem;
  }

  .roi-modal-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.25rem;
  }

  .roi-modal-icon svg {
    width: 28px;
    height: 28px;
  }

  .roi-modal-title {
    font-size: 1.375rem;
  }

  .roi-modal-subtitle {
    font-size: 0.9375rem;
  }

  .roi-lead-form {
    gap: 1.25rem;
  }

  .roi-lead-grid {
    gap: 1.25rem;
  }

  .roi-checkbox-text {
    font-size: 0.875rem;
  }

  .roi-form-note {
    font-size: 0.8125rem;
    flex-direction: column;
  }

  .roi-success-toast {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .roi-toast-icon {
    margin: 0 auto;
  }
}