:root {
  color-scheme: dark;
  --ink: #f5f7f8;
  --muted: #b5c0c8;
  --paper: #080b0f;
  --surface: rgba(14, 20, 26, 0.86);
  --surface-hot: rgba(18, 28, 34, 0.92);
  --line: rgba(175, 193, 204, 0.18);
  --cyan: #9fc6cf;
  --mint: #bfd8cc;
  --amber: #dec079;
  --magenta: #c9b8c4;
  --electric: #b5c2cf;
  --shadow: 0 18px 56px rgba(0, 0, 0, 0.34);
  --font-body: "Noto Sans TC", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Rajdhani", "Noto Sans TC", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #070a0e 0%, #10161a 48%, #070a0e 100%);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image: linear-gradient(rgba(175, 193, 204, 0.018) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 62%);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: #fff;
  transition:
    background 180ms ease,
    border 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(175, 193, 204, 0.16);
  background: rgba(4, 10, 15, 0.82);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(20px);
}

.brand,
.nav,
.header-action {
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(175, 193, 204, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  color: var(--mint);
  font-size: 15px;
  font-weight: 900;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.nav a {
  color: rgba(244, 251, 255, 0.76);
}

.nav a:hover {
  color: var(--cyan);
}

.header-action {
  justify-self: end;
  border: 1px solid rgba(175, 193, 204, 0.28);
  border-radius: 8px;
  padding: 9px 15px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
}

.hero::before {
  background: none;
  opacity: 0;
}

.hero::after {
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(3, 6, 9, 0.92));
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.02) brightness(0.78);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 10, 14, 0.86) 0%, rgba(9, 14, 19, 0.68) 48%, rgba(7, 10, 14, 0.3) 100%),
    linear-gradient(180deg, rgba(7, 10, 14, 0.1) 0%, rgba(7, 10, 14, 0.5) 72%, rgba(7, 10, 14, 0.92) 100%);
}

.hero-content {
  width: min(860px, calc(100% - 40px));
  margin-inline: auto;
  padding-top: 92px;
  padding-bottom: 172px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 1px solid rgba(175, 193, 204, 0.16);
  border-radius: 999px;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--font-display);
  color: var(--amber);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--mint);
}

h1,
h2,
h3,
.button,
.hero-links a,
.card-number,
.plan-select-button,
.selector-controls button {
  font-family: var(--font-display);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0 auto;
  max-width: 13ch;
  font-size: 74px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.48);
}

h1 span {
  display: block;
}

h2 {
  margin: 0 auto;
  max-width: 920px;
  font-size: 46px;
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 28px auto 0;
  color: rgba(244, 251, 255, 0.86);
  font-size: 21px;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.58);
}

.page-hero {
  position: relative;
  min-height: 58vh;
  display: grid;
  align-items: end;
  justify-items: center;
  overflow: hidden;
  padding: 132px clamp(20px, 7vw, 96px) 72px;
  border-bottom: 1px solid rgba(175, 193, 204, 0.14);
  background:
    linear-gradient(180deg, rgba(7, 10, 14, 0.35), #070a0e),
    url("assets/consulting-workflow-hero.png") center / cover;
  isolation: isolate;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 10, 14, 0.88), rgba(9, 14, 19, 0.68), rgba(7, 10, 14, 0.42));
}

.page-hero > div {
  max-width: 980px;
  text-align: center;
}

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

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 28px auto 0;
  color: rgba(244, 251, 255, 0.82);
  font-size: 21px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.hero-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(175, 193, 204, 0.22);
  border-radius: 8px;
  padding: 8px 13px;
  background: rgba(12, 18, 24, 0.62);
  color: rgba(244, 251, 255, 0.86);
  font-size: 14px;
  font-weight: 900;
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.hero-links a:hover {
  border-color: rgba(157, 223, 200, 0.42);
  color: var(--mint);
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border 160ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0 30%, rgba(255, 255, 255, 0.08) 48%, transparent 68% 100%);
  transform: translateX(-120%);
  transition: transform 420ms ease;
}

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

