:root {
  --navy-950: #10203b;
  --navy-900: #1a2b4a;
  --navy-800: #22395f;
  --navy-700: #30507e;
  --orange-500: #ff6b35;
  --orange-400: #ff8d63;
  --sand-100: #faf7f2;
  --sand-200: #f4efe7;
  --white: #ffffff;
  --slate-900: #202733;
  --slate-700: #425061;
  --slate-500: #6b7480;
  --slate-300: #c7ced7;
  --slate-200: #dbe0e6;
  --success-500: #0f766e;
  --danger-500: #b91c1c;
  --shadow-soft: 0 18px 45px rgba(26, 43, 74, 0.12);
  --shadow-card: 0 14px 30px rgba(16, 32, 59, 0.08);
  --radius-sm: 0.75rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --container-max: 72rem;
  --section-space: clamp(4rem, 7vw, 7rem);
  --heading-font: "Poppins", "Inter", system-ui, sans-serif;
  --body-font: "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--body-font);
  line-height: 1.6;
  color: var(--slate-900);
  background:
    radial-gradient(circle at top right, rgba(255, 107, 53, 0.1), transparent 22%),
    linear-gradient(180deg, #fffdf9 0%, #f8f4ed 100%);
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--navy-900);
  text-decoration: none;
}

a:hover {
  color: var(--orange-500);
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

p,
ul,
ol,
blockquote {
  margin-top: 0;
}

ul,
ol {
  padding-left: 1.25rem;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  line-height: 1.1;
  color: var(--navy-950);
  font-family: var(--heading-font);
}

h1 {
  font-size: clamp(2.4rem, 4.6vw, 4.8rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: 0;
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
}

small,
.meta,
.eyebrow {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--navy-950);
  color: var(--white);
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 1rem;
}

.noscript-notice {
  text-align: center;
  padding: 0.75rem 1rem;
  background: #fffbe6;
  border-bottom: 1px solid #e5d96a;
  font-size: 0.9rem;
  margin: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--container-max));
  margin: 0 auto;
}

.section {
  padding: var(--section-space) 0;
}

.section--tight {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section--alt {
  background: rgba(255, 255, 255, 0.72);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--orange-500);
  font-size: 0.82rem;
}

.section-intro,
.page-intro,
.article-intro {
  max-width: 42rem;
  color: var(--slate-700);
  font-size: 1.05rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button,
.text-link,
.filter-chip,
.page-button {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.95rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--orange-500);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 12px 22px rgba(255, 107, 53, 0.25);
}

.button:hover,
.button:focus-visible,
.page-button:hover,
.filter-chip:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.menu-toggle:focus-visible,
.filter-chip:focus-visible,
.page-button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(255, 107, 53, 0.35);
  outline-offset: 3px;
}

.button--secondary {
  background: var(--navy-900);
  box-shadow: 0 12px 22px rgba(26, 43, 74, 0.18);
}

.button--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
  box-shadow: none;
}

.button--light {
  background: var(--white);
  color: var(--navy-900);
  box-shadow: var(--shadow-card);
}

.button--small {
  min-height: 2.6rem;
  padding: 0.8rem 1.15rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--navy-900);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--orange-500);
}

.surface-card,
.band,
.post-card,
.resource-card,
.testimonial-card,
.case-card,
.author-card,
.contact-card,
.result-panel,
.thank-you-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.stack-sm > * + * {
  margin-top: 0.85rem;
}

.stack-md > * + * {
  margin-top: 1.25rem;
}

.stack-lg > * + * {
  margin-top: 1.75rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 247, 242, 0.82);
  border-bottom: 1px solid rgba(16, 32, 59, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.is-compact {
  box-shadow: 0 12px 24px rgba(16, 32, 59, 0.08);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  transition: padding 180ms ease;
}

.site-header.is-compact .header-shell {
  padding: 0.7rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--heading-font);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-950);
}

.brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--orange-500));
  box-shadow: var(--shadow-card);
}

.header-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav ul,
.footer-links,
.social-links,
.stats-grid,
.steps-grid,
.grid,
.icon-grid,
.post-grid,
.resource-grid,
.case-grid,
.detail-grid,
.blog-grid,
.testimonial-grid {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.site-nav a {
  font-weight: 600;
  color: var(--slate-700);
}

.site-nav a[aria-current="page"] {
  color: var(--navy-950);
}

.site-nav a[aria-current="page"]::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 0.35rem;
  border-radius: 999px;
  background: var(--orange-500);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  min-width: 2.75rem;
  border: 1px solid rgba(16, 32, 59, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy-950);
}

