:root {
  --bg: #f7fafc;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #dbeafe;
  --primary: #1d4ed8;
  --primary-dark: #1e3a8a;
  --border: #dbe5f3;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1040px, 92vw);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bfdbfe;
  font-size: 0.78rem;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.nav-wrapper {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-size: 1.25rem;
  font-weight: 800;
}

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

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  background: linear-gradient(110deg, #0f172a, #1e40af 55%, #3b82f6);
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.18), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 740px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1.1;
}

.hero-subtitle {
  margin: 1rem auto 0;
  max-width: 620px;
  font-size: 1.05rem;
  color: #e2e8f0;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.76rem 1.1rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  border-color: var(--border);
  color: var(--text);
  background: var(--surface);
}

.btn-outline:hover {
  border-color: #cbd5e1;
}

.btn-ghost {
  display: none;
}

.hero-contact {
  margin-top: 1.3rem;
  color: var(--muted);
  font-weight: 500;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #fff;
}

.consent-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: min(760px, 94vw);
  background: #ffffff;
  color: #0f172a;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
  padding: 0.9rem 1rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
}

.consent-banner p {
  margin: 0;
  line-height: 1.45;
  color: #334155;
  font-size: 0.92rem;
}

.consent-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.footer-content {
  min-height: 82px;
  display: grid;
  place-items: center;
  align-items: center;
  color: #64748b;
  text-align: center;
}

@media (max-width: 900px) {
  .hero {
    min-height: calc(100vh - 72px);
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: calc(100vh - 72px);
  }

  .hero-contact {
    font-size: 0.92rem;
  }

  .consent-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .consent-actions {
    width: 100%;
  }

  .consent-actions .btn {
    flex: 1;
  }
}
