:root {
  --bg: #07111f;
  --bg-soft: #0d1c31;
  --panel: #111f35;
  --panel-strong: #162842;
  --text: #eaf2ff;
  --muted: #93a7c4;
  --muted-2: #637895;
  --line: rgba(159, 184, 218, 0.18);
  --brand: #2dd4bf;
  --brand-2: #3b82f6;
  --brand-3: #f8d66d;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #07111f;
  background-size: 44px 44px;
}

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

a:hover {
  color: var(--brand);
}

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

p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--text);
  font-weight: 750;
  letter-spacing: 0;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  max-width: 1180px;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 997;
  min-height: 78px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 17, 31, 0.74);
  backdrop-filter: blur(18px);
}

.site-header.header-scrolled {
  background: rgba(7, 17, 31, 0.94);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(45, 212, 191, 0.55);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.28), rgba(59, 130, 246, 0.22));
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 0 28px rgba(45, 212, 191, 0.18);
}

.brand strong,
.brand em {
  display: block;
  font-style: normal;
}

.brand strong {
  font-size: 18px;
  line-height: 1.1;
}

.brand em {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.navbar {
  padding: 0;
}

.navbar ul {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 8px;
  color: #c8d7ea;
  font-size: 14px;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.navbar a:hover,
.navbar .active {
  color: var(--white);
  background: rgba(45, 212, 191, 0.1);
}

.mobile-nav-toggle {
  display: none;
  color: var(--white);
  font-size: 30px;
  cursor: pointer;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 92px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.96) 0%, rgba(7, 17, 31, 0.78) 44%, rgba(7, 17, 31, 0.52) 100%),
    linear-gradient(180deg, rgba(7, 17, 31, 0.15), #07111f 100%),
    url("../img/slide/slide-1.jpg?v=20260604-6") center right / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 17, 31, 0), #07111f 72%);
}

.page-hero {
  position: relative;
  padding: 150px 0 76px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(7, 17, 31, 0.95), rgba(7, 17, 31, 0.74)),
    url("../img/slide/slide-3.jpg?v=20260604-6") center / cover no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 17, 31, 0), #07111f);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 780px;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  font-size: 18px;
}

.page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.page-nav a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid rgba(159, 184, 218, 0.18);
  border-radius: 8px;
  color: #d4e2f4;
  background: rgba(255, 255, 255, 0.055);
  font-weight: 700;
}

.text-link {
  width: auto;
  min-height: 34px;
  margin-top: auto;
  padding: 0;
  border: 0;
  color: var(--brand);
  background: transparent;
}

.text-link i {
  width: auto;
  height: auto;
  margin: 0;
  border-radius: 0;
  color: inherit;
  background: transparent;
  font-size: 18px;
}

.page-nav a:hover,
.text-link:hover {
  border-color: rgba(45, 212, 191, 0.45);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--brand);
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.08;
}

.hero-lead {
  max-width: 720px;
  margin-top: 22px;
  font-size: 18px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  border: 1px solid rgba(45, 212, 191, 0.72);
  color: #06231f;
  background: linear-gradient(135deg, #2dd4bf, #7dd3fc);
  box-shadow: 0 16px 42px rgba(45, 212, 191, 0.2);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-primary:hover,
.btn-secondary:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.btn-secondary:hover {
  border-color: rgba(45, 212, 191, 0.55);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 610px;
  margin-top: 42px;
}

.hero-proof div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
}

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

.hero-proof strong {
  color: var(--white);
  font-size: 28px;
  line-height: 1;
}

.hero-proof span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(159, 184, 218, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(17, 31, 53, 0.94), rgba(9, 21, 37, 0.94)),
    rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2), var(--brand-3));
}

.panel-topline {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.panel-topline span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--muted-2);
}

.panel-topline span:first-child {
  background: #fb7185;
}

.panel-topline span:nth-child(2) {
  background: #facc15;
}

.panel-topline span:nth-child(3) {
  background: var(--brand);
}

.panel-topline small {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
}

.readiness-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 26px 18px;
}

.readiness-score span {
  color: var(--muted);
  font-weight: 700;
}

.readiness-score strong {
  font-size: 58px;
  line-height: 1;
  color: var(--white);
}

.checklist {
  padding: 0 26px 20px;
}

