:root {
  --primary-orange: #ff6b35;
  --primary-orange-2: #ff9f43;
  --primary-gradient: linear-gradient(135deg, #ff6b35 0%, #ff9f43 100%);
  --secondary-glow: #fff0e6;
  --text-dark: #1f2937;
  --text-gray: #6b7280;
  --bg-white: #ffffff;
  --bg-light: #fafafa;
  --bg-glass: rgba(255, 255, 255, 0.8);
  --line-light: rgba(31, 41, 55, 0.08);
  --line-soft: #eee;
  --shadow-card: 0 10px 30px -5px rgba(255, 107, 53, 0.1);
  --shadow-button: 0 4px 15px rgba(255, 107, 53, 0.3);
  --footer-bg: #1f2937;
  --max-width: 1200px;
  --radius-card: 16px;
  --radius-button: 8px;
  --radius-hero: 40px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-light);
  color: var(--text-dark);
  font-family: "Inter", "Noto Sans SC", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 15px 0;
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 16px;
  min-width: 0;
}

.brand-logo {
  width: 56px;
  max-width: min(14vw, 56px);
  height: auto;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.brand-text strong {
  display: block;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: var(--text-dark);
}

.brand-mark {
  color: var(--primary-orange);
}

.brand-sub {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-gray);
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
}

.nav-links a:hover {
  color: var(--primary-orange);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-button);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #fff;
  box-shadow: var(--shadow-button);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-outline {
  color: var(--primary-orange);
  border-color: var(--primary-orange);
  background: transparent;
}

.btn-soft {
  background: #fff;
  border-color: rgba(255, 107, 53, 0.2);
  color: var(--text-dark);
}

.hero {
  padding: 72px 0 60px;
  background: radial-gradient(circle at 80% 50%, var(--secondary-glow) 0%, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 800;
}

.hero-copy h2,
.hero-copy .hero-subtitle {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 600;
}

.hero-copy p,
.hero-copy .hero-desc {
  max-width: 560px;
  margin: 0 0 24px;
  font-size: 18px;
  color: var(--text-gray);
}

.highlight-text {
  color: var(--primary-orange);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  min-height: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-panel {
  width: min(100%, 420px);
  min-height: 300px;
  padding: 28px;
  border-radius: var(--radius-hero);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 240, 230, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15), inset 0 0 60px rgba(255, 107, 53, 0.08);
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.stat {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line-light);
}

.stat strong {
  display: block;
  font-size: 1.2rem;
}

.stat span {
  display: block;
  color: var(--text-gray);
  font-size: 0.88rem;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.metric b {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.35;
}

.hero-panel.visual-orb {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-panel .orb {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--primary-gradient);
  box-shadow: 0 0 30px var(--primary-orange);
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}

.section {
  padding: 72px 0;
}

.section-white {
  background: #fff;
}

.section-soft {
  background: linear-gradient(180deg, #ffffff 0%, #fff5f0 100%);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title span {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-gray);
}

.section-title h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.25;
}

.section-intro {
  max-width: 760px;
  margin: 12px auto 0;
  color: var(--text-gray);
}

.proof-strip {
  padding: 40px 0;
  text-align: center;
  border-bottom: 1px solid var(--line-soft);
}

.proof-title {
  margin: 0 0 20px;
  font-size: 12px;
  color: var(--text-gray);
}

.logo-wall {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  opacity: 0.6;
  filter: grayscale(100%);
}

.logo-wall span {
  font-size: 20px;
  font-weight: 700;
  color: #999;
}

.grid-2,
.grid-3,
.card-grid {
  display: grid;
  gap: 30px;
}

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

.grid-3,
.card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  padding: 30px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-glow);
  color: var(--primary-orange);
  font-size: 24px;
}

.card h3,
.card h2 {
  margin: 0;
}

.card p,
.muted {
  color: var(--text-gray);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.card-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.card-link:hover::after {
  transform: translateX(4px);
  color: var(--primary-orange);
}

.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--secondary-glow);
  color: var(--primary-orange);
  font-size: 13px;
  font-weight: 600;
}

.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 50px;
  right: 50px;
  height: 2px;
  background-image: linear-gradient(to right, var(--primary-orange) 50%, rgba(255, 255, 255, 0) 0%);
  background-size: 10px 1px;
  background-repeat: repeat-x;
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  flex: 1;
  text-align: center;
}

