:root {
  --color-primary: #1a237e; /* Deep navy */
  --color-secondary: #00b8a9; /* Teal */
  --color-accent: #00bcd4; /* Cyan */
  --color-success: #00b894;
  --color-info: #00bcd4;
  --color-warning: #ffe082;
  --color-dark: #23233a;
  --color-light: #f7f9fb;
  --color-section-alt: #f2f4f8;
  --color-section-blue: #e3e8ff;
  --color-divider: #e0e4ea;
}

body {
  font-family: 'Inter', 'DM Sans', 'Poppins', Arial, sans-serif;
  background-color: var(--color-light);
  color: var(--color-dark);
  font-size: 1.08rem;
  line-height: 1.7;
  font-weight: 400;
}

.navbar-brand span {
  color: var(--color-primary);
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  font-weight: 700;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-primary);
  font-family: 'Inter', 'DM Sans', 'Poppins', Arial, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.display-2, .display-3, .display-4 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--color-divider);
  margin: 0;
}

.hero-section {
  background: linear-gradient(135deg, #45189e 0%, #2a0d6e 100%);
  position: relative;
  overflow: hidden;
}

.btn, .btn-gradient, .btn-primary, .btn-success {
  border-radius: 12px;
  font-weight: 500;
  font-size: 1.08rem;
  padding: 0.7rem 2.2rem;
  box-shadow: 0 2px 8px rgba(26,35,126,0.07);
  border: none;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}

.btn-primary, .btn-gradient {
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  color: #fff;
}

.btn-primary:hover, .btn-gradient:hover, .btn-primary:focus, .btn-gradient:focus {
  background: linear-gradient(90deg, #283593, var(--color-accent));
  box-shadow: 0 4px 16px rgba(26,35,126,0.13), 0 0 0 4px #00bcd433;
  color: #fff;
}

.btn-success {
  background: linear-gradient(90deg, #283593, #0d73b6);
  color: #fff;
}

.btn-success:hover, .btn-success:focus {
  background: linear-gradient(90deg, #009e74, #00bcd4);
}

input, textarea, .form-control {
  border-radius: 10px !important;
  border: 1px solid var(--color-divider);
  background: #fff;
  font-size: 1.08rem;
  font-family: inherit;
  box-shadow: 0 1px 4px rgba(26,35,126,0.04);
  padding: 0.7rem 1.1rem;
  transition: border 0.2s, box-shadow 0.2s;
}
input:focus, textarea:focus, .form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px #1a237e22;
}

.card, .card-body, .card-title {
  border-radius: 12px !important;
}
.card {
  box-shadow: 0 2px 16px rgba(26,35,126,0.07);
  border: none;
  background: #fff;
  margin-bottom: 2rem;
}
.card-title {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1.18rem;
}

.bg-white {
  background: #fff !important;
}

.bg-section-alt {
  background: var(--color-section-alt) !important;
}

.bg-section-blue {
  background: var(--color-section-blue) !important;
}

.icon-xl, .icon-lg {
  font-size: 2.1rem;
  vertical-align: middle;
  color: var(--color-primary);
}

footer {
  background: var(--color-dark);
  color: #fff;
  font-family: 'Inter', 'DM Sans', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-top: 1px solid var(--color-divider);
}
footer a {
  color: #fff;
  opacity: 0.8;
  transition: opacity 0.2s;
}
footer a:hover {
  opacity: 1;
}

/* Section spacing */
@media (min-width: 992px) {
  section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .display-2 {
    font-size: 2.2rem;
  }
  .navbar-brand span {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  section {
    padding-top: 2.2rem;
    padding-bottom: 2.2rem;
  }
  .display-2 {
    font-size: 1.6rem;
  }
  .card {
    margin-bottom: 1.2rem;
  }
}

/* Hero Section extracted styles */
.hero-gradient-bg {
  width: 100%;
  height: 72vh;
  min-height: 480px;
  z-index: 1;
  position: relative;
}
.hero-content {
  margin-top: 2.5rem;
  margin-bottom: 3.5rem;
  max-width: 60vw;
  margin-left: auto;
  margin-right: auto;
}
.hero-title {
  font-size: 2.5rem;
  color: #fff;
  font-family: 'Inter', 'DM Sans', Arial, sans-serif;
  line-height: 1.13;
  text-shadow: 0 2px 12px #0f172a55;
}
.hero-title-highlight-blue {
  color: #3b82f6;
}
.hero-title-highlight-purple {
  color: #6366f1;
}
.hero-lead {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  color: #e5e7eb;
  line-height: 1.6;
  font-weight: 400;
  text-shadow: 0 1px 8px #0f172a33;
}
.hero-cta-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.btn-cta-primary {
  font-size: 1.1rem;
  background: linear-gradient(90deg,#2563eb 0%,#38bdf8 100%);
  border: none;
  border-radius: 0.8rem;
  box-shadow: 0 2px 12px #2563eb33;
  color: #fff;
}
.btn-cta-dark {
  font-size: 1.1rem;
  background: #23272f;
  border: none;
  border-radius: 0.8rem;
  color: #fff;
  display: flex;
  align-items: center;
}
.hero-dashboard-img {
  max-width: 820px;
  border-radius: 2rem;
  box-shadow: 0 12px 48px 0 rgba(16,30,54,0.25), 0 1.5px 8px 0 rgba(16,30,54,0.10);
  background: #fff;
  position: relative;
  display: block;
}
.hero-badge {
  font-size: 1rem;
  border-radius: 1.5rem;
  background: rgba(30,41,59,0.85);
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
  color: #fff;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.hero-stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
}
.hero-stat {
  text-align: center;
}
.hero-stat-number {
  font-size: 2rem;
  font-weight: bold;
}
.hero-stat-label {
  font-size: 1rem;
  color: #cbd5e1;
}
.z-3 {
  z-index: 3;
  position: relative;
}
.z-4 {
  z-index: 4;
  position: relative;
}
.position-absolute {
  position: absolute;
}
.w-100 {
  width: 100%;
}
.bottom-70vh {
  bottom: -70vh;
}
.max-width-60vw {
  max-width: 60vw;
}
.max-width-820px {
  max-width: 820px;
}
.margin-auto {
  margin-left: auto;
  margin-right: auto;
}
.hero-dashboard-overlap {
  margin-top: -180px;
  z-index: 5;
  position: relative;
}

/* Pricing section custom styles */
.pricing-card-pro {
  background: linear-gradient(135deg, #0e7fc8 0%, #4d24aa 100%);
  color: #fff;
  min-height: 520px;
  box-shadow: 0 4px 32px rgba(16,30,54,0.10);
}
.pricing-card {
  min-height: 440px;
}
.pricing-icon {
  color: #3b82f6 !important;
  font-size: 2.5rem;
}
.pricing-btn-gradient {
  background: linear-gradient(135deg, #f0f3f5 0%, #ededed 100%);
  color: #4d24aa;
  border: none;
  border-radius: 0.8rem;
  box-shadow: 0 2px 12px #0f172a33;
  transition: background 0.2s, box-shadow 0.2s;
}
.pricing-btn-gradient:hover, .pricing-btn-gradient:focus {
  background: linear-gradient(135deg, #fcfdfd 0%, #e4dede 100%);;
  color: #4d24aa;
  box-shadow: 0 4px 16px #0f172a33;
}
.pricing-btn-outline {
  background: transparent;
  color: #0f172a;
  border: 2px solid #0f172a;
  border-radius: 0.8rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.pricing-btn-outline:hover, .pricing-btn-outline:focus {
  background: #0f172a;
  color: #fff;
  box-shadow: 0 4px 16px #0f172a33;
}

/* Footer dark styles */
.footer-dark {
  background: #181e29;
  color: #fff;
  font-family: 'Inter', 'DM Sans', Arial, sans-serif;
  font-size: 1.08rem;
  border-top: none;
}
.footer-divider {
  border: none;
  border-top: 1px solid #232a3b;
  opacity: 0.18;
}
.text-footer-muted {
  color: #b6bed5 !important;
  font-weight: 400;
}
.footer-social {
  color: #b6bed5;
  font-size: 1.5rem;
  opacity: 0.8;
  transition: color 0.2s, opacity 0.2s;
}
.footer-social:hover, .footer-social:focus {
  color: #fff;
  opacity: 1;
}
.footer-dark a {
  color: #b6bed5;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-dark a:hover, .footer-dark a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-dark .fw-semibold, .footer-dark .fw-bold {
  color: #fff;
}
.footer-dark .fs-4 {
  color: #fff;
}
.footer-dark .text-footer-muted {
  font-size: 1.08rem;
  max-width: 320px;
  margin-bottom: 1.2rem;
}
@media (max-width: 991px) {
  .footer-dark .text-footer-muted {
    font-size: 1rem;
    max-width: 90vw;
    margin-bottom: 1rem;
  }
}
@media (max-width: 600px) {
  .footer-dark .text-footer-muted {
    font-size: 0.97rem;
    max-width: 98vw;
    margin-bottom: 0.7rem;
  }
}

/* Data-Driven Decisions Section Styles */
.data-driven-section {
  background: linear-gradient(135deg, #0e7fc8 0%, #4d24aa 100%);
  position: relative;
  overflow: hidden;
}
.data-driven-section .display-4, .data-driven-section .text-white {
  color: #fff;
}
.badge-glass {
  background: rgba(255,255,255,0.18);
  color: #fff;
  border-radius: 2rem;
  font-size: 1rem;
  box-shadow: 0 2px 12px #3b82f633;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255,255,255,0.12);
}
.floating-stats {
  position: relative;
  min-height: 420px;
}
.floating-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(60,60,130,0.13);
  padding: 1.5rem 2rem;
  position: absolute;
  min-width: 210px;
  max-width: 260px;
  animation: floatCard 3.5s ease-in-out infinite alternate;
}
.floating-card-1 {
  top: 0;
  left: 30px;
  transform: rotate(-4deg);
  --card-rotate: -4deg;
  animation-delay: 0s;
}
.floating-card-2 {
  top: 160px;
  right: 0;
  transform: rotate(3deg);
  --card-rotate: 3deg;
  animation-delay: 1.2s;
}
.floating-card-3 {
  bottom: 0;
  left: 60px;
  transform: rotate(-2deg);
  --card-rotate: -2deg;
  animation-delay: 2.1s;
}
.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  vertical-align: middle;
}
.dot-green { background: #22c55e; }
.dot-blue { background: #3b82f6; }
.dot-purple { background: #a78bfa; }
.btn-cta-primary {
  background: #fff;
  color: #2563eb;
  border-radius: 0.8rem;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn-cta-primary:hover, .btn-cta-primary:focus {
  background: #e0e7ff;
  color: #1e293b;
  box-shadow: 0 4px 16px #3b82f633;
}
@keyframes floatCard {
  0% {
    transform: translateY(0) rotate(var(--card-rotate, 0deg));
  }
  100% {
    transform: translateY(-18px) rotate(var(--card-rotate, 0deg));
  }
}

.lead {
  font-size: 1.08rem !important;
}

/* CTA Gradient Section Above Pricing */
.cta-gradient-section {
  background: linear-gradient(135deg, #45189e 0%, #2a0d6e 100%);
  
}
.cta-gradient-card {
  padding: 4rem 2rem;
  margin: 0 auto;
  box-shadow: 0 4px 32px rgba(60,60,130,0.10);
  color: #fff;
}
.cta-gradient-card h2,
.cta-gradient-card p,
.cta-gradient-card .btn {
  color: #fff;
}
.cta-gradient-card .btn-cta-primary {
  background: #fff;
  color: #6a85f1;
  border-radius: 1.3rem;
  font-size: 1.35rem;
  font-weight: 700;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.cta-gradient-card .btn-cta-primary:hover,
.cta-gradient-card .btn-cta-primary:focus {
  background: #e0e7ff;
  color: #4d24aa;
  box-shadow: 0 4px 16px #7b5fd633;
}
@media (max-width: 767px) {
  .cta-gradient-card {
    padding: 2rem 0.5rem;
    border-radius: 1.2rem;
  }
}

/* Steps to Generate Report Section */
.steps-section {
  background: #f8f9fa;
  font-family: 'Inter', 'Poppins', Arial, sans-serif;
}
.steps-horizontal-wrapper {
  overflow-x: auto;
  padding-bottom: 2.5rem;
}
.steps-cards-row {
  display: flex;
  gap: 2.2rem;
  justify-content: center;
  align-items: stretch;
  min-width: 700px;
}
.step-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(60,60,130,0.07);
  padding: 1.5rem;
  min-width: 220px;
  max-width: 260px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.22s cubic-bezier(.4,2,.6,1), box-shadow 0.22s, background 0.22s;
  position: relative;
}
.step-card:hover, .step-card:focus, .step-card.active {
  transform: scale(1.05);
  box-shadow: 0 0 20px 0 rgba(60,60,130,0.13), 0 8px 32px rgba(123,95,214,0.10);
  z-index: 2;
  background: #f3f6ff;
}
.step-icon {
  margin-bottom: 1.1rem;
}
.step-title {
  font-size: 1.1rem;
  color: #7b5fd6;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.step-heading {
  font-size: 1rem;
  font-weight: 700;
  color: #23233a;
  margin-bottom: 0.5rem;
}
.step-desc {
  color: #6b7280;
  font-size: 1.01rem;
  text-align: center;
}
.steps-progress-bar-wrapper {
  position: relative;
  height: 6px;
  margin-top: 2.2rem;
  width: 100%;
}
.steps-progress-bar-bg {
  background: linear-gradient(90deg, #6a85f1 0%, #7b5fd6 100%);
  opacity: 0.18;
  border-radius: 3px;
  height: 6px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.steps-progress-bar-fill {
  background: linear-gradient(90deg, #6a85f1 0%, #7b5fd6 100%);
  border-radius: 3px;
  height: 6px;
  width: 0%;
  position: absolute;
  top: 0;
  left: 0;
  transition: width 0.4s cubic-bezier(.4,2,.6,1);
}
.step-tooltip {
  display: none;
  position: fixed;
  z-index: 99;
  background: #fff;
  color: #23233a;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(60,60,130,0.13);
  padding: 1rem 1.3rem;
  font-size: 1.05rem;
  min-width: 180px;
  max-width: 260px;
  pointer-events: none;
}
.step-card:active .step-tooltip, .step-card:focus .step-tooltip {
  display: block;
}
.step-animate-bounce {
  animation: stepBounce 1.2s infinite alternate;
}
.step-animate-fadein {
  animation: stepFadeIn 1.2s both;
}
.step-animate-bar svg rect[height] {
  animation: stepBarAnim 1.2s infinite alternate;
}
.step-animate-slideup {
  animation: stepSlideUp 1.2s both;
}
@keyframes stepBounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}
@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes stepBarAnim {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}
@keyframes stepSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
@media (max-width: 991px) {
  .steps-cards-row { gap: 1.2rem; }
}
@media (max-width: 767px) {
  .steps-cards-row { min-width: 600px; }
  .step-card { min-width: 180px; max-width: 220px; padding: 1rem; }
  .steps-section { padding-top: 2rem; padding-bottom: 2rem; }
}
@media (max-width: 600px) {
  .steps-section {
    padding: 1.2rem 0 1.2rem 0;
  }
  .steps-cards-row {
    flex-direction: column;
    min-width: 0;
    gap: 0.5rem;
    width: 100%;
    align-items: stretch;
    margin-left: 0.7rem;
    margin-right: 0.7rem;
  }
  .step-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    padding: 0.7rem 0.5rem 0.7rem 0.5rem;
    border-radius: 10px;
    margin-bottom: 0.3rem;
  }
  .step-title {
    font-size: 0.93rem;
  }
  .step-heading {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
  }
  .step-desc {
    font-size: 0.89rem;
  }
  .step-icon {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
  }
  .steps-progress-bar-wrapper {
    margin-top: 0.7rem;
    height: 4px;
  }
  .steps-progress-bar-bg,
  .steps-progress-bar-fill {
    height: 4px;
    border-radius: 2px;
  }
  .step-tooltip {
    font-size: 0.89rem;
    min-width: 100px;
    max-width: 90vw;
    padding: 0.5rem 0.7rem;
  }
}

/* --- Modern Contact Section Styles --- */
.contact-section {
  background: linear-gradient(135deg, #45189e 0%, #2a0d6e 100%);
  padding: 0;
}
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  gap: 0;
}
.contact-left {
  width: 40%;
  background: linear-gradient(135deg, #45189e 0%, #2a0d6e 100%);;
  color: #fff;
  border-radius: 16px 0 0 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid #fff;
}
.contact-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #fff;
}
.contact-support {
  color: #e0e7ef;
  font-size: 1.08rem;
  margin-bottom: 2.2rem;
  font-weight: 400;
}
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
}
.contact-info-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1.1rem;
  font-size: 1.08rem;
}
.contact-icon {
  font-size: 1.3rem;
  margin-right: 0.7rem;
  display: inline-block;
}
.contact-link {
  color: #fff;
  text-decoration: underline;
  opacity: 0.92;
  transition: opacity 0.2s;
}
.contact-link:hover, .contact-link:focus {
  opacity: 1;
}
.contact-socials {
  display: flex;
  gap: 1.2rem;
  margin-top: auto;
}
.contact-social {
  color: #fff;
  font-size: 1.7rem;
  opacity: 0.85;
  transition: transform 0.18s, opacity 0.18s;
  display: inline-flex;
  align-items: center;
}
.contact-social:hover, .contact-social:focus {
  opacity: 0.65;
  transform: scale(1.13);
}
.contact-right {
  width: 60%;
  background: #fff;
  border-radius: 0 16px 16px 0;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-form-heading {
  color: var(--color-primary);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.contact-form-row {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.contact-form-group {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  margin-bottom: 1.2rem;
}
.contact-form-group label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #23233a;
  font-size: 1.05rem;
}
.contact-form-group input,
.contact-form-group textarea {
  font-family: 'Inter', Arial, sans-serif;
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1.08rem;
  background: #f9fbfc;
  color: #23233a;
  transition: border 0.2s, box-shadow 0.2s;
  outline: none;
  margin-bottom: 0;
  resize: none;
}
.contact-form-group input:focus,
.contact-form-group textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.20);
}
.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
  color: #9ca3af;
  opacity: 1;
}
.contact-form-group textarea {
  min-height: 120px;
  max-height: 260px;
}
.contact-submit-btn {
  background: linear-gradient(135deg, #45189e 0%, #2a0d6e 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 8px;
  margin-top: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 2px 8px rgba(59,130,246,0.07);
}
.contact-submit-btn:hover, .contact-submit-btn:focus {
  background: linear-gradient(135deg, #45189e 0%, #2a0d6e 100%);
  transform: scale(1.03);
}
.contact-success-message {
  margin-top: 1.2rem;
  font-size: 1.08rem;
  color: #22c55e;
  background: #f0fdf4;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  display: none;
  text-align: center;
}
.contact-success-message.success {
  display: block;
}
.contact-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 2px #ef444422 !important;
}
@media (max-width: 991px) {
  .contact-container {
    flex-direction: column;
    padding: 2.5rem 0.7rem;
    border-radius: 12px;
  }
  .contact-left, .contact-right {
    width: 100%;
    border-radius: 12px 12px 0 0;
    padding: 2rem 1.2rem;
  }
  .contact-right {
    border-radius: 0 0 12px 12px;
  }
}
@media (max-width: 767px) {
  .contact-container {
    padding: 1.2rem 0.2rem;
    border-radius: 8px;
  }
  .contact-left, .contact-right {
    padding: 1.2rem 0.5rem;
    border-radius: 8px 8px 0 0;
  }
  .contact-right {
    border-radius: 0 0 8px 8px;
  }
  .contact-heading {
    font-size: 1.15rem;
  }
  .contact-form-heading {
    font-size: 1.1rem;
  }
  .contact-form-row {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* --- Features Section Modern Grid --- */
.features-section {
  background: #fff;
  padding: 4.5rem 0 4.5rem 0;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem 2.2rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.feature-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(26,35,126,0.07);
  padding: 2.2rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  transition: box-shadow 0.22s, transform 0.22s, border-top 0.22s;
  border-top: 4px solid transparent;
  will-change: transform, box-shadow, border-top;
}
.feature-card:hover, .feature-card:focus {
  transform: translateY(-10px);
  box-shadow: 0 8px 32px rgba(26,35,126,0.13);
  border-top: 4px solid var(--feature-card-border, #2563eb);
  z-index: 2;
}
.feature-card:focus {
  outline: 2px solid #2563eb;
}
.feature-icon {
  min-width: 56px;
  min-height: 56px;
  max-width: 56px;
  max-height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-top: 0.2rem;
  box-shadow: 0 2px 12px rgba(59,130,246,0.08);
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-card:hover .feature-icon, .feature-card:focus .feature-icon {
  animation: featureIconBounce 0.7s;
  box-shadow: 0 4px 24px rgba(59,130,246,0.13);
}
@keyframes featureIconBounce {
  0% { transform: scale(1); }
  30% { transform: scale(1.18) translateY(-6px); }
  60% { transform: scale(0.95) translateY(2px); }
  100% { transform: scale(1); }
}
.feature-icon-green { background: #22c55e1a; color: #22c55e; --feature-card-border: #22c55e; }
.feature-icon-blue { background: #2563eb1a; color: #2563eb; --feature-card-border: #2563eb; }
.feature-icon-purple { background: #a78bfa1a; color: #a78bfa; --feature-card-border: #a78bfa; }
.feature-icon-orange { background: #fbbf241a; color: #f59e42; --feature-card-border: #f59e42; }
.feature-icon-pink { background: #f472b61a; color: #f472b6; --feature-card-border: #f472b6; }
.feature-icon-indigo { background: #6366f11a; color: #6366f1; --feature-card-border: #6366f1; }
.feature-content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.feature-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #23233a;
  margin-bottom: 0.2rem;
}
.feature-desc {
  color: #6b7280;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.feature-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.feature-badge {
  display: inline-block;
  font-size: 0.93rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.28em 1em;
  background: #f3f4f6;
  color: #23233a;
  letter-spacing: 0.01em;
  box-shadow: 0 1px 4px rgba(26,35,126,0.04);
  border: none;
  transition: background 0.18s, color 0.18s;
}
.feature-badge-blue { background: #e0e7ff; color: #2563eb; }
.feature-badge-green { background: #d1fae5; color: #22c55e; }
.feature-badge-purple { background: #ede9fe; color: #a78bfa; }
.feature-badge-yellow { background: #fef9c3; color: #f59e42; }
.feature-badge-orange { background: #ffedd5; color: #f59e42; }
.feature-badge-pink { background: #fce7f3; color: #f472b6; }
.feature-badge-red { background: #fee2e2; color: #ef4444; }
.feature-badge-indigo { background: #e0e7ff; color: #6366f1; }
.feature-badge-gray { background: #f3f4f6; color: #6b7280; }
.feature-badge i { margin-right: 0.4em; }
.feature-code-block {
  background: #f3f4f6;
  color: #23233a;
  font-family: 'Fira Mono', 'Menlo', 'Monaco', 'Consolas', monospace;
  font-size: 0.98rem;
  border-radius: 8px;
  padding: 0.7em 1em;
  margin-top: 0.7em;
  white-space: pre-line;
  box-shadow: 0 1px 4px rgba(26,35,126,0.04);
}
@media (max-width: 767px) {
  .features-section {
    padding: 2.2rem 0 2.2rem 0;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
  .feature-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 1rem 1.2rem 1rem;
  }
  .feature-title {
    font-size: 1.05rem;
  }
}

/* --- Why Choose EZREPORT Section --- */
.why-choose-section {
  background: #f8fafd;
  padding: 4.5rem 0 4.5rem 0;
}
.compare-toggle-group {
  gap: 0.7rem;
}
.compare-toggle {
  font-size: 1.08rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  padding: 0.7rem 2.2rem;
  background: #f3f4f6;
  color: #23233a;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
}
.compare-toggle.active {
  background: linear-gradient(90deg, #2563eb 0%, #6366f1 100%);
  color: #fff;
  box-shadow: 0 2px 12px #2563eb22;
}
.compare-cards-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 2.2rem;
  margin-bottom: 2.2rem;
  flex-wrap: wrap;
}
.compare-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(26,35,126,0.07);
  padding: 2.2rem 2.2rem 1.5rem 2.2rem;
  min-width: 270px;
  max-width: 340px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.compare-card-left {
  border: 2px solid #e5e7eb;
}
.compare-card-right {
  background: linear-gradient(120deg, #6366f1 0%, #0ea5e9 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(99,102,241,0.13);
  border: none;
}
.compare-card-right .compare-card-title,
.compare-card-right .compare-card-desc {
  color: #fff;
}
.compare-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #f3f4f6;
  color: #2563eb;
  box-shadow: 0 2px 12px #2563eb22;
  transition: box-shadow 0.18s, transform 0.18s;
}
.compare-icon-bar {
  background: #f3f4f6;
  color: #2563eb;
}
.compare-icon-rocket {
  background: #fff;
  color: #fbbf24;
  animation-delay: 0.2s;
}
.animate-bounce {
  animation: compareIconBounce 1.2s infinite alternate;
}
@keyframes compareIconBounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}
.compare-card-title {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.compare-card-desc {
  color: #6b7280;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.compare-card-right .compare-card-desc {
  color: #e0e7ef;
}
.compare-vs-circle {
  background: linear-gradient(90deg, #2563eb 0%, #6366f1 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.18rem;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1.2rem;
  box-shadow: 0 2px 12px #2563eb22;
  border: 4px solid #fff;
  position: relative;
  top: 0.5rem;
}
.compare-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.compare-row {
  display: flex;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(26,35,126,0.04);
  overflow: hidden;
}
.compare-cell {
  flex: 1 1 0;
  padding: 1.2rem 1.5rem 1.1rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.compare-cell-left {
  border-right: 1px solid #f3f4f6;
  text-align: left;
}
.compare-cell-right {
  text-align: right;
}
.compare-label {
  font-size: 1.05rem;
  font-weight: 600;
  color: #23233a;
  margin-bottom: 0.2rem;
}
.compare-value {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
}
.compare-value-red {
  color: #ef4444;
}
.compare-value-green {
  color: #22c55e;
}
.compare-sublabel {
  font-size: 0.98rem;
  color: #6b7280;
  opacity: 0.92;
}
.compare-card-right .compare-value-green,
.compare-card-right .compare-label {
  color: #fff;
}
@media (max-width: 991px) {
  .compare-cards-row {
    flex-direction: column;
    gap: 1.2rem;
  }
  .compare-vs-circle {
    margin: 1.2rem 0;
    top: 0;
  }
  .compare-table {
    gap: 0.7rem;
  }
}
@media (max-width: 767px) {
  .why-choose-section {
    padding: 2.2rem 0 2.2rem 0;
  }
  .compare-card {
    min-width: 0;
    padding: 1.2rem 1rem 1rem 1rem;
  }
  .compare-table {
    max-width: 100%;
  }
  .compare-row {
    flex-direction: column;
    border-radius: 10px;
  }
  .compare-cell {
    padding: 1rem 1rem 0.7rem 1rem;
    text-align: left !important;
  }
  .compare-cell-right {
    border-top: 1px solid #f3f4f6;
    text-align: left;
  }
}

/* --- Pricing Section Modern --- */
.pricing-section {
  background: #f8fafd;
  padding: 4.5rem 0 4.5rem 0;
}
.pricing-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #23233a;
  margin-bottom: 0.5rem;
}
.pricing-subtitle {
  color: #6b7280;
  font-size: 1.18rem;
  margin-bottom: 2.5rem;
}
.pricing-toggle-group {
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.pricing-toggle-label {
  font-size: 1.08rem;
  font-weight: 600;
  color: #23233a;
}
.pricing-switch {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 28px;
}
.pricing-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.pricing-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #e5e7eb;
  border-radius: 999px;
  transition: background 0.2s;
}
.pricing-switch input:checked + .pricing-slider {
  background: linear-gradient(90deg, #2563eb 0%, #06b6d4 100%);
}
.pricing-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 2px 8px #2563eb22;
}
.pricing-switch input:checked + .pricing-slider:before {
  transform: translateX(26px);
}
.pricing-save {
  background: #22c55e1a;
  color: #22c55e;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.18em 0.9em;
  margin-left: 0.5em;
}
.pricing-cards-row {
  display: flex;
  gap: 2.2rem;
  justify-content: center;
  align-items: stretch;
  margin: 0 auto;
  max-width: 1100px;
}
@media (max-width: 991px) {
  .pricing-cards-row {
    flex-direction: column;
    gap: 1.2rem;
    max-width: 100%;
  }
}
.pricing-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(26,35,126,0.07);
  flex: 1 1 320px;
  min-width: 0;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: box-shadow 0.22s, transform 0.22s, border 0.22s;
  border: 2px solid transparent;
  position: relative;
  z-index: 1;
}
.pricing-card:hover, .pricing-card:focus {
  transform: translateY(-10px);
  box-shadow: 0 8px 32px rgba(26,35,126,0.13);
  border: 2px solid #6366f1;
  z-index: 2;
}
.pricing-card-pro {
  border: 2.5px solid #6366f1;
  box-shadow: 0 8px 32px rgba(99,102,241,0.13);
  z-index: 3;
  position: relative;
}
.pricing-card-pro:hover, .pricing-card-pro:focus {
  border: 2.5px solid #4f46e5;
  box-shadow: 0 12px 40px rgba(99,102,241,0.18);
}
.pricing-card-inner {
  padding: 2.5rem 2rem 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.pricing-card-header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.7rem;
  min-height: 32px;
}
.pricing-badge {
  background: #6366f1;
  color: #fff;
  font-size: 1.01rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.22em 1.2em;
  box-shadow: 0 2px 12px #6366f122;
  margin-bottom: 0.2em;
  letter-spacing: 0.01em;
}
.pricing-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #23233a;
  margin-bottom: 0.2rem;
  text-align: center;
}
.pricing-card-desc {
  color: #6b7280;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  text-align: center;
}
.pricing-card-price {
  font-size: 2.3rem;
  font-weight: 800;
  color: #23233a;
  margin-bottom: 1.2rem;
  text-align: center;
}
.pricing-card-duration {
  font-size: 1.1rem;
  font-weight: 500;
  color: #6b7280;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.2rem 0;
  width: 100%;
}
.pricing-features li {
  font-size: 1.08rem;
  color: #23233a;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.pricing-features i {
  color: #22c55e;
  font-size: 1.2em;
  margin-right: 0.5em;
}
.pricing-features i.bi-x-circle{
  color: #ef4444;
  font-size: 1.2em;
  margin-right: 0.5em;
}
.pricing-btn {
  display: block;
  width: 100%;
  font-size: 1.08rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 0.85rem 0;
  text-align: center;
  border: 2px solid #6366f1;
  background: #fff;
  color: #6366f1;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s, transform 0.18s;
  box-shadow: 0 2px 8px #6366f122;
  margin-top: auto;
}
.pricing-btn-outline {
  background: #fff;
  color: #6366f1;
  border: 2px solid #6366f1;
}
.pricing-btn-outline:hover, .pricing-btn-outline:focus {
  background: #f3f4f6;
  color: #23233a;
  border: 2px solid #23233a;
  transform: scale(1.03);
}
.pricing-btn-primary {
  background: linear-gradient(90deg, #6366f1 0%, #4f46e5 100%);
  color: #fff;
  border: 2px solid #6366f1;
  box-shadow: 0 4px 16px #6366f133;
}
.pricing-btn-primary:hover, .pricing-btn-primary:focus {
  background: linear-gradient(90deg, #4f46e5 0%, #6366f1 100%);
  color: #fff;
  border: 2px solid #23233a;
  transform: scale(1.03);
}
@media (max-width: 767px) {
  .pricing-section {
    padding: 2.2rem 0 2.2rem 0;
  }
  .pricing-cards-row {
    flex-direction: column;
    gap: 1.1rem;
  }
  .pricing-card-inner {
    padding: 1.2rem 1rem 1.2rem 1rem;
  }
  .pricing-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 600px) {
  .pricing-section {
    padding: 1.2rem 0 1.2rem 0;
  }
  .pricing-title {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }
  .pricing-subtitle {
    font-size: 0.98rem;
    margin-bottom: 1.2rem;
  }
  .pricing-cards-row {
    flex-direction: column;
    gap: 0.7rem;
    max-width: 100vw;
    margin: 0 auto;
  }
  .pricing-card,
  .pricing-card-pro {
    max-width: 98vw;
    min-width: 0;
    border-radius: 12px;
    box-shadow: 0 1px 8px rgba(26,35,126,0.07);
    margin-bottom: 0.7rem;
  }
  .pricing-card-inner {
    padding: 1.1rem 0.7rem 1.1rem 0.7rem;
  }
  .pricing-card-title {
    font-size: 1.05rem;
    margin-bottom: 0.1rem;
  }
  .pricing-card-desc {
    font-size: 0.93rem;
    margin-bottom: 0.7rem;
  }
  .pricing-card-price {
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
  }
  .pricing-card-duration {
    font-size: 0.93rem;
  }
  .pricing-features {
    margin-bottom: 1.1rem;
  }
  .pricing-features li {
    font-size: 0.97rem;
    margin-bottom: 0.4rem;
    gap: 0.4em;
  }
  .pricing-btn {
    font-size: 1rem;
    padding: 0.7rem 0;
    border-radius: 8px;
  }
  .pricing-badge {
    font-size: 0.93rem;
    padding: 0.15em 0.7em;
  }
}

/* --- Testimonials Section Modern --- */
.testimonials-section {
  background: #f8fafd;
  padding: 4.5rem 0 4.5rem 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 2.2rem 2.2rem;
  max-width: 1100px;
  margin: 0 auto 2.5rem auto;
  grid-template-areas:
    "featured t2"
    "t3 t4"
    "t5 t6";
}
.testimonial-featured {
  grid-area: featured;
  background: linear-gradient(120deg, #6366f1 0%, #4f46e5 100%) !important;
  color: #fff !important;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(99,102,241,0.13);
  padding: 2.5rem 2.2rem 2.2rem 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  min-height: 340px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.testimonial-featured:hover, .testimonial-featured:focus {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(99,102,241,0.18) !important;
}
.testimonial-featured .testimonial-quote,
.testimonial-featured .testimonial-quote-icon,
.testimonial-featured .testimonial-user-name,
.testimonial-featured .testimonial-user-title,
.testimonial-featured .testimonial-user-badge,
.testimonial-featured .testimonial-featured-stats,
.testimonial-featured .testimonial-featured-label,
.testimonial-featured .testimonial-featured-stat,
.testimonial-featured .testimonial-featured-label,
.testimonial-card .testimonial-user-title {
  color: #fff !important;
}
.testimonial-quote-icon {
  font-size: 2.5rem;
  opacity: 0.18;
  margin-bottom: 0.7rem;
  color: #060606;
}
.testimonial-quote {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #000000;
}
.testimonial-user-row {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.2rem;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px #6366f122;
}
.testimonial-user-name {
  font-weight: 700;
  color: #fff;
  font-size: 1.05rem;
}
.testimonial-user-title {
  color: #e0e7ef;
  font-size: 0.98rem;
  font-weight: 500;
}
.testimonial-user-badge {
  background: #fff2;
  color: #fff;
  font-size: 0.93rem;
  border-radius: 999px;
  padding: 0.18em 0.9em;
  margin-top: 0.2em;
  display: inline-block;
}
.testimonial-featured-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 1.2rem;
}
.testimonial-featured-stat {
  font-size: 1.18rem;
  font-weight: 700;
  color: #ffe082;
  margin-right: 0.3em;
}
.testimonial-featured-label {
  color: #fff;
  font-size: 0.98rem;
  font-weight: 500;
  opacity: 0.92;
  margin-right: 1.5em;
}
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(26,35,126,0.07);
  padding: 2.2rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: box-shadow 0.22s, transform 0.22s, border 0.22s;
  border: 2px solid transparent;
  min-height: 220px;
  z-index: 1;
}
.testimonial-card:hover, .testimonial-card:focus {
  transform: translateY(-10px);
  box-shadow: 0 8px 32px rgba(99,102,241,0.13);
  border: 2px solid #6366f1;
  z-index: 2;
}
.testimonial-stars {
  color: #ffe082;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  letter-spacing: 0.08em;
}
.testimonial-user-row {
  margin-top: 1.2rem;
}
.testimonial-user-name {
  color: #23233a;
}
.testimonial-user-title {
  color: #6b7280;
  font-size: 0.98rem;
  font-weight: 500;
}
.testimonial-stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
  margin-top: 3.5rem;
  border-top: 1px solid #e5e7eb;
  padding-top: 2.5rem;
}
.testimonial-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2em;
}
.testimonial-stat-value {
  color: #6366f1;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.1em;
}
.testimonial-stat-label {
  color: #6b7280;
  font-size: 1.01rem;
  font-weight: 500;
}
@media (max-width: 991px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    max-width: 100%;
    grid-template-areas: none;
  }
  .testimonial-featured {
    min-height: 0;
  }
  .testimonial-stats-row {
    gap: 1.5rem;
    padding-top: 1.5rem;
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .testimonials-section {
    padding: 2.2rem 0 2.2rem 0;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    margin-bottom: 1.5rem;
  }
  .testimonial-card, .testimonial-featured {
    padding: 1.2rem 1rem 1.2rem 1rem;
  }
  .testimonial-featured-stats {
    gap: 1.2rem;
  }
  .testimonial-stats-row {
    flex-direction: column;
    gap: 0.7rem;
    padding-top: 1.2rem;
    margin-top: 1.2rem;
  }
}
@media (max-width: 600px) {
  .testimonials-section {
    padding: 1.2rem 0 1.2rem 0;
  }
  .testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    max-width: 100vw;
    margin: 0 auto 1rem auto;
  }
  .testimonial-card,
  .testimonial-featured {
    padding: 1rem 0.7rem 1rem 0.7rem;
    border-radius: 12px;
    min-width: 0;
    max-width: 98vw;
    box-shadow: 0 1px 8px rgba(99,102,241,0.07);
    margin-bottom: 0.7rem;
  }
  .testimonial-featured {
    order: -1;
    min-height: 0;
    width: 100%;
    box-shadow: 0 2px 12px rgba(99,102,241,0.13);
  }
  .testimonial-quote {
    font-size: 0.98rem;
    margin-bottom: 1rem;
  }
  .testimonial-user-row {
    gap: 0.7rem;
    margin-bottom: 0.7rem;
    margin-top: 0.7rem;
  }
  .testimonial-avatar {
    width: 36px;
    height: 36px;
  }
  .testimonial-user-name {
    font-size: 0.98rem;
  }
  .testimonial-user-title {
    font-size: 0.93rem;
  }
  .testimonial-featured-stats {
    gap: 1.1rem;
    margin-top: 0.7rem;
  }
  .testimonial-featured-stat {
    font-size: 1.05rem;
  }
  .testimonial-featured-label {
    font-size: 0.93rem;
  }
  .testimonial-stars {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .testimonial-stats-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 0.5rem;
    padding: 0.7rem 0.5rem 0.7rem 0.5rem;
    margin-top: 1rem;
    border-top: 1px solid #e5e7eb;
  }
  .testimonial-stat {
    flex: 1 1 0;
    align-items: center;
    text-align: center;
    gap: 0.1em;
    min-width: 0;
  }
  .testimonial-stat-value {
    font-size: 0.98rem;
  }
  .testimonial-stat-label {
    font-size: 0.89rem;
  }
}

/* --- Floating Dashboard Image --- */
.dashboard-float-container {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  margin-top: -120px;
  margin-bottom: 2.5rem;
  padding-left: 0;
  padding-right: 0;
}
.dashboard-float-img {
  border-radius: 2rem;
  box-shadow: 0 16px 64px rgba(44, 62, 80, 0.18), 0 2px 12px rgba(44, 62, 80, 0.10);
  background: #fff;
  max-width: 900px;
  width: 100%;
  animation: dashboardFloat 4s ease-in-out infinite alternate;
  display: block;
}
@keyframes dashboardFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-18px); }
}
@media (max-width: 991px) {
  .dashboard-float-container {
    margin-top: -60px;
    margin-bottom: 1.2rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .dashboard-float-img {
    max-width: 98vw;
    border-radius: 1.2rem;
  }
}
@media (max-width: 600px) {
  .dashboard-float-container {
    margin-top: -100px;
    margin-bottom: 0.7rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .dashboard-float-img {
    max-width: 100vw;
    border-radius: 0.7rem;
  }
}

@media (max-width: 600px) {
  .hero-content{
    max-width: 90vw;
  }
  .hero-title {
    font-size: 1.5rem;
    line-height: 1.15;
    margin-top: 8.5rem;
    margin-bottom: 1.2rem;
  }
  /* .hero-lead {
    display: none;
  } */
}