:root {
  --teal: #0ea5a4;
  --teal-dark: #087f7d;
  --teal-soft: #dff8f7;
  --navy: #07111f;
  --navy-2: #0f172a;
  --text: #101827;
  --muted: #64748b;
  --line: rgba(15, 23, 42, 0.08);
  --panel: #ffffff;
  --soft: #f8fafc;
  --shadow: 0 22px 70px rgba(15, 23, 42, 0.09);
  --shadow-soft: 0 14px 40px rgba(15, 23, 42, 0.07);
  --radius: 16px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Noto Sans SC", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 8%, rgba(14, 165, 164, 0.08), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 44%, #ffffff 100%);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(22px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  width: 184px;
  flex: 0 0 184px;
}

.brand img {
  width: 168px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a,
.lang-current {
  color: var(--navy);
  font-size: 13px;
  font-weight: 760;
}

.nav-links a {
  position: relative;
  padding: 28px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--teal);
  transition: transform .22s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 820;
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.04);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
  cursor: pointer;
}

.btn:hover,
.card:hover {
  transform: translateY(-3px);
}

.btn-primary {
  border-color: rgba(14, 165, 164, .25);
  background: linear-gradient(135deg, #0ea5a4, #087f7d);
  color: #fff;
  box-shadow: 0 14px 30px rgba(14, 165, 164, .22);
}

.btn-secondary:hover,
.btn-primary:hover {
  box-shadow: var(--shadow-soft);
}

.lang {
  position: relative;
}

.lang-current {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
  min-height: 42px;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 156px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: .18s ease;
}

.lang:hover .lang-menu,
.lang:focus-within .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-menu a {
  display: block;
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.lang-menu a:hover {
  background: var(--soft);
  color: var(--teal-dark);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.section {
  padding: 76px 0;
}

.section-tight {
  padding: 50px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(58px, 6.2vw, 92px);
  line-height: .91;
  font-weight: 900;
  letter-spacing: -0.055em;
}

h1 .accent,
h2 .accent {
  color: var(--teal);
}

h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 850;
  letter-spacing: -0.015em;
}

.lead {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.hero {
  position: relative;
  padding: 54px 0 40px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: none;
  position: absolute;
  z-index: -1;
  width: 300px;
  height: 90px;
  border-radius: 999px;
  background: rgba(14, 165, 164, .11);
  transform: rotate(-48deg);
}

.hero::before {
  right: 110px;
  top: 48px;
}

.hero::after {
  right: 34%;
  top: 210px;
  opacity: .55;
}

.hero-grid {
  display: grid;
  grid-template-columns: .74fr 1.26fr;
  gap: 18px;
  align-items: center;
}

.hero-copy {
  padding-top: 6px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0 38px;
}

.hero-visual {
  position: relative;
  min-height: 650px;
  margin-right: -128px;
}

.hero-visual img {
  width: 121%;
  max-width: none;
  height: auto;
  filter: drop-shadow(0 30px 48px rgba(15, 23, 42, .16));
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(145px, 1fr));
  gap: 30px;
  max-width: 660px;
}

.mini-point {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.mini-point svg,
.icon {
  width: 28px;
  height: 28px;
  color: var(--teal);
  stroke-width: 1.8;
}

.mini-point strong {
  display: block;
  color: var(--navy);
  font-size: 12px;
  font-weight: 850;
}

.mini-point span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
  max-width: 150px;
}

.logo-band {
  padding: 28px 0 38px;
  border-bottom: 1px solid var(--line);
}

.logo-band .eyebrow {
  text-align: center;
  color: #94a3b8;
}

.logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 26px;
  align-items: center;
  margin-top: 18px;
}

.logos span {
  color: #334155;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 900;
  text-align: center;
  opacity: .88;
}

.logos span:nth-child(5) {
  letter-spacing: .09em;
}

.center {
  text-align: center;
}

.center .lead {
  margin-left: auto;
  margin-right: auto;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 1px 0 rgba(15, 23, 42, .02);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  overflow: hidden;
}

.card:hover {
  border-color: rgba(14, 165, 164, .28);
  box-shadow: var(--shadow-soft);
}

.industry-card {
  min-height: 232px;
  padding: 30px 26px 24px;
}

.industry-card p,
.service-card p,
.case-card p,
.process-step p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 860;
}

