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

:root {
  --primary-dark: #272727;
  --secondary-dark: #181d21;
  --primary-accent: #00e4e7;
  --accent-hover: #3eeaed;
  --accent-soft: #e6fbfc;
  --accent-text: #124b52;
  --bg-page: #f5f7f9;
  --bg-alt: #edf7f8;
  --bg-card: #ffffff;
  --body-text: #3d4650;
  --heading-text: #272727;
  --muted-text: #6b7280;
  --border-subtle: #d8e0e7;
  --border-soft: rgba(15, 23, 42, 0.1);
  --white-soft: #fafcfe;
  --radius-sm: 6px;
  --radius-md: 8px;
  --shadow-soft: 0 18px 44px rgba(15, 23, 42, 0.12);
  --shadow-dark: 0 22px 60px rgba(11, 15, 20, 0.28);
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Aptos", "Segoe UI", system-ui, sans-serif;
  background: var(--bg-page);
  color: var(--body-text);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(203, 213, 225, 0.24) 1px, transparent 1px),
    linear-gradient(180deg, rgba(203, 213, 225, 0.2) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 48%);
}

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

a {
  color: inherit;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

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

.button.primary {
  color: var(--heading-text);
  background: var(--primary-accent);
  border-color: var(--primary-accent);
}

.button.primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.button.secondary {
  color: var(--heading-text);
  background: #ffffff;
  border-color: var(--border-subtle);
}

.button.secondary:hover {
  color: var(--primary-accent);
  border-color: rgba(0, 228, 231, 0.55);
}

.button.light {
  color: #ffffff;
  background: rgba(248, 250, 252, 0.08);
  border-color: rgba(248, 250, 252, 0.25);
}

.button.light:hover {
  background: rgba(248, 250, 252, 0.14);
  border-color: rgba(248, 250, 252, 0.45);
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(216, 224, 231, 0.9);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo-link {
  text-decoration: none;
}

.site-logo {
  display: block;
  width: clamp(142px, 16vw, 190px);
  height: auto;
}

.staging-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.32rem 0.62rem;
  color: #ffffff;
  background: var(--primary-accent);
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 0 0 4px rgba(0, 228, 231, 0.18);
}

.nav {
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 0.3rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  text-decoration: none;
  color: var(--body-text);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.nav-links a:hover {
  color: var(--primary-accent);
  background: #ffffff;
  border-color: var(--border-subtle);
}

.nav-toggle {
  display: none;
  background: var(--primary-dark);
  border: 1px solid var(--primary-dark);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0.55rem;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: var(--white-soft);
  border-radius: 999px;
}

.hero {
  padding: 4.5rem 0 4rem;
  background:
    linear-gradient(135deg, rgba(11, 15, 20, 0.98), rgba(17, 24, 39, 0.94)),
    repeating-linear-gradient(135deg, rgba(248, 250, 252, 0.05) 0 1px, transparent 1px 18px);
  color: var(--white-soft);
  border-bottom: 5px solid var(--primary-accent);
}

.hero-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-text h1 {
  max-width: 14ch;
  color: #ffffff;
  font-size: clamp(2.35rem, 5vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: 0;
  margin-bottom: 1.1rem;
}

.hero-text p {
  color: #dbe3ed;
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 37rem;
  margin-bottom: 1.35rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1.2rem;
}

.hero-tags,
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hero-tags span,
.pill-list li {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.38rem 0.7rem;
  border-radius: var(--radius-sm);
}

.hero-tags span {
  color: #ffffff;
  border: 1px solid rgba(248, 250, 252, 0.2);
  background: rgba(248, 250, 252, 0.08);
}

.hero-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.55rem;
  color: var(--heading-text);
  border: 1px solid rgba(248, 250, 252, 0.12);
  box-shadow: var(--shadow-dark);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--primary-accent);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  border: 1px solid rgba(0, 228, 231, 0.38);
  color: var(--accent-text);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.status-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary-accent);
  box-shadow: 0 0 0 4px rgba(0, 228, 231, 0.18);
}

