:root {
  --ink: #101828;
  --muted: #667085;
  --line: #e4e7ec;
  --brand: #0f9f8f;
  --violet: #7c3aed;
  --cream: #f7f4ef;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
}
a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(228,231,236,.8);
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand .mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), #8b5cf6);
  box-shadow: inset 0 -10px 18px rgba(255,255,255,.24);
}
.brand span span, .brand em { display: block; }
.brand em { color: var(--muted); font-style: normal; font-size: 13px; }
nav { display: flex; align-items: center; gap: 22px; color: var(--muted); font-weight: 650; }
.nav-call { color: var(--brand); }
.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: end;
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(26px, 6vw, 72px);
  background: var(--cream);
}
.hero-media {
  min-height: 62vh;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(16,24,40,.05), rgba(16,24,40,.18)),
    url("https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=1400&q=82") center / cover;
  box-shadow: 0 28px 80px rgba(16,24,40,.18);
}
.hero-copy { padding-bottom: 7vh; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 800;
}
h1, h2 { margin: 0; line-height: .98; letter-spacing: 0; }
h1 { font-size: clamp(48px, 8vw, 104px); max-width: 9ch; }
h2 { font-size: clamp(34px, 5vw, 62px); }
p { color: var(--muted); font-size: 18px; line-height: 1.6; }
.primary {
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  background: var(--ink);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.section { padding: clamp(46px, 7vw, 92px) clamp(18px, 4vw, 56px); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 28px; }
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.service-grid article {
  min-height: 138px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(16,24,40,.06);
}
.service-grid strong { font-size: 20px; }
.service-grid span { color: var(--muted); font-weight: 700; }
.split { display: grid; grid-template-columns: 1fr minmax(260px, 420px); gap: 28px; background: #f8fafc; align-items: stretch; }
.map-card {
  display: grid;
  place-items: center;
  min-height: 220px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--brand), var(--violet));
  color: #fff;
  font-weight: 850;
  box-shadow: 0 24px 70px rgba(15,159,143,.24);
}
.alice-widget { position: fixed; right: 22px; bottom: 22px; z-index: 20; }
.alice-bubble {
  border: 0;
  border-radius: 999px;
  background: var(--violet);
  color: #fff;
  padding: 15px 20px;
  box-shadow: 0 20px 60px rgba(124,58,237,.28);
  font-weight: 850;
  cursor: pointer;
}
.alice-panel {
  position: absolute;
  right: 0;
  bottom: 62px;
  width: min(390px, calc(100vw - 28px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(16,24,40,.2);
  overflow: hidden;
}
.alice-panel header { display: flex; justify-content: space-between; align-items: center; padding: 18px; border-bottom: 1px solid var(--line); }
.alice-panel header span { display: block; color: var(--muted); font-size: 13px; margin-top: 2px; }
.alice-panel header button { border: 1px solid var(--line); background: #fff; border-radius: 12px; width: 38px; height: 38px; font-size: 24px; cursor: pointer; }
#alice-form { padding: 18px; display: grid; gap: 12px; }
#alice-form label { display: grid; gap: 6px; color: var(--muted); font-weight: 750; font-size: 13px; }
#alice-form input, #alice-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  font: inherit;
  color: var(--ink);
}
#alice-form textarea { min-height: 112px; resize: vertical; }
.alice-note { margin: 0; padding: 0 18px 18px; font-size: 13px; }
.alice-result { margin: 0 18px 18px; padding: 12px; border-radius: 14px; background: #ecfdf3; color: #067647; font-weight: 750; }
.alice-result.is-error { background: #fef3f2; color: #b42318; }

@media (max-width: 820px) {
  nav a:not(.nav-call) { display: none; }
  .hero { grid-template-columns: 1fr; padding: 18px; }
  .hero-media { min-height: 52vh; border-radius: 24px; }
  .hero-copy { padding-bottom: 0; }
  .service-grid, .split { grid-template-columns: 1fr; }
  .alice-widget { right: 14px; bottom: 14px; }
}

