/* MN Coaching - modern black/white UI */

:root {
  --bg: #0b0c0f;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-2: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --soft: rgba(255, 255, 255, 0.12);
  --hard: rgba(255, 255, 255, 0.18);
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1120px;
  --ring: 0 0 0 4px rgba(255, 255, 255, 0.16);
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 700px at 10% 10%, rgba(255, 255, 255, 0.08), transparent 55%),
    radial-gradient(900px 600px at 85% 20%, rgba(255, 255, 255, 0.06), transparent 60%), var(--bg);
  line-height: 1.5;
}

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff;
  color: #000;
  z-index: 999;
}
.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11, 12, 15, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.brand-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
}

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

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 12px;
  cursor: pointer;
}

.nav-toggle:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.nav-toggle-icon {
  width: 18px;
  height: 12px;
  position: relative;
  display: inline-block;
}
.nav-toggle-icon::before,
.nav-toggle-icon::after,
.nav-toggle-icon {
  background: transparent;
}
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
}
.nav-toggle-icon::before {
  top: 0;
}
.nav-toggle-icon::after {
  bottom: 0;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  padding: 10px 10px;
  border-radius: 999px;
}
.nav-link:hover {
  background: rgba(255, 255, 255, 0.06);
}
.nav-link:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
  white-space: nowrap;
}
.btn:active {
  transform: translateY(1px);
}
.btn:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.btn-primary {
  background: rgba(255, 255, 255, 0.96);
  color: #000;
  border-color: rgba(255, 255, 255, 0.2);
}
.btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
}

.btn-icon {
  gap: 8px;
}

.icon {
  width: 13px;
  height: 13px;
  max-width: 13px;
  max-height: 13px;
  flex: 0 0 13px;
  display: block;
  flex-shrink: 0;
}

.hero {
  padding: 72px 0 22px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 26px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
  font-size: 13px;
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.06;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(26px, 2.6vw, 34px);
  margin: 0;
  letter-spacing: -0.015em;
}

h3 {
  font-size: 18px;
  margin: 0 0 10px;
}

.lead {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 18px;
}

.hero-badges {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
}

.hero-card {
  position: sticky;
  top: 88px;
}

.section {
  padding: 54px 0;
}

.section-alt {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
  max-width: 78ch;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 13px;
}

.center {
  text-align: center;
}

.reviews-crosslink {
  margin-top: 18px;
}

.reviews-google-panel {
  max-width: 56ch;
  margin: 0 auto 22px;
}

.reviews-google-panel__cta {
  margin: 16px 0 0;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

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

.card {
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.card-title {
  margin: 0 0 10px;
}

.feature {
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 100%;
}

.bullets,
.checklist {
  padding-left: 18px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.checklist {
  list-style: none;
  padding-left: 0;
  margin-top: 12px;
}
.checklist li {
  position: relative;
  padding-left: 26px;
  margin: 10px 0;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 14px 0;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.stat {
  border-radius: var(--radius-sm);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}
.stat-number {
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 18px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 4px;
}

.price {
  position: relative;
}

.pill {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.95);
  color: #000;
}

.highlight {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field {
  display: grid;
  gap: 8px;
}
.field.full {
  grid-column: 1 / -1;
}
label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}
input,
select,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.92);
  padding: 12px 12px;
  font: inherit;
}
textarea {
  resize: vertical;
  min-height: 120px;
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.form-actions {
  display: grid;
  gap: 10px;
  align-items: start;
}

.social-links {
  display: grid;
  gap: 10px;
}

.social-links .btn {
  width: 100%;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px 0;
  background: rgba(0, 0, 0, 0.18);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-links a:hover {
  color: rgba(255, 255, 255, 0.92);
}

.page-hero {
  padding: 48px 0 8px;
}
.page-hero h1 {
  margin-bottom: 12px;
}
.page-hero .lead {
  max-width: 65ch;
}

.service-detail {
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 16px;
}
.service-detail:last-child {
  margin-bottom: 0;
}
.service-detail h2 {
  margin-bottom: 10px;
  font-size: clamp(22px, 2.2vw, 28px);
}
.service-detail .lede {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}
.service-detail .bullets {
  margin-top: 8px;
}

.cta-banner {
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}
.cta-banner p {
  margin: 0;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.84);
}

/* Mobile nav */
@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-card {
    position: static;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: absolute;
    right: 20px;
    top: 62px;
    width: min(360px, calc(100vw - 40px));
    display: grid;
    gap: 6px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(11, 12, 15, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
    transform-origin: top right;
    transform: scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 120ms ease, transform 120ms ease;
  }

  .nav[data-open="true"] .nav-panel {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .nav-cta {
    margin-top: 6px;
  }
}

