:root {
      --color-primary: #0EA57A;
      --color-primary-dark: #0b8a66;
      --color-primary-soft: #E8F8F2;
      --color-text: #0F2A22;
      --color-text-muted: #3d5a50;
      --color-bg: #f6faf8;
      --color-surface: #ffffff;
      --color-line: rgba(14, 165, 122, 0.16);
      --radius: 10px;
      --h1-size: clamp(30px, 4vw, 48px);
      --h2-size: clamp(26px, 3vw, 36px);
      --h3-size: 22px;
      --body-size: 16px;
      --max: 1240px;
      --section-y: clamp(48px, 6vw, 80px);
      color: var(--color-text);
      background: var(--color-bg);
      font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", ui-sans-serif, system-ui, sans-serif;
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: auto; }
    body { margin: 0; overflow-x: hidden; background: var(--color-bg); color: var(--color-text); font-size: var(--body-size); }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; height: auto; }
    .site { min-height: 100vh; display: flex; flex-direction: column; }

    .header {
      position: sticky; top: 0; z-index: 20;
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
      min-height: 70px; padding: 0 max(16px, calc((100vw - var(--max)) / 2));
      background: rgba(255,255,255,.94); border-bottom: 1px solid var(--color-line);
      backdrop-filter: blur(10px);
    }
    .brand strong { color: var(--color-primary); font-size: clamp(17px, 2vw, 22px); font-weight: 900; }
    .nav { display: flex; flex-wrap: nowrap; align-items: center; gap: 6px 14px; justify-content: center; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .nav::-webkit-scrollbar { display: none; }
    .nav a {
      position: relative; color: #456057; padding: 8px 2px 10px; font-size: 14px; font-weight: 800; white-space: nowrap; flex-shrink: 0;
      transition: color .18s ease;
    }
    .nav a::after {
      content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
      background: var(--color-primary); transform: scaleX(0); transition: transform .18s ease;
    }
    .nav a:hover, .nav a.active { color: var(--color-primary); }
    .nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
    .call {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      min-height: 42px; padding: 0 16px; border-radius: var(--radius);
      background: var(--color-primary); color: #fff; font-weight: 900; white-space: nowrap;
      box-shadow: 0 10px 22px rgba(14,165,122,.28);
      transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
    }
    .call:hover { background: var(--color-primary-dark); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(14,165,122,.34); }
    .call-icon { flex-shrink: 0; width: 18px; height: 18px; display: block; }
    .footer a[href^="tel"] {
      display: inline-flex; align-items: center; gap: 8px;
    }
    .call-desktop { display: inline-flex; }

    /* Banner：绿色渐变 + 文案 + 玻璃装饰 */
    .banner {
      position: relative; overflow: hidden; color: #fff;
      background: linear-gradient(135deg, #087a5a 0%, #0EA57A 42%, #2fd4a0 100%);
      padding: 80px max(16px, calc((100vw - var(--max)) / 2));
      scroll-margin-top: 80px;
    }
    .banner::before {
      content: ""; position: absolute; inset: 0; pointer-events: none;
      background:
        radial-gradient(circle at 88% 20%, rgba(255,255,255,.18), transparent 28%),
        radial-gradient(circle at 70% 80%, rgba(8, 80, 60, .22), transparent 34%);
    }
    .banner-shell {
      position: relative; z-index: 1;
      display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
      gap: clamp(24px, 4vw, 48px); align-items: center;
    }
    .banner-text { text-align: left; }
    .banner-badge {
      display: inline-block; padding: 7px 12px; border-radius: 999px;
      background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.28);
      backdrop-filter: blur(10px); font-size: 13px; font-weight: 800; line-height: 1.4;
    }
    .banner h1 { margin: 16px 0 0; font-size: var(--h1-size); line-height: 1.18; color: #fff; text-align: left; }
    .banner p { margin: 16px 0 0; color: rgba(255,255,255,.92); line-height: 1.8; font-size: 17px; max-width: 640px; }
    .banner-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
    .banner-glass-panel {
      display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    }
    .glass-tile {
      display: grid; place-items: center; gap: 8px; min-height: 110px; padding: 16px 12px;
      border-radius: 16px; text-align: center; color: #fff;
      background: rgba(255,255,255,.14);
      border: 1px solid rgba(255,255,255,.28);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 12px 28px rgba(0,0,0,.08);
      backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
      transition: transform .2s ease, background .2s ease;
    }
    .glass-tile:hover { transform: translateY(-3px); background: rgba(255,255,255,.2); }
    .glass-tile svg { width: 28px; height: 28px; }
    .glass-tile span { font-size: 13px; font-weight: 800; }
    .btn-light {
      display: inline-flex; align-items: center; justify-content: center;
      min-height: 44px; padding: 0 18px; border-radius: var(--radius);
      background: #fff; color: var(--color-primary); font-weight: 900;
      transition: transform .18s ease, background .18s ease;
    }
    .btn-light:hover { background: #f3fffa; transform: translateY(-2px); }
    .btn-outline {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      min-height: 44px; padding: 0 18px; border-radius: var(--radius);
      border: 2px solid rgba(255,255,255,.85); color: #fff; font-weight: 900;
      transition: background .18s ease, transform .18s ease;
    }
    .btn-outline:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }

    .section {
      padding: var(--section-y) max(16px, calc((100vw - var(--max)) / 2));
      scroll-margin-top: 80px; background: var(--color-surface);
      border-top: 1px solid var(--color-line);
    }
    .section.alt { background: var(--color-bg); }
    .section-head { text-align: left; margin: 0 0 28px; width: 100%; }
    .section-title-row {
      display: flex; align-items: center; gap: 12px; text-align: left;
    }
    .section-title-row h2 {
      margin: 0; padding-bottom: 0;
    }
    .section-title-row h2::after { display: none; }
    .section-head .section-title-row + .body-text,
    .section-head > .body-text { margin-top: 14px; }
    .glass-icon {
      flex: 0 0 auto; width: 52px; height: 52px; display: grid; place-items: center;
      border-radius: 14px; color: var(--color-primary);
      background: linear-gradient(145deg, rgba(255,255,255,.72), rgba(232,248,242,.55));
      border: 1px solid rgba(14,165,122,.22);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 8px 20px rgba(14,165,122,.1);
      backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    }
    .glass-icon svg { width: 24px; height: 24px; }
    .kicker {
      margin: 0 0 6px; color: var(--color-primary); font-size: 12px; font-weight: 900;
      letter-spacing: .16em; text-transform: uppercase; text-align: left;
    }
    h2 {
      margin: 0; color: #0b5c45; font-size: var(--h2-size); line-height: 1.2; text-align: left;
      position: relative; padding-bottom: 12px;
    }
    h2::after {
      content: ""; position: absolute; left: 0; bottom: 0;
      width: 48px; height: 3px; border-radius: 2px; background: var(--color-primary);
    }
    .section-head .body-text {
      margin: 16px 0 0; width: 100%; text-align: left; color: var(--color-text); line-height: 1.85;
    }
    .body-text { color: var(--color-text); line-height: 1.9; white-space: pre-wrap; }
    p { margin: 0; }

    /* 关于我们：左图右文，干净排版 */
    .about-grid {
      display: grid;
      grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
      gap: clamp(28px, 4vw, 48px);
      align-items: center;
      padding: 0;
      background: transparent;
      border: 0;
      border-radius: 0;
      box-shadow: none;
    }
    .about-grid:hover { transform: none; box-shadow: none; border: 0; }
    .about-media {
      display: block;
      padding: 0;
      margin: 0;
      background: transparent;
      border: 0;
      border-radius: 0;
      box-shadow: none;
      overflow: hidden;
    }
    .about-media img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      border-radius: 12px;
      display: block;
      background: var(--color-primary-soft);
    }
    .about-copy {
      position: relative;
      display: grid;
      gap: 14px;
      align-content: center;
      padding: 4px 0 4px 20px;
      border: 0;
      background: transparent;
    }
    .about-copy::before {
      content: "";
      position: absolute;
      left: 0; top: 8px; bottom: 8px;
      width: 3px;
      border-radius: 3px;
      background: var(--color-primary);
    }
    .about-tag {
      justify-self: start;
      display: inline-flex; align-items: center;
      padding: 6px 12px; border-radius: 999px;
      background: var(--color-primary-soft); color: var(--color-primary);
      font-size: 13px; font-weight: 800; line-height: 1.4;
    }
    .about-copy .about-title {
      margin: 0; color: #12261f;
      font-size: clamp(24px, 2.6vw, 32px);
      font-weight: 900; line-height: 1.25; text-align: left; padding-bottom: 0;
    }
    .about-copy .about-title::after { display: none; }
    .about-copy .body-text {
      text-align: left; color: var(--color-text);
      font-size: 15px; line-height: 1.9;
    }
    .about-phone {
      justify-self: start;
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      margin-top: 8px; min-height: 44px; padding: 0 18px;
      border-radius: var(--radius);
      background: var(--color-primary); color: #fff;
      font-weight: 900; font-size: 16px; text-decoration: none;
      box-shadow: 0 10px 22px rgba(14,165,122,.28);
      transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
    }
    .about-phone:hover {
      color: #fff;
      background: var(--color-primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 14px 28px rgba(14,165,122,.34);
    }

    /* 优势：一行三个；图标与半透明底均为正方形 */
    .advantages-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      align-items: stretch;
    }
    .advantage-card {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      align-items: center;
      gap: 0 12px;
      min-height: 108px;
      height: 100%;
      overflow: hidden;
      padding: 12px 14px 12px 12px;
      border: 1px solid var(--color-line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: 0 10px 24px rgba(14,80,60,.06);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .advantage-card:hover {
      transform: translateY(-3px);
      border-color: rgba(14,165,122,.35);
      box-shadow: 0 14px 32px rgba(14,165,122,.14);
    }
    .advantage-icon {
      position: relative;
      display: grid;
      place-items: center;
      width: 72px;
      height: 72px;
      color: var(--color-primary);
      overflow: hidden;
      border-radius: 8px;
      border: 1px solid rgba(14,165,122,.16);
      background:
        linear-gradient(145deg, rgba(255,255,255,.82), rgba(232,248,242,.55)),
        linear-gradient(155deg, rgba(47,212,160,.24), rgba(14,165,122,.14));
      backdrop-filter: blur(10px);
    }
    .advantage-icon::before {
      content: "";
      position: absolute;
      inset: 10px;
      border-radius: 4px;
      border: 1px solid rgba(255,255,255,.6);
      background: rgba(255,255,255,.32);
    }
    .advantage-icon svg { width: 28px; height: 28px; position: relative; z-index: 1; }
    .advantage-body {
      display: grid;
      align-content: center;
      gap: 6px;
      padding: 0;
      text-align: left;
    }
    .advantage-card strong {
      color: #0b5c45;
      font-size: 14px;
      line-height: 1.45;
      font-weight: 900;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .advantage-card p { color: var(--color-text-muted); font-size: 12px; line-height: 1.6; }

    /* 服务 */
    .product-groups { display: grid; gap: 32px; }
    .product-series { display: grid; gap: 18px; }
    .product-series-header { text-align: left; }
    .product-series h3 {
      margin: 0; color: #0b5c45; font-size: var(--h3-size); position: relative;
      padding-bottom: 12px; text-align: left;
    }
    .product-series h3::after {
      content: ""; position: absolute; left: 0; bottom: 0;
      width: 2.2em; height: 3px; border-radius: 2px; background: var(--color-primary);
    }
    .product-series-desc {
      margin: 10px 0 0; color: var(--color-text); line-height: 1.75; text-align: left; width: 100%;
    }
    .product-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
    #product-1 {
      background:
        radial-gradient(circle at 12% 20%, rgba(14,165,122,.08), transparent 34%),
        radial-gradient(circle at 88% 70%, rgba(47,212,160,.08), transparent 36%),
        linear-gradient(180deg, #eefaf5 0%, #f7fcfa 100%);
    }
    .product-card {
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.55);
      border-radius: 14px;
      background: rgba(255,255,255,.42);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,.55),
        0 12px 28px rgba(14,80,60,.08);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
    }
    .product-card:hover {
      transform: translateY(-4px);
      background: rgba(255,255,255,.58);
      border-color: rgba(14,165,122,.28);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,.7),
        0 18px 36px rgba(14,165,122,.14);
    }
    .product-card img {
      width: 100%; aspect-ratio: 4/3; object-fit: cover;
      transition: transform .28s ease;
    }
    .product-card:hover img { transform: scale(1.04); }
    .product-card-body {
      padding: 14px; display: grid; gap: 8px; text-align: center;
      background: rgba(255,255,255,.28);
      border-top: 1px solid rgba(255,255,255,.4);
    }
    .product-card strong { color: var(--color-text); font-weight: 900; line-height: 1.45; }

    .case-card {
      overflow: hidden; border: 1px solid var(--color-line); border-radius: var(--radius);
      background: #fff; box-shadow: 0 10px 24px rgba(14,80,60,.06);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .case-card:hover {
      transform: translateY(-4px);
      border-color: rgba(14,165,122,.35);
      box-shadow: 0 16px 34px rgba(14,165,122,.14);
    }
    .case-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .28s ease; }
    .case-card:hover img { transform: scale(1.04); }
    .case-body { padding: 14px; display: grid; gap: 8px; }
    .case-card strong { color: var(--color-text); font-weight: 900; line-height: 1.45; }
    .case-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
    .case-body em {
      justify-self: start; border-radius: 999px; background: var(--color-primary-soft);
      color: var(--color-primary); padding: 5px 10px; font-size: 12px; font-style: normal; font-weight: 900;
    }
    .case-card p { color: var(--color-text-muted); font-size: 14px; line-height: 1.7; }

    .contact {
      display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 18px; align-items: center;
      margin: 0 max(16px, calc((100vw - var(--max)) / 2)) var(--section-y);
      padding: 28px; border-radius: 14px; color: #fff;
      background: linear-gradient(135deg, #0EA57A 0%, #18c292 100%);
      box-shadow: 0 16px 36px rgba(14,165,122,.22);
      scroll-margin-top: 80px;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .contact:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(14,165,122,.3); }
    .contact h2 { color: #fff; text-align: left; }
    .contact h2::after { left: 0; transform: none; background: rgba(255,255,255,.85); }
    .contact .kicker { text-align: left; color: rgba(255,255,255,.8); }
    .contact p { color: rgba(255,255,255,.9); margin-top: 8px; }
    .contact .call { background: #fff; color: var(--color-primary); box-shadow: none; }
    .contact .call:hover { background: #f3fffa; color: var(--color-primary-dark); }

    .footer {
      margin-top: auto;
      background: #e9f7f1; padding: 42px max(16px, calc((100vw - var(--max)) / 2)) 0;
      border-top: 1px solid var(--color-line);
    }
    .footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .8fr; gap: 28px; }
    .footer strong { color: var(--color-primary); font-size: 22px; }
    .footer h3 { margin: 0; color: #0b5c45; font-size: 15px; }
    .footer h3::after { display: none; }
    .footer p, .footer a, .footer span { color: #4d6b60; font-size: 14px; line-height: 1.8; font-weight: 700; }
    .footer a:hover { color: var(--color-primary); }
    .footer-nav { display: grid; gap: 8px; }
    .footer-nav a.active { color: var(--color-primary); }
    .footer-bottom {
      margin-top: 28px; border-top: 1px solid rgba(14,165,122,.14);
      padding: 14px 0; color: #7a948a; font-size: 12px;
    }
    .friend-links { display: none; }
    .mobile-call {
      position: fixed; right: 18px; bottom: 18px; z-index: 30;
      min-height: 44px; padding: 0 16px;
      box-shadow: 0 12px 28px rgba(14,165,122,.3);
    }

    .viewport-disclaimer {
      position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
      background: rgba(255,255,255,.96); border-top: 1px solid #e5e7eb;
      box-shadow: 0 -6px 20px rgba(15,23,42,.06);
      padding: 10px max(16px, calc((100vw - var(--max)) / 2));
      color: #64748b; font-size: 12px; line-height: 1.7; font-weight: 700;
    }
    .viewport-disclaimer a { color: #e11d48; text-decoration: underline; margin-left: 4px; }
    body.has-viewport-disclaimer { padding-bottom: 72px; }
    body.has-viewport-disclaimer .mobile-call { bottom: 78px; }

    @media (max-width: 1024px) {
      .header { display: grid; grid-template-columns: 1fr auto; gap: 10px 14px; padding: 12px 16px; }
      .nav { grid-column: 1 / -1; justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
      .banner-shell, .about-grid, .contact, .footer-grid { grid-template-columns: 1fr; }
      .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
      .advantages-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
      .case-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
      .contact { justify-items: center; text-align: center; }
      .contact h2, .contact .kicker { text-align: center; }
      .contact h2::after { left: 50%; transform: translateX(-50%); }
    }
    @media (max-width: 768px) {
      .header { grid-template-columns: 1fr; }
      .call-desktop { display: none; }
      .nav { flex-wrap: nowrap; overflow-x: auto; gap: 0; scrollbar-width: none; }
      .nav::-webkit-scrollbar { display: none; }
      .nav a {
        flex: 0 0 auto; padding: 8px 12px; border-radius: 999px;
        background: var(--color-primary-soft); color: #2f5d4d;
      }
      .nav a::after { display: none; }
      .nav a.active, .nav a:hover { background: var(--color-primary); color: #fff; }
      .banner { padding: 48px 16px; }
      .banner-shell { gap: 18px; }
      .banner-glass-panel { grid-template-columns: 1fr 1fr; }
      .banner-actions { flex-direction: column; }
      .btn-light, .btn-outline { width: 100%; }
      .section { padding: 40px 16px; }
      .about-grid { padding: 0; grid-template-columns: 1fr; gap: 18px; }
      .about-copy { padding: 0 0 0 16px; }
      .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
      .case-grid { grid-template-columns: 1fr; }
      .advantages-grid { grid-template-columns: 1fr; }
      .advantage-card { grid-template-columns: auto minmax(0,1fr); padding: 10px 12px 10px 10px; }
      .advantage-icon { width: 64px; height: 64px; }
      .advantage-icon::before { inset: 8px; }
      .advantage-icon svg { width: 24px; height: 24px; }
      .contact { margin: 0 16px 32px; padding: 22px 16px; }
      .contact .call { width: 100%; max-width: 280px; }
      .footer { padding: 28px 16px 0; }
      .mobile-call { left: 16px; right: 16px; width: auto; justify-content: center; }
      body.has-viewport-disclaimer .mobile-call { bottom: 90px; }
      .viewport-disclaimer { font-size: 11px; max-height: 22vh; overflow: auto; }
    }
    @media (max-width: 480px) {
      .product-grid { grid-template-columns: 1fr; }
      .banner-shell { grid-template-columns: 1fr; }
      .glass-tile { min-height: 88px; }
    }
    @media (hover: none) {
      .about-grid:hover, .advantage-card:hover, .product-card:hover, .case-card:hover,
      .contact:hover, .call:hover, .mobile-call:hover { transform: none; }
    }
  
    /* 新闻动态 / 联系占位 */
    .news-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }
    .news-card {
      display: grid; gap: 10px; padding: 20px 18px;
      border-radius: var(--radius); background: var(--color-primary-soft);
      border: 1px solid var(--color-line); color: inherit;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .news-card:hover {
      transform: translateY(-3px);
      border-color: rgba(14,165,122,.35);
      box-shadow: 0 12px 26px rgba(14,165,122,.14);
    }
    .news-card time { color: var(--color-text-muted); font-size: 12px; font-weight: 700; }
    .news-card strong { color: #0b5c45; font-size: 16px; line-height: 1.45; font-weight: 900; }
    .news-card p { margin: 0; color: var(--color-text-muted); font-size: 13px; line-height: 1.75; font-weight: 700; }
    .news-list { display: grid; gap: 14px; }
    .news-list-item {
      display: grid; gap: 8px; padding: 18px 20px; border-radius: var(--radius);
      background: var(--color-primary-soft); border: 1px solid var(--color-line); color: inherit;
    }
    .news-list-item:hover { border-color: rgba(14,165,122,.35); }
    .news-list-item strong { color: #0b5c45; font-size: 17px; font-weight: 900; }
    .news-list-item time, .news-list-item p { margin: 0; color: var(--color-text-muted); font-size: 13px; line-height: 1.7; font-weight: 700; }
    .news-article { max-width: 860px; margin: 0 auto; display: grid; gap: 16px; }
    .news-article time { color: var(--color-text-muted); font-size: 13px; font-weight: 700; }
    .news-article h1 { margin: 0; color: #0b5c45; font-size: clamp(24px, 3vw, 34px); line-height: 1.35; font-weight: 900; }
    .news-article .body-text { color: var(--color-text-muted); font-size: 15px; line-height: 1.9; font-weight: 600; }
    .news-more, .news-back { color: var(--color-primary); font-weight: 800; }
    .news-more:hover, .news-back:hover { text-decoration: underline; }
    .news-more-wrap { margin-top: 22px; text-align: center; }
    .contact-card {
      display: grid; gap: 14px; max-width: 560px; margin: 0 auto; padding: 26px 24px;
      border-radius: var(--radius); background: var(--color-primary-soft); border: 1px solid var(--color-line);
    }
    .contact-card dl { margin: 0; display: grid; gap: 14px; }
    .contact-card dt { color: var(--color-text-muted); font-size: 12px; font-weight: 800; }
    .contact-card dd { margin: 4px 0 0; color: #0b5c45; font-size: 16px; font-weight: 900; }
    .contact-card a { color: var(--color-primary); }
    .page-main { padding-top: 8px; }
    .section.news-section { padding: var(--section-y) max(16px, calc((100vw - var(--max)) / 2)); }
    @media (max-width: 900px) {
      .news-grid { grid-template-columns: 1fr; }
    }