.button:hover::before {
  transform: translateX(120%);
}

.button.primary {
  border-color: rgba(157, 223, 200, 0.34);
  background: linear-gradient(135deg, #d7ece6, #a9d8ca);
  color: #10181b;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.button.primary:hover {
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.32);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.hero-strip {
  position: absolute;
  left: 50%;
  right: auto;
  width: min(980px, calc(100% - clamp(36px, 10vw, 144px)));
  transform: translateX(-50%);
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(175, 193, 204, 0.18);
  border-radius: 8px;
  background: rgba(12, 18, 24, 0.72);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.hero-strip div {
  position: relative;
  min-width: 0;
  padding: 18px 22px;
  text-align: center;
}

.hero-strip div::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 42px;
  height: 2px;
  content: "";
  background: var(--mint);
  box-shadow: none;
  transform: translateX(-50%);
}

.hero-strip div + div {
  border-left: 1px solid rgba(175, 193, 204, 0.13);
}

.hero-strip strong,
.hero-strip span {
  display: block;
}

.hero-strip strong {
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
}

.hero-strip span {
  margin-top: 4px;
  color: rgba(244, 251, 255, 0.72);
  font-size: 14px;
}

.section,
.method-band,
.faq-band,
.contact-band {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 7vw, 96px);
}

.section-heading {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.section-heading::after {
  display: block;
  width: 72px;
  height: 1px;
  margin: 24px auto 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(157, 223, 200, 0.72), transparent);
}

.intro {
  display: grid;
  justify-items: center;
  gap: 24px;
  border-top: 1px solid rgba(175, 193, 204, 0.13);
  border-bottom: 1px solid rgba(175, 193, 204, 0.1);
  background:
    linear-gradient(90deg, rgba(175, 193, 204, 0.04), transparent 55%),
    rgba(10, 15, 20, 0.72);
}

.intro > p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 20px;
  text-align: center;
}

.services {
  background:
    #090d12;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.service-card,
.result-panel,
.plan-card,
.faq-list article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 42%),
    var(--surface);
  box-shadow: var(--shadow);
}

.service-card,
.result-panel,
.plan-card,
.faq-list article,
.detail-grid article,
.case-card,
.selection-panel,
.contact-form {
  backdrop-filter: blur(14px);
}

.service-card::before,
.result-panel::before,
.plan-card::before,
.faq-list article::before,
.contact-form::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 72px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--mint), rgba(157, 223, 200, 0));
  box-shadow: none;
  transform: translateX(-50%);
}

.service-card {
  min-height: 292px;
  padding: 28px;
  text-align: center;
}

.service-card:hover,
.result-panel:hover,
.plan-card:hover,
.faq-list article:hover {
  border-color: rgba(175, 193, 204, 0.28);
  box-shadow: var(--shadow);
}

.card-number {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--mint);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.service-card p,
.result-panel p,
.plan-card p,
.faq-list p,
.timeline p,
.contact-copy p {
  color: var(--muted);
}

.method-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(175, 193, 204, 0.04), transparent 32%),
    linear-gradient(180deg, #0b1218, #070a0e);
  color: #fff;
}

.method-band::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgba(175, 193, 204, 0.06), transparent);
  opacity: 0.45;
}

.method-band > * {
  position: relative;
}

.method-band .section-heading {
  margin-bottom: 44px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 1px solid rgba(175, 193, 204, 0.24);
  padding-top: 20px;
  text-align: center;
}

.timeline span {
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
}

.timeline h3 {
  color: var(--cyan);
}

.timeline p {
  color: rgba(244, 251, 255, 0.68);
}

.results {
  background: #090d12;
}

.result-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
  margin-top: 38px;
}

.result-panel {
  padding: 26px;
  text-align: center;
}

