/* ──────────── STEPS ──────────── */
.steps-section {
  background: #f0f4ec;
  position: relative;
}

.steps-section::after {
  content: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 4px 14px rgba(23, 38, 34, 0.04);
  transition: all 0.3s ease;
}

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

.step-card::before {
  counter-increment: step;
  content: counter(step);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--teal-light);
  color: var(--green);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 18px;
  box-shadow: none;
}

.step-card h3 {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

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

/* ──────────── FAQ ──────────── */
.faq-section {
  background: #f8faf6;
  position: relative;
}

.faq-section::before {
  content: none;
}

.faq-wrap {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 36px;
}

.faq-aside {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  align-self: start;
  border: 1px solid var(--line);
}

.faq-aside h2 {
  color: var(--dark);
  font-size: 32px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.faq-aside p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 22px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  margin-bottom: 14px;
  transition: all 0.25s ease;
}

.faq-item.open {
  border-color: #b8cec3;
  box-shadow: var(--shadow);
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px;
  cursor: pointer;
  gap: 14px;
}

.faq-header h3 {
  color: var(--dark);
  font-size: 17px;
  line-height: 1.4;
  margin: 0;
}

.faq-toggle {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--teal-light);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--green);
  color: #fff;
}

.faq-body {
  padding: 0 22px 22px;
  display: none;
}

.faq-item.open .faq-body { display: block; }

.faq-body p {
  color: var(--muted);
  line-height: 1.65;
}

/* ──────────── CTA ──────────── */
.cta {
  padding: 80px 0;
  background: #ede8df;
  color: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #ded7cb;
  border-bottom: 1px solid #ded7cb;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1140px, calc(100% - 48px));
  height: 4px;
  background: var(--orange);
  border-radius: 0 0 4px 4px;
  transform: translateX(-50%);
}

.cta h2 {
  max-width: 740px;
  margin: 0 auto 18px;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--dark);
  position: relative;
  z-index: 1;
}

.cta p {
  max-width: 640px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-actions .btn-outline {
  background: #fff;
  border-color: #d7d0c5;
  color: var(--dark);
}

.cta-actions .btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: #fffaf6;
}

/* ──────────── FOOTER ──────────── */
.footer {
  background: #202220;
  color: rgba(255, 255, 255, 0.56);
  padding: 32px 0;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.mobile-sticky-cta {
  display: none;
}

.mobile-sticky-link {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.mobile-sticky-link .ui-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  stroke-width: 2.2;
}

.mobile-sticky-phone {
  background: #202220;
  color: #fff;
}

.mobile-sticky-calc {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 18px rgba(227, 107, 37, 0.22);
}
