/* ZeroCode Services Modern — minimal reference styles */
:root {
  --primary: #3b5bdb;
  --primary-dark: #2f49b0;
  --text: #1f2937;
  --muted: #6b7280;
  --bg-alt: #f8fafc;
  --border: #e5e7eb;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
a { color: var(--primary); text-decoration: none; }

/* Header */
.site-header { border-bottom: 1px solid var(--border); position: sticky; top: 0; background: #fff; z-index: 10; }
.header-inner { display: flex; align-items: center; gap: 24px; padding: 14px 20px; }
.brand-name { font-weight: 700; font-size: 1.2rem; }
.brand-logo { max-height: 40px; }
.nav { display: flex; gap: 20px; margin-left: auto; }
.nav a { color: var(--text); font-size: 0.95rem; }
.nav a:hover { color: var(--primary); }
.header-phone { font-weight: 600; }

/* Hero */
.hero { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; padding: 90px 0; text-align: center; }
.hero-title { font-size: 2.6rem; margin: 0 0 16px; font-weight: 800; }
.hero-subtitle { font-size: 1.2rem; opacity: 0.95; max-width: 640px; margin: 0 auto 28px; }
.btn { display: inline-block; padding: 14px 30px; border-radius: 8px; font-weight: 600; }
.btn-primary { background: #fff; color: var(--primary); }
.btn-primary:hover { background: #f1f5f9; }

/* Sections */
.section { padding: 70px 0; }
.section-alt { background: var(--bg-alt); }
.section-title { font-size: 1.8rem; text-align: center; margin: 0 0 40px; font-weight: 700; }
.about-text { max-width: 760px; margin: 0 auto; text-align: center; font-size: 1.05rem; color: var(--muted); }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 28px; transition: box-shadow .2s, transform .2s; }
.card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); transform: translateY(-2px); }
.card-title { margin: 0 0 8px; font-size: 1.25rem; }
.card-price { color: var(--primary); font-weight: 700; font-size: 1.1rem; margin-bottom: 10px; }
.card-desc { color: var(--muted); margin: 0; }

/* Team */
.team-card { text-align: center; }
.team-photo { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; margin: 0 auto 14px; display: block; }
.team-role { color: var(--primary); font-size: 0.9rem; margin-bottom: 8px; }

/* Footer */
.site-footer { background: #111827; color: #e5e7eb; padding: 50px 0 20px; }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-bottom: 24px; border-bottom: 1px solid #374151; }
.footer-brand { font-weight: 700; font-size: 1.2rem; margin-bottom: 8px; }
.footer-contacts { display: flex; flex-direction: column; gap: 6px; }
.footer-contacts a { color: #e5e7eb; }
.site-footer .muted { color: #9ca3af; }
.copyright { padding-top: 18px; font-size: 0.85rem; color: #9ca3af; text-align: center; }

@media (max-width: 640px) {
  .hero-title { font-size: 1.9rem; }
  .nav { display: none; }
}