.result-panel:first-child {
  border-color: rgba(157, 223, 200, 0.32);
  background:
    linear-gradient(135deg, rgba(157, 223, 200, 0.14), rgba(120, 214, 229, 0.05)),
    var(--surface-hot);
  color: #fff;
}

.result-panel:first-child p {
  color: rgba(244, 251, 255, 0.78);
}

.plans {
  border-top: 1px solid rgba(175, 193, 204, 0.1);
  border-bottom: 1px solid rgba(175, 193, 204, 0.1);
  background:
    linear-gradient(120deg, rgba(175, 193, 204, 0.04), transparent 38%),
    #080d11;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.selector-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 22px;
  margin-top: 38px;
  align-items: start;
}

.selector-controls {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.selector-controls button,
.plan-select-button {
  min-height: 42px;
  border: 1px solid rgba(175, 193, 204, 0.18);
  border-radius: 8px;
  background: rgba(12, 18, 24, 0.76);
  color: rgba(244, 251, 255, 0.78);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.selector-controls button {
  padding: 8px 13px;
}

.selector-controls button:hover,
.selector-controls button[aria-pressed="true"],
.plan-select-button:hover,
.plan-select-button[aria-pressed="true"] {
  border-color: rgba(157, 223, 200, 0.38);
  background: rgba(157, 223, 200, 0.1);
  color: var(--mint);
  box-shadow: none;
}

.plan-grid.selectable {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.plan-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 28px;
  text-align: center;
}

.plan-card.is-selected {
  border-color: rgba(157, 223, 200, 0.42);
  box-shadow: var(--shadow);
}

.plan-select-button {
  width: 100%;
  margin-top: 18px;
}

.plan-card strong {
  display: block;
  margin-top: auto;
  border-top: 1px solid rgba(175, 193, 204, 0.16);
  padding-top: 20px;
  color: var(--mint);
  font-size: 22px;
  line-height: 1.25;
  text-shadow: none;
}

.plan-grid.deep .plan-card {
  min-height: 460px;
}

.plan-card.featured {
  border-color: rgba(157, 223, 200, 0.36);
  background:
    linear-gradient(135deg, rgba(157, 223, 200, 0.14), rgba(120, 214, 229, 0.05)),
    var(--surface-hot);
}

.selection-panel {
  position: sticky;
  top: 96px;
  overflow: hidden;
  border: 1px solid rgba(175, 193, 204, 0.2);
  border-radius: 8px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(157, 223, 200, 0.1), rgba(222, 192, 121, 0.05)),
    rgba(12, 18, 24, 0.92);
  box-shadow: var(--shadow);
  text-align: center;
}

.selection-panel::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 72px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--mint), rgba(157, 223, 200, 0));
  box-shadow: none;
  transform: translateX(-50%);
}

.selection-panel .card-number {
  margin-bottom: 30px;
}

.selection-panel p {
  color: var(--muted);
}

.selection-panel dl {
  display: grid;
  gap: 16px;
  margin: 24px 0;
}

.selection-panel dt {
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.selection-panel dd {
  margin: 4px 0 0;
  color: rgba(244, 251, 255, 0.86);
  font-weight: 760;
}

.selection-panel .button {
  width: 100%;
}

.signal-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
  color: rgba(244, 251, 255, 0.78);
  text-align: left;
}

.signal-list li {
  position: relative;
  padding-left: 18px;
}

.signal-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  content: "";
  background: var(--mint);
  box-shadow: none;
}

.detail-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.detail-grid article,
.case-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 42%),
    var(--surface);
  box-shadow: var(--shadow);
}

.detail-grid article {
  min-height: 240px;
  padding: 26px;
  text-align: center;
}

.detail-grid article::before,
.case-card::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 72px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--mint), rgba(157, 223, 200, 0));
  box-shadow: none;
  transform: translateX(-50%);
}

.detail-grid p,
.case-card p,
.case-card dd {
  color: var(--muted);
}

