:root {
  --bg: #ffffff;
  --text: #1f2937; /* slate-800 */
  --muted: #6b7280; /* slate-500 */
  --primary: #0ea5a5; /* teal-600 */
  --primary-700: #0c8c8c;
  --border: #e5e7eb; /* slate-200 */
  --relief: 0 8px 20px rgba(0,0,0,0.06);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container { max-width: 1080px; padding: 0 20px; margin: 0 auto; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.85); backdrop-filter: blur(6px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-weight: 700; color: var(--text); text-decoration: none; letter-spacing: 0.2px; }
.nav a { color: var(--text); text-decoration: none; margin-left: 18px; padding: 8px 10px; border-radius: 8px; }
.nav a:hover { background: #f8fafc; }

/* Hero */
.hero { padding: 80px 0 40px; }
.hero-inner { text-align: center; }
.hero h1 { font-size: 2.2rem; margin: 0 0 12px; }
.hero p { color: var(--muted); max-width: 760px; margin: 0 auto 18px; }
.hero-cta { display: flex; gap: 12px; justify-content: center; }

/* Buttons */
.btn { display: inline-block; padding: 10px 16px; border-radius: 10px; text-decoration: none; font-weight: 600; transition: transform .2s ease, box-shadow .2s ease; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--relief); }
.btn-primary:hover { background: var(--primary-700); transform: translateY(-1px); }
.btn-outline { border: 1px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

/* Sections */
section { padding: 48px 0; }
.highlights .card, .services .card, .testimonials .card, .contact-card { padding: 22px; border: 1px solid var(--border); background: #fff; border-radius: 16px; }
.relief { box-shadow: var(--relief); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.services h2, .testimonials h2, .about h2, .contact h2 { margin-top: 0; }
.card h3 { margin: 0 0 6px; font-size: 1.15rem; }
.card p { margin: 0; color: var(--muted); }

/* Testimonials */
.testimonials blockquote { margin: 0 0 8px; font-style: italic; color: var(--text); }
.testimonials figcaption { color: var(--muted); }

/* Contact */
.contact-card { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { margin: 4px 0; }
.contact-actions { display: flex; gap: 10px; align-items: center; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding-top: 16px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-nav a { color: var(--muted); text-decoration: none; margin-left: 16px; }
.footer-nav a:hover { color: var(--primary); }
.legal { padding-bottom: 18px; color: var(--muted); }

/* Cookie banner */
.cookie-banner { position: fixed; bottom: 16px; left: 0; right: 0; display: none; }
.cookie-inner { display: flex; gap: 12px; align-items: center; justify-content: space-between; padding: 16px; border: 1px solid var(--border); background: #ffffff; border-radius: 14px; box-shadow: var(--relief); }
.cookie-inner p { margin: 0; color: var(--muted); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(10px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .contact-card { flex-direction: column; }
  .nav { display: none; }
}