.hero-metrics {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-metrics li {
  display: grid;
  gap: 0.2rem;
  padding: 0.72rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-metrics li:last-child {
  border-bottom: none;
}

.hero-metrics .label {
  color: var(--primary-accent);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-metrics .value {
  color: var(--body-text);
  font-size: 0.95rem;
  line-height: 1.55;
}

.hero-note {
  margin-top: 1rem;
  padding: 0.85rem;
  color: #f8fafc;
  font-size: 0.86rem;
  line-height: 1.55;
  border-radius: var(--radius-sm);
  background: var(--primary-dark);
  border-left: 4px solid var(--primary-accent);
}

.section {
  padding: 4rem 0;
}

.section.muted {
  background:
    linear-gradient(180deg, #ffffff, var(--bg-alt)),
    var(--bg-alt);
}

.section-header {
  max-width: 680px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-header h2 {
  color: var(--heading-text);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.12;
  margin-bottom: 0.55rem;
}

.section-header p {
  color: var(--muted-text);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.fit-section {
  background: #ffffff;
}

.fit-inner {
  display: grid;
  gap: 1.4rem;
  align-items: start;
}

.fit-copy h2 {
  max-width: 18ch;
  color: var(--heading-text);
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.04;
  margin-bottom: 0.85rem;
}

.fit-copy p {
  max-width: 42rem;
  color: var(--body-text);
  font-size: 1rem;
  line-height: 1.72;
  margin-bottom: 0;
}

.fit-grid {
  display: grid;
  gap: 0.85rem;
}

.fit-item {
  padding: 1rem 0 1rem 1rem;
  border-left: 4px solid var(--primary-accent);
  border-bottom: 1px solid var(--border-subtle);
}

.fit-item h3 {
  color: var(--heading-text);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.fit-item p {
  color: var(--body-text);
  font-size: 0.92rem;
  line-height: 1.62;
  margin-bottom: 0;
}

.outcomes-section {
  background:
    linear-gradient(180deg, #ffffff, var(--bg-page)),
    var(--bg-page);
}

.outcome-card {
  background: #ffffff;
}

.outcome-card h3 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.outcome-card h3::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 2px;
  background: var(--primary-accent);
  box-shadow: 0 0 0 4px rgba(0, 228, 231, 0.14);
}

.offer-section {
  background: #ffffff;
}

.offer-inner {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

.offer-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 0.75rem;
  padding: 0.34rem 0.62rem;
  border-radius: var(--radius-sm);
  color: var(--accent-text);
  background: var(--accent-soft);
  border: 1px solid rgba(0, 228, 231, 0.32);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-copy h2 {
  max-width: 14ch;
  color: var(--heading-text);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.02;
  margin-bottom: 0.85rem;
}

.offer-copy p {
  max-width: 40rem;
  color: var(--body-text);
  font-size: 1rem;
  line-height: 1.72;
  margin-bottom: 1.2rem;
}

.offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.offer-note {
  color: var(--muted-text);
  font-size: 0.9rem;
}

.assessment-reference {
  background: #ffffff;
  padding-top: 0;
}

.assessment-reference-inner {
  display: grid;
  gap: 1.2rem;
  align-items: center;
  padding: 1.35rem;
  background: linear-gradient(135deg, #ffffff, var(--accent-soft));
  border: 1px solid var(--border-subtle);
  border-left: 5px solid var(--primary-accent);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.assessment-reference h2 {
  color: var(--heading-text);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.15;
  margin-bottom: 0.55rem;
}

.assessment-reference p {
  max-width: 48rem;
  color: var(--body-text);
  font-size: 0.96rem;
  line-height: 1.68;
  margin-bottom: 0;
}

.offer-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(11, 15, 20, 0.98)),
    var(--primary-dark);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.45rem;
  border: 1px solid rgba(15, 23, 42, 0.16);
  box-shadow: var(--shadow-dark);
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 36%;
  height: 5px;
  background: var(--primary-accent);
}

.price-lockup {
  display: grid;
  gap: 0.1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(248, 250, 252, 0.16);
}

.price-label,
.price-detail {
  color: #cbd5e1;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.price-lockup strong {
  color: #ffffff;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 0.95;
}

.offer-list {
  display: grid;
  gap: 0.72rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.offer-list li {
  position: relative;
  padding-left: 1.25rem;
  color: #e2e8f0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.offer-list li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--primary-accent);
}

.offer-hero {
  padding: 4.8rem 0 4.2rem;
  background:
    linear-gradient(135deg, rgba(11, 15, 20, 0.98), rgba(17, 24, 39, 0.94)),
    repeating-linear-gradient(135deg, rgba(248, 250, 252, 0.05) 0 1px, transparent 1px 18px);
  color: #ffffff;
  border-bottom: 5px solid var(--primary-accent);
}

.offer-hero-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.offer-hero-copy h1 {
  max-width: 13ch;
  color: #ffffff;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 0.98;
  margin-bottom: 1rem;
}

.offer-hero-copy p {
  max-width: 42rem;
  color: #dbe3ed;
  font-size: 1.04rem;
  line-height: 1.72;
  margin-bottom: 1.25rem;
}

.assessment-summary {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.3rem;
  padding: 1.45rem;
  background: #ffffff;
  color: var(--body-text);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-dark);
}

.assessment-summary::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--primary-accent);
}

.summary-label,
.summary-detail {
  color: var(--muted-text);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.assessment-summary strong {
  color: var(--heading-text);
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  line-height: 0.95;
}

.summary-divider {
  height: 1px;
  margin: 0.7rem 0;
  background: var(--border-subtle);
}

.assessment-summary p {
  margin-bottom: 0;
  font-size: 0.94rem;
  line-height: 1.6;
}

.detail-grid {
  display: grid;
  gap: 1rem;
}

.detail-panel {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.detail-panel h2 {
  color: var(--heading-text);
  font-size: 1.35rem;
  margin-bottom: 0.95rem;
}

.accent-panel {
  background: var(--primary-dark);
  color: #ffffff;
  border-color: rgba(248, 250, 252, 0.12);
}

.accent-panel h2 {
  color: #ffffff;
}

.check-list {
  display: grid;
  gap: 0.72rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--body-text);
  font-size: 0.95rem;
  line-height: 1.58;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--primary-accent);
}

.accent-panel .check-list li {
  color: #e2e8f0;
}

.process-grid .card {
  min-height: 100%;
}

.blog-section {
  background: #ffffff;
}

.blog-section .section-header .eyebrow {
  align-self: center;
}

.blog-feature {
  display: grid;
  gap: 1.1rem;
  align-items: center;
  padding: 1.35rem;
  background:
    linear-gradient(135deg, rgba(248, 250, 252, 0.96), rgba(238, 242, 246, 0.96)),
    #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.blog-feature-copy {
  max-width: 720px;
}

.blog-meta {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: var(--primary-accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.blog-feature h3 {
  color: var(--heading-text);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.12;
  margin-bottom: 0.65rem;
}

.blog-feature p {
  color: var(--body-text);
  font-size: 0.98rem;
  line-height: 1.68;
  margin-bottom: 0;
}

.blog-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.2rem;
}

.blog-list {
  display: grid;
  gap: 1rem;
}

.blog-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.blog-card h2 {
  color: var(--heading-text);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.14;
  margin-bottom: 0.45rem;
}

.blog-card p {
  color: var(--body-text);
  font-size: 0.96rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.article-hero {
  padding: 4.4rem 0 3.7rem;
  background:
    linear-gradient(135deg, rgba(11, 15, 20, 0.98), rgba(17, 24, 39, 0.94)),
    repeating-linear-gradient(135deg, rgba(248, 250, 252, 0.05) 0 1px, transparent 1px 18px);
  color: #ffffff;
  border-bottom: 5px solid var(--primary-accent);
}

.article-hero-copy {
  max-width: 800px;
}

.article-hero h1 {
  max-width: 16ch;
  color: #ffffff;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.98;
  margin-bottom: 1rem;
}

.article-hero p {
  max-width: 46rem;
  color: #dbe3ed;
  font-size: 1.04rem;
  line-height: 1.72;
  margin-bottom: 0;
}

.article-shell {
  display: grid;
  gap: 1.4rem;
  align-items: start;
}

.article-body {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.45rem;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.07);
}

.article-body h2 {
  color: var(--heading-text);
  font-size: 1.45rem;
  line-height: 1.18;
  margin: 1.65rem 0 0.65rem;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body p,
.article-body li {
  color: var(--body-text);
  font-size: 1rem;
  line-height: 1.75;
}

.article-body p {
  margin-bottom: 1rem;
}

.article-body ul {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1.1rem;
  padding-left: 1.2rem;
}

.article-body a {
  color: var(--primary-accent);
  font-weight: 800;
}

.article-aside {
  background: var(--primary-dark);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.2rem;
  border: 1px solid rgba(248, 250, 252, 0.12);
  box-shadow: var(--shadow-dark);
}

.article-aside h2 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
}

.article-aside p {
  color: #dbe3ed;
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.article-aside .button {
  width: 100%;
  margin-top: 0.55rem;
}

.services-layout {
  display: grid;
  gap: 1.2rem;
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.service-tab {
  flex: 1 1 220px;
  min-height: 44px;
  border-radius: var(--radius-sm);
  padding: 0.68rem 0.9rem;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--heading-text);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-align: center;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.service-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 228, 231, 0.55);
  color: var(--primary-accent);
}

.service-tab.active {
  background: var(--primary-dark);
  color: #ffffff;
  border-color: var(--primary-dark);
  box-shadow: inset 0 -4px 0 var(--primary-accent);
}

.service-panels {
  position: relative;
}

.service-panel {
  display: none;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.service-panel.active {
  display: block;
}

.service-panel h3 {
  color: var(--heading-text);
  font-size: 1.25rem;
  margin-bottom: 0.45rem;
}

.service-panel .lead {
  color: var(--muted-text);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.pill-list {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
}

.pill-list li {
  color: var(--accent-text);
  background: var(--accent-soft);
  border: 1px solid rgba(0, 228, 231, 0.32);
}

.grid {
  display: grid;
  gap: 0.9rem;
}

.grid.two-col {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.grid.three-col {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card {
  background: var(--bg-page);
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid var(--border-subtle);
}

.card h4,
.card h3 {
  color: var(--heading-text);
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 0.4rem;
}

.card p {
  color: var(--body-text);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.card.small {
  position: relative;
  background: #ffffff;
  padding: 1.1rem;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.approach-grid .step-number {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-accent);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 900;
  margin-bottom: 0.7rem;
}

.contact {
  padding-bottom: 4.5rem;
}

.contact-inner {
  display: grid;
  gap: 1.7rem;
  align-items: center;
  padding: 2rem;
  background: var(--primary-dark);
  color: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(248, 250, 252, 0.08);
  box-shadow: var(--shadow-dark);
}

.contact-text h2 {
  color: #ffffff;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.1;
  margin-bottom: 0.6rem;
}

.contact-text p {
  color: #dbe3ed;
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 34rem;
  margin-bottom: 0;
}

.contact-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.35rem;
  color: var(--body-text);
  border: 1px solid rgba(248, 250, 252, 0.16);
}

.contact-card h3 {
  color: var(--heading-text);
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.contact-note {
  color: var(--muted-text);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.9rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
}

.contact-list li {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 0.65rem;
  padding: 0.55rem 0;
  border-top: 1px solid var(--border-subtle);
}

.contact-list li:last-child {
  padding-bottom: 0;
}

.contact-list .label {
  color: var(--primary-accent);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form-link {
  margin-top: 1rem;
}

.assessment-request-inner {
  align-items: start;
}

.form-outcomes {
  display: grid;
  gap: 0.65rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.form-outcomes li {
  position: relative;
  padding-left: 1.25rem;
  color: #dbe3ed;
  font-size: 0.94rem;
  line-height: 1.5;
}

.form-outcomes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--primary-accent);
}

.assessment-form {
  display: grid;
  gap: 1rem;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.35rem;
  color: var(--body-text);
  border: 1px solid rgba(248, 250, 252, 0.16);
}

.assessment-form h3 {
  color: var(--heading-text);
  font-size: 1.1rem;
  margin-bottom: -0.4rem;
}

.form-grid {
  display: grid;
  gap: 0.85rem;
}

.assessment-form label,
.assessment-form fieldset {
  display: grid;
  gap: 0.38rem;
  margin: 0;
}

.assessment-form label span,
.assessment-form legend {
  color: var(--heading-text);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.assessment-form input,
.assessment-form select,
.assessment-form textarea {
  width: 100%;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.74rem 0.78rem;
  color: var(--heading-text);
  background: #ffffff;
  font: inherit;
}

.assessment-form textarea {
  resize: vertical;
}

.assessment-form input:focus,
.assessment-form select:focus,
.assessment-form textarea:focus {
  outline: 3px solid rgba(0, 228, 231, 0.2);
  border-color: rgba(0, 228, 231, 0.65);
}

.assessment-form fieldset {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.65rem 0.9rem;
  padding: 0.9rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
}

.assessment-form fieldset legend {
  padding: 0 0.35rem;
}

.assessment-form fieldset label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--body-text);
  font-size: 0.92rem;
  line-height: 1.35;
}

.assessment-form input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary-accent);
}

.assessment-form .button {
  justify-self: start;
}

.form-status {
  min-height: 1.4rem;
  margin: -0.3rem 0 0;
  color: var(--muted-text);
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-status.success {
  color: #166534;
}

.form-status.error {
  color: #991b1b;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 1rem 0 1.3rem;
  background: var(--secondary-dark);
}

.footer-inner {
  text-align: center;
  font-size: 0.8rem;
  color: #cbd5e1;
}

@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  }

  .offer-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  }

  .fit-inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  }

  .assessment-reference-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .offer-hero-inner,
  .detail-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  }

  .contact-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  }

  .assessment-request-inner {
    grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1.25fr);
  }

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

  .blog-feature,
  .blog-card {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .article-shell {
    grid-template-columns: minmax(0, 1fr) 300px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

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

  .nav-links {
    position: absolute;
    right: 0;
    top: 115%;
    flex-direction: column;
    align-items: stretch;
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 0.6rem;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    min-width: 220px;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    justify-content: flex-start;
  }

  .hero {
    padding: 3rem 0 3.2rem;
  }

  .offer-hero {
    padding: 3rem 0 3.2rem;
  }

  .hero-text h1 {
    max-width: 11ch;
  }

  .offer-hero-copy h1 {
    max-width: 12ch;
  }

  .section {
    padding: 3rem 0;
  }

  .service-panel,
  .contact-inner {
    padding: 1.2rem;
  }

  .contact-list li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}