.checklist div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  color: #dbe8f8;
}

.checklist i {
  color: var(--brand);
  font-size: 20px;
}

.stack-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 26px 28px;
}

.stack-strip span,
.case-tags b,
.credential-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(159, 184, 218, 0.18);
  border-radius: 8px;
  color: #b9cbe2;
  background: rgba(255, 255, 255, 0.055);
  font-size: 12px;
  font-weight: 700;
}

.section {
  padding: 96px 0;
  overflow: hidden;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.compact {
  margin: 0 0 28px;
  text-align: left;
}

.section-heading h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.18;
}

.section-heading p:not(.eyebrow) {
  margin-top: 15px;
  font-size: 16px;
}

.services {
  background: linear-gradient(180deg, #07111f 0%, #0a1728 100%);
}

.service-card,
.honor-card,
.process-step,
.info-box,
.fit-item,
.case-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.service-card {
  height: 100%;
  min-height: 330px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.service-card:hover,
.service-card.featured {
  border-color: rgba(45, 212, 191, 0.42);
  background: rgba(45, 212, 191, 0.07);
  transform: translateY(-4px);
}

.service-card i,
.honor-card i,
.info-box i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--brand);
  background: rgba(45, 212, 191, 0.1);
  font-size: 24px;
}

.service-card h3 {
  margin-bottom: 14px;
  min-height: 58px;
  font-size: 21px;
  line-height: 1.32;
}

.service-card p {
  margin-bottom: 22px;
}

.service-card .text-link {
  align-self: flex-start;
  margin-top: auto;
  border: 0;
  color: var(--brand);
  background: transparent;
}

.service-card .text-link i {
  width: auto;
  height: auto;
  margin: 0;
  color: inherit;
  background: transparent;
  box-shadow: none;
  font-size: 18px;
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 5px 9px;
  border-radius: 8px;
  color: #d3e0f2;
  background: rgba(255, 255, 255, 0.07);
  font-size: 12px;
}

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

.detail-card {
  height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.detail-card h3 {
  margin-bottom: 14px;
  font-size: 22px;
}

.detail-card p + ul,
.detail-card p + ol {
  margin-top: 18px;
}

.detail-card ul,
.detail-card ol,
.plain-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.detail-card li + li,
.plain-list li + li {
  margin-top: 8px;
}

.fit-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(45, 212, 191, 0.09), rgba(59, 130, 246, 0.08)),
    #091728;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fit-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 84px;
  padding: 18px;
  color: #e5eefb;
  background: rgba(7, 17, 31, 0.44);
}

.fit-item i {
  flex: 0 0 38px;
  color: var(--brand);
  font-size: 24px;
}

.cases {
  background: #07111f;
}

.case-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.case-card {
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.case-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.case-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06);
  background: #0d1c2d;
}

.case-card.large img {
  height: 330px;
}

.case-content {
  padding: 24px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.case-content span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-content h3 {
  margin-top: 10px;
  font-size: 22px;
}

.case-content p {
  margin-top: 12px;
  font-size: 14px;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.case-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.case-matrix .case-card img {
  height: 250px;
}

.rich-cases {
  align-items: stretch;
}

.rich-cases .case-card {
  border-color: rgba(83, 111, 135, 0.62);
}

.rich-cases .case-content {
  padding: 26px;
}

.case-points {
  margin: 20px 0 0;
  padding: 0;
}

.case-points div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(142, 164, 189, 0.18);
}

.case-points dt {
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.case-points dd {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.honors,
.process {
  background: var(--bg-soft);
}

.honor-card {
  height: 100%;
  padding: 26px;
  background: rgba(7, 17, 31, 0.44);
}

.honor-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.credential-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

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

.proof-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 17, 31, 0.44);
}

.proof-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 30px;
  line-height: 1;
}

.proof-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

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

.process-step {
  position: relative;
  min-height: 230px;
  padding: 28px;
  background: rgba(7, 17, 31, 0.4);
}

.process-step span {
  color: rgba(45, 212, 191, 0.62);
  font-size: 42px;
  font-weight: 850;
  line-height: 1;
}

.process-step h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 22px;
}

.timeline-section {
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.9), rgba(7, 17, 31, 1)),
    url("../img/about.jpg?v=20260604-6") center right / cover no-repeat;
}

