.solutions-page {
  background: #fdfdfd;
  padding-bottom: 5rem;
  font-family: 'Inter', sans-serif;
}

.max-1400 {
  max-width: 1400px !important;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero */
.solutions-hero {
  padding: 6rem 0 4rem;
  background: linear-gradient(to bottom, #f0f7ff, #ffffff);
  text-align: center;
}

.solutions-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.solutions-hero p {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

.solutions-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: #e0f2fe;
  color: #0369a1;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

/* Section Headers */
.solutions-section-header {
  margin-bottom: 3rem;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 1.5rem;
  text-align: center;
}

.solutions-section-header h2 {
  font-size: 2.25rem;
  font-weight: 900;
  color: #1e293b;
}

/* Primary Solutions Grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.solutions-card {
  background: white;
  border: 1px solid #f1f5f9;
  border-radius: 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.solutions-card:hover {
  transform: translateY(-5px);
  border-color: #2563eb;
}

.card-top {
  background: #f8fafc;
  padding: 3rem 2rem;
  text-align: center;
  border-bottom: 1px solid #f1f5f9;
}

.card-top i, .card-top svg {
  width: 48px;
  height: 48px;
  color: #2563eb;
  margin-bottom: 1.5rem;
}

.card-top h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0;
}

.card-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.solutions-desc {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.solutions-features {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem 0;
  flex-grow: 1;
}

.solutions-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  color: #475569;
  border-bottom: 1px solid #f1f5f9;
}

.solutions-features li i {
  color: #10b981;
  width: 18px;
  height: 18px;
}

.starting-price {
  text-align: center;
  margin-bottom: 2rem;
}

.starting-price span {
  display: block;
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.starting-price strong {
  font-size: 1.75rem;
  font-weight: 900;
  color: #1e293b;
}

/* Adjusted Button Size */
.solutions-btn {
  display: block;
  text-align: center;
  background: #2563eb;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  border: none;
  width: 100%;
  cursor: pointer;
}

.solutions-btn:hover {
  background: #1d4ed8;
}

.hero-cta-btn {
  display: inline-block;
  background: #2563eb;
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.hero-cta-btn:hover {
  background: #1d4ed8;
}

/* Secondary Solutions Grid */
.mini-solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 6rem;
}

.mini-card {
  background: white;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: 0.3s;
}

.mini-card:hover {
  border-color: #2563eb;
  transform: translateY(-3px);
}

.mini-card i, .mini-card svg {
  color: #2563eb;
  width: 32px;
  height: 32px;
  margin-bottom: 1rem;
}

.mini-card h4 {
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.mini-card p {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
}

/* Process Section */
.process-section {
  padding: 6rem 0;
  background: white;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-item {
  text-align: center;
  padding: 2rem;
}

.step-num {
  width: 40px;
  height: 40px;
  background: #e0f2fe;
  color: #0369a1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin: 0 auto 1.5rem;
}

.process-item h4 {
  font-weight: 800;
  margin-bottom: 1rem;
}

.process-item p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
}

/* Estimator - Expanded to 1400px+ */
.estimator-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.estimator-card {
  background: white;
  border-radius: 32px;
  border: 1px solid #f1f5f9;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}

.estimator-header {
  background: #1e293b;
  color: white;
  padding: 3rem;
  text-align: center;
}

.estimator-body {
  padding: 4rem;
}

.input-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.form-select {
  width: 100%;
  padding: 0.8rem;
  border-radius: 10px;
  border: 2px solid #f1f5f9;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
}

.volume-slider-container {
  padding: 0.5rem 0;
}

.volume-slider {
  width: 100%;
  margin-bottom: 1rem;
}

.result-box {
  background: #f0f7ff;
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
}

.result-box h5 {
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.estimate-value {
  font-size: 4rem;
  font-weight: 900;
  color: #2563eb;
  margin-bottom: 1rem;
}

/* Testimonials */
.testimonials-section {
  padding: 6rem 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid #f1f5f9;
}

.stars {
  color: #f59e0b;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  color: #1e293b;
  margin-bottom: 2rem;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client-meta h6 {
  font-weight: 800;
  margin: 0;
}

.client-meta span {
  font-size: 0.85rem;
  color: #64748b;
}

/* FAQ */
.faq-section {
  padding: 6rem 0;
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.faq-card {
  padding: 2rem;
  background: #f8fafc;
  border-radius: 20px;
}

.faq-card h5 {
  font-weight: 800;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.faq-card h5 i { color: #2563eb; }

/* Responsive */
@media (max-width: 1200px) {
  .input-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
  .input-grid, .faq-grid { grid-template-columns: 1fr; }
  .estimator-body { padding: 2rem; }
}

@media (max-width: 768px) {
  .max-1400 { padding: 0 1.5rem; }
  .solutions-grid { grid-template-columns: 1fr; }
  .solutions-hero h1 { font-size: 2.25rem; }
}