.step-dot {
  width: 16px;
  height: 16px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: var(--primary-orange);
  box-shadow: 0 0 0 5px #fff0e6;
}

.step h4 {
  margin: 0 0 8px;
  font-size: 18px;
}

.step p {
  margin: 0;
  padding: 0 10px;
  font-size: 13px;
  color: var(--text-gray);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

th,
td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line-soft);
}

th {
  background: #fff5f0;
}

.faq details {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 14px 16px;
}

.faq details + details {
  margin-top: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.cta-band {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #fff5f0 100%);
}

.cta-band h2 {
  margin: 0 0 10px;
  font-size: 36px;
}

.cta-band p {
  margin: 0 0 30px;
  color: var(--text-gray);
}

.site-footer {
  background: var(--footer-bg);
  color: #fff;
  padding: 60px 0 20px;
}

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

.footer-brand h3,
.footer-brand .brand {
  color: var(--primary-orange);
}

.footer-brand .brand {
  align-items: center;
}

.footer-brand .brand-logo {
  width: 52px;
  max-width: min(15vw, 52px);
}

.footer-brand .brand-text strong {
  color: #fff;
}

.footer-brand .brand-sub {
  color: #d1d5db;
}

.footer-brand p {
  max-width: 280px;
  font-size: 13px;
  line-height: 1.8;
  color: #9ca3af;
}

.footer-col h4 {
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 600;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a,
.footer-col p {
  color: #d1d5db;
  font-size: 14px;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
}

.copyright {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 12px;
  color: #6b7280;
}

@media (max-width: 900px) {
  .hero-grid,
  .grid-2,
  .grid-3,
  .card-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions .btn-outline {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 48px;
    max-width: min(16vw, 48px);
  }

  .footer-brand .brand-logo {
    width: 46px;
    max-width: min(18vw, 46px);
  }

  .brand-text strong {
    font-size: 20px;
  }

  .nav-actions .btn-primary {
    padding: 8px 16px;
    font-size: 13px;
  }

  .hero {
    padding: 26px 0 22px;
    text-align: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-copy h1 {
    margin-bottom: 12px;
    font-size: 28px;
    line-height: 1.18;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-copy p,
  .hero-copy .hero-desc {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    justify-content: center;
    gap: 10px;
  }

  .hero-actions .btn {
    padding: 10px 14px;
    font-size: 14px;
  }

  .hero-visual {
    min-height: 220px;
  }

  .hero-panel {
    min-height: 200px;
    padding: 20px;
    border-radius: 28px;
  }

  .timeline {
    flex-direction: column;
    padding-left: 20px;
  }

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 27px;
    right: auto;
    width: 2px;
    height: 100%;
    background-image: linear-gradient(to bottom, var(--primary-orange) 50%, rgba(255, 255, 255, 0) 0%);
    background-size: 1px 10px;
    background-repeat: repeat-y;
  }

  .step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-left: 30px;
    text-align: left;
  }

  .step-dot {
    position: absolute;
    left: 20px;
    margin: 0;
  }
}


/* 服务页与旧结构统一覆盖 */
/* 强制把旧页面的深色根变量覆盖回浅色体系 */
:root {
  color-scheme: light;
}

body {
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 159, 67, 0.14), transparent 28%),
    radial-gradient(circle at 86% 10%, rgba(255, 107, 53, 0.12), transparent 24%),
    linear-gradient(180deg, #fafafa 0%, #fffaf5 100%);
  color-scheme: light;
}

.shell,
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.topbar {
  min-height: 72px;
}

.topbar .inner,
.topbar {
  min-height: 72px;
}

.topbar .inner,
.topbar .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand,
.brand a,
.brand div {
  color: #1f2937;
  font-weight: 900;
}

.brand-mark,
.mark {
  background: linear-gradient(135deg, #ff6b35 0%, #ff9f43 100%);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.22);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
  color: #6b7280;
}

.nav a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.nav a:hover {
  color: #ff6b35;
  border-color: #ff6b35;
}

.hero {
  padding: 72px 0 60px;
  background: radial-gradient(circle at 80% 50%, #fff0e6 0%, transparent 60%);
}

.hero,
.section,
.panel,
.cta,
.card,
.case,
.metric,
.quote,
.faq details {
  color: #1f2937;
}

.hero-grid,
.grid,
.section-grid,
.timeline,
.case-grid,
.cols,
.footer-grid {
  display: grid;
  gap: 16px;
}

.grid {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
}

.hero-card,
.panel,
.metric,
.card,
.case,
.quote,
.faq details,
.cta,
.contact-box {
  background: #ffffff;
  border: 1px solid rgba(31, 41, 55, 0.08);
  border-radius: 22px;
  box-shadow: 0 10px 30px -5px rgba(255, 107, 53, 0.1);
}

.hero-card,
.panel,
.metric,
.card,
.case,
.quote {
  padding: 24px;
}

.hero-card {
  overflow: hidden;
  position: relative;
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-card::before {
  width: 180px;
  height: 180px;
  right: -50px;
  top: -40px;
  background: rgba(255, 159, 67, 0.14);
  filter: blur(20px);
}

.hero-card::after {
  width: 130px;
  height: 130px;
  left: -35px;
  bottom: -40px;
  background: rgba(255, 107, 53, 0.10);
  filter: blur(20px);
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff0e6;
  color: #ff6b35;
  font-size: 13px;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
  color: #1f2937;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  font-weight: 800;
}

h2 {
  font-size: 1.55rem;
}

h3 {
  font-size: 1.05rem;
}

.lede,
.lead,
p,
li {
  color: #6b7280;
}

.cta-row,
.btns,
.pills,
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: #ffffff;
  color: #1f2937;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.12);
}

.btn.primary,
.btn.btn-primary {
  background: linear-gradient(135deg, #ff6b35 0%, #ff9f43 100%);
  color: #ffffff;
  border: none;
}

.btn.btn-secondary,
.btn.secondary,
.btn-outline {
  background: transparent;
  border-color: rgba(255, 107, 53, 0.28);
  color: #ff6b35;
}

.metric strong,
.pill,
.chip,
.tag {
  color: #1f2937;
}

.metric small,
.tag {
  color: #ff6b35;
}

.metric,
.step,
.card,
.case,
.quote {
  border-radius: 18px;
}

.section {
  padding: 36px 0;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 16px;
}

.section-title p {
  margin: 0;
  max-width: 62ch;
}

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

.section-grid.two,
.cols,
.footer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.step {
  background: #ffffff;
  border: 1px solid rgba(31, 41, 55, 0.08);
  padding: 20px;
}

.step b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff0e6;
  color: #ff6b35;
  margin-bottom: 12px;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(31, 41, 55, 0.08);
  background: #ffffff;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(31, 41, 55, 0.08);
}

th {
  background: #fff5f0;
  color: #1f2937;
}

.faq details {
  padding: 16px 18px;
}

.faq details + details {
  margin-top: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: #1f2937;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.footer,
.site-footer {
  margin-top: 36px;
  padding: 28px 0 42px;
  background: #1f2937;
  color: #d1d5db;
}

.footer a,
.site-footer a {
  color: #ffffff;
}

.contact-box {
  padding: 24px;
}

.qr {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 22px;
  border: 1px dashed rgba(255, 107, 53, 0.22);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 159, 67, 0.12), transparent 24%),
    radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.12), transparent 26%),
    #fffaf5;
}

