/* ── SERVICES PAGE ── */

.service-block { padding: 72px 0; border-bottom: 1px solid var(--border); }
.service-block:last-of-type { border-bottom: none; }
.service-block:nth-child(even) { background: var(--offwhite); }

.service-inner { display: grid; grid-template-columns: 260px 1fr; gap: 72px; align-items: start; }

.service-num { font-family: var(--font-head); font-size: 80px; font-weight: 700; color: var(--sage); line-height: 0.85; letter-spacing: -0.02em; margin-bottom: 16px; }
.service-meta h2 { font-size: clamp(22px, 2.5vw, 28px); margin-bottom: 0; }

.service-body > p { font-size: 16px; font-weight: 400; color: var(--muted); line-height: 1.8; margin-bottom: 28px; max-width: 560px; }

.service-bullets { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 40px; }
.service-bullets li { font-size: 16px; font-weight: 400; color: var(--text); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.service-bullets li::before { content: ''; display: block; width: 6px; height: 6px; background: var(--navy); border-radius: 50%; flex-shrink: 0; margin-top: 8px; opacity: 0.45; }

#models { padding: 80px 0; }
#models .section-label { color: var(--sage); opacity: 0.8; }
#models .section-label::before { background: var(--sage); opacity: 0.5; }
#models h2 { color: var(--white); margin-bottom: 48px; }
 
.models-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; position: relative; z-index: 1; }
 
.model-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(219,232,225,0.12); border-top: 3px solid rgba(219,232,225,0.3); padding: 40px 32px; transition: background 0.2s, border-top-color 0.2s; }
.model-card:hover { background: rgba(219,232,225,0.08); border-top-color: var(--sage); }
 
.model-badge { font-family: var(--font-head); font-size: 16px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: #c8dbd4; margin-bottom: 14px; display: block; }
.model-card h3 { color: var(--white); font-size: 22px; margin-bottom: 6px; }
.model-tagline { font-size: 16px; font-weight: 400; color: #9dbece; font-style: italic; margin-bottom: 16px; }
.model-card p { font-size: 16px; font-weight: 400; color: #9dbece; line-height: 1.7; }
 
@media (max-width: 768px) {
  .service-inner { grid-template-columns: 1fr; gap: 24px; }
  .service-bullets { grid-template-columns: 1fr; }
  .models-grid { grid-template-columns: 1fr; }
}