.timeline {
  position: relative;
  padding-left: 28px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 6px;
  width: 1px;
  background: linear-gradient(var(--brand), rgba(59, 130, 246, 0.1));
}

.timeline-item {
  position: relative;
  padding: 0 0 30px 28px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 9px;
  left: -28px;
  width: 13px;
  height: 13px;
  border: 3px solid var(--brand);
  border-radius: 50%;
  background: #07111f;
}

.timeline-item span {
  color: var(--brand-3);
  font-weight: 800;
}

.timeline-item h3 {
  margin-top: 8px;
  margin-bottom: 9px;
  font-size: 21px;
}

.timeline.detail {
  max-width: 860px;
  margin: 0 auto;
}

.timeline.detail .timeline-item {
  padding-bottom: 42px;
}

.contact {
  background: #07111f;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(45, 212, 191, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(45, 212, 191, 0.16), rgba(59, 130, 246, 0.12)),
    rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 42px);
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.contact-actions .btn-primary {
  width: 100%;
  max-width: 330px;
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.contact-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(159, 184, 218, 0.16);
  border-radius: 8px;
  color: #c6d7eb;
  background: rgba(255, 255, 255, 0.055);
  font-size: 13px;
  font-weight: 700;
}

.contact-meta i {
  color: var(--brand);
}

.contact-info {
  margin-top: 26px;
}

.info-box {
  height: 100%;
  padding: 26px;
}

.info-box h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.contact-method {
  position: relative;
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.contact-method h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.contact-method p {
  max-width: 760px;
}

.contact-method .text-link {
  margin-top: 24px;
}

.method-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 30px;
  margin-bottom: 24px;
  border: 1px solid rgba(45, 212, 191, 0.3);
  border-radius: 8px;
  color: var(--brand);
  background: rgba(45, 212, 191, 0.08);
  font-size: 13px;
  font-weight: 800;
}

#footer {
  padding: 54px 0 28px;
  border-top: 1px solid var(--line);
  background: #050d18;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
}

.footer-grid p {
  max-width: 390px;
  margin-top: 18px;
}

.footer-grid h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 16px;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 13px;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 996;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(45, 212, 191, 0.5);
  border-radius: 8px;
  color: #05211e;
  background: var(--brand);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  color: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .navbar a {
    padding: 8px 8px;
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  .site-header {
    min-height: 70px;
  }

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

  .navbar ul {
    display: none;
  }

  .navbar.navbar-mobile {
    position: fixed;
    inset: 0;
    z-index: 998;
    display: block;
    background: rgba(5, 13, 24, 0.94);
    backdrop-filter: blur(18px);
  }

  .navbar.navbar-mobile ul {
    position: absolute;
    top: 76px;
    right: 18px;
    left: 18px;
    display: block;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
  }

  .navbar.navbar-mobile li + li {
    margin-top: 4px;
  }

  .navbar.navbar-mobile a {
    display: flex;
    width: 100%;
    min-height: 44px;
    padding: 12px;
  }

  .navbar.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 22px;
    right: 22px;
  }

  .hero {
    min-height: auto;
    padding: 122px 0 72px;
  }

  .hero-panel {
    max-width: 560px;
  }

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

  .case-card.large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .process-grid,
  .detail-grid,
  .proof-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .brand {
    min-width: 0;
  }

  .brand em {
    display: none;
  }

  .hero {
    padding-top: 112px;
  }

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

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .hero-proof,
  .fit-grid,
  .case-layout,
  .case-matrix,
  .detail-grid,
  .proof-grid,
  .contact-methods,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 120px 0 58px;
  }

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

  .hero-proof div {
    padding: 16px;
  }

  .case-card.large {
    grid-column: span 1;
  }

  .case-card.large img,
  .case-card img {
    height: 220px;
  }

  .rich-cases .case-content {
    padding: 22px;
  }

  .case-points div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    text-align: left;
  }

  .contact-panel {
    padding: 28px;
  }

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

@media (max-width: 420px) {
  .hero h1 {
    font-size: 34px;
  }

  .readiness-score {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .readiness-score strong {
    font-size: 48px;
  }

  .panel-topline small {
    display: none;
  }
}
