*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #fafaf9;
  --tint: #f4f6fb;
  --surface: #ffffff;
  --border: #e5e5e3;
  --text: #1a1a18;
  --muted: #6b6b66;
  --accent: #1d4ed8;
  --accent-hover: #1e40af;
  --accent-light: #eff6ff;
  --radius: 12px;
  --shadow-sm: 0 1px 2px rgba(20, 20, 15, 0.04), 0 1px 6px rgba(20, 20, 15, 0.04);
  --shadow-md: 0 4px 16px rgba(20, 20, 15, 0.07);
}

html { font-size: 16px; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }

body {
  background-color: var(--surface);
  background-image:
    linear-gradient(rgba(29, 78, 216, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 78, 216, 0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.65;
  min-height: 100vh;
}

.wrap {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Nav ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}

.nav-badge {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-name {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

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

.nav-links a:not(.btn-primary) {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-links a:not(.btn-primary):hover { color: var(--text); }

.nav-cta { padding: 8px 16px; font-size: 0.8125rem; margin-top: 0; }

/* ── Bands ── */
.band { width: 100%; }
.band-white { background: transparent; }
.band-tint  { background: var(--tint); }

.band > .wrap {
  padding-top: 56px;
  padding-bottom: 56px;
}

.band-hero > .wrap { padding-top: 64px; padding-bottom: 48px; }

/* ── Header / Hero ── */
header {
  display: flex;
  align-items: center;
  gap: 28px;
}

.avatar-wrap { flex-shrink: 0; width: 96px; height: 96px; }

.avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--surface);
  box-shadow: 0 0 0 1px var(--border), var(--shadow-sm);
}

.avatar-placeholder {
  display: none;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(155deg, var(--accent), #1e3a8a);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  align-items: center;
  justify-content: center;
  user-select: none;
  box-shadow: var(--shadow-md);
}

.hero-text { display: flex; flex-direction: column; gap: 5px; }

h1 {
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.tagline {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.45;
}

.location {
  font-size: 0.8125rem;
  color: #9c9c96;
  margin-top: 2px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  align-self: flex-start;
  margin-top: 16px;
  padding: 11px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(29, 78, 216, 0.28);
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
}
.btn-primary:hover  { background: var(--accent-hover); box-shadow: 0 4px 14px rgba(29, 78, 216, 0.35); }
.btn-primary:active { transform: scale(0.98); }

/* ── Section headings ── */
section { display: flex; flex-direction: column; }
.wrap > h2 + * { margin-top: 18px; }

h2 {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
}

h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── Value prop ── */
.lede {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text);
  font-weight: 450;
}

/* ── Track record stats ── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, box-shadow 0.15s;
}
.stat:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.stat-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 40px;
  padding: 0 10px;
  border-radius: 20px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.stat-badge-sm { font-size: 0.8125rem; }

.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ── Problem cards ── */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, box-shadow 0.15s;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  margin-bottom: 14px;
}
.card h3   { font-size: 0.9375rem; font-weight: 600; margin-bottom: 6px; }
.card p    { font-size: 0.875rem; color: var(--muted); }

/* ── Services ── */
.services { display: flex; flex-direction: column; gap: 20px; }

.service-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.15s;
}
.service-block:hover { box-shadow: var(--shadow-md); }

.service-block h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.service-sub {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.service-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-block li {
  font-size: 0.9rem;
  color: var(--text);
  padding-left: 16px;
  border-left: 2px solid var(--accent-light);
}

.price {
  display: inline-block;
  margin-top: 3px;
  font-size: 0.8125rem;
  color: var(--accent);
  font-weight: 600;
}

.cta-box {
  margin-top: 22px;
  background: linear-gradient(135deg, var(--accent-light), #e0ebff);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 0.9375rem;
  color: #1e3a8a;
  line-height: 1.55;
}

/* ── About ── */
.about-single { display: flex; flex-direction: column; gap: 14px; }
.about-single p { font-size: 0.9375rem; }

/* ── Contact ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.contact-info p {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 22px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9c9c96;
}

.contact-list a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}
.contact-list a:hover { text-decoration: underline; }

.contact-list li span + * { font-size: 0.9rem; }

/* ── Form ── */
form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--tint);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.field { display: flex; flex-direction: column; gap: 5px; }

label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
}

input, textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  resize: vertical;
}

input::placeholder, textarea::placeholder { color: #b8b8b0; }

input:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.12);
}

button[type="submit"] {
  align-self: flex-start;
  padding: 10px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(29, 78, 216, 0.25);
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
}

button[type="submit"]:hover  { background: var(--accent-hover); box-shadow: 0 4px 14px rgba(29, 78, 216, 0.32); }
button[type="submit"]:active { transform: scale(0.98); }
button[type="submit"]:disabled { opacity: 0.6; cursor: not-allowed; }

.form-hint {
  font-size: 0.8125rem;
  color: #9c9c96;
  margin-top: -4px;
}

.form-status { font-size: 0.875rem; min-height: 1.2em; }
.form-status.success { color: #15803d; }
.form-status.error   { color: #b91c1c; }

/* ── Footer ── */
footer {
  background: #14151a;
  color: #a8a8a3;
}

footer .wrap {
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

footer p { font-size: 0.8125rem; color: #d4d4d0; }
.footer-sub { color: #7a7a76 !important; }
.footer-sub a { color: #a8a8a3; text-decoration: none; }
.footer-sub a:hover { text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 640px) {
  .nav-links a:not(.nav-cta):not(.btn-primary) { display: none; }
  .nav-cta { padding: 7px 14px; font-size: 0.75rem; }
  header       { flex-direction: column; text-align: center; }
  .hero-cta    { align-self: center; }
  .cards       { grid-template-columns: 1fr; gap: 12px; }
  .stats       { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .band > .wrap { padding-top: 40px; padding-bottom: 40px; }
  h1           { font-size: 1.375rem; }
  .lede        { font-size: 1rem; }
}
