:root {
      --brand: #f26500;
      --brand-dark: #d95800;
      --brand-soft: #fff6ed;
      --brand-blue: #1a6bff;
      --text: #16181d;
      --muted: #5c6370;
      --line: #e6e9f0;
      --surface: #f5f7fb;
      --radius: 14px;
      --radius-lg: 20px;
      --shadow: 0 16px 48px rgba(22, 32, 52, 0.09);
      --shadow-sm: 0 4px 20px rgba(22, 32, 52, 0.06);
      --max: 1180px;
      --banner-inner: 1320px;
      --section-pad-y: 96px;
      --section-pad-x: 28px;
      --block-gap: 32px;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html {
      scroll-behavior: smooth;
      scroll-padding-top: clamp(56px, 14vw, 80px);
    }
    body {
      font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
      color: var(--text);
      line-height: 1.6;
      background: var(--surface);
      -webkit-text-size-adjust: 100%;
      text-size-adjust: 100%;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; height: auto; display: block; }

    .sg-visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
    .sg-skip-link {
      position: fixed;
      left: 0;
      top: 0;
      z-index: 10050;
      padding: 12px 18px;
      margin: 8px;
      font-size: 0.92rem;
      font-weight: 600;
      color: #fff;
      background: var(--brand);
      border-radius: 10px;
      box-shadow: 0 4px 18px rgba(255, 106, 0, 0.35);
      transform: translateY(-160%);
      transition: transform 0.2s ease;
    }
    .sg-skip-link:focus {
      transform: translateY(0);
      outline: 2px solid #fff;
      outline-offset: 2px;
    }

    /* 顶栏导航（位于 Banner 之上） */
    .sg-header {
      position: sticky;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      width: 100%;
      max-width: none;
      padding-top: env(safe-area-inset-top, 0);
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(20px) saturate(1.12);
      -webkit-backdrop-filter: blur(20px) saturate(1.12);
      border-bottom: none;
      box-shadow: none;
      overflow: visible;
    }
    .sg-header__inner {
      /* 勿用 width:100%，否则在桌面 flex 顶栏内会占满整行，挤压 .sg-nav 宽度为 0 */
      width: auto;
      max-width: none;
      margin: 0;
      padding: 10px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      min-height: 64px;
      box-sizing: border-box;
      flex: 0 0 auto;
    }

    /* 皮肤专题 Banner */
    .sg-hero {
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: min(92vh, 920px);
      overflow: hidden;
    }
    .sg-hero__bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      background: url("images/top-bg_bb6c7cb.png") center top / cover no-repeat;
    }
    /* 顶部略压暗，保证白底/浅底时标题仍可读（与下方深色字配套） */
    .sg-hero__bg::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(
        180deg,
        rgba(245, 248, 252, 0.75) 0%,
        rgba(245, 248, 252, 0.35) 38%,
        transparent 65%
      );
    }
    .sg-hero__main {
      position: relative;
      z-index: 1;
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 44px 20px 8px;
      text-align: center;
    }
    .sg-hero__inner {
      width: 100%;
      max-width: var(--banner-inner);
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .sg-hero__title {
      color: #0c2340;
      font-weight: 800;
      line-height: 1.2;
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.85);
      margin: 0 0 14px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.35em;
    }
    .sg-hero__title-brand {
      font-size: clamp(1rem, 2.4vw, 1.35rem);
      font-weight: 700;
      letter-spacing: 0.24em;
      color: #1a4a7a;
      opacity: 1;
    }
    .sg-hero__title-slogan {
      font-size: clamp(1.75rem, 5vw, 3.1rem);
      letter-spacing: 0.06em;
      color: #071a2e;
    }
    .sg-hero__sub {
      margin: 0;
      color: #3d4f66;
      font-size: clamp(0.9rem, 1.9vw, 1.1rem);
      font-weight: 400;
      letter-spacing: 0.12em;
    }
    .sg-hero__sub strong {
      color: #0f2744;
      font-weight: 700;
    }
    .sg-hero__laptop {
      flex: 1;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      width: 100%;
      margin-top: 130px;
      min-height: 0;
    }
    .sg-hero__laptop-frame {
      position: relative;
      width: 100%;
      line-height: 0;
    }
    .sg-hero__laptop-frame .sg-hero__mac {
      width: 100%;
      max-width: none;
      height: auto;
      display: block;
      filter: drop-shadow(0 32px 56px rgba(25, 90, 150, 0.3));
      margin-bottom: -12px;
    }
    .sg-hero__overlay-gif {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 45%;
      max-width: min(92%, 900px);
      object-fit: contain;
      pointer-events: none;
      z-index: 2;
    }
    /* Banner 下全宽皮肤展示模块 */
    .sg-carousel {
      width: 100%;
      margin: 0;
      padding: 0;
      background: #fff;
    }
    .sg-carousel__head {
      max-width: var(--banner-inner);
      margin: 0 auto;
      padding: 64px var(--section-pad-x) 40px;
      text-align: center;
      line-height: normal;
    }
    .sg-carousel__title {
      font-size: clamp(1.5rem, 3.5vw, 1.85rem);
      font-weight: 800;
      color: var(--text);
      margin: 0 0 14px;
      letter-spacing: 0.03em;
    }
    .sg-carousel__highlight {
      color: var(--brand);
    }
    .sg-carousel__desc {
      margin: 0 auto;
      max-width: 52em;
      font-size: 0.98rem;
      color: var(--muted);
      line-height: 1.75;
    }
    .sg-carousel__media {
      line-height: 0;
    }
    .sg-carousel__img {
      width: 100%;
      max-width: none;
      height: auto;
      display: block;
    }
    .sg-brand {
      display: flex;
      align-items: center;
      flex-shrink: 0;
      line-height: 0;
    }
    .sg-brand__logo {
      display: block;
      height: 36px;
      width: auto;
    }
    .sg-nav {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 10px 26px;
    }
    .sg-nav a {
      font-size: 0.94rem;
      color: #333;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 6px 0;
    }
    .sg-nav a:hover {
      color: var(--brand);
    }
    /* 需高于 .sg-nav a，否则 padding/color 被覆盖 */
    .sg-nav a.sg-nav__cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 10px 22px;
      margin: 0;
      border-radius: 999px;
      font-size: 0.92rem;
      font-weight: 600;
      line-height: 1.2;
      color: #fff;
      background: linear-gradient(180deg, #4f9dff, #2b7efc);
      box-shadow: 0 6px 22px rgba(43, 126, 252, 0.38);
      white-space: nowrap;
      text-decoration: none;
      transition: filter 0.15s, box-shadow 0.15s, transform 0.15s;
    }
    .sg-nav a.sg-nav__cta:hover {
      color: #fff;
      filter: brightness(1.05);
      box-shadow: 0 8px 26px rgba(43, 126, 252, 0.45);
      transform: translateY(-1px);
    }

    .sg-nav__toggle {
      display: none;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      margin: 0 0 0 auto;
      padding: 0;
      border: none;
      border-radius: 10px;
      background: rgba(0, 0, 0, 0.04);
      color: #333;
      cursor: pointer;
      flex-shrink: 0;
      transition: background 0.15s;
    }
    .sg-nav__toggle:hover {
      background: rgba(255, 106, 0, 0.1);
    }
    .sg-nav__toggle:focus-visible {
      outline: 2px solid var(--brand);
      outline-offset: 2px;
    }
    .sg-nav__toggle-bars {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 22px;
      height: 18px;
    }
    .sg-nav__toggle-bars span {
      display: block;
      height: 2px;
      border-radius: 1px;
      background: currentColor;
      transition: transform 0.25s ease, opacity 0.2s ease;
    }
    body.is-nav-open .sg-nav__toggle-bars span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    body.is-nav-open .sg-nav__toggle-bars span:nth-child(2) {
      opacity: 0;
    }
    body.is-nav-open .sg-nav__toggle-bars span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }
    .sg-nav-backdrop {
      display: none;
    }
    body.is-nav-open {
      overflow: hidden;
      touch-action: none;
    }

    .sg-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 22px;
      border-radius: 999px;
      font-size: 0.95rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
    }
    .sg-btn--primary {
      background: linear-gradient(135deg, var(--brand), var(--brand-dark));
      color: #fff;
      box-shadow: 0 8px 24px rgba(255, 106, 0, 0.35);
    }
    .sg-btn--primary:hover { transform: translateY(-1px); }
    .sg-btn--ghost {
      background: #fff;
      color: var(--brand);
      border: 2px solid var(--brand);
    }
    .sg-btn--ghost:hover { background: var(--brand-soft); }

    .sg-anchor {
      height: 0;
      overflow: hidden;
      scroll-margin-top: 72px;
    }

    section {
      padding: var(--section-pad-y) var(--section-pad-x);
    }
    .sg-section-head {
      max-width: var(--max);
      margin: 0 auto 52px;
      text-align: center;
    }
    .sg-section-head h2 {
      font-size: 1.65rem;
      font-weight: 800;
      margin-bottom: 14px;
    }
    .sg-section-head p { color: var(--muted); font-size: 1.05rem; line-height: 1.65; }

    .sg-features {
      max-width: var(--max);
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: clamp(52px, 7vw, 80px);
    }
    .sg-feature-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(28px, 4vw, 52px);
      align-items: center;
    }
    .sg-feature-row--reverse .sg-feature-row__media { order: 2; }
    .sg-feature-row--reverse .sg-feature-row__text { order: 1; }
    .sg-feature-row__media {
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      background: #f5f5f5;
    }
    .sg-feature-row__media img {
      width: 100%;
      height: auto;
      aspect-ratio: 16 / 10;
      object-fit: cover;
      display: block;
    }
    .sg-feature-row__text h3 {
      font-size: clamp(1.2rem, 2.4vw, 1.48rem);
      font-weight: 800;
      margin: 0 0 14px;
      line-height: 1.3;
      color: var(--text);
    }
    .sg-feature-row__lead {
      font-size: 1.02rem;
      color: var(--text);
      margin: 0 0 14px;
      line-height: 1.75;
    }
    .sg-feature-row__text > p:not(.sg-feature-row__lead) {
      font-size: 0.96rem;
      color: var(--muted);
      margin: 0 0 12px;
      line-height: 1.8;
    }
    .sg-feature-row__list {
      margin: 6px 0 0 1.15em;
      padding: 0;
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.75;
    }
    .sg-feature-row__list li { margin-bottom: 10px; }

    .sg-showcase {
      background: var(--brand-soft);
    }
    .sg-showcase__inner {
      max-width: var(--max);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 48px;
      align-items: center;
    }
    .sg-showcase__inner h2 { font-size: 1.5rem; margin-bottom: 14px; }
    .sg-showcase__inner ul {
      margin: 16px 0 0 1.1em;
      color: var(--muted);
      font-size: 0.95rem;
    }
    .sg-showcase__inner li { margin-bottom: 8px; }
    .sg-carousel-frame {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      background: #fff;
      padding: 10px;
    }

    .sg-sync {
      background: linear-gradient(145deg, #f3f8ff 0%, #faf7ff 42%, #fff9f4 100%);
    }
    .sg-sync__inner {
      max-width: var(--max);
      margin: 0 auto;
    }
    .sg-sync-card {
      display: grid;
      grid-template-columns: 1fr minmax(300px, 44%);
      align-items: stretch;
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(0, 0, 0, 0.06);
      box-shadow:
        0 4px 24px rgba(28, 28, 28, 0.06),
        0 24px 56px rgba(28, 28, 28, 0.08);
    }
    .sg-sync-card__body {
      padding: clamp(32px, 5vw, 52px) clamp(28px, 4vw, 48px);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .sg-sync-card__eyebrow {
      display: inline-block;
      width: fit-content;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      color: var(--brand);
      margin-bottom: 12px;
    }
    .sg-sync-card__body h2 {
      font-size: clamp(1.35rem, 2.8vw, 1.65rem);
      font-weight: 800;
      line-height: 1.25;
      margin: 0 0 16px;
      color: var(--text);
    }
    .sg-sync-card__lead {
      font-size: 1.02rem;
      color: var(--muted);
      line-height: 1.75;
      margin: 0 0 20px;
    }
    .sg-sync-card__list {
      margin: 0 0 26px;
      padding: 0;
      list-style: none;
      font-size: 0.94rem;
      color: var(--muted);
      line-height: 1.65;
    }
    .sg-sync-card__list li {
      position: relative;
      padding-left: 1.1em;
      margin-bottom: 10px;
    }
    .sg-sync-card__list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.55em;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--brand), #ffb347);
    }
    .sg-sync-card__figure {
      margin: 0;
      min-height: 280px;
      background: linear-gradient(180deg, #eef2f7 0%, #e8ecf2 100%);
    }
    .sg-sync-card__figure img {
      width: 100%;
      height: 100%;
      min-height: 280px;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    .sg-devices {
      background: #f7f7f7;
    }
    .sg-devices__inner {
      max-width: var(--max);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }
    .sg-devices__inner h2 { font-size: 1.45rem; margin-bottom: 12px; }
    .sg-devices__inner p { color: var(--muted); margin-bottom: 20px; }

    /* 产品优势 */
    .sg-advantages {
      background: #f8f9fb;
    }
    .sg-advantages__inner {
      max-width: var(--max);
      margin: 0 auto;
    }
    .sg-advantages__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--block-gap);
    }
    .sg-advantage-card {
      padding: 28px 26px;
      background: #fff;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      box-shadow: 0 6px 24px rgba(28, 28, 28, 0.05);
      transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    }
    @media (hover: hover) and (pointer: fine) {
      .sg-advantage-card:hover {
        transform: translateY(-8px);
        border-color: var(--brand);
        box-shadow: 0 12px 32px rgba(255, 106, 0, 0.12);
      }
    }
    .sg-advantage-card__icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      margin-bottom: 14px;
      border-radius: 12px;
      background: linear-gradient(145deg, var(--brand-soft) 0%, #fff 100%);
      border: 1px solid rgba(255, 106, 0, 0.12);
      color: var(--brand);
    }
    .sg-advantage-card__icon svg {
      width: 26px;
      height: 26px;
      display: block;
    }
    .sg-advantage-card h3 {
      font-size: 1.08rem;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--text);
    }
    .sg-advantage-card p {
      font-size: 0.94rem;
      color: var(--muted);
      line-height: 1.75;
    }
    .sg-advantages__trust {
      margin-top: clamp(36px, 5vw, 48px);
      padding-top: 28px;
      border-top: 1px solid var(--line);
    }
    .sg-advantages__trust-list {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 14px 28px;
      margin: 0;
      padding: 0;
    }
    .sg-advantages__trust-list li {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.86rem;
      color: var(--muted);
    }
    .sg-advantages__trust-list svg {
      flex-shrink: 0;
      width: 18px;
      height: 18px;
      color: var(--brand);
      opacity: 0.92;
    }
    @media (max-width: 1024px) and (min-width: 768px) {
      .sg-advantages__grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 767px) {
      .sg-advantages__grid { grid-template-columns: 1fr; }
    }

    /* 常见问题 FAQ */
    .sg-faq__inner {
      max-width: var(--max);
      margin: 0 auto;
    }
    .sg-faq__list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .sg-faq__item {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      background: #fafafa;
    }
    .sg-faq__item summary {
      padding: 20px 24px;
      font-size: 1.02rem;
      font-weight: 600;
      cursor: pointer;
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .sg-faq__item summary::-webkit-details-marker { display: none; }
    .sg-faq__item summary::after {
      content: "";
      width: 8px;
      height: 8px;
      border-right: 2px solid var(--muted);
      border-bottom: 2px solid var(--muted);
      transform: rotate(45deg);
      flex-shrink: 0;
      opacity: 0.6;
    }
    .sg-faq__item[open] summary::after {
      transform: rotate(-135deg);
      margin-top: 4px;
    }
    .sg-faq__item[open] summary {
      background: #fff;
      border-bottom: 1px solid var(--line);
    }
    .sg-faq__item .sg-faq__answer {
      padding: 18px 24px 22px;
      font-size: 0.96rem;
      color: var(--muted);
      line-height: 1.8;
      background: #fff;
    }

    .sg-seo {
      max-width: var(--max);
      margin: 0 auto;
      padding: 72px var(--section-pad-x) 88px;
      border-top: 1px solid var(--line);
    }
    .sg-seo h2 {
      font-size: 1.1rem;
      margin-bottom: 12px;
      color: var(--muted);
      font-weight: 600;
    }
    .sg-seo p {
      font-size: 0.88rem;
      color: #888;
      line-height: 1.75;
    }

    footer.sg-footer {
      background: linear-gradient(180deg, #141414 0%, #0f0f0f 100%);
      color: #9a9a9a;
      padding: 56px var(--section-pad-x) calc(40px + env(safe-area-inset-bottom, 0px));
      font-size: 0.875rem;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    .sg-footer__inner {
      max-width: var(--banner-inner);
      margin: 0 auto;
      text-align: center;
    }
    .sg-footer__top {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 14px 28px;
      margin-bottom: 28px;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .sg-footer__brand {
      display: inline-flex;
      align-items: center;
      line-height: 0;
    }
    .sg-footer__brand-link {
      display: inline-flex;
      align-items: center;
      opacity: 0.92;
    }
    .sg-footer__brand-link:hover {
      opacity: 1;
    }
    .sg-footer__brand-link img {
      display: block;
      height: 32px;
      width: auto;
    }
    .sg-footer__tagline {
      margin: 0;
      font-size: 0.82rem;
      color: #7a7a7a;
      line-height: 1.5;
      max-width: 28em;
    }
    .sg-footer__nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 10px 8px;
      margin-bottom: 24px;
    }
    .sg-footer__nav a {
      color: #c8c8c8;
      font-size: 0.9rem;
      padding: 4px 10px;
      border-radius: 6px;
    }
    .sg-footer__nav a:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.06);
    }
    .sg-footer__nav span[aria-hidden="true"] {
      color: #444;
      user-select: none;
      font-size: 0.65rem;
    }
    .sg-footer__cta {
      margin-bottom: 22px;
    }
    .sg-footer__cta .sg-btn--primary {
      padding: 11px 28px;
      font-size: 0.92rem;
    }
    .sg-footer__note {
      font-size: 0.8rem;
      color: #6e6e6e;
      line-height: 1.7;
      max-width: 48em;
      margin: 0 auto 12px;
    }
    .sg-footer__copy {
      margin: 0;
      font-size: 0.76rem;
      color: #555;
    }
    .sg-footer__live {
      margin: 14px 0 0;
      font-size: 0.76rem;
      color: #666;
      font-variant-numeric: tabular-nums;
    }
    .sg-footer__biz {
      max-width: 46em;
      margin: 0 auto 24px;
      padding-top: 8px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      text-align: left;
    }
    .sg-footer__biz p {
      font-size: 0.78rem;
      color: #6e6e6e;
      line-height: 1.65;
      margin: 0 0 12px;
    }
    .sg-footer__biz p:last-child {
      margin-bottom: 0;
    }
    .sg-footer__biz strong {
      color: #9a9a9a;
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }
      .sg-nav__toggle-bars span,
      .sg-nav,
      .sg-nav-backdrop,
      .sg-advantage-card,
      .sg-btn,
      .sg-nav a.sg-nav__cta,
      .sg-skip-link {
        transition-duration: 0.01ms !important;
      }
    }

    @media (min-width: 901px) {
      .sg-header {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        width: 100%;
        max-width: none;
        margin: 0;
        padding-left: 24px;
        padding-right: 24px;
        box-sizing: border-box;
      }
      .sg-header__inner {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
      }
      .sg-header .sg-nav {
        position: static;
        display: flex !important;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-end;
        flex: 1 1 auto;
        min-width: 0;
        gap: 10px 26px;
        width: auto;
        max-width: none;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        height: auto;
        min-height: 0;
        margin: 0;
        padding: 0;
        transform: none !important;
        visibility: visible !important;
        pointer-events: auto !important;
        background: transparent;
        border: none;
        box-shadow: none;
      }
      .sg-nav__toggle {
        display: none !important;
      }
      .sg-nav-backdrop {
        display: none !important;
      }
      .sg-header .sg-nav a {
        white-space: nowrap;
        flex-shrink: 0;
      }
    }

    @media (max-width: 900px) {
      :root {
        --section-pad-y: 64px;
        --section-pad-x: 18px;
        --block-gap: 22px;
      }
      .sg-carousel__head { padding: 44px var(--section-pad-x) 28px; }
      .sg-faq__item summary { padding: 16px 18px; font-size: 0.98rem; }
      .sg-faq__item .sg-faq__answer { padding: 14px 18px 18px; }
      .sg-hero { min-height: auto; }
      .sg-hero__main { padding-top: 32px; }
      .sg-header__inner {
        position: relative;
        z-index: 310;
        width: 100%;
        flex-wrap: nowrap;
        padding: 12px 16px;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
      }
      .sg-nav__toggle {
        display: inline-flex;
      }
      .sg-nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 9980;
        background: rgba(20, 20, 20, 0.45);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.25s ease, visibility 0.25s;
      }
      body.is-nav-open .sg-nav-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
      }
      .sg-nav {
        position: fixed;
        top: calc(env(safe-area-inset-top, 0px) + 56px);
        right: 0;
        bottom: 0;
        left: auto;
        width: min(300px, 88vw);
        max-width: 100%;
        height: calc(100dvh - env(safe-area-inset-top, 0px) - 56px);
        height: calc(100vh - env(safe-area-inset-top, 0px) - 56px);
        max-height: none;
        margin: 0;
        padding: 12px 16px calc(24px + env(safe-area-inset-bottom, 0px));
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 2px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-left: 1px solid var(--line);
        box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 10000;
        transform: translateX(100%);
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.3s ease, visibility 0.3s;
      }
      body.is-nav-open .sg-nav {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
      }
      .sg-nav a {
        padding: 14px 14px;
        border-radius: 10px;
        justify-content: flex-start;
        width: 100%;
        box-sizing: border-box;
      }
      .sg-nav a.sg-nav__cta {
        margin-top: 10px;
        justify-content: center;
        width: 100%;
      }
      .sg-feature-row,
      .sg-feature-row--reverse {
        grid-template-columns: 1fr;
        gap: 22px;
      }
      .sg-feature-row--reverse .sg-feature-row__media,
      .sg-feature-row--reverse .sg-feature-row__text {
        order: unset;
      }
      .sg-feature-row__media { order: -1; }
      .sg-showcase__inner { grid-template-columns: 1fr; }
      .sg-sync-card {
        grid-template-columns: 1fr;
      }
      .sg-sync-card__figure {
        order: -1;
        min-height: 200px;
        max-height: 280px;
      }
      .sg-sync-card__figure img {
        min-height: 200px;
        max-height: 280px;
      }
      .sg-devices__inner { grid-template-columns: 1fr; }
      .sg-hero__laptop { margin-top: 40px; }
      .sg-hero__main {
        padding-left: clamp(14px, 4vw, 22px);
        padding-right: clamp(14px, 4vw, 22px);
      }
      .sg-hero__title-brand { letter-spacing: 0.12em; }
      .sg-hero__sub { letter-spacing: 0.06em; }
      .sg-carousel__head { padding-top: 48px; padding-bottom: 28px; }
      .sg-section-head { margin-bottom: 36px; }
      .sg-section-head h2 { font-size: clamp(1.35rem, 4.5vw, 1.65rem); }
      .sg-advantage-card { padding: 22px 18px; }
      .sg-advantages__trust-list {
        gap: 12px 16px;
        justify-content: flex-start;
      }
      .sg-footer__nav a {
        min-height: 44px;
        padding: 10px 12px;
        display: inline-flex;
        align-items: center;
      }
    }

    @media (max-width: 480px) {
      :root {
        --section-pad-y: 48px;
        --section-pad-x: 14px;
        --block-gap: 16px;
      }
      .sg-header__inner {
        padding: 10px 12px;
        gap: 10px;
      }
      .sg-brand__logo { height: 28px; max-width: min(160px, 52vw); object-fit: contain; }
      .sg-hero__main { padding-top: 24px; }
      .sg-hero__title-slogan { font-size: clamp(1.45rem, 7vw, 2rem); }
      .sg-hero__title-brand { font-size: clamp(0.82rem, 3.2vw, 1rem); letter-spacing: 0.06em; }
      .sg-hero__sub {
        font-size: 0.88rem;
        letter-spacing: 0.04em;
        padding: 0 4px;
      }
      .sg-carousel__head { padding: 36px var(--section-pad-x) 22px; }
      .sg-carousel__desc { font-size: 0.92rem; }
      .sg-section-head p { font-size: 0.96rem; }
      .sg-faq__item summary {
        padding: 16px 14px;
        font-size: 0.95rem;
        line-height: 1.45;
      }
      .sg-faq__item .sg-faq__answer {
        padding: 12px 14px 16px;
        font-size: 0.92rem;
      }
      .sg-sync-card__body { padding: 24px 18px; }
      .sg-footer__biz { text-align: left; padding-left: 4px; padding-right: 4px; }
    }
