:root {
  --ink: #102436;
  --navy: #0d2b45;
  --blue: #164a6b;
  --red: #b72f2a;
  --jade: #207a68;
  --gold: #d9a441;
  --mist: #f4f7f8;
  --paper: #ffffff;
  --line: #d9e2e7;
  --muted: #607080;
  --shadow: 0 18px 45px rgba(13, 43, 69, 0.16);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
main [id] {
  scroll-margin-top: 140px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: var(--paper);
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 10;
  padding: 0.7rem 1rem;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 4vw, 3rem);
  color: var(--paper);
  transition: background 400ms ease, box-shadow 400ms ease, color 400ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 24px rgba(16, 36, 54, 0.12);
  backdrop-filter: blur(14px);
}

.article-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 24px rgba(16, 36, 54, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand-logo {
  width: 34px;
  height: 46px;
  flex: 0 0 34px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--red), var(--jade));
  color: var(--paper);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand small {
  color: currentColor;
  opacity: 0.78;
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.8rem);
  font-weight: 650;
  font-size: 0.95rem;
}

.site-nav a {
  opacity: 0.9;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 0.65rem 0.9rem;
  border: 1px solid currentColor;
  border-radius: var(--radius);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% center;
}

@media (max-width: 720px) {
  .hero-media img {
    object-position: 78% center;
  }
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 24, 38, 0.88), rgba(9, 24, 38, 0.62) 44%, rgba(9, 24, 38, 0.2)),
    linear-gradient(0deg, rgba(9, 24, 38, 0.72), rgba(9, 24, 38, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 9rem 0 3rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 790px;
  margin-bottom: 1.1rem;
  font-size: clamp(2.5rem, 7vw, 5.9rem);
  line-height: 1.1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.05rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}

.button-primary {
  background: var(--red);
  color: var(--paper);
  box-shadow: 0 10px 24px rgba(183, 47, 42, 0.28);
}

.button-primary:hover {
  background: #9f2925;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.78);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 840px);
  margin: 2.3rem 0 0;
  background: rgba(255, 255, 255, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  overflow: hidden;
}

.proof-strip div {
  padding: 1rem;
  background: rgba(9, 24, 38, 0.54);
}

.proof-strip dt {
  font-weight: 850;
}

.proof-strip dd {
  margin: 0.18rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.current-focus {
  padding: clamp(2.2rem, 5vw, 4rem) 0;
  background: var(--mist);
}

.focus-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: stretch;
}

.focus-feature,
.focus-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 26px rgba(16, 36, 54, 0.08);
}

.focus-feature {
  padding: clamp(1.3rem, 3vw, 2rem);
  border-left: 5px solid var(--red);
}

.focus-feature h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.focus-feature p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.06rem;
}

.focus-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.dark-button {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}

.focus-cards {
  display: grid;
  gap: 1rem;
}

.focus-card {
  display: grid;
  gap: 0.4rem;
  padding: 1.1rem;
}

.focus-card:hover {
  border-color: rgba(183, 47, 42, 0.36);
  box-shadow: 0 16px 34px rgba(16, 36, 54, 0.12);
}

.focus-card span {
  color: var(--jade);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.focus-card strong {
  font-size: 1.15rem;
  line-height: 1.25;
}

.focus-card small {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.intro-band,
.trust-band {
  background: var(--navy);
  color: var(--paper);
}

.intro-grid,
.trust-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.intro-grid p:last-child,
.trust-grid p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2rem;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 22px rgba(16, 36, 54, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(183, 47, 42, 0.36);
  box-shadow: 0 16px 34px rgba(16, 36, 54, 0.12);
}

.service-card-link {
  display: flex;
  min-height: 260px;
  height: 100%;
  flex-direction: column;
  padding: 1.25rem;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 32px;
  margin-bottom: 1.1rem;
  border-radius: var(--radius);
  background: #e7f2ef;
  color: var(--jade);
  font-weight: 850;
}

.service-card p,
.process-list span,
.faq-list p,
.video-card p,
.insight-card p {
  color: var(--muted);
}

.media-section {
  background: var(--paper);
}

.press-section {
  background: var(--mist);
}

.press-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(280px, 0.86fr);
  gap: 1rem;
}

.press-feature-card,
.press-topic-panel {
  border-radius: var(--radius);
  padding: clamp(1.35rem, 3vw, 2rem);
}

.press-feature-card {
  color: var(--paper);
  background: linear-gradient(130deg, var(--navy), #164b5a);
}

.press-feature-card .card-kicker {
  color: var(--gold);
}

.press-feature-card h3 {
  max-width: 22ch;
  margin-bottom: 0.75rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.press-feature-card p:not(.card-kicker) {
  max-width: 60ch;
  margin-bottom: 1.4rem;
  color: rgba(255, 255, 255, 0.82);
}

.press-topic-panel {
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 8px 22px rgba(16, 36, 54, 0.06);
}

.press-topic-list {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.press-topic-list span {
  padding: 0.68rem 0.78rem;
  color: var(--muted);
  border-left: 3px solid var(--gold);
  background: var(--mist);
}

.video-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 1rem;
}

.video-card,
.insight-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 22px rgba(16, 36, 54, 0.06);
  overflow: hidden;
}

.featured-video {
  display: grid;
  grid-template-columns: 1fr;
}

.video-thumb {
  position: relative;
  display: grid;
  min-height: 260px;
  place-items: center;
  padding: 1.25rem;
  color: var(--paper);
  text-align: center;
  font-weight: 850;
  background:
    linear-gradient(135deg, rgba(13, 43, 69, 0.92), rgba(32, 122, 104, 0.78)),
    url("/wp-content/uploads/site-assets/immigration-consulting-hero.png") center / cover;
}

.video-thumb.compact {
  min-height: 170px;
}

.play-button {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 10px 24px rgba(16, 36, 54, 0.24);
}

.play-button::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--paper);
}

