/* ═══════════════════════════════════════════════════════════
   PAGE STYLES — Hero, sections, footer
   ═══════════════════════════════════════════════════════════ */

/* Hero — Split 60/40 */
.hero {
  min-height: var(--hero-height);
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  padding-top: calc(var(--nav-height) + var(--space-2xl));
  padding-bottom: var(--space-2xl);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter-mobile);
}

.hero-text {
  flex: 1;
}

.hero-text .display {
  font-family: var(--font-heading);
  font-size: var(--text-display);
  font-weight: var(--weight-bold);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.hero-text .subtitle {
  font-size: var(--text-body);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 50ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.hero-visual {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-inner {
    flex-direction: row;
    padding: 0 var(--gutter-tablet);
  }
  .hero-text { flex: 0 0 60%; }
  .hero-visual { flex: 0 0 40%; }
}

@media (min-width: 1024px) {
  .hero-inner { padding: 0 var(--gutter-desktop); }
}

/* Service cards grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

.service-card .icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.service-card h3 {
  margin-bottom: var(--space-sm);
  font-size: var(--text-h4);
}

.service-card p {
  font-size: var(--text-small);
  margin: 0 auto;
}

/* Section header */
.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  margin: 0 auto;
  color: var(--color-text-muted);
}

/* CTA band */
.cta-band {
  text-align: center;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.cta-band h2 {
  margin-bottom: var(--space-md);
}

.cta-band p {
  margin: 0 auto var(--space-xl);
}

/* Footer */
.footer {
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
}

.footer-links {
  display: flex;
  gap: var(--space-xl);
  list-style: none;
}

.footer-links a {
  color: var(--color-text-muted);
  font-size: var(--text-small);
}

.footer-links a:hover {
  color: var(--color-text);
}

.footer-copy {
  color: var(--color-text-muted);
  font-size: var(--text-caption);
}

/* Placeholder content */
.placeholder-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: calc(var(--nav-height) + var(--space-3xl));
}

.placeholder-page h1 {
  margin-bottom: var(--space-md);
}

.placeholder-page p {
  margin: 0 auto var(--space-xl);
}

.placeholder-badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-caption);
  font-weight: var(--weight-medium);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}
