/* SERVICE PAGES — shared styles */
.service-hero {
  padding: 60px 40px 0;
  border-bottom: 1px solid var(--border);
}
.service-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  padding-bottom: 60px;
}
.service-hero-content { padding-top: 20px; }
.service-hero-content h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 16px;
}
.service-hero-sub {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.service-hero-image {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.service-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cta-primary {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--bg);
  background: var(--accent);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 4px;
  transition: background 0.15s;
}
.cta-primary:hover { background: #e0a53f; }
.cta-secondary {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.15s, color 0.15s;
}
.cta-secondary:hover { border-color: var(--text-dim); color: var(--text); }

/* TRUST BAR */
.service-trust {
  padding: 24px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}
.trust-item { display: flex; flex-direction: column; padding: 0 40px 0 0; }
.trust-item:first-child { padding-left: 0; }
.trust-number { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: var(--text); }
.trust-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.trust-divider { width: 1px; height: 36px; background: var(--border); margin-right: 40px; flex-shrink: 0; }

/* SECTIONS */
.service-section { padding: 80px 40px; border-bottom: 1px solid var(--border); }
.service-section-alt { background: var(--surface); }
.service-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.section-text h2 { font-size: clamp(24px, 2.5vw, 32px); margin-bottom: 16px; }
.section-text p { color: var(--text-muted); font-size: 16px; line-height: 1.7; margin-bottom: 12px; }
.section-text strong { color: var(--accent); font-weight: 600; }
.section-list h3 { font-size: 18px; font-weight: 600; margin-bottom: 20px; }
.section-list ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.section-list li { font-size: 15px; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
.section-list li::before { content: '→'; color: var(--accent); flex-shrink: 0; }
.section-list li strong { color: var(--text); font-weight: 600; }

/* PRICE LIST */
.price-list { gap: 0 !important; }
.price-list li {
  flex-direction: row;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.price-list li::before { display: none; }
.price-list li:last-child { border-bottom: none; }
.price { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--accent); }
.price-note { font-size: 13px; color: var(--text-dim); font-style: italic; margin-top: 16px; }

/* CTA SECTION */
.cta-section { padding: 80px 40px; }
.cta-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.cta-inner h2 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 12px; }
.cta-inner p { color: var(--text-muted); font-size: 17px; margin-bottom: 32px; }
.cta-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

@media (max-width: 768px) {
  .service-hero, .service-trust, .service-section, .cta-section { padding-left: 24px; padding-right: 24px; }
  .service-hero-inner, .service-section-inner { grid-template-columns: 1fr; gap: 32px; }
  .service-hero-image { order: -1; }
  .trust-inner { flex-wrap: wrap; gap: 16px; }
  .trust-divider { display: none; }
  .trust-item { padding: 0; }
}