.hero,
.page-hero {
  position: relative;
  overflow: clip;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: auto auto 12% -10%;
  width: 16rem;
  height: 16rem;
  border-radius: 999px;
  background: rgba(255, 107, 53, 0.1);
  filter: blur(16px);
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 8% -8% auto auto;
  width: 20rem;
  height: 20rem;
  border-radius: 999px;
  background: rgba(26, 43, 74, 0.08);
}

.hero-shell,
.page-hero-shell,
.split-layout,
.profile-grid,
.resource-layout,
.contact-grid,
.lead-band,
.service-block,
.blog-layout,
.post-layout,
.detail-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

.hero-shell,
.profile-grid,
.lead-band,
.resource-layout,
.contact-grid,
.blog-layout,
.post-layout,
.service-block,
.page-hero-shell {
  align-items: center;
}

.hero-copy,
.page-hero-copy {
  max-width: 38rem;
}

.hero-copy p,
.page-hero-copy p {
  font-size: 1.08rem;
  color: var(--slate-700);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 32, 59, 0.08);
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-points,
.audience-list,
.included-list,
.recommendation-list,
.results-list {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  list-style: none;
}

.hero-points li,
.audience-list li,
.included-list li,
.recommendation-list li,
.results-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.check-mark,
.mini-icon,
.feature-pill {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
  margin-top: 0.1rem;
  border-radius: 999px;
  background: rgba(255, 107, 53, 0.15);
  color: var(--orange-500);
  font-weight: 700;
}

.hero-art,
.media-frame,
.feature-image {
  position: relative;
}

.media-frame {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.hero-art--portrait .media-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.floating-note,
.metric-badge {
  position: absolute;
  padding: 0.9rem 1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
  font-weight: 700;
  color: var(--navy-950);
}

.floating-note {
  inset: auto 1rem 1rem auto;
  max-width: 12rem;
}

.metric-badge {
  inset: 1rem auto auto -1rem;
}

.icon-grid,
.post-grid,
.resource-grid,
.case-grid,
.stats-grid,
.steps-grid,
.testimonial-grid,
.detail-grid,
.blog-grid,
.service-cards {
  display: grid;
  gap: 1.4rem;
}

.icon-card,
.service-card,
.stat-card,
.step-card,
.logo-pill,
.resource-card,
.case-card,
.testimonial-card {
  padding: 1.6rem;
}

.icon-card,
.service-card,
.step-card,
.stat-card,
.logo-pill {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(16, 32, 59, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.icon-mark {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(26, 43, 74, 0.1), rgba(255, 107, 53, 0.18));
  color: var(--orange-500);
}

.icon-mark svg,
.social-links svg,
.meta-icon svg {
  width: 1.3rem;
  height: 1.3rem;
}

.service-card {
  display: grid;
  gap: 1rem;
}

.service-price {
  font-weight: 700;
  color: var(--orange-500);
}

.band {
  padding: clamp(2rem, 4vw, 3rem);
}

.band--accent,
.cta-band {
  background:
    linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white);
}

.band--accent h2,
.band--accent h3,
.band--accent p,
.cta-band h2,
.cta-band p,
.cta-band a {
  color: var(--white);
}

.band--warm {
  background:
    linear-gradient(135deg, #ffefe7, #fff8f2 70%);
}

.form-shell {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field label {
  font-weight: 700;
  color: var(--navy-950);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(32, 39, 51, 0.16);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--slate-900);
}

.form-field textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-field.is-invalid input,
.form-field.is-invalid textarea,
.form-field.is-invalid select {
  border-color: var(--danger-500);
}

.field-error {
  min-height: 1.1rem;
  color: var(--danger-500);
  font-size: 0.9rem;
}

.field-hint {
  color: var(--slate-500);
  font-size: 0.92rem;
}

.check-field {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.check-field input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.28rem;
}

.check-field label {
  font-weight: 500;
  color: var(--slate-700);
}

.capture-card,
.sidebar-widget,
.inline-offer {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-card);
}

.capture-card--accent,
.inline-offer {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(255, 255, 255, 0.95));
}

.capture-points {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.capture-points li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
}

.stat-card {
  text-align: center;
}

