/* ─── MODEL CTA ─── */
.cta-section { background: var(--surface); text-align: center; padding: 80px 48px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px); letter-spacing: 2px; margin-bottom: 16px; line-height: 1; }
.cta-price { font-family: var(--font-display); font-size: 48px; color: var(--amber); margin-bottom: 32px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.cta-phone { display: block; font-family: var(--font-display); font-size: 28px; color: var(--amber); text-decoration: none; margin-top: 16px; }

footer { padding: 40px 80px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 20px; }
.footer-text { font-size: 12px; color: var(--muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

@media (max-width: 768px) {
  nav { padding: 12px 20px; }
  .hero { padding: 100px 20px 60px; }
  section { padding: 60px 20px; }
  .specs-grid { grid-template-columns: 1fr; }
  .kit-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  footer { padding: 32px 20px; flex-direction: column; text-align: center; }
}