.qr b {
  display: block;
  margin-bottom: 8px;
  color: #1f2937;
  font-size: 18px;
}

.qr span {
  color: #6b7280;
}

@media (max-width: 980px) {
  .hero-grid,
  .section-grid,
  .section-grid.two,
  .footer-grid,
  .timeline,
  .case-grid,
  .cols {
    grid-template-columns: 1fr;
  }

  .topbar,
  .wrap {
    position: static;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 48px;
    max-width: min(16vw, 48px);
  }

  .brand-text strong {
    font-size: 22px;
  }

  .brand-sub {
    font-size: 11px;
  }
}


/* 品牌页与解决方案页补充 */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.hero-copy {
  max-width: 760px;
}

.solution-grid .card,
.quote-grid .card,
.trust-grid .card,
.case-grid .card {
  min-height: auto;
}

.aside-list,
.meta-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #33405a;
  line-height: 1.8;
}

.client-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.client-wall .tag {
  background: #fff;
  color: #20304f;
  border: 1px solid var(--line-light);
}

.footer-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin: 22px 0 6px;
  padding: 6px 2px 20px;
  color: var(--text-gray);
  font-size: 0.92rem;
}

.qrbox,
.hero-panel .qrbox {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, rgba(255,255,255,.76));
  border: 1px solid var(--line-light);
}

.qrbox img,
.hero-panel .qrbox img {
  width: 118px;
  height: 118px;
  border-radius: 16px;
  object-fit: cover;
  background: #fff;
  border: 1px solid var(--line-light);
}