.stat-value {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--orange-500);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  font-family: var(--heading-font);
}

.stat-label {
  color: var(--slate-700);
  font-weight: 600;
}

.steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(255, 107, 53, 0.15);
  color: var(--orange-500);
  font-weight: 800;
}

.post-card {
  overflow: hidden;
}

.post-card .card-body {
  padding: 1.4rem;
}

.post-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.post-card--featured {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.post-card--featured .card-body {
  padding: clamp(1.6rem, 4vw, 2.25rem);
}

.tag-row,
.meta-row,
.filter-bar,
.pagination,
.social-links,
.footer-mini-links,
.client-logos,
.info-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.tag,
.info-pill,
.logo-pill,
.filter-chip,
.page-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.3rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 32, 59, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy-900);
  font-weight: 700;
  font-size: 0.84rem;
}

.filter-chip[aria-pressed="true"],
.page-button.is-current {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: var(--white);
}

.meta-row {
  color: var(--slate-500);
  font-size: 0.94rem;
}

.meta-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.profile-image img,
.author-card img,
.testimonial-card img,
.contact-photo {
  border-radius: var(--radius-lg);
}

.profile-photo--feature {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
}

.profile-photo--wide {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.about-proof .media-frame {
  box-shadow: var(--shadow-card);
}

.testimonial-card {
  display: grid;
  gap: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-author img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: cover;
  border-radius: 999px;
}

.cta-band {
  padding: clamp(2.2rem, 5vw, 3.5rem);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.service-block {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(16, 32, 59, 0.08);
  box-shadow: var(--shadow-card);
}

.service-block__media img,
.resource-card img,
.case-card img,
.feature-image img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(16, 32, 59, 0.08);
  text-align: left;
}

.comparison-table th {
  background: rgba(16, 32, 59, 0.04);
  color: var(--navy-950);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 32, 59, 0.08);
}

.faq-item summary {
  font-weight: 700;
  color: var(--navy-950);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] {
  box-shadow: var(--shadow-card);
}

.faq-item p {
  margin-top: 1rem;
  color: var(--slate-700);
}

.blog-layout {
  align-items: start;
}

.sidebar-shell {
  position: sticky;
  top: 6rem;
}

.post-layout {
  align-items: start;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
  color: var(--slate-500);
}

.article-shell,
.sidebar-widget,
.case-detail,
.contact-card {
  padding: clamp(1.4rem, 3vw, 2rem);
}

.article-shell img {
  border-radius: var(--radius-lg);
}

.article-body {
  display: grid;
  gap: 1.4rem;
}

.article-body h2,
.article-body h3 {
  margin-bottom: 0.3rem;
}

.sidebar-title {
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  margin-bottom: 0.25rem;
}

.article-body p,
.article-body li,
.article-body blockquote,
.article-body td,
.article-body th {
  color: var(--slate-700);
}

.article-body blockquote {
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--orange-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(255, 107, 53, 0.08);
  font-size: 1.05rem;
}

.prompt-formula,
.prompt-example,
.article-tip,
.cta-fallback {
  padding: clamp(1.2rem, 3vw, 1.6rem);
  border: 1px solid rgba(16, 32, 59, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-card);
}

.prompt-formula {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(255, 255, 255, 0.96));
}

.prompt-formula-list,
.prompt-example-list {
  margin: 0;
  padding-left: 1.1rem;
}

.article-summary,
.toc-list,
.sidebar-link-list {
  margin: 0;
  padding-left: 1.1rem;
}

.prompt-formula-list li + li,
.prompt-example-list li + li,
.article-summary li + li,
.toc-list li + li,
.sidebar-link-list li + li {
  margin-top: 0.55rem;
}

.toc-list a,
.sidebar-link-list a {
  font-weight: 600;
}

.article-tip {
  background: rgba(16, 32, 59, 0.04);
}

.prompt-formula > :last-child,
.prompt-example > :last-child,
.article-tip > :last-child,
.cta-fallback > :last-child {
  margin-bottom: 0;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
}

.article-body th,
.article-body td {
  padding: 0.85rem;
  border: 1px solid rgba(16, 32, 59, 0.08);
}

.author-card {
  display: grid;
  gap: 1rem;
}

.author-card img {
  width: 5rem;
  height: 5rem;
  object-fit: cover;
}

