:root {
  color-scheme: light;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #222;
  background: #f8fafb;
  font-size: 16px;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #f8fafb;
}

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

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}

.logo {
  width: 44px;
  height: 44px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.site-nav a {
  color: #334155;
  padding: 0.5rem 0.6rem;
}

.site-nav a.active,
.site-nav a:hover {
  color: #0f172a;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0f766e;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
  background: #0e6a63;
}

.button-secondary {
  background: transparent;
  color: #0f766e;
  border: 1px solid #0f766e;
}

.hero {
  padding: 4rem 0 3rem;
  background: linear-gradient(180deg, #d1fae5 0%, #f8fafb 100%);
}

.hero-content {
  display: grid;
  gap: 1.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #115e59;
  font-weight: 700;
  margin: 0;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin: 0;
  line-height: 1.05;
  color: #0f172a;
}

.hero p {
  max-width: 720px;
  margin: 0;
  color: #334155;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.overview,
.consultation,
.page-content {
  padding: 3rem 0;
}

.overview h2,
.page-content h1,
.page-content h2 {
  margin-top: 0;
  color: #0f172a;
}

.cards-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 1.5rem;
}

.card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 1.5rem;
}

.card h3 {
  margin-top: 0;
}

.consultation {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  padding: 2rem;
}

.consultation .split {
  display: grid;
  gap: 1.5rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  max-width: 620px;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
  color: #0f172a;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 0.75rem;
  padding: 0.9rem 1rem;
  background: #f8fafb;
  color: #0f172a;
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  font-size: 0.95rem;
  min-height: 1.4rem;
}

.site-footer {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 1.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .hero-content {
    gap: 2rem;
  }

  .header-inner {
    align-items: center;
  }

  .site-nav {
    gap: 1rem;
  }

  .consultation .split {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 760px) {
  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    transform: translateY(-100%);
    transition: transform 0.2s ease;
    visibility: hidden;
    opacity: 0;
  }

  .site-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .menu-toggle {
    border: none;
    background: transparent;
    color: #0f172a;
    font-size: 1.5rem;
    cursor: pointer;
  }
}
