/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #dbeafe;
  --bg: #f8fafc;
  --surface: #ffffff;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.06);
  --max-w: 1100px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== HEADER ===== */
header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.logo span { color: var(--primary); }

nav a {
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 500;
  margin-left: 1.5rem;
}

nav a:hover { color: var(--primary); text-decoration: none; }

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 4rem 1.5rem 2.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: .8rem;
  font-weight: 600;
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  letter-spacing: .02em;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: .75rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: .75rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: background .15s, transform .15s;
}

.hero-btn:hover {
  background: var(--primary-dark);
  text-decoration: none;
  transform: translateY(-1px);
}

/* ===== AD BANNER ===== */
.ad-banner {
  max-width: var(--max-w);
  margin: 1rem auto;
  padding: 0 1.5rem;
  text-align: center;
}

.ad-placeholder {
  background: #f1f5f9;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  color: var(--text-muted);
  font-size: .85rem;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

.services-section h2 {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  text-decoration: none;
}

.service-card.featured {
  border-color: var(--primary);
  border-width: 2px;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: .75rem;
}

.service-badge {
  display: inline-block;
  background: #dcfce7;
  color: #166534;
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 50px;
  margin-bottom: .75rem;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.service-badge.soon {
  background: #fef3c7;
  color: #92400e;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .35rem;
}

.service-card p {
  font-size: .9rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1rem;
}

.service-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--primary);
}

.service-link.muted {
  color: var(--text-muted);
}

/* ===== STATS SECTION ===== */
.stats-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}

.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: .25rem;
}

.stat-label {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== SEO CONTENT SECTION ===== */
.seo-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem 1.5rem;
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.8;
}

.seo-content h2 {
  color: var(--text);
  font-size: 1.25rem;
  margin-bottom: .75rem;
}

/* ===== FOOTER ===== */
footer {
  margin-top: auto;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: .85rem;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-links {
  margin-bottom: .75rem;
}

.footer-links a {
  color: var(--text-muted);
  margin: 0 .75rem;
  font-weight: 500;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .hero h1 { font-size: 1.75rem; }
  .hero p { font-size: 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  nav a { margin-left: .75rem; font-size: .8rem; }
}