.quiz-shell {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.quiz-progress {
  height: 0.8rem;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(16, 32, 59, 0.08);
}

.quiz-progress-bar {
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange-500), var(--navy-900));
  transition: width 200ms ease;
}

.option-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  list-style: none;
}

.option-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  width: 100%;
  text-align: left;
  padding: 1rem 1rem 1rem 1.1rem;
  border: 1px solid rgba(16, 32, 59, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  color: var(--slate-900);
}

.option-card.is-selected {
  border-color: var(--navy-900);
  background: rgba(16, 32, 59, 0.05);
}

.option-dot {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.25rem;
  border: 2px solid var(--slate-300);
  border-radius: 999px;
  background: var(--white);
}

.option-card.is-selected .option-dot {
  border-color: var(--orange-500);
  box-shadow: inset 0 0 0 0.22rem var(--white);
  background: var(--orange-500);
}

.quiz-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

.quiz-error {
  min-height: 1.4rem;
  margin: 0;
  color: var(--danger-500);
  font-weight: 700;
}

.result-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.4rem;
  height: 5.5rem;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: rgba(255, 107, 53, 0.14);
  color: var(--orange-500);
  font-family: var(--heading-font);
  font-size: 1.9rem;
  font-weight: 800;
}

.result-focus {
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--orange-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(255, 107, 53, 0.08);
  color: var(--navy-900);
  font-weight: 700;
}

.case-card,
.resource-card {
  overflow: hidden;
}

.case-card .card-body,
.resource-card .card-body {
  padding: 1.4rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(26, 43, 74, 0.08);
  color: var(--navy-900);
  font-size: 0.82rem;
  font-weight: 700;
}

.detail-grid {
  margin-top: 2rem;
}

.case-detail {
  scroll-margin-top: 6rem;
}

.contact-card ul,
.footer-links,
.footer-mini-links {
  list-style: none;
  padding: 0;
}

.contact-card ul,
.footer-links {
  display: grid;
  gap: 0.75rem;
}

.thank-you-card {
  max-width: 42rem;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
}

.site-footer {
  padding: 4rem 0 2rem;
  background: linear-gradient(180deg, rgba(16, 32, 59, 0.98), #0d172b 100%);
  color: rgba(255, 255, 255, 0.82);
}

.site-footer h3,
.site-footer h4,
.site-footer p,
.site-footer a,
.site-footer label {
  color: rgba(255, 255, 255, 0.92);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.site-footer input {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.site-footer .field-hint,
.site-footer .field-error {
  color: rgba(255, 255, 255, 0.75);
}

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
}

@media (min-width: 768px) {
  .hero-shell,
  .page-hero-shell,
  .lead-band,
  .profile-grid,
  .resource-layout,
  .contact-grid,
  .service-block,
  .post-layout,
  .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .post-layout {
    grid-template-columns: minmax(0, 1.8fr) minmax(18rem, 0.8fr);
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  }

  .page-hero-shell,
  .profile-grid,
  .lead-band,
  .resource-layout,
  .contact-grid,
  .service-block,
  .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-block:nth-child(even) .service-block__copy {
    order: 2;
  }

  .service-block:nth-child(even) .service-block__media {
    order: 1;
  }

  .icon-grid,
  .service-cards,
  .testimonial-grid,
  .resource-grid,
  .post-grid,
  .blog-grid,
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .post-card--featured {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.9fr 1.1fr;
  }

  .form-row--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .container {
    width: min(calc(100% - 3rem), var(--container-max));
  }

  .icon-grid,
  .service-cards,
  .stats-grid,
  .steps-grid,
  .testimonial-grid,
  .resource-grid,
  .case-grid,
  .post-grid,
  .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .blog-layout {
    grid-template-columns: minmax(0, 1.75fr) minmax(18rem, 0.75fr);
  }

  .post-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .menu-toggle {
    display: inline-flex;
  }

  .header-menu {
    position: fixed;
    inset: 4.9rem 1rem auto 1rem;
    display: none;
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(16, 32, 59, 0.08);
    box-shadow: var(--shadow-soft);
  }

  .site-header.is-open .header-menu {
    display: grid;
    gap: 1rem;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }

  .header-cta {
    width: 100%;
  }

  .hero,
  .page-hero {
    padding-top: 1rem;
  }

  .post-card--featured img {
    max-height: 16rem;
  }

  .sidebar-shell {
    position: static;
  }
}
