:root {
  --bg: #0f172a;
  --panel: #111827;
  --text: #e5e7eb;
  --muted: #cbd5e1;
  --accent: #f97316;
  --accent-2: #22c55e;
  --border: #1f2937;
  --card: #0b1220;
  --shadow: 0 20px 50px rgba(0,0,0,0.35);
  --radius: 14px;
  --radius-sm: 10px;
  --maxw: 1120px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.04), transparent 25%),
              radial-gradient(circle at 80% 0%, rgba(255,255,255,0.05), transparent 25%),
              #0b1220;
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
p { margin: 0 0 0.75rem; color: var(--muted); }
h1,h2,h3,h4 { margin: 0 0 0.5rem; color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(11,18,32,0.8);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.brand { font-weight: 700; letter-spacing: 0.5px; }
.nav { display: flex; gap: 16px; flex-wrap: wrap; }
.nav a { padding: 8px 10px; border-radius: 8px; color: var(--muted); }
.nav a:hover, .nav a[aria-current="page"] { color: #fff; background: rgba(255,255,255,0.06); }

main { max-width: var(--maxw); margin: 0 auto; padding: 32px 20px 80px; }

.hero { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; align-items: center; padding: 40px 0; }
.hero.slim { padding: 32px 0; }
.hero-text h1 { font-size: clamp(28px, 4vw, 44px); }
.hero-text .lead { font-size: 17px; color: var(--muted); }
.hero-bullets { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 18px; }
.hero-bullets span { padding: 6px 10px; background: rgba(255,255,255,0.06); border: 1px solid var(--border); border-radius: 999px; font-size: 13px; }
.hero-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border); }
.eyebrow { text-transform: uppercase; letter-spacing: 1px; font-size: 12px; color: var(--accent-2); margin-bottom: 6px; }

.section { margin: 48px 0; padding: 32px; background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.section.alt { background: rgba(255,255,255,0.015); }
.section-header { margin-bottom: 18px; }
.section-header p { max-width: 640px; }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }

.cards { gap: 18px; }
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.card img { width: 100%; border-radius: var(--radius-sm); border: 1px solid var(--border); margin-bottom: 12px; object-fit: cover; max-height: 220px; }
.card.small { padding: 14px; }
.card.small img { max-height: 160px; }

.steps { text-align: center; }
.step { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); }
.step span { display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center; border-radius: 50%; background: var(--accent); color: #0b1220; font-weight: 700; margin-bottom: 8px; }

.list { padding-left: 18px; color: var(--muted); }
.list li { margin-bottom: 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #fb923c);
  color: #0b1220;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(249,115,22,0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 14px 36px rgba(249,115,22,0.45); }
.btn.ghost { background: rgba(255,255,255,0.06); color: #fff; border: 1px solid var(--border); box-shadow: none; }

.inline-link { color: var(--accent); text-decoration: underline; }

.form { display: flex; flex-direction: column; gap: 14px; }
.form input, .form textarea, .form select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: #fff;
}
.form label { display: flex; flex-direction: column; gap: 6px; font-weight: 600; color: #fff; }
.form-note { color: var(--muted); font-size: 13px; }
.checkbox { flex-direction: row !important; align-items: center; gap: 10px; font-weight: 500; color: var(--muted); }
.checkbox input { width: auto; }

.map iframe { width: 100%; height: 260px; border: 1px solid var(--border); border-radius: var(--radius); }

.site-footer {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px 20px 48px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
}
.footer-legal { line-height: 1.5; }
.footer-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 8px; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: #fff; }

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  left: 16px;
  max-width: 960px;
  margin: 0 auto;
  background: #0f172a;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow);
  z-index: 20;
}
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
  padding: 20px;
}
.cookie-modal[open], .cookie-modal[style*="display: flex"] { display: flex; }
.cookie-modal__content {
  background: #0f172a;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  width: min(480px, 100%);
  box-shadow: var(--shadow);
}
.modal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.close { background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; }

@media (max-width: 720px) {
  .site-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
}
