:root {
  --bg: #f7f8f6;
  --fg: #0d0d0d;
  --accent: #1a5c40;
  --border: #121212;
  --dim: #888888;
  --blue: #1c44ac;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.45;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
}

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

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

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

/* prevent flex/grid children from forcing horizontal scroll */
.site-nav,
.container,
.hero,
.services-grid,
.solutions-strip,
.about-split,
.two-col,
.contact-grid,
.footer-grid,
.lean-grid,
.service-card,
.solution-col,
.about-text,
.stats-grid {
  min-width: 0;
  max-width: 100%;
}

.mono {
  font-family: "SF Mono", "Roboto Mono", ui-monospace, monospace;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.tag {
  background: var(--fg);
  color: var(--bg);
  padding: 2px 6px;
  font-size: 10px;
  font-weight: 700;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.divider-double {
  height: 4px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 20px 0;
}

/* Nav */
.site-nav {
  border-bottom: 1px solid var(--border);
  padding: 12px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-nav .nav-status {
  justify-self: start;
}

.site-nav .nav-links {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.site-nav .nav-links a {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}

.site-nav .nav-links a:hover,
.site-nav .nav-links a[aria-current="page"] {
  color: var(--accent);
}

.site-nav .nav-end {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 100%;
}

.site-nav .nav-status,
.site-nav .nav-end .mono {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--border);
}

.lang-switch a {
  padding: 4px 8px;
  font-family: "SF Mono", "Roboto Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.lang-switch a[aria-current="true"] {
  background: var(--fg);
  color: var(--bg);
}

.lang-switch a:hover {
  background: var(--accent);
  color: var(--white);
}

/* Hero */
.hero {
  padding: 60px 0 80px;
  border-bottom: 1px solid var(--border);
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.brand-display {
  font-size: clamp(40px, 11vw, 180px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-left: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.brand-display.accent {
  color: var(--accent);
  margin-top: -0.12em;
}

.hero-image-container {
  margin-top: 40px;
  width: 100%;
  height: 500px;
  background: #1a1f1c;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-image-container.hero-image-single {
  grid-template-columns: 1fr;
  /* 跟厂区全景原图比例一致（约 3.84:1），避免 cover 裁切 */
  height: auto;
  min-height: 0;
  aspect-ratio: 4212 / 1097;
  max-height: none;
}

.hero-image-container.hero-image-single img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* 完整显示全景，不裁上下 */
  object-position: center;
  filter: grayscale(0.45) contrast(1.08) saturate(0.9);
  mix-blend-mode: normal;
  opacity: 1;
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 中等工业滤镜：有灰阶但不糊死细节 */
  filter: grayscale(0.55) contrast(1.12) saturate(0.85);
  mix-blend-mode: normal;
  opacity: 0.96;
}

.hero-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--white);
  z-index: 2;
  max-width: 280px;
}

.hero-overlay .mono {
  margin-top: 10px;
  max-width: 220px;
}

/* Section */
.section-header {
  border-bottom: 1px solid var(--border);
  padding: 40px 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.page-hero {
  padding: 48px 0 24px;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-top: 8px;
}

.page-hero p.lead {
  margin-top: 18px;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.5;
  color: #222;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--border);
}

.service-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.2s;
}

.service-card:hover {
  background: #f0f0f0;
}

.service-card.featured {
  background: var(--accent);
  color: var(--white);
}

.service-card.featured .mono {
  color: rgba(255, 255, 255, 0.65);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 10px;
  line-height: 1.15;
}

.service-card p {
  color: var(--dim);
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.9);
}

.service-points {
  margin-top: 16px;
  display: grid;
  gap: 6px;
}

.service-points span {
  display: block;
  color: inherit;
}

/* About split */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.about-text {
  padding: 60px 40px 60px 0;
  border-right: 1px solid var(--border);
}

.about-text p {
  font-size: 20px;
  line-height: 1.5;
  max-width: 560px;
  margin-bottom: 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 60px 40px;
  gap: 40px;
}

.stat-item .value {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  display: block;
  line-height: 1;
  margin-top: 8px;
}

.stat-item .value.blue {
  color: var(--blue);
}

/* Lean */
.lean-section {
  padding: 80px 0;
  background: var(--fg);
  color: var(--bg);
}

.lean-visualization {
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.wave-svg {
  width: 100%;
  height: 100%;
  opacity: 0.75;
}

.lean-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.lean-grid p {
  font-size: 15px;
  margin-top: 10px;
  line-height: 1.55;
  color: rgba(247, 248, 246, 0.86);
}

/* Solutions */
.solutions-strip {
  display: flex;
  border-bottom: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.solution-col {
  flex: 1;
  padding: 40px;
  border-right: 1px solid var(--border);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.solution-col h3 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
}

/* Content blocks */
.content-block {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.content-block h3 {
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 8px 0 16px;
}

.content-block p,
.content-block li {
  font-size: 17px;
  line-height: 1.65;
  max-width: 760px;
}

.content-block ul {
  margin: 12px 0 0 18px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
}

.two-col > * {
  padding: 40px;
  border-right: 1px solid var(--border);
}

.two-col > *:last-child {
  border-right: none;
}

.fact-list {
  display: grid;
  gap: 16px;
}

.fact-list .row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.fact-list .row:last-child {
  border-bottom: none;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  border-left: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.contact-card {
  border-right: 1px solid var(--border);
  border-top: 1px solid var(--border);
  padding: 32px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.contact-card .label {
  display: block;
  margin-bottom: 10px;
}

.contact-card h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 900;
  text-transform: none;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  line-height: 1.2;
}

.contact-card h3 a {
  color: inherit;
  text-decoration: none;
}

.contact-card h3 a:hover {
  color: var(--accent);
}

.contact-card .role {
  margin: 0 0 16px;
  color: var(--dim);
  font-size: 13px;
}

.contact-card .body {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-transform: none;
  letter-spacing: 0;
}

.contact-card .body a {
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-card .body a:hover {
  color: var(--accent);
}

.contact-card .meta {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.contact-card a:hover {
  color: var(--accent);
}

/* Footer */
.site-footer {
  padding: 80px 40px 40px;
  background: var(--bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer .muted {
  margin-top: 20px;
  color: var(--dim);
  line-height: 1.6;
}

.site-footer .col-title {
  display: block;
  margin-bottom: 10px;
}

.site-footer p {
  line-height: 1.7;
}

.footer-end {
  margin-top: 60px;
  text-align: center;
  color: var(--dim);
}

/* Responsive */
@media (max-width: 960px) {
  .container,
  .site-nav,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-nav {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "status end"
      "links links";
    justify-items: stretch;
    gap: 10px 16px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .site-nav .nav-status {
    grid-area: status;
    align-self: center;
  }

  .site-nav .nav-links {
    grid-area: links;
    justify-content: flex-start;
    gap: 14px 18px;
  }

  .site-nav .nav-links,
  .site-nav .nav-end {
    justify-self: stretch;
  }

  .site-nav .nav-end {
    grid-area: end;
    justify-self: end;
    justify-content: flex-end;
  }

  .site-nav .nav-end > .mono {
    display: none;
  }

  .brand-display {
    font-size: clamp(36px, 14vw, 72px);
    letter-spacing: -0.03em;
  }

  .hero {
    padding: 36px 0 48px;
  }

  .hero-image-container {
    grid-template-columns: 1fr;
    height: min(56vw, 320px);
    min-height: 220px;
  }

  .hero-image-container.hero-image-single {
    height: auto;
    min-height: 200px;
    aspect-ratio: 16 / 9;
  }

  .hero-image-container.hero-image-single img {
    object-fit: cover;
    object-position: center;
  }

  .hero-overlay {
    top: auto;
    right: 16px;
    bottom: 16px;
    left: 16px;
    max-width: 280px;
  }

  .services-grid,
  .solutions-strip,
  .about-split,
  .two-col,
  .contact-grid,
  .footer-grid,
  .lean-grid,
  .stats-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .solutions-strip {
    display: grid;
  }

  .services-grid {
    border-left: none;
  }

  .service-card {
    min-height: 0;
    border-left: 1px solid var(--border);
  }

  .about-text,
  .stats-grid,
  .two-col > *,
  .solution-col {
    padding: 28px 0;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .solution-col {
    padding-right: 16px;
    padding-left: 16px;
    border-right: 1px solid var(--border);
  }

  .about-text p {
    font-size: 18px;
    max-width: 100%;
  }

  .stat-item .value {
    font-size: clamp(36px, 12vw, 56px);
  }

  .section-header h2,
  .page-hero h1 {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .fact-list .row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-card,
  .service-card,
  .solution-col {
    padding: 24px 16px;
  }

  .lean-visualization {
    height: 180px;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .site-nav .nav-status {
    font-size: 9px;
  }

  .brand-display {
    font-size: clamp(32px, 13vw, 48px);
  }

  .site-nav .nav-links {
    gap: 10px 14px;
  }

  .site-nav .nav-links a {
    font-size: 13px;
  }

  .mono {
    letter-spacing: 0.06em;
  }
}


/* Media / content helpers */
.media-band {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  width: 100%;
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.media-band .media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: #dfe5df;
  border-right: 1px solid var(--border);
}

.media-band .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.5) contrast(1.1) saturate(0.88);
  mix-blend-mode: normal;
  opacity: 0.96;
  display: block;
}

.media-band .copy {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  min-width: 0;
}

.media-band .copy h3 {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 900;
  text-transform: none;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.media-band .copy p {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  max-width: 44ch;
  color: #1a1a1a;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--fg);
  padding: 7px 12px;
  font-family: "SF Mono", "Roboto Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.proof-list {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
}

.proof-list li {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #222;
}

.proof-list li::before {
  content: "— ";
  color: var(--accent);
  font-weight: 700;
}

.service-card p {
  font-size: 14px;
  line-height: 1.55;
}

.page-hero p.lead {
  font-size: 18px;
}


.contact-card a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 960px) {
  .media-band {
    grid-template-columns: 1fr;
  }

  .media-band .media {
    min-height: 220px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .media-band .copy {
    padding: 24px 16px 28px;
  }

  .media-band .copy p,
  .content-block p,
  .content-block li,
  .about-text p {
    font-size: 16px;
  }

  .chip {
    font-size: 10px;
    padding: 6px 10px;
  }
}

/* === CONTENT SECTIONS v2 === */
.tag-spaced { margin-bottom: 20px; }
.accent-label { color: var(--accent); }
.hero-meta-light { color: #fff; }
.text-link {
  color: var(--accent);
  font-family: "SF Mono", "Roboto Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.text-link:hover { text-decoration: underline; }
.cta-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 32px;
  align-items: end;
  margin-top: 48px;
  padding: 36px 40px;
  border: 1px solid var(--border);
  background: var(--accent);
  color: var(--white);
}
.cta-block > .mono,
.cta-block h3 {
  grid-column: 1;
}
.cta-block > p {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: end;
}
.cta-block h3 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 900;
  line-height: 1.25;
}
.cta-block p { margin: 0; }
.cta-block .text-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--white);
  white-space: nowrap;
}
.cta-block .text-link:hover {
  background: var(--white);
  color: var(--accent);
  text-decoration: none;
}

/* Offers */
.offers-section { padding: 0; }
.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.offer-card {
  border-right: 1px solid var(--border);
  border-top: 1px solid var(--border);
  padding: 30px 24px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  background: var(--bg);
}
.offer-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
}
.offer-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #222;
}

/* Customers */
.customers-bar {
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  align-items: center;
  min-height: 132px;
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-left: 1px solid var(--border);
  display: grid;
  gap: 24px;
}
.customers-line {
  margin: 0;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Applications */
.apps-section { padding-top: 0; }
.apps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-left: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.app-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.42fr) minmax(0, 1fr);
  gap: 0;
  border-right: 1px solid var(--border);
  border-top: 1px solid var(--border);
  min-height: 210px;
  background: var(--bg);
}
.app-photo {
  background: #dfe5df;
  overflow: hidden;
  border-right: 1px solid var(--border);
}
.app-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.45) contrast(1.08) saturate(0.9);
  display: block;
}
.app-photo img[src$=".png"] {
  object-fit: contain;
  padding: 14px;
  background: var(--white);
  filter: grayscale(0.25) contrast(1.04) saturate(0.94);
}
.app-copy {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}
.app-copy h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}
.app-copy p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #333;
}

/* Manufacturing process blocks */
.process-stack { padding-bottom: 20px; }
.process-block {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  border: 1px solid var(--border);
  border-bottom: none;
  background: var(--bg);
  min-width: 0;
}
.process-block:last-of-type { border-bottom: 1px solid var(--border); }
.process-block.is-reverse { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); }
.process-block.is-reverse .process-photo { order: 2; border-right: none; border-left: 1px solid var(--border); }
.process-block.is-reverse .process-copy { order: 1; }
.process-photo {
  min-height: 260px;
  overflow: hidden;
  background: #dfe5df;
  border-right: 1px solid var(--border);
}
.process-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.45) contrast(1.08) saturate(0.9);
  display: block;
}
.process-photo img[src$=".png"] {
  object-fit: contain;
  padding: clamp(18px, 2.5vw, 32px);
  background: var(--white);
  filter: grayscale(0.2) contrast(1.04) saturate(0.95);
}
.process-copy {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  min-width: 0;
}
.process-copy h3 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 900;
  line-height: 1.15;
}
.process-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  max-width: 46ch;
}
.process-stack .content-block {
  border: 1px solid var(--border);
  border-top: none;
  padding: 28px;
}

@media (max-width: 960px) {
  .offers-grid,
  .apps-grid {
    grid-template-columns: 1fr;
  }
  .app-card {
    grid-template-columns: 144px minmax(0, 1fr);
  }
  .process-block,
  .process-block.is-reverse {
    grid-template-columns: 1fr;
  }
  .process-block.is-reverse .process-photo,
  .process-photo {
    order: 0;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid var(--border);
    min-height: 200px;
  }
  .process-block.is-reverse .process-copy,
  .process-copy {
    order: 1;
    padding: 22px 16px 26px;
  }
  .offer-card { min-height: 0; }
  .customers-line { font-size: 18px; }
  .customers-bar {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 24px 16px;
    gap: 10px;
  }
  .cta-block {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }
  .cta-block > .mono,
  .cta-block h3,
  .cta-block > p {
    grid-row: auto;
    grid-column: 1;
  }
  .cta-block > p {
    margin-top: 14px;
  }
}

@media (max-width: 480px) {
  .app-card {
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 156px;
  }
  .app-copy {
    padding: 18px 14px;
  }
  .app-copy h3 {
    font-size: 17px;
  }
  .app-copy p {
    font-size: 14px;
  }
  .app-photo img[src$=".png"] {
    padding: 8px;
  }
}
