:root {
  --navy: #0c2440;
  --navy-2: #14375f;
  --navy-3: #1d4a82;
  --orange: #ff6b1a;
  --orange-d: #e85d0e;
  --ink: #1d2733;
  --muted: #5b6b7b;
  --line: #e6ecf3;
  --bg: #ffffff;
  --bg-alt: #f5f8fc;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 14px 40px rgba(12, 36, 64, 0.10);
  --shadow-sm: 0 6px 18px rgba(12, 36, 64, 0.08);
  --maxw: 1160px;
  --grad: linear-gradient(120deg, #0c2440 0%, #14375f 55%, #1d4a82 100%);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: "PingFang SC", "Microsoft YaHei", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.container-narrow { max-width: 820px; }

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

/* ===== 滚动淡入动画 ===== */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.js .reveal.in { opacity: 1; transform: none; }

/* ===== 顶部公告条 ===== */
.topbar {
  background: linear-gradient(90deg, var(--navy), var(--navy-3));
  color: #cfe0f2;
  font-size: 13px;
  letter-spacing: .3px;
}
.topbar-inner { padding: 8px 22px; text-align: center; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(12, 36, 64, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; color: #fff; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(135deg, var(--orange), var(--orange-d));
  color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 21px;
  box-shadow: 0 6px 16px rgba(255, 107, 26, 0.35);
}
.brand-text { font-weight: 700; font-size: 18px; line-height: 1.15; display: flex; flex-direction: column; }
.brand-text small { font-size: 10px; letter-spacing: 2px; color: #9fb3c8; font-weight: 500; }
.nav-links { display: flex; gap: 26px; margin: 0 auto; }
.nav-links a { color: #d6e2ef; font-size: 15px; transition: color .2s; position: relative; }
.nav-links a:hover { color: var(--orange); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--orange); transition: width .25s;
}
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-switch {
  background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px; padding: 6px 14px; font-size: 13px; cursor: pointer; transition: .2s;
}
.lang-switch:hover { background: var(--orange); border-color: var(--orange); }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 26px; border-radius: 30px; font-size: 15px; font-weight: 600;
  cursor: pointer; border: none; transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-d)); color: #fff;
  box-shadow: 0 10px 24px rgba(255, 107, 26, 0.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(255, 107, 26, 0.42); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.35); }
.btn-ghost:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--navy); box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.btn-light:hover { transform: translateY(-2px); }

/* ===== Hero ===== */
.hero {
  position: relative; overflow: hidden;
  background: var(--grad);
  color: #fff;
  padding: 110px 0 92px;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 70% 30%, #000 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 70% 30%, #000 10%, transparent 75%);
}
.hero-grid-bg::after {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,26,.32), transparent 65%);
  filter: blur(10px);
}
.hero-inner { position: relative; max-width: 760px; }
.hero-tag {
  display: inline-block; color: var(--orange); font-weight: 600; letter-spacing: 1px;
  font-size: 14px; padding: 6px 14px; border: 1px solid rgba(255,107,26,.5);
  border-radius: 30px; margin-bottom: 18px;
}
.hero h1 { font-size: clamp(30px, 5vw, 50px); line-height: 1.2; font-weight: 800; margin-bottom: 18px; text-shadow: 0 2px 18px rgba(0,0,0,.25); }
.hero-sub { font-size: 17px; color: #d3e0ef; max-width: 620px; margin-bottom: 28px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  padding: 8px 16px; border-radius: 30px; font-size: 14px; color: #eaf1f9;
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 10px var(--orange); }

/* ===== Section ===== */
.section { padding: 84px 0; }
.section-alt { background: var(--bg-alt); }
.section-title {
  text-align: center; font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; color: var(--navy);
  position: relative; padding-bottom: 14px; margin-bottom: 12px;
}
.section-title::after {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 54px; height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-d));
}
.section-desc { text-align: center; color: var(--muted); max-width: 640px; margin: 0 auto 44px; }