.case-lab {
  background: #090d12;
}

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

.case-card {
  min-height: 430px;
  padding: 28px;
  text-align: center;
}

.case-card .card-number {
  margin-bottom: 34px;
}

.case-card dl {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  text-align: left;
}

.case-card dt {
  color: var(--mint);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-card dd {
  margin: 0 0 12px;
}

.faq-list.expanded article {
  min-height: 230px;
}

.page-cta {
  align-self: start;
  width: min(100%, 280px);
}

.faq-band {
  background:
    linear-gradient(180deg, #0b1218, #070a0e);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.faq-list article {
  min-height: 210px;
  padding: 26px;
  text-align: center;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.68fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  border-top: 1px solid rgba(175, 193, 204, 0.13);
  background:
    linear-gradient(180deg, #0b1218, #070a0e);
}

.contact-copy p {
  max-width: 650px;
  font-size: 19px;
  margin-inline: auto;
}

.contact-copy {
  text-align: center;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 16px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(175, 193, 204, 0.18);
  border-radius: 8px;
  background: rgba(12, 18, 24, 0.9);
  box-shadow: var(--shadow);
}

.contact-form::before {
  left: 50%;
  transform: translateX(-50%);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(244, 251, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(175, 193, 204, 0.18);
  border-radius: 8px;
  background: rgba(8, 12, 16, 0.88);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 13px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(120, 214, 229, 0.11);
}

select {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

.contact-form .button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--mint);
  font-size: 14px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 7vw, 96px);
  border-top: 1px solid rgba(175, 193, 204, 0.12);
  background: #070a0e;
  color: rgba(244, 251, 255, 0.66);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 850;
}

.footer-links a:hover {
  color: var(--cyan);
}

@media (max-width: 1100px) {
  h1 {
    font-size: 68px;
  }

  h2 {
    font-size: 40px;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .intro,
  .contact-band,
  .result-layout {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .timeline,
  .plan-grid,
  .selector-shell,
  .faq-list,
  .detail-grid,
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .selection-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand span:last-child {
    max-width: 9em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-action {
    padding: 8px 12px;
  }

  .hero {
    min-height: 96vh;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-inline: auto;
    padding-top: 96px;
    padding-bottom: 212px;
  }

  h1 {
    font-size: 42px;
    max-width: 100%;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 21px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-actions .button.secondary {
    display: none;
  }

  .hero-strip {
    left: 50%;
    right: auto;
    width: calc(100% - 36px);
    bottom: 18px;
    grid-template-columns: 1fr;
    transform: translateX(-50%);
  }

  .hero-strip div {
    padding: 10px 14px;
  }

  .hero-strip div::before {
    left: 50%;
  }

  .hero-strip strong {
    font-size: 21px;
  }

  .hero-strip span {
    margin-top: 2px;
    font-size: 13px;
  }

  .hero-strip div + div {
    border-top: 1px solid rgba(175, 193, 204, 0.13);
    border-left: 0;
  }

  .service-grid,
  .timeline,
  .plan-grid,
  .selector-shell,
  .faq-list,
  .detail-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .plan-grid.selectable {
    grid-template-columns: 1fr;
  }

  .service-card,
  .timeline li,
  .plan-card,
  .faq-list article,
  .detail-grid article,
  .case-card {
    min-height: auto;
  }

  .page-hero {
    min-height: 54vh;
    padding: 112px 18px 54px;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .card-number {
    margin-bottom: 30px;
  }

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

@media (max-width: 360px) {
  h1 {
    font-size: 37px;
    max-width: 9ch;
  }

  .hero-content {
    padding-bottom: 206px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-strip div {
    padding: 7px 12px;
  }

  .hero-strip div::before {
    left: 12px;
    width: 34px;
  }

  .hero-strip strong {
    font-size: 19px;
  }

  .hero-strip span {
    font-size: 12px;
  }
}
