:root {
  --bg: #ececec;
  --surface: #f6f6f6;
  --text: #111111;
  --muted: #4b5563;
  --primary: #1f2937;
  --primary-dark: #111827;
  --accent: #374151;
  --ring: rgba(17, 24, 39, 0.18);
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(to bottom, #ededed 0%, #f7f7f7 58%, #e6e6e6 100%);
  line-height: 1.6;
}

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

header {
  padding: 10px 0 50px;
  background:
    linear-gradient(135deg, rgba(236, 236, 236, 0.1), rgba(236, 236, 236, 0.1)),
    url("assets/bg.jpeg") left bottom / 220px auto repeat-x,
    white;
  border-bottom: 1px solid #d1d5db;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-link {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

.nav-link:hover {
  color: var(--primary);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 1.1rem;
}

.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: contain;
  background: #000;
  border: 1px solid #444;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(2, 6, 23, 0.35);
}

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

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  border: 1px solid #111827;
  box-shadow: 0 8px 20px var(--ring);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 32px 0 28px;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.kicker {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

h1 {
  margin: 0 0 14px;
  line-height: 1.15;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
}

.lead {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 12px;
}

.hero-points li {
  background: #f1f1f1;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 600;
}

section {
  padding: 34px 0;
}

.section-title {
  margin: 0 0 8px;
  font-size: 1.6rem;
}

.section-lead {
  margin: 0 0 20px;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border-radius: 14px;
  padding: 18px;
  border: 1px solid #d1d5db;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.highlight {
  background:
    linear-gradient(135deg, rgba(239, 239, 239, 0.96), rgba(229, 231, 235, 0.96)),
    url("assets/bg.jpeg") left bottom / 220px auto repeat-x,
    linear-gradient(135deg, #efefef, #e5e7eb);
  border: 1px solid #d1d5db;
  border-radius: var(--radius);
  padding: 22px;
}

.checklist {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--text);
}

.checklist li {
  margin-bottom: 6px;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.pill {
  background: #f0f0f0;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 600;
}

.cta {
  text-align: center;
  background: #efefef;
  color: #111111;
  border: 1px solid #d1d5db;
  border-radius: var(--radius);
  padding: 30px 20px;
  margin: 26px 0 46px;
}

.cta h2 {
  margin: 0 0 8px;
}

.cta p {
  margin: 0 0 20px;
  color: #4b5563;
}

.btn-light {
  background: #111827;
  color: #ffffff;
}

footer {
  padding: 0 0 28px;
  text-align: center;
  color: #4b5563;
  font-size: 0.94rem;
}

.consulting-page .hero {
  display: block;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  margin: 16px 0 22px;
}

.consulting-page .lead {
  margin: 0;
  max-width: 75ch;
}

.consulting-page section {
  padding: 22px 0;
}

.consulting-page .cta {
  margin: 24px 0 46px;
}

.consulting-page .highlight {
  padding: 26px 24px;
}

.consulting-page .highlight .section-title {
  margin-bottom: 10px;
}

.consulting-page .highlight .section-lead {
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: 1fr;
  }

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