/* ===== About ===== */
.about .lead, .section .lead { text-align: center; max-width: 820px; margin: 0 auto; color: #34465a; font-size: 16px; }
.about-trust {
  max-width: 760px; margin: 26px auto 0; text-align: center;
  border: 1px solid rgba(255,107,26,.4); border-left: 4px solid var(--orange);
  background: linear-gradient(120deg, rgba(255,107,26,.06), rgba(255,107,26,.02));
  padding: 16px 22px; border-radius: var(--radius-sm); color: #34465a; font-weight: 500;
}
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px;
}
.stat {
  text-align: center; padding: 28px 14px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stat strong {
  display: block; font-size: 40px; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat span { display: block; margin-top: 10px; color: var(--muted); font-size: 14px; }

/* ===== Products ===== */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; box-shadow: var(--shadow-sm);
  transition: transform .28s, box-shadow .28s, border-color .28s;
  position: relative; overflow: hidden;
  height: 100%;
}
.product-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-d));
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(255,107,26,.4); }
.product-card:hover::before { transform: scaleX(1); }
.product-thumb {
  width: 88px; height: 88px; border-radius: 18px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(28,74,130,.1), rgba(28,74,130,.04));
  color: var(--navy-3); margin-bottom: 20px;
}
.product-thumb svg { width: 64px; height: 64px; }
.product-tags { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.product-tags span {
  font-size: 13px; padding: 4px 12px; border-radius: 20px;
  background: rgba(255,107,26,.1); color: var(--orange-d); font-weight: 600;
}
.product-card h3 { font-size: 20px; color: var(--navy); margin-bottom: 12px; }
.product-card p { color: var(--muted); font-size: 15px; margin-bottom: 20px; }
.card-cta { color: var(--orange-d); font-weight: 600; font-size: 15px; transition: gap .2s; }
.product-card:hover .card-cta { color: var(--orange); }

/* ===== Applications ===== */
.app-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.app-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 20px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .28s, box-shadow .28s;
}
.app-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.app-ico {
  width: 64px; height: 64px; border-radius: 16px; margin: 0 auto 16px;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff944d);
  box-shadow: 0 10px 24px rgba(255,106,19,.30);
  transition: transform .3s;
}
.app-card:hover .app-ico { transform: translateY(-3px) scale(1.05); }
.app-ico svg { width: 34px; height: 34px; }
.app-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.app-card p { color: var(--muted); font-size: 14px; }

/* ===== Advantages ===== */
.adv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.adv-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 24px; box-shadow: var(--shadow-sm); position: relative;
  transition: transform .28s, box-shadow .28s;
}
.adv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.adv-ico {
  position: relative; width: 64px; height: 64px; border-radius: 16px; margin-bottom: 18px;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--navy-2), var(--navy-3));
  box-shadow: 0 10px 24px rgba(27,58,91,.22);
  transition: transform .3s;
}
.adv-card:hover .adv-ico { transform: translateY(-3px) scale(1.05); }
.adv-ico svg { width: 34px; height: 34px; }
.adv-no {
  position: absolute; top: -10px; right: -8px;
  background: var(--orange); color: #fff; font-size: 12px; font-weight: 800;
  padding: 3px 9px; border-radius: 999px; box-shadow: 0 6px 14px rgba(255,106,19,.35);
}
.adv-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.adv-card p { color: var(--muted); font-size: 14px; }

/* ===== Process ===== */
.process-flow {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; position: relative;
}
.process-flow::before {
  content: ""; position: absolute; top: 30px; left: 10%; right: 10%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
}
.pf-step {
  text-align: center; padding: 0 8px; position: relative;
}
.pf-num {
  width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 16px;
  display: grid; place-items: center; font-size: 22px; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-d));
  box-shadow: 0 10px 22px rgba(255,107,26,.3); position: relative; z-index: 2;
}
.pf-step h3 { font-size: 16px; color: var(--navy); margin-bottom: 6px; }
.pf-step p { color: var(--muted); font-size: 13px; }

/* ===== Certs ===== */
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cert-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 22px; box-shadow: var(--shadow-sm); text-align: center;
  transition: transform .28s, box-shadow .28s, border-color .28s;
}
.cert-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(28,74,130,.35); }
.cert-ico {
  width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 14px;
  display: grid; place-items: center; color: var(--navy-3);
  background: linear-gradient(135deg, rgba(28,74,130,.1), rgba(28,74,130,.04));
}
.cert-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.cert-card p { color: var(--muted); font-size: 14px; }
.cert-ico-badge { color: var(--orange); background: linear-gradient(135deg, rgba(230,120,30,.14), rgba(230,120,30,.04)); border: 1px solid rgba(230,120,30,.28); }

/* ===== Testimonials ===== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm); position: relative;
  transition: transform .28s, box-shadow .28s;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.testi-card::before {
  content: "\201C"; position: absolute; top: 8px; left: 18px; font-size: 64px;
  color: rgba(255,107,26,.18); font-family: Georgia, serif; line-height: 1;
}
.testi-card blockquote {
  font-size: 15px; color: #34465a; line-height: 1.8; margin: 18px 0 18px; position: relative; z-index: 1;
}
.testi-card figcaption {
  font-size: 13px; font-weight: 600; color: var(--orange-d);
  padding-top: 14px; border-top: 1px dashed var(--line);
}

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 4px 20px; box-shadow: var(--shadow-sm); transition: border-color .2s;
}
.faq-item[open] { border-color: rgba(255,107,26,.4); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 16px 0; font-size: 16px; font-weight: 600;
  color: var(--navy); display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 22px; color: var(--orange); font-weight: 400; transition: transform .2s;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-a { padding: 0 0 16px; color: var(--muted); font-size: 14px; }
.faq-a p { line-height: 1.8; }

/* ===== News ===== */
.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.news-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--orange);
  transition: transform .28s, box-shadow .28s;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.news-date {
  display: inline-block; font-size: 12px; font-weight: 700; color: var(--orange-d);
  background: rgba(255,107,26,.1); padding: 3px 12px; border-radius: 20px; margin-bottom: 12px;
}
.news-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 10px; line-height: 1.5; }
.news-card p { color: var(--muted); font-size: 14px; }