.video-copy,
.insight-card {
  padding: 1.25rem;
}

.card-kicker {
  margin-bottom: 0.5rem;
  color: var(--jade);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.insights-section {
  background: var(--paper);
}

.program-directory-preview {
  background: var(--mist);
}

.directory-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: start;
}

.directory-preview-card {
  display: grid;
  align-content: start;
  gap: 0.35rem;
  min-height: 0;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 22px rgba(16, 36, 54, 0.06);
}

.directory-preview-card:hover {
  border-color: rgba(183, 47, 42, 0.36);
  box-shadow: 0 16px 34px rgba(16, 36, 54, 0.12);
}

.directory-preview-card span {
  color: var(--jade);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.directory-preview-card strong {
  max-width: 52ch;
  font-size: 0.96rem;
  line-height: 1.28;
}

.directory-preview-cta {
  margin-top: 1.3rem;
}

.lead-magnet-band {
  position: relative;
  overflow: hidden;
  padding: clamp(2.2rem, 5vw, 3.6rem) 0;
  color: var(--paper);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px),
    linear-gradient(115deg, rgba(7, 24, 37, 0.94) 0%, rgba(7, 24, 37, 0.88) 48%, rgba(10, 99, 93, 0.82) 100%),
    linear-gradient(135deg, var(--navy), var(--jade));
}

.lead-magnet-band::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(183, 47, 42, 0.32), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 42%);
  pointer-events: none;
}

.lead-magnet-band .container {
  position: relative;
  z-index: 1;
}

.lead-magnet-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.lead-magnet-grid h2 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.lead-magnet-grid p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.lead-magnet-copy {
  max-width: 760px;
}

.guide-offer {
  display: grid;
  gap: 1rem;
  justify-items: stretch;
}

.guide-cover {
  display: grid;
  min-height: 190px;
  align-content: space-between;
  gap: 1rem;
  padding: 1.2rem;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 239, 0.94)),
    linear-gradient(90deg, var(--red) 0 7px, transparent 7px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.22);
}