.split-section {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 38px;
  align-items: center;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ba-card {
  position: relative;
  min-height: 248px;
  border-radius: 16px;
  overflow: hidden;
  background: #111827;
  box-shadow: var(--shadow-soft);
}

.ba-card img {
  width: 100%;
  height: 100%;
  min-height: 248px;
  object-fit: cover;
}

.services-row {
  display: grid;
  grid-template-columns: 260px repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.services-intro,
.service-card {
  padding: 34px 22px;
}

.services-intro h2 {
  font-size: 31px;
  line-height: 1.08;
}

.service-card {
  border-left: 1px solid var(--line);
}

.service-card .icon {
  width: 36px;
  height: 36px;
  margin-bottom: 24px;
  color: var(--navy-2);
}

.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 36px;
  margin-top: 58px;
}

.process::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

.process-step {
  position: relative;
  z-index: 1;
  padding-top: 82px;
  text-align: center;
}

.process-step .bubble {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(14, 165, 164, .55);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 26px rgba(14, 165, 164, .12);
}

.process-step .num {
  display: block;
  color: var(--navy);
  font-size: 13px;
  font-weight: 820;
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(44px, 5.2vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

html[lang="zh"] h1 {
  font-size: clamp(46px, 5.6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

html[lang="zh"] .page-hero h1 {
  max-width: 900px;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

html[lang="zh"] .lead {
  font-size: 17px;
  line-height: 1.85;
}

html[lang="zh"] .eyebrow {
  letter-spacing: .08em;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.case-card {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.case-card:hover {
  box-shadow: none;
}

.case-card img {
  width: 100%;
  aspect-ratio: 1.16 / .9;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, .08);
}

.case-card h3 {
  margin-top: 18px;
  font-size: 15px;
}

.about-copy {
  max-width: 980px;
}

.about-section {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.about-section h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.about-section p {
  max-width: 820px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.about-list {
  columns: 2;
  column-gap: 52px;
  margin-top: 22px;
}

.about-company {
  border-bottom: 0;
}

html[lang="zh"] .about-section h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

html[lang="zh"] .about-section p {
  font-size: 16px;
  line-height: 1.9;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 46px 0;
  border-radius: 0;
  color: #fff;
  background:
    radial-gradient(circle at 55% 40%, rgba(14, 165, 164, .3), transparent 20rem),
    linear-gradient(135deg, #073543 0%, #041a26 100%);
}

.cta-band::after {
  content: "";
  position: absolute;
  right: 7%;
  top: 32px;
  width: 390px;
  height: 220px;
  opacity: .18;
  background-image:
    radial-gradient(circle, #ffffff 1.2px, transparent 1.5px);
  background-size: 13px 13px;
  clip-path: polygon(10% 18%, 98% 4%, 90% 82%, 52% 95%, 8% 70%);
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 34px;
  align-items: center;
}

.cta-band h2,
.site-footer h3 {
  color: #fff;
}

.cta-band p,
.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(226, 232, 240, .82);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.metric {
  text-align: center;
}

.metric .bubble {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .09);
  color: #bff6f2;
}

.metric strong {
  display: block;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
}

.metric span {
  font-size: 11px;
  color: rgba(226, 232, 240, .78);
}

.site-footer {
  padding: 42px 0 40px;
  background: linear-gradient(135deg, #051321 0%, #062937 100%);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(4, .8fr) 1.65fr;
  gap: 34px;
}

.footer-logo {
  width: 188px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 18px;
}

.footer-col h3 {
  margin-bottom: 16px;
  font-size: 13px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li + li {
  margin-top: 9px;
}

.footer-col a {
  font-size: 13px;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.socials a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
}

.copyright {
  margin-top: 24px;
  font-size: 13px;
}

.page-hero {
  padding: 84px 0 48px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 74% 18%, rgba(14, 165, 164, .12), transparent 24rem),
    linear-gradient(180deg, #fff, #fbfdff);
}

.page-hero h1 {
  max-width: 820px;
}

.content-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.statement {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.list-check {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.list-check li {
  display: flex;
  gap: 12px;
  color: var(--muted);
}

.list-check li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy);
  font-size: 12px;
  font-weight: 820;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 13px 14px;
  color: var(--navy);
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(14, 165, 164, .52);
  box-shadow: 0 0 0 4px rgba(14, 165, 164, .1);
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 50px;
}

.legal-nav {
  position: sticky;
  top: 104px;
  align-self: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.legal-nav a {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.legal-nav span {
  display: block;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--teal);
  font-size: 12px;
  font-weight: 820;
}

.legal-copy {
  color: #334155;
  max-width: 860px;
}

.legal-copy section {
  padding-bottom: 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.legal-copy h2 {
  font-size: 25px;
}

.legal-copy h3 {
  margin: 22px 0 10px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.35;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.82;
}

.legal-copy ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.legal-copy li {
  position: relative;
  padding-left: 20px;
}

.legal-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.legal-updated {
  margin: 0 0 30px;
  color: var(--teal) !important;
  font-size: 13px !important;
  font-weight: 820;
}

html[lang="zh"] .legal-copy h2 {
  font-size: 24px;
  line-height: 1.28;
}

html[lang="zh"] .legal-copy p,
html[lang="zh"] .legal-copy li {
  font-size: 16px;
  line-height: 1.9;
}

.blog-shell {
  background:
    radial-gradient(circle at 82% 4%, rgba(14, 165, 164, .08), transparent 28rem),
    linear-gradient(180deg, #fff 0%, #f8fafc 38%, #fff 100%);
}

.blog-hero {
  padding: 92px 0 54px;
  border-bottom: 1px solid var(--line);
}

.blog-hero h1 {
  max-width: 980px;
  font-size: clamp(48px, 6.8vw, 92px);
  line-height: .96;
}

.blog-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
  color: #64748b;
  font-size: 13px;
  font-weight: 760;
}

.blog-index-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
}

.blog-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.blog-card.featured {
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
}

.blog-card img,
.article-figure img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .08);
}

.blog-card img {
  aspect-ratio: 1.3 / .86;
  object-fit: cover;
}

.article-wrap {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
}

.article-wrap > p,
.article-wrap li {
  color: #334155;
  font-size: 18px;
  line-height: 1.9;
}

.article-wrap h2 {
  margin-top: 78px;
  font-size: clamp(32px, 4vw, 52px);
}

.article-wrap h3 {
  margin-top: 34px;
  font-size: 24px;
}

.article-figure {
  margin: 58px 0;
}

.article-figure img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-figure figcaption {
  margin-top: 12px;
  color: #64748b;
  font-size: 13px;
}

.image-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 54px 0;
}

.pullquote {
  margin: 60px 0;
  padding: 34px 0 34px 34px;
  border-left: 4px solid var(--teal);
  color: var(--navy);
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.18;
  font-weight: 900;
}

.editor-note {
  margin: 46px 0;
  padding: 28px;
  border: 1px solid rgba(14, 165, 164, .22);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(14,165,164,.08), rgba(255,255,255,.9));
}

.article-divider {
  height: 1px;
  margin: 70px 0;
  background: linear-gradient(90deg, transparent, rgba(14,165,164,.42), transparent);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-visual { margin-right: 0; }
  .hero-visual img { width: 100%; }
  .case-card img { height: auto; }
  .nav-links {
    gap: 18px;
  }

  .hero-grid,
  .content-grid,
  .cta-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 0;
  }

  .grid-5,
  .case-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-intro {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .case-card img { height: auto; aspect-ratio: 1.1 / .9; }
  .container {
    width: min(100% - 32px, 1180px);
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    min-height: 68px;
  }

  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--shadow-soft);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 12px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    padding-top: 38px;
  }

  .trust-points,
  .logos,
  .grid-5,
  .grid-3,
  .grid-2,
  .before-after,
  .process,
  .case-grid,
  .metrics,
  .footer-grid,
  .form-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .services-row {
    grid-template-columns: 1fr;
    border: 0;
  }

  .service-card,
  .services-intro {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 14px;
    background: #fff;
  }

  .process::before {
    display: none;
  }

  .process-step {
    padding: 0 0 0 78px;
    min-height: 70px;
  }

  .process-step .bubble {
    left: 0;
  }

  h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .section {
    padding: 64px 0;
  }

  .legal-nav {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    max-height: 320px;
    overflow: auto;
  }

  .blog-index-grid,
  .blog-card.featured,
  .image-pair {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .brand {
    width: 148px;
  }

  .brand img {
    width: 138px;
  }

  .nav-actions {
    gap: 12px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-card {
    min-height: 0;
  }
}