/* ===== CTA Band ===== */
.cta-band {
  background: var(--grad); color: #fff; padding: 56px 0; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; left: -80px; bottom: -120px; width: 320px; height: 320px;
  border-radius: 50%; background: radial-gradient(circle, rgba(255,107,26,.3), transparent 65%);
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  position: relative; flex-wrap: wrap;
}
.cta-inner h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; margin-bottom: 8px; }
.cta-inner p { color: #d3e0ef; font-size: 16px; }

/* ===== Contact ===== */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.contact-list { list-style: none; margin-top: 24px; }
.contact-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: 1px dashed var(--line);
  font-size: 15px; color: var(--ink);
}
.contact-list li > span:first-child {
  flex: 0 0 56px; width: 56px;
  color: var(--orange); font-weight: 600;
}
.contact-list li > span:last-child,
.contact-list li > a { flex: 1; word-break: break-word; line-height: 1.55; }
.contact-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 12px;
}
.contact-form input, .contact-form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-size: 15px; font-family: inherit; color: var(--ink); background: #fbfdff; transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,26,.12);
}
.form-tip { font-size: 12px; color: var(--muted); }

/* ===== Footer ===== */
.site-footer { background: var(--navy); color: #aebfd0; padding: 54px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.footer-brand .brand-text { color: #fff; font-size: 18px; }
.footer-note { font-size: 13px; color: #8295a8; margin-top: 12px; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 16px; margin-bottom: 14px; }
.footer-col p { font-size: 14px; color: #9fb1c4; margin-bottom: 8px; }
.footer-bottom { margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); text-align: center; font-size: 13px; color: #8295a8; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .nav-links { display: none; position: absolute; top: 66px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: rgba(12,36,64,.98); padding: 10px 0; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 22px; border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav-toggle { display: block; }
  .stats, .product-grid, .app-grid, .adv-grid, .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .process-flow { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-flow::before { display: none; }
  .testi-grid, .news-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .stats, .product-grid, .app-grid, .adv-grid, .cert-grid, .process-flow { grid-template-columns: 1fr; }
  .hero { padding: 76px 0 64px; }
  .section { padding: 60px 0; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

/* ===== 行业子页面 ===== */
.ind-hero { position: relative; background-size: cover; background-position: center; color: #fff; padding: 132px 0 70px; }
.ind-hero-inner { position: relative; z-index: 1; }
.breadcrumb { font-size: 14px; color: rgba(255,255,255,.82); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,.92); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { margin: 0 8px; opacity: .55; }
.ind-hero h1 { font-size: 46px; color: #fff; margin-bottom: 16px; text-shadow: 0 2px 14px rgba(0,0,0,.45); }
.ind-hero-sub { max-width: 780px; font-size: 17px; line-height: 1.85; color: rgba(255,255,255,.92); margin-bottom: 28px; }

.ind-scene-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 28px; }
.ind-scene { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 26px 28px; transition: .3s; }
.ind-scene:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--orange); }
.ind-scene-no { font-size: 30px; font-weight: 800; color: transparent; -webkit-text-stroke: 1.5px var(--orange); margin-bottom: 8px; }
.ind-scene h3 { font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.ind-scene p { font-size: 14px; color: var(--muted); line-height: 1.75; }

.ind-prod { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.ind-prod-chip { background: var(--navy); color: #fff; padding: 10px 18px; border-radius: 999px; font-size: 14px; border: 1px solid var(--navy-3); transition: .25s; }
.ind-prod-chip:hover { background: var(--orange); border-color: var(--orange); }

.ind-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.ind-why { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 26px 28px; border-top: 3px solid var(--orange); transition: .3s; }
.ind-why:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.ind-why h3 { font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.ind-why p { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* 首页服务行业卡片可点击 */
.app-grid a.app-card-link { color: inherit; text-decoration: none; display: block; }
.app-card-link:hover .app-card { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--orange); }
.product-grid a.product-card-link { color: inherit; text-decoration: none; display: block; }
.product-card-link:hover .product-card { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--orange); }
.app-more { display: inline-block; margin-top: 12px; font-size: 13px; font-weight: 600; color: var(--orange); }

@media (max-width: 960px) {
  .ind-scene-grid, .ind-why-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-hero h1 { font-size: 36px; }
}
@media (max-width: 560px) {
  .ind-scene-grid, .ind-why-grid { grid-template-columns: 1fr; }
}