.guide-cover span {
  width: fit-content;
  padding: 0.35rem 0.55rem;
  color: var(--paper);
  background: var(--red);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.guide-cover strong {
  max-width: 16ch;
  font-size: 1.4rem;
  line-height: 1.08;
}

.guide-cover small {
  color: var(--muted);
  font-weight: 750;
}

.program-hub {
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.program-group {
  margin-bottom: clamp(3rem, 7vw, 5rem);
}

.program-group-header {
  max-width: 840px;
  margin-bottom: 1.4rem;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.program-card {
  position: relative;
  display: grid;
  gap: 0.65rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 22px rgba(16, 36, 54, 0.06);
  cursor: pointer;
}

.program-card:hover,
.pnp-card:hover {
  border-color: rgba(183, 47, 42, 0.36);
  box-shadow: 0 16px 34px rgba(16, 36, 54, 0.12);
}

.program-card h3 {
  margin-bottom: 0;
}

.program-card ul {
  margin: 0;
  padding-left: 1.05rem;
  color: var(--muted);
}

.program-card li + li {
  margin-top: 0.35rem;
}

.program-card .text-link {
  margin-top: auto;
}

.card-cover-link {
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: var(--radius);
}

.program-card > :not(.card-cover-link),
.pnp-card > :not(.card-cover-link) {
  position: relative;
  z-index: 1;
}

.pnp-region-grid {
  display: grid;
  gap: 1.1rem;
}

.pnp-region {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 22px rgba(16, 36, 54, 0.06);
}

.pnp-region-header {
  grid-row: 1 / -1;
  padding: 1rem;
  border-radius: var(--radius);
  color: var(--paper);
  background: linear-gradient(135deg, var(--navy), var(--jade));
}

.pnp-region-header span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.pnp-region-header h3 {
  margin-bottom: 0;
}

.pnp-card {
  position: relative;
  grid-column: 2;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  transition: box-shadow 180ms ease, border-color 180ms ease;
  cursor: pointer;
}

.pnp-card + .pnp-card {
  margin-top: 0.8rem;
}

.pnp-card h4 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

.pnp-card dl {
  display: grid;
  gap: 0.65rem;
  margin: 0;
}

.pnp-card dt {
  color: var(--ink);
  font-weight: 850;
}

.pnp-card dd {
  margin: 0.1rem 0 0;
  color: var(--muted);
}

.program-note {
  margin-top: 1rem;
  padding: 1rem;
  border-left: 4px solid var(--gold);
  background: #fff8e7;
  color: var(--ink);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.insight-card {
  min-height: 270px;
}

.insight-card h3 a:hover {
  color: var(--red);
}

.article-hero {
  padding: 9rem 0 4rem;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(9, 24, 38, 0.92), rgba(13, 43, 69, 0.78)),
    url("/wp-content/uploads/site-assets/immigration-consulting-hero.png") 80% center / cover;
}

@media (max-width: 720px) {
  .article-hero {
    background-position: 0 0, 78% center;
  }
}

.article-hero .container {
  max-width: 920px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.78);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.breadcrumbs a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

.breadcrumbs span {
  color: rgba(255, 255, 255, 0.58);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: start;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.article-body {
  max-width: 780px;
}

.article-body h2 {
  margin-top: 2.3rem;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.article-body ul,
.article-body ol {
  padding-left: 1.25rem;
}

.article-body li + li {
  margin-top: 0.45rem;
}

.program-faq {
  margin-top: 2.4rem;
}

.program-faq details {
  margin-top: 0.75rem;
}

.article-sidebar {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 1rem;
}

.media-archive-intro {
  margin-bottom: 2rem;
}

.media-archive-panel {
  margin-top: 2rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
}

.media-archive-panel h2 {
  margin-top: 0;
}

.about-media-feature {
  margin: 2.5rem 0;
  padding: 2.2rem 0 0;
  border-top: 1px solid var(--line);
}

.about-media-feature h2 {
  margin-top: 0;
}

.about-media-feature p:not(.card-kicker) {
  color: var(--muted);
}

.about-media-carousel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.about-media-card {
  display: grid;
  grid-template-rows: 136px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 22px rgba(16, 36, 54, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.about-media-card:hover {
  transform: translateY(-3px);
  border-color: rgba(183, 47, 42, 0.36);
  box-shadow: 0 16px 34px rgba(16, 36, 54, 0.12);
}

.about-media-image {
  display: flex;
  align-items: end;
  padding: 0.8rem;
  color: var(--paper);
  background:
    linear-gradient(10deg, rgba(9, 24, 38, 0.78), rgba(9, 24, 38, 0.16)),
    url("/wp-content/uploads/site-assets/immigration-consulting-hero.png") center / cover;
}

.about-media-image span {
  padding: 0.28rem 0.48rem;
  color: var(--paper);
  background: var(--red);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.about-media-card-copy {
  padding: 0.9rem;
}

.about-media-card-copy h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.about-media-card-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.appearance-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.appearance-fields div {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.appearance-fields strong,
.appearance-fields span {
  display: block;
}

.appearance-fields strong {
  margin-bottom: 0.2rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  color: var(--jade);
}

.appearance-fields span {
  color: var(--muted);
}

.sidebar-box {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 22px rgba(16, 36, 54, 0.06);
}

.sidebar-box a {
  display: block;
  margin-top: 0.55rem;
  color: var(--red);
  font-weight: 800;
}

.split-section {
  background: var(--mist);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
}

.sticky-copy {
  align-self: start;
  position: sticky;
  top: 6rem;
}

.text-link {
  display: inline-flex;
  margin-top: 0.8rem;
  color: var(--red);
  font-weight: 850;
  border-bottom: 2px solid currentColor;
}

.light-link {
  color: var(--gold);
}

.process-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 4.4rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  counter-increment: process;
}

.process-list li::before {
  content: counter(process);
  position: absolute;
  left: 1.2rem;
  top: 1.25rem;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--paper);
  font-weight: 850;
}

.process-list strong,
.process-list span {
  display: block;
}

.trust-points {
  display: grid;
  gap: 1rem;
}

.trust-points div {
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.trust-points strong,
.trust-points span {
  display: block;
}

.trust-points span {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.78);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 920px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

summary {
  cursor: pointer;
  padding: 1.1rem 1.2rem;
  font-weight: 850;
}

details p {
  padding: 0 1.2rem 1.2rem;
}

.assessment {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--paper);
}

.assessment-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.assessment p {
  color: rgba(255, 255, 255, 0.82);
}

.assessment-guide {
  display: grid;
  gap: 0.25rem;
  margin-top: 1.2rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.assessment-guide span {
  color: rgba(255, 255, 255, 0.76);
}

.assessment-guide a {
  width: fit-content;
  margin-top: 0.3rem;
  color: var(--gold);
  font-weight: 850;
  border-bottom: 2px solid currentColor;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.lead-form label {
  display: grid;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 750;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  padding: 0.78rem 0.85rem;
  color: var(--ink);
  background: var(--paper);
}

.lead-form input[type="checkbox"] {
  width: 1rem;
  min-width: 1rem;
  height: 1rem;
  margin-top: 0.2rem;
  accent-color: var(--red);
}

.lead-form .consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.55rem;
  font-size: 0.9rem;
  line-height: 1.45;
}

.full-span {
  grid-column: 1 / -1;
}

.guide-form {
  grid-template-columns: 1fr;
  border-color: var(--line);
  background: var(--paper);
  box-shadow: 0 14px 36px rgba(16, 36, 54, 0.1);
}

.guide-form label {
  color: var(--ink);
}

.guide-form input,
.guide-form select,
.guide-form textarea {
  border-color: #cfd8de;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(16, 36, 54, 0.02);
}

.guide-form input:focus,
.guide-form select:focus,
.guide-form textarea:focus {
  outline: 3px solid rgba(183, 47, 42, 0.16);
  border-color: var(--red);
}

.guide-form .consent {
  color: var(--muted);
  font-weight: 600;
}

.site-footer {
  padding: 3rem 0 1.4rem;
  background: #071825;
  color: var(--paper);
}

.floating-contact {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  display: grid;
  gap: 0.55rem;
  justify-items: end;
}

.float-button {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.55rem 0.75rem;
  border: 0;
  border-radius: 999px;
  color: var(--paper);
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(16, 36, 54, 0.24);
  cursor: pointer;
}

.float-button.whatsapp {
  background: #1f9d55;
}

.float-button.wechat {
  background: #16a34a;
}

.float-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 1.1rem;
}

.wechat-popover {
  display: none;
  width: min(280px, calc(100vw - 2rem));
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.wechat-popover.is-open {
  display: grid;
  gap: 0.2rem;
}

.wechat-popover span {
  color: var(--red);
  font-weight: 850;
}

.wechat-popover small {
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 2rem;
}

.footer-grid p,
.footer-grid span {
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid a,
.footer-grid strong {
  display: block;
  margin-bottom: 0.35rem;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    inset: 100% 1rem auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    color: var(--ink);
    background: var(--paper);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

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

  .video-grid,
  .press-grid,
  .insights-grid,
  .directory-preview-grid,
  .program-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .appearance-fields {
    grid-template-columns: 1fr;
  }

  .about-media-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.45rem;
  }

  .about-media-card {
    flex: 0 0 min(78vw, 292px);
    scroll-snap-align: start;
  }

  .pnp-region {
    grid-template-columns: 1fr;
  }

  .pnp-region-header,
  .pnp-card {
    grid-column: auto;
    grid-row: auto;
  }

  .article-sidebar {
    position: static;
  }

  .intro-grid,
  .split-grid,
  .trust-grid,
  .assessment-grid,
  .footer-grid,
  .focus-grid,
  .lead-magnet-grid {
    grid-template-columns: 1fr;
  }

  .lead-magnet-grid .button {
    width: fit-content;
  }

  .sticky-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 0.75rem 1rem;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(9, 24, 38, 0.92), rgba(9, 24, 38, 0.7)),
      linear-gradient(0deg, rgba(9, 24, 38, 0.78), rgba(9, 24, 38, 0.08));
  }

  .hero-content {
    padding-top: 7.5rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .lead-magnet-grid .button {
    width: 100%;
  }

  .proof-strip,
  .service-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .process-list li {
    padding-left: 1.15rem;
    padding-top: 4.7rem;
  }

  .process-list li::before {
    top: 1.15rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-contact {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .float-button {
    min-height: 44px;
    padding-right: 0.65rem;
  }

  .float-button span:last-child {
    display: none;
  }
}
