:root {
  --bg: #0f172a;
  --panel: #111827;
  --text: #0f172a;
  --muted: #475569;
  --brand: #2563eb;
  --brand-dark: #1d4ed8;
  --soft: #f8fafc;
  --line: #e2e8f0;
  --white: #ffffff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.08em;
}

nav a {
  color: var(--text);
  text-decoration: none;
  margin-left: 22px;
  font-weight: 600;
}

.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 55%, #2563eb 100%);
  color: var(--white);
  padding: 90px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 13px;
  color: var(--brand);
  margin: 0 0 12px;
}

.hero .eyebrow { color: #93c5fd; }

h1, h2, h3 { line-height: 1.15; margin-top: 0; }

h1 {
  font-size: clamp(42px, 6vw, 70px);
  margin-bottom: 22px;
}

h2 { font-size: clamp(30px, 4vw, 44px); }

.lead {
  font-size: 21px;
  max-width: 720px;
  color: #dbeafe;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
}

.primary { background: var(--white); color: var(--brand-dark); }
.secondary { border: 1px solid rgba(255,255,255,.45); color: var(--white); }

.card, .price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(15,23,42,.08);
}

.hero-card {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.25);
  backdrop-filter: blur(12px);
}

.hero-card ul, .price-card ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.section { padding: 80px 0; }
.alt { background: var(--soft); }

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.price {
  font-size: 28px;
  font-weight: 900;
  color: var(--brand);
  margin: 12px 0;
}

.featured {
  border: 2px solid var(--brand);
  transform: translateY(-8px);
}

.notice {
  background: #eff6ff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 40px;
  align-items: start;
}

footer {
  background: var(--bg);
  color: #cbd5e1;
  padding: 26px 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 900px) {
  .hero-grid, .cards, .pricing, .contact-grid {
    grid-template-columns: 1fr;
  }

  .featured { transform: none; }

  .nav {
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
  }

  nav a {
    margin: 0 14px 0 0;
  }

  .footer { flex-direction: column; }
}


/* SEO/multilingual improvements */
.language-switch { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.language-switch a { margin-left: 0; padding: 6px 9px; border-radius: 999px; border: 1px solid var(--line); font-size: 14px; }
.service-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px; }
.service-list li { background: var(--soft); border: 1px solid var(--line); border-radius: 14px; padding: 14px; }
.local-seo { background: #f8fafc; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.badges { display:flex; gap:10px; flex-wrap:wrap; margin-top: 18px; }
.badge { background:#e0f2fe; color:#075985; padding:7px 10px; border-radius:999px; font-weight:700; font-size:14px; }
.skip-link { position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden; }
.skip-link:focus { left: 12px; top: 12px; width:auto; height:auto; z-index: 999; background:#fff; padding: 10px; border-radius: 8px; }
@media (max-width: 900px) { .service-list { grid-template-columns: 1fr; } .language-switch { margin-top: 8px; } }