.qrbox p,
.hero-panel .qrbox p {
  margin: 6px 0 0;
  color: var(--text-gray);
  line-height: 1.7;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 20px;
  align-items: start;
}

.split-panel > .card:first-child {
  background: linear-gradient(180deg, #ffffff 0%, #fff7f2 100%);
  border-color: rgba(255, 107, 53, 0.14);
  box-shadow: 0 12px 34px rgba(255, 107, 53, 0.08);
}

.split-panel > .card:last-child {
  background: #fffaf7;
  border-color: rgba(31, 41, 55, 0.08);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
}

.spotlight-card {
  padding: 34px;
  background: linear-gradient(180deg, #fff 0%, #fff7f2 100%);
  border: 1px solid rgba(255, 107, 53, 0.12);
  box-shadow: 0 12px 34px rgba(255, 107, 53, 0.08);
}

.spotlight-card h2,
.spotlight-card h3 {
  margin-top: 12px;
}

.spotlight-copy {
  font-size: 1.05rem;
  color: var(--text-gray);
}

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

.proof-tile {
  padding: 16px 16px 15px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(31, 41, 55, 0.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
}

.proof-tile strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
  color: var(--text-dark);
}

.proof-tile span {
  display: block;
  color: var(--text-gray);
  font-size: 14px;
}

.spotlight-stack {
  display: grid;
  gap: 16px;
}

.spotlight-mini {
  padding: 28px;
}

.decision-board {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.decision-feature {
  grid-row: span 2;
  padding: 34px;
  background: linear-gradient(180deg, #fff 0%, #fff7f2 100%);
  border: 1px solid rgba(255, 107, 53, 0.16);
  box-shadow: 0 14px 30px rgba(255, 107, 53, 0.08);
}

.decision-feature h3 {
  font-size: 30px;
  line-height: 1.2;
  margin-top: 12px;
}

.decision-feature p {
  font-size: 17px;
}

.decision-card {
  padding: 28px;
  background: #fff;
  border-color: rgba(31, 41, 55, 0.08);
}

.decision-wide {
  grid-column: 2 / span 2;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(31, 41, 55, 0.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.decision-wide-inner {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.decision-wide-copy {
  min-width: 240px;
  flex: 1;
}

.service-ladder {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  position: relative;
  padding-left: 4px;
}

.service-ladder::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 107, 53, 0.18), rgba(255, 107, 53, 0.06));
}

.story-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 24px;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.story-step::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(255, 107, 53, 0.28), rgba(255, 159, 67, 0.18));
}

.story-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #fff0e6;
  color: #ff6b35;
  font-weight: 800;
  font-size: 16px;
  position: relative;
  z-index: 1;
}

.story-step-body h3 {
  margin: 2px 0 6px;
  font-size: 1.06rem;
}

.story-step-body p {
  margin: 0;
}

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

.service-proof-grid .card {
  box-shadow: none;
}

.section-title-left {
  text-align: left;
  margin-bottom: 24px;
}

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

  .showcase-grid,
  .proof-tile-grid,
  .decision-board,
  .service-proof-grid {
    grid-template-columns: 1fr;
  }

  .decision-feature,
  .decision-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .story-step {
    grid-template-columns: 1fr;
  }

  .decision-wide-inner {
    flex-direction: column;
  }

  [style*="grid-template-columns: 1.35fr .95fr"],
  [style*="grid-template-columns:1.15fr .85fr"],
  [style*="grid-template-columns: 1.25fr 1fr 1fr"],
  [style*="grid-template-columns: 1.25fr 1fr 1fr;"],
  [style*="grid-template-columns: repeat(2, minmax(0, 1fr))"] {
    grid-template-columns: 1fr !important;
  }

  [style*="grid-row: span 2"] {
    grid-row: auto !important;
  }

  [style*="grid-column: 2 / span 2"] {
    grid-column: auto !important;
  }
}

@media (max-width: 768px) {
  .qrbox,
  .hero-panel .qrbox {
    grid-template-columns: 88px 1fr;
    gap: 12px;
    padding: 12px;
  }

  .qrbox img,
  .hero-panel .qrbox img {
    width: 88px;
    height: 88px;
    border-radius: 12px;
  }

  .chips {
    justify-content: center;
    gap: 8px;
  }

  .chips .pill {
    padding: 8px 12px;
    font-size: 12px;
  }
}
