/* ============ SENSIBO-STYLE SOLUTIONS ============ */

.page-hero {
  padding: 150px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--surface-teal) 0%, var(--surface) 100%);
}

.page-hero-title {
  font-size: clamp(40px, 5.5vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  color: var(--dark);
}

.page-hero-sub {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* SOLUTIONS GRID */
.solutions-block {
  padding: 80px 0;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}

.solution-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
  display: flex;
  flex-direction: column;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.solution-card:hover::before { transform: scaleX(1); }

.solution-icon {
  font-size: 38px;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: var(--surface-teal);
}

.solution-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.solution-desc {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 18px;
}

.solution-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
  flex-grow: 1;
}

.solution-points li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--text);
}

.solution-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.solution-cta {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 14.5px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  transition: gap 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.solution-cta:hover { gap: 8px; }

/* PROCESS */
.process {
  padding: 110px 0;
  background: var(--surface-muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.step {
  background: white;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.step-num {
  font-size: 46px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
  line-height: 1;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--dark);
  font-weight: 700;
}

.step p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.process-cta {
  text-align: center;
  margin-top: 56px;
}

/* FEATURE BANNER */
.feature-banner {
  padding: 80px 0;
  background: var(--surface);
}

@media (max-width: 768px) {
  .solutions-block { padding: 60px 0; }
}
