:root {
      --bg: #ffffff;
      --text: #111111;
      --muted: #6b7280;
      --line: #e8edf3;
      --soft: #f6f8fb;
      --soft-green: #f3fbf7;
      --green: #12b76a;
      --green-dark: #039855;
      --blue: #2563eb;
      --max: 1200px;
      --radius: 24px;
      --shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    }

    * { box-sizing: border-box; }
    body {
      margin: 0;
      background: var(--bg);
      color: var(--text);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
      line-height: 1.6;
    }

    a { color: inherit; text-decoration: none; }
    .container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 30;
      background: rgba(255,255,255,.94);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(232,237,243,.9);
    }

    .header-inner {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 20px;
      font-weight: 700;
    }

    .brand img {
      display: block;
      width: auto;
      object-fit: contain;
    }

    .brand-mark {
      display: block;
      width: 24px;
      height: 24px;
      flex: 0 0 24px;
      border-radius: 6px;
    }

    .brand-logo {
      height: 40px;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 30px;
      color: #374151;
      font-size: 15px;
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 20px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 600;
      white-space: nowrap;
      transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease, opacity .18s ease;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .btn:active {
      transform: translateY(0);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--green), #2fd48f);
      color: #fff;
      box-shadow: 0 12px 28px rgba(18,183,106,.18);
    }

    .btn-primary:hover {
      box-shadow: 0 16px 30px rgba(18,183,106,.24);
      opacity: .96;
    }

    .btn-secondary {
      background: #fff;
      color: #374151;
      border-color: #dbe3ee;
    }

    .btn-secondary:hover {
      border-color: #cbd5e1;
      background: #f8fafc;
    }

    .lang-switch {
      border: 0;
      background: transparent;
      padding-left: 10px;
      padding-right: 10px;
      gap: 8px;
      color: #374151;
    }

    .lang-switch svg {
      width: 16px;
      height: 16px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
    }

    .hero {
      padding: 0;
      overflow: hidden;
      background: #24110a url('./hero-bg.png?v=202608032139') center center / cover no-repeat;
      color: #fff;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 20px;
      align-items: center;
      min-height: 620px;
      padding: 24px 0;
    }

    .eyebrow {
      display: none;
    }

    h1, h2, h3, p { margin: 0; }
    h1 {
      font-size: clamp(40px, 5vw, 62px);
      line-height: 1.16;
      letter-spacing: -0.03em;
      margin-bottom: 18px;
      color: #fff;
    }

    .hero p {
      color: rgba(255,255,255,.86);
      font-size: 18px;
      max-width: 520px;
      margin-bottom: 34px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 0;
    }

    .hero-actions .btn-primary,
    .header-actions .btn-primary {
      background: linear-gradient(180deg, #ff8a1f, #ff6500);
      box-shadow: 0 14px 30px rgba(255, 106, 0, 0.28);
    }

    .hero-actions .btn-primary {
      min-width: 180px;
    }

    .header-actions .btn-primary {
      min-width: 92px;
      min-height: 34px;
      padding: 7px 12px;
      font-size: 13px;
      border-radius: 999px;
      background: linear-gradient(180deg, #ff8a1f, #ff6500);
      color: #fff;
      box-shadow: 0 10px 20px rgba(255, 106, 0, 0.22);
      border: 0;
    }

    .hero-actions .btn-secondary,
    .hero-tags {
      display: none;
    }

    .hero-visual {
      position: relative;
      min-height: 620px;
    }

    .hero-glow,
    .hero-lines,
    .hero-lines::before,
    .hero-lines::after {
      display: none;
    }

    .up { color: #4ade80; }

    .section { padding: 70px 0; }
    .section.soft { background: var(--soft); }
    .section.soft-green { background: linear-gradient(180deg, #ffffff, var(--soft-green)); }

    .section-head {
      position: relative;
      z-index: 3;
      max-width: 760px;
      margin: 0 auto 34px;
      text-align: center;
    }

    .section-head h2 {
      font-size: clamp(30px, 4.2vw, 46px);
      line-height: 1.16;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
    }

    .section-head p { color: var(--muted); }

    .card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: 0 12px 34px rgba(15,23,42,.05);
    }

    .tools-layout {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
      gap: 48px;
      align-items: start;
      margin-top: -10px;
    }

    .tools-layout > * {
      align-self: start;
    }

    .feature-card {
      position: relative;
      z-index: 4;
      background: #fff;
    }

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

    .feature-card h3,
    .tool-card h3,
    .market-card h3,
    .adv-card h3,
    .service-card h3,
    .trust-card h3,
    .award-card h3 {
      font-size: 24px;
      margin-bottom: 10px;
    }

    .feature-card p,
    .tool-card p,
    .market-card p,
    .adv-card p,
    .service-card p,
    .trust-card p,
    .award-card p {
      color: var(--muted);
    }

    .tool-tabs {
      display: flex;
      justify-content: center;
      gap: 42px;
      padding-bottom: 16px;
      margin: 0 auto 34px;
      border-bottom: 1px solid #ececec;
      max-width: 1080px;
    }

    .tool-tab {
      text-align: center;
      color: #9ca3af;
      background: transparent;
      border: 0;
      padding: 0;
      cursor: pointer;
    }

    .tool-tab strong {
      display: block;
      font-size: 18px;
      color: #6b7280;
      margin-bottom: 4px;
    }

    .tool-tab span {
      font-size: 13px;
      color: #a1a1aa;
    }

    .tool-tab.active {
      position: relative;
    }

    .tool-tab.active strong,
    .tool-tab.active span {
      color: #111111;
    }

    .tool-tab.active::after {
      content: "";
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: -17px;
      width: 110px;
      height: 4px;
      border-radius: 999px;
      background: linear-gradient(90deg, #f59e0b, #f97316);
    }

    .tool-copy {
      padding-top: 0;
    }

    .tool-panel,
    .tool-media-panel {
      display: none;
    }

    .tool-panel.active,
    .tool-media-panel.active {
      display: block;
    }

    .tool-intro {
      font-size: 17px;
      line-height: 1.8;
      color: #111827;
      margin-bottom: 28px;
    }

    .tool-feature-list {
      display: grid;
      gap: 0;
      border-top: 1px solid #ededed;
    }

    .tool-feature-item {
      padding: 28px 0;
      border-bottom: 1px solid #ededed;
    }

    .tool-feature-item.active h3,
    .tool-feature-item.active p {
      color: #111111;
    }

    .tool-feature-item h3 {
      font-size: 22px;
      margin-bottom: 8px;
    }

    .tool-feature-item p {
      color: #4b5563;
      line-height: 1.8;
    }

    .tool-action {
      margin-top: 32px;
    }

    .tool-action .btn {
      min-width: 180px;
      background: #111111;
      color: #fff;
      border-radius: 10px;
      padding: 14px 22px;
    }

    .tool-action .btn:hover {
      background: #1f2937;
      box-shadow: 0 12px 24px rgba(17,24,39,.18);
    }

    .tool-phone-wrap {
      position: relative;
      z-index: 1;
      min-height: 620px;
      margin-top: -12px;
      align-self: start;
      display: flex;
      align-items: flex-end;
      justify-content: center;
    }

    .tool-stage {
      position: relative;
      width: 100%;
      height: 620px;
      display: flex;
      align-items: flex-end;
      justify-content: center;
    }

    .tool-stage::before {
      content: "";
      position: absolute;
      left: 24px;
      right: 24px;
      bottom: 26px;
      height: 360px;
      border-radius: 28px;
      background: #ffffff;
    }

    .tool-video-box {
      position: relative;
      z-index: 2;
      width: 312px;
      height: 604px;
      overflow: hidden;
      background: transparent;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      margin-top: 0;
    }

    .tool-video-box video {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center bottom;
      display: block;
      background: transparent;
      transform: translateY(-96px) scale(1.05, 1.34);
      transform-origin: center bottom;
    }

    .bullet-list {
      list-style: none;
      padding: 0;
      margin: 20px 0 0;
      display: grid;
      gap: 14px;
    }

    .bullet-list li {
      position: relative;
      padding-left: 18px;
      color: #475467;
    }

    .bullet-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 10px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
    }

    .tool-grid,
    .market-grid,
    .adv-grid,
    .trust-grid {
      display: grid;
      gap: 18px;
    }

    .tool-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .market-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .adv-grid {
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 18px;
      align-items: stretch;
    }
    .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .tool-card,
    .market-card,
    .adv-card,
    .trust-card,
    .award-card {
      padding: 26px;
    }

    .tool-icon,
    .market-icon,
    .adv-icon,
    .trust-icon,
    .award-icon {
      width: 54px;
      height: 54px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      font-size: 24px;
      margin-bottom: 16px;
      background: linear-gradient(135deg, #ecfdf3, #eef4ff);
    }

    .market-card {
      text-align: left;
      min-height: 220px;
      background: #fff;
      border: 1px solid #eef1f5;
      box-shadow: 0 12px 30px rgba(17,24,39,.05);
    }

    .market-card .market-icon {
      width: 52px;
      height: 52px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      margin-bottom: 16px;
      background: linear-gradient(135deg, #f6f7fb, #eef8f3);
      color: #0f172a;
    }

    .market-card .market-icon svg,
    .market-card .market-icon img {
      width: 28px;
      height: 28px;
      display: block;
      object-fit: contain;
    }

    .market-card small,
    .eyeblock {
      display: inline-block;
      color: var(--green-dark);
      background: #ecfdf3;
      border-radius: 999px;
      padding: 6px 10px;
      font-size: 12px;
      font-weight: 600;
      margin-bottom: 14px;
    }

    .adv-card {
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, #171717 0%, #2f1d12 100%);
      color: #fff;
      border: 0;
      border-radius: 26px;
      min-height: 244px;
      padding: 26px 28px;
    }

    .adv-card.large {
      grid-column: span 3;
      min-height: 214px;
    }

    .adv-card.small {
      grid-column: span 2;
      min-height: 242px;
    }

    .adv-card h3 {
      position: relative;
      z-index: 2;
      color: #fff;
      font-size: 18px;
      margin-bottom: 10px;
      line-height: 1.35;
      max-width: 220px;
    }

    .adv-card p {
      position: relative;
      z-index: 2;
      color: rgba(255,255,255,.9);
      max-width: 220px;
      line-height: 1.75;
      font-size: 15px;
    }

    .adv-icon {
      display: none;
    }

    .adv-art {
      position: absolute;
      right: 8px;
      bottom: 0;
      width: 54%;
      max-width: 252px;
      pointer-events: none;
      z-index: 1;
    }

    .adv-card.large .adv-art {
      width: 46%;
      max-width: 220px;
      right: 12px;
    }

    .adv-card.small .adv-art {
      width: 60%;
      max-width: 196px;
      right: 6px;
    }

    .adv-card img {
      display: block;
      width: 100%;
      height: auto;
    }

    .service-layout {
      display: grid;
      grid-template-columns: .98fr 1.02fr;
      gap: 28px;
      align-items: center;
    }

    .service-copy {
      padding-right: 8px;
    }

    .service-list {
      margin-top: 18px;
      border-top: 1px solid #ececec;
    }

    .service-item {
      padding: 26px 0;
      border-bottom: 1px solid #ececec;
    }

    .service-item h3 {
      font-size: 18px;
      line-height: 1.4;
      margin-bottom: 10px;
      color: #111827;
    }

    .service-item.active h3 {
      color: #f97316;
    }

    .service-item p {
      color: #4b5563;
      line-height: 1.8;
      font-size: 15px;
      margin: 0;
    }

    .service-media {
      border-radius: 18px;
      overflow: hidden;
      background: #f3f4f6;
      box-shadow: 0 10px 26px rgba(17,24,39,.06);
    }

    .service-media img {
      width: 100%;
      height: auto;
      display: block;
    }

    .trust-card {
      min-height: 100%;
    }

    .brand-section {
      background: #fff;
      padding: 84px 0 72px;
    }

    .brand-wrap {
      text-align: center;
      max-width: 980px;
      margin: 0 auto;
    }

    .brand-wrap h2 {
      font-size: 42px;
      line-height: 1.3;
      margin-bottom: 18px;
      color: #111827;
    }

    .brand-wrap p {
      color: #4b5563;
      max-width: 760px;
      margin: 0 auto;
      line-height: 1.9;
    }

    .brand-stats {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 24px;
      margin-top: 56px;
    }

    .brand-stat strong {
      display: block;
      font-size: 36px;
      line-height: 1.2;
      color: #d97706;
      margin-bottom: 8px;
      font-weight: 700;
    }

    .brand-stat span {
      color: #111827;
      font-size: 15px;
      line-height: 1.7;
    }

    .brand-note {
      margin-top: 28px;
      font-size: 12px;
      color: #9ca3af;
      line-height: 1.8;
    }

    .reviews-section {
      background: #fff;
      padding: 72px 0 36px;
    }

    .reviews-head {
      text-align: center;
      margin-bottom: 28px;
    }

    .reviews-head h2 {
      font-size: 34px;
      line-height: 1.25;
      color: #111827;
      margin: 0 0 10px;
    }

    .reviews-head p {
      color: #6b7280;
      margin: 0 auto;
      max-width: 720px;
      line-height: 1.8;
    }

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

    .review-card {
      background: #fff;
      border: 1px solid #eef1f5;
      border-radius: 22px;
      padding: 24px;
      box-shadow: 0 10px 28px rgba(17,24,39,.05);
    }

    .review-stars {
      color: #f59e0b;
      font-size: 15px;
      letter-spacing: 2px;
      margin-bottom: 14px;
    }

    .review-card p {
      color: #111827;
      line-height: 1.9;
      margin: 0 0 18px;
      font-size: 15px;
    }

    .review-user {
      display: block;
    }

    .review-meta strong {
      display: block;
      color: #111827;
      font-size: 14px;
      margin-bottom: 2px;
    }

    .review-meta span {
      color: #9ca3af;
      font-size: 12px;
    }

    .faq-section {
      background: #fff;
      padding: 26px 0 48px;
    }

    .faq-wrap {
      max-width: 980px;
      margin: 0 auto;
    }

    .faq-head {
      text-align: center;
      margin-bottom: 24px;
    }

    .faq-head h2 {
      font-size: 34px;
      line-height: 1.25;
      color: #111827;
      margin: 0 0 10px;
    }

    .faq-head p {
      color: #6b7280;
      margin: 0 auto;
      max-width: 720px;
      line-height: 1.8;
    }

    .faq-list {
      display: grid;
      gap: 14px;
    }

    .faq-item {
      background: #fff;
      border: 1px solid #eef1f5;
      border-radius: 18px;
      box-shadow: 0 10px 24px rgba(17,24,39,.04);
      overflow: hidden;
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 20px 22px;
      font-size: 18px;
      line-height: 1.5;
      color: #111827;
      font-weight: 700;
      position: relative;
    }

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

    .faq-item summary::after {
      content: "+";
      position: absolute;
      right: 22px;
      top: 50%;
      transform: translateY(-50%);
      color: #9ca3af;
      font-size: 24px;
      font-weight: 400;
    }

    .faq-item[open] summary::after {
      content: "−";
    }

    .faq-answer {
      padding: 0 22px 20px;
    }

    .faq-answer p {
      margin: 0;
      color: #4b5563;
      line-height: 1.8;
      font-size: 15px;
    }

    .awards-section {
      background: #fff;
      padding: 78px 0 64px;
    }

    .awards-head {
      text-align: center;
      margin-bottom: 34px;
    }

    .awards-crown {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-bottom: 10px;
    }

    .awards-crown .laurel {
      width: 72px;
      height: auto;
      object-fit: contain;
    }

    .awards-head img.awards-trophy {
      width: 220px;
      max-width: 100%;
      display: block;
    }

    .awards-head h2 {
      font-size: 34px;
      line-height: 1.2;
      color: #111827;
      margin: 0;
    }

    .awards-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 18px 16px;
      align-items: stretch;
    }

    .award-item {
      text-align: center;
      padding: 10px 4px 14px;
    }

    .award-topline {
      color: #c99517;
      font-size: 11px;
      letter-spacing: 1px;
      margin-bottom: 10px;
      font-weight: 700;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }

    .award-topline img {
      width: 18px;
      height: auto;
      object-fit: contain;
      opacity: .95;
    }

    .award-topline .stars {
      font-size: 9px;
      letter-spacing: 2px;
      color: #d4af37;
      transform: translateY(-1px);
    }

    .award-main {
      position: relative;
      min-height: 128px;
      padding: 8px 38px 0;
    }

    .award-main img {
      position: absolute;
      top: 10px;
      width: 30px;
      height: auto;
      object-fit: contain;
      opacity: .95;
    }

    .award-main .laurel-left {
      left: 0;
    }

    .award-main .laurel-right {
      right: 0;
    }

    .award-item strong {
      display: block;
      color: #111827;
      font-size: 18px;
      line-height: 1.45;
      margin-bottom: 8px;
      font-weight: 700;
    }

    .award-year {
      display: block;
      color: #c7c9cf;
      font-size: 14px;
      line-height: 1.4;
      font-weight: 600;
    }

    .awards-footnote {
      margin-top: 24px;
      text-align: center;
      color: #9ca3af;
      font-size: 12px;
      line-height: 1.8;
    }

    .bottom-cta {
      position: relative;
      overflow: hidden;
      padding: 22px 28px;
      border-radius: 20px;
      background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
      border: 1px solid #edf0f4;
      box-shadow: 0 14px 30px rgba(17,24,39,.05);
      display: grid;
      grid-template-columns: .88fr 1.12fr;
      align-items: center;
      gap: 12px;
      max-width: 980px;
      min-height: 260px;
      margin: 0 auto;
    }

    .cta-copy h2 {
      font-size: 30px;
      line-height: 1.22;
      color: #111827;
      margin: 0 0 18px;
      max-width: 360px;
      letter-spacing: -0.02em;
    }

    .cta-copy .btn {
      min-width: 172px;
      min-height: 46px;
      border-radius: 10px;
      border: 1px solid #111827;
      background: #111827;
      color: #fff;
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 0;
    }

    .cta-copy .btn:hover {
      background: #1f2937;
      box-shadow: 0 12px 24px rgba(17,24,39,.18);
    }

    .cta-art {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      align-self: stretch;
    }

    .cta-art img {
      width: 100%;
      max-width: 600px;
      height: auto;
      display: block;
      object-fit: contain;
      object-position: right center;
    }

    .site-footer {
      margin-top: 0;
      background: #f5f6f8;
      color: #6b7280;
      font-size: 14px;
      padding: 54px 0 34px;
    }

    .footer-links-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 30px;
      margin-bottom: 44px;
    }

    .footer-col h3 {
      color: #111827;
      font-size: 16px;
      margin: 0 0 16px;
    }

    .footer-col a,
    .footer-col span {
      display: block;
      color: #6b7280;
      margin-bottom: 10px;
      font-size: 14px;
      line-height: 1.8;
    }

    .footer-store-layout {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
      align-items: start;
    }

    .footer-office h3 {
      color: #111827;
      font-size: 18px;
      margin: 0 0 16px;
    }

    .footer-office p {
      margin: 0 0 12px;
      line-height: 1.85;
      color: #6b7280;
    }

    .footer-socials {
      display: flex;
      gap: 12px;
      margin-top: 16px;
    }

    .footer-socials a {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      border: 1px solid #d9dee6;
      display: grid;
      place-items: center;
      color: #6b7280;
      font-size: 13px;
      background: #fff;
    }

    .footer-socials svg {
      width: 15px;
      height: 15px;
      display: block;
      fill: #6b7280;
    }


    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 28px;
      padding-top: 18px;
      border-top: 1px solid #e5e7eb;
      color: #9ca3af;
      font-size: 13px;
    }

    @media (max-width: 1080px) {
      .hero-grid,
      .tools-layout,
      .service-layout,
      .market-grid,
      .trust-grid,
      .brand-stats,
      .awards-grid,
      .reviews-grid {
        grid-template-columns: 1fr 1fr;
      }
      .adv-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
      }
      .adv-card.large,
      .adv-card.small {
        grid-column: span 1;
      }

      .hero-grid,
      .tools-layout,
      .service-layout {
        grid-template-columns: 1fr;
      }
    }

    .download-hero {
      padding: 96px 0 72px;
      background: #fff;
      color: #111827;
    }

    .download-hero-simple {
      max-width: 1160px;
      margin: 0 auto;
      text-align: center;
    }

    .download-hero-simple h1 {
      color: #111827;
      font-size: clamp(40px, 4.8vw, 62px);
      line-height: 1.18;
      margin-bottom: 16px;
      letter-spacing: -0.03em;
    }

    .download-hero-simple p {
      margin: 0 0 42px;
      color: #4b5563;
      font-size: 24px;
      line-height: 1.5;
    }

    .download-entry-grid {
      display: grid;
      grid-template-columns: repeat(7, minmax(0, 1fr));
      gap: 18px;
      align-items: stretch;
    }

    .download-entry-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 136px;
      padding: 20px 12px;
      background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
      border: 1px solid #e5e7eb;
      border-radius: 16px;
      box-shadow: 0 8px 24px rgba(17,24,39,.04);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .22s ease;
    }

    .download-entry-card:hover {
      transform: translateY(-2px);
      border-color: #ff8a1f;
      background: linear-gradient(180deg, #ff7a00 0%, #ff6a00 100%);
      box-shadow: 0 12px 28px rgba(255,106,0,.22);
    }

    .download-entry-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      margin-bottom: 14px;
    }

    .download-entry-icon img {
      width: 34px;
      height: 34px;
      display: block;
      object-fit: contain;
    }

    .download-entry-card strong {
      display: block;
      color: #111827;
      font-size: 17px;
      line-height: 1.4;
      font-weight: 500;
    }

    .download-showcase-section {
      padding: 18px 0 28px;
      background: #ffffff;
    }

    .download-showcase {
      display: grid;
      grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
      gap: 28px;
      align-items: center;
      padding: 34px 38px;
      border-radius: 28px;
      border: 1px solid #eef2f6;
      box-shadow: 0 16px 40px rgba(17,24,39,.05);
      overflow: hidden;
    }

    .download-showcase-copy h2 {
      font-size: 42px;
      line-height: 1.26;
      color: #111827;
      margin: 0 0 26px;
      letter-spacing: -.02em;
    }

    .download-showcase-list {
      list-style: none;
      margin: 0 0 32px;
      padding: 0;
      display: grid;
      gap: 18px;
    }

    .download-showcase-list li {
      position: relative;
      padding-left: 34px;
      color: #374151;
      font-size: 19px;
      line-height: 1.75;
      font-weight: 500;
    }

    .download-showcase-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 4px;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: linear-gradient(180deg, #ff8a1f, #ff6a00);
      color: #fff;
      font-size: 12px;
      line-height: 20px;
      text-align: center;
      box-shadow: 0 8px 16px rgba(255,106,0,.24);
    }

    .download-showcase-copy .btn {
      min-width: 200px;
      min-height: 56px;
      border-radius: 12px;
      background: linear-gradient(180deg, #ff8a1f, #ff6a00);
      color: #fff;
      font-size: 21px;
      font-weight: 700;
      box-shadow: 0 14px 28px rgba(255,106,0,.24);
    }

    .download-showcase-art {
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }

    .download-showcase-art img {
      width: 100%;
      max-width: 720px;
      height: auto;
      display: block;
      object-fit: contain;
    }

    .download-page,
    .download-page main,
    .download-page .section,
    .download-page .faq-section,
    .download-page .download-showcase-section,
    .download-page .download-reasons-section,
    .download-page .awards-section,
    .help-page,
    .help-page main,
    .help-page .section,
    .help-page .faq-section,
    .about-page,
    .about-page main,
    .about-page .section,
    .about-page .faq-section,
    .disclaimer-page,
    .disclaimer-page main,
    .disclaimer-page .section,
    .terms-page,
    .terms-page main,
    .terms-page .section,
    .privacy-page,
    .privacy-page main,
    .privacy-page .section {
      background: #ffffff;
    }

    .privacy-main {
      padding-bottom: 28px;
    }

    .privacy-hero {
      padding: 70px 0 28px;
      background: linear-gradient(180deg, #fff 0%, #fff8f3 100%);
    }

    .privacy-hero-inner {
      max-width: 920px;
    }

    .privacy-badge {
      display: inline-flex;
      align-items: center;
      padding: 8px 14px;
      border-radius: 999px;
      background: #fff2e8;
      color: #c2410c;
      font-size: 13px;
      margin-bottom: 18px;
      font-weight: 700;
      letter-spacing: .06em;
    }

    .privacy-main h1 {
      color: #111827;
      font-size: clamp(38px, 4.8vw, 56px);
      line-height: 1.16;
      margin: 0 0 14px;
    }

    .privacy-hero p,
    .privacy-block p,
    .privacy-block li {
      color: #4b5563;
      font-size: 16px;
      line-height: 1.88;
    }

    .privacy-layout {
      display: grid;
      grid-template-columns: 250px minmax(0, 1fr);
      gap: 28px;
      align-items: start;
    }

    .privacy-sidebar {
      position: sticky;
      top: 96px;
      display: grid;
      gap: 10px;
    }

    .privacy-sidebar a {
      display: block;
      padding: 14px 16px;
      border-radius: 14px;
      border: 1px solid #edf0f4;
      background: #fff;
      color: #374151;
      font-size: 14px;
      line-height: 1.6;
      box-shadow: 0 8px 20px rgba(15,23,42,.04);
    }

    .privacy-content {
      display: grid;
      gap: 18px;
    }

    .privacy-block {
      padding: 28px;
      border-radius: 22px;
    }

    .privacy-block h2 {
      margin: 0 0 14px;
      color: #111827;
      font-size: 28px;
      line-height: 1.3;
    }

    .privacy-block p {
      margin: 0 0 14px;
    }

    .privacy-block p:last-child {
      margin-bottom: 0;
    }

    .privacy-block ul {
      margin: 14px 0 0;
      padding-left: 18px;
      color: #4b5563;
    }

    .privacy-block li {
      margin-bottom: 10px;
    }

    .terms-main {
      padding-bottom: 28px;
    }

    .terms-hero {
      padding: 70px 0 28px;
      background: linear-gradient(180deg, #fff 0%, #fff8f3 100%);
    }

    .terms-hero-inner {
      max-width: 920px;
    }

    .terms-badge {
      display: inline-flex;
      align-items: center;
      padding: 8px 14px;
      border-radius: 999px;
      background: #fff2e8;
      color: #c2410c;
      font-size: 13px;
      margin-bottom: 18px;
      font-weight: 700;
      letter-spacing: .06em;
    }

    .terms-main h1 {
      color: #111827;
      font-size: clamp(38px, 4.8vw, 56px);
      line-height: 1.16;
      margin: 0 0 14px;
    }

    .terms-hero p,
    .terms-block p,
    .terms-block li {
      color: #4b5563;
      font-size: 16px;
      line-height: 1.88;
    }

    .terms-layout {
      display: grid;
      grid-template-columns: 250px minmax(0, 1fr);
      gap: 28px;
      align-items: start;
    }

    .terms-sidebar {
      position: sticky;
      top: 96px;
      display: grid;
      gap: 10px;
    }

    .terms-sidebar a {
      display: block;
      padding: 14px 16px;
      border-radius: 14px;
      border: 1px solid #edf0f4;
      background: #fff;
      color: #374151;
      font-size: 14px;
      line-height: 1.6;
      box-shadow: 0 8px 20px rgba(15,23,42,.04);
    }

    .terms-content {
      display: grid;
      gap: 18px;
    }

    .terms-block {
      padding: 28px;
      border-radius: 22px;
    }

    .terms-block h2 {
      margin: 0 0 14px;
      color: #111827;
      font-size: 28px;
      line-height: 1.3;
    }

    .terms-block p {
      margin: 0 0 14px;
    }

    .terms-block p:last-child {
      margin-bottom: 0;
    }

    .terms-block ul {
      margin: 14px 0 0;
      padding-left: 18px;
      color: #4b5563;
    }

    .terms-block li {
      margin-bottom: 10px;
    }

    .disclaimer-main {
      padding-bottom: 28px;
    }

    .disclaimer-hero {
      padding: 70px 0 28px;
      background: linear-gradient(180deg, #fff 0%, #fff8f3 100%);
    }

    .disclaimer-hero-inner {
      max-width: 920px;
    }

    .disclaimer-badge {
      display: inline-flex;
      align-items: center;
      padding: 8px 14px;
      border-radius: 999px;
      background: #fff2e8;
      color: #c2410c;
      font-size: 13px;
      margin-bottom: 18px;
      font-weight: 700;
      letter-spacing: .06em;
    }

    .disclaimer-main h1 {
      color: #111827;
      font-size: clamp(38px, 4.8vw, 56px);
      line-height: 1.16;
      margin: 0 0 14px;
    }

    .disclaimer-hero p,
    .disclaimer-block p,
    .disclaimer-block li {
      color: #4b5563;
      font-size: 16px;
      line-height: 1.88;
    }

    .disclaimer-layout {
      display: grid;
      grid-template-columns: 250px minmax(0, 1fr);
      gap: 28px;
      align-items: start;
    }

    .disclaimer-sidebar {
      position: sticky;
      top: 96px;
      display: grid;
      gap: 10px;
    }

    .disclaimer-sidebar a {
      display: block;
      padding: 14px 16px;
      border-radius: 14px;
      border: 1px solid #edf0f4;
      background: #fff;
      color: #374151;
      font-size: 14px;
      line-height: 1.6;
      box-shadow: 0 8px 20px rgba(15,23,42,.04);
    }

    .disclaimer-content {
      display: grid;
      gap: 18px;
    }

    .disclaimer-block {
      padding: 28px;
      border-radius: 22px;
    }

    .disclaimer-block h2 {
      margin: 0 0 14px;
      color: #111827;
      font-size: 28px;
      line-height: 1.3;
    }

    .disclaimer-block p {
      margin: 0 0 14px;
    }

    .disclaimer-block p:last-child {
      margin-bottom: 0;
    }

    .disclaimer-block ul {
      margin: 14px 0 0;
      padding-left: 18px;
      color: #4b5563;
    }

    .disclaimer-block li {
      margin-bottom: 10px;
    }

    .about-main {
      padding-bottom: 28px;
    }

    .about-hero {
      padding: 72px 0 26px;
      background: #ffffff;
    }

    .about-hero-inner {
      max-width: 1040px;
    }

    .about-hero-inner-center {
      text-align: center;
    }

    .about-main h1 {
      color: #111827;
      font-size: clamp(40px, 5vw, 60px);
      line-height: 1.16;
      margin: 0 0 18px;
      letter-spacing: -0.03em;
    }

    .about-hero p,
    .about-intro-copy p,
    .about-panel p,
    .about-contact-copy p {
      color: #4b5563;
      font-size: 17px;
      line-height: 1.88;
    }

    .about-hero p {
      font-size: 18px;
      margin: 0 0 36px;
    }

    .about-hero-media {
      width: 100%;
      max-width: 960px;
      margin: 0 auto;
      border-radius: 12px;
      overflow: hidden;
      background: #0b1025;
      box-shadow: 0 16px 42px rgba(15,23,42,.12);
    }

    .about-hero-media video {
      width: 100%;
      display: block;
      aspect-ratio: 16 / 9;
      object-fit: cover;
    }

    .about-intro-grid,
    .about-split-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.06fr) minmax(320px, .94fr);
      gap: 24px;
      align-items: start;
    }

    .about-intro-copy h2,
    .about-panel h2,
    .about-contact-copy h2 {
      margin: 0 0 16px;
      color: #111827;
      font-size: 34px;
      line-height: 1.24;
    }

    .about-intro-panel,
    .about-panel,
    .about-contact {
      padding: 28px;
      border-radius: 24px;
    }

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

    .about-stat-item {
      padding: 18px 20px;
      border: 1px solid #edf0f4;
      border-radius: 18px;
      background: #fff;
      box-shadow: 0 10px 24px rgba(15,23,42,.04);
    }

    .about-stat-item strong {
      display: block;
      color: #111827;
      font-size: 34px;
      line-height: 1.1;
      margin-bottom: 8px;
    }

    .about-stat-item span,
    .about-contact-grid span {
      color: #6b7280;
      font-size: 15px;
      line-height: 1.8;
      display: block;
    }

    .about-value-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .about-value-card {
      padding: 28px;
      border-radius: 22px;
    }

    .about-value-card h3,
    .about-timeline-item h3 {
      margin: 0 0 10px;
      color: #111827;
      font-size: 24px;
      line-height: 1.35;
    }

    .about-value-card p,
    .about-timeline-item p {
      margin: 0;
      color: #6b7280;
      line-height: 1.85;
    }

    .about-timeline-item ul {
      margin: 0;
      padding-left: 18px;
      color: #4b5563;
    }

    .about-timeline-item li {
      margin-bottom: 10px;
      line-height: 1.82;
    }

    .about-timeline-item li:last-child {
      margin-bottom: 0;
    }

    .about-timeline {
      display: grid;
      gap: 18px;
      max-width: 980px;
      margin: 0 auto;
    }

    .about-timeline-item {
      display: grid;
      grid-template-columns: 120px minmax(0, 1fr);
      gap: 18px;
      padding: 24px 0;
      border-top: 1px solid #edf0f4;
    }

    .about-timeline-item:last-child {
      border-bottom: 1px solid #edf0f4;
    }

    .about-year {
      display: inline-flex;
      align-items: flex-start;
      color: #f97316;
      font-size: 26px;
      font-weight: 700;
      line-height: 1.2;
    }

    .about-panel ul {
      margin: 18px 0 0;
      padding-left: 18px;
      color: #4b5563;
    }

    .about-panel li {
      margin-bottom: 10px;
      line-height: 1.8;
    }

    .about-strength-section {
      padding-top: 20px;
    }

    .about-strength-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      align-items: stretch;
    }

    .about-strength-brand {
      grid-column: span 2;
      grid-row: span 2;
      min-height: 284px;
      overflow: hidden;
      border-radius: 20px;
      padding: 0;
      background: #f5f5f7;
    }

    .about-strength-brand img,
    .about-strength-device img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .about-strength-stat {
      min-height: 134px;
      border-radius: 20px;
      padding: 22px 18px;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .about-strength-stat strong {
      display: block;
      color: #111827;
      font-size: 28px;
      line-height: 1.1;
      margin-bottom: 8px;
      font-weight: 800;
    }

    .about-strength-stat strong span {
      font-size: .58em;
      margin-left: 4px;
      font-weight: 700;
    }

    .about-strength-stat p {
      margin: 0;
      color: #374151;
      font-size: 15px;
      line-height: 1.6;
    }

    .about-strength-device {
      grid-column: span 2;
      grid-row: span 2;
      min-height: 284px;
      overflow: hidden;
      border-radius: 20px;
      padding: 0;
      background: #f5f5f7;
    }

    .about-strength-note {
      margin-top: 12px;
      text-align: right;
      color: #9ca3af;
      font-size: 12px;
      line-height: 1.6;
    }

    .about-global-section {
      padding-top: 16px;
    }

    .about-global-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 26px 28px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .about-global-item {
      padding: 0 0 8px;
      border-bottom: 1px solid #e8edf3;
    }

    .about-global-item h3 {
      margin: 0 0 16px;
      color: #111827;
      font-size: 22px;
      line-height: 1.3;
      font-weight: 700;
    }

    .about-global-item h3 span {
      color: #2563eb;
      margin-right: 8px;
    }

    .about-global-item p {
      margin: 0;
      color: #374151;
      font-size: 16px;
      line-height: 1.85;
    }

    .about-contact {
      display: grid;
      grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
      gap: 26px;
      align-items: start;
    }

    .about-contact-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .about-contact-grid strong {
      display: block;
      color: #111827;
      font-size: 18px;
      margin-bottom: 8px;
    }

    .help-main {
      padding-bottom: 34px;
    }

    .help-hero {
      padding: 42px 0 22px;
      background: #ffffff;
    }

    .help-hero--compact {
      padding-bottom: 12px;
    }

    .help-hero-inner,
    .help-hero-inner--left {
      display: block;
      max-width: 900px;
    }

    .eyebrow {
      display: inline-block;
      margin: 0 0 14px;
      color: #f97316;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .help-main h1 {
      color: #111827;
      font-size: clamp(36px, 4.8vw, 54px);
      line-height: 1.14;
      margin-bottom: 14px;
    }

    .help-hero p {
      max-width: 860px;
      color: #4b5563;
      font-size: 18px;
      line-height: 1.84;
      margin-bottom: 22px;
    }

    .help-search-box {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 108px;
      gap: 10px;
      max-width: 760px;
      margin-top: 8px;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .help-search-box input {
      width: 100%;
      min-height: 54px;
      padding: 0 18px;
      border-radius: 14px;
      border: 1px solid #e5e7eb;
      background: #fff;
      color: #111827;
      font-size: 16px;
      outline: none;
    }

    .help-search-box input:focus {
      border-color: #ff8a1f;
      box-shadow: 0 0 0 4px rgba(255,138,31,.12);
    }

    .help-search-box button {
      min-height: 54px;
      border: 0;
      border-radius: 14px;
      background: linear-gradient(180deg, #ff8a1f, #ff6a00);
      color: #fff;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
    }

    .help-hot-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 14px;
      align-items: center;
      margin-top: 18px;
      color: #6b7280;
      font-size: 14px;
    }

    .help-hot-tags a {
      color: #111827;
      padding: 8px 14px;
      border-radius: 999px;
      border: 1px solid #eceff3;
      background: #fff;
    }

    .help-faq-shell {
      padding-top: 16px;
    }

    .help-faq-layout {
      display: grid;
      grid-template-columns: 250px minmax(0, 1fr);
      gap: 28px;
      align-items: start;
    }

    .help-faq-sidebar {
      position: sticky;
      top: 96px;
      display: grid;
      gap: 10px;
    }

    .help-faq-sidebar a {
      display: block;
      padding: 14px 16px;
      border-radius: 14px;
      border: 1px solid #edf0f4;
      background: #fff;
      color: #374151;
      font-size: 14px;
      line-height: 1.6;
      box-shadow: 0 8px 20px rgba(15,23,42,.04);
    }

    .help-faq-content {
      display: grid;
      gap: 26px;
    }

    .help-section {
      padding: 0;
    }

    .help-section-head {
      margin-bottom: 16px;
    }

    .help-section-head h2 {
      margin: 0 0 8px;
      color: #111827;
      font-size: 34px;
      line-height: 1.24;
    }

    .help-section-head p {
      margin: 0;
      color: #6b7280;
      font-size: 15px;
      line-height: 1.8;
      max-width: none;
    }

    .help-faq-list {
      gap: 12px;
    }

    .download-reasons-section {
      padding: 26px 0 38px;
    }

    .download-reasons-head {
      text-align: center;
      margin-bottom: 30px;
    }

    .download-reasons-head h2 {
      margin: 0;
      color: #111827;
      font-size: 44px;
      line-height: 1.2;
      letter-spacing: -.02em;
    }

    .download-reasons-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
      align-items: stretch;
    }

    .download-reason-card {
      min-height: 292px;
      padding: 38px 34px 34px;
      text-align: center;
      border-radius: 18px;
      border: 1px solid #f0f1f3;
      background: #f7f7f9;
      box-shadow: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
    }

    .download-reason-card img {
      width: 54px;
      height: 54px;
      object-fit: contain;
      display: block;
      margin: 0 auto 20px;
    }

    .download-reason-card h3 {
      margin: 0 0 20px;
      color: #111827;
      font-size: 24px;
      line-height: 1.34;
      font-weight: 700;
    }

    .download-reason-card p {
      margin: 0;
      color: #374151;
      font-size: 17px;
      line-height: 1.75;
    }

    .download-reasons-note {
      margin: 18px auto 0;
      display: flex;
      width: fit-content;
      align-items: center;
      justify-content: center;
      border: 0;
      background: transparent;
      text-align: center;
      color: #9ca3af;
      font-size: 12px;
      line-height: 1.6;
      cursor: pointer;
      padding: 0;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .risk-modal[hidden] {
      display: none;
    }

    .risk-modal {
      position: fixed;
      inset: 0;
      z-index: 200;
    }

    .risk-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(17,24,39,.44);
    }

    .risk-modal-panel {
      position: relative;
      z-index: 1;
      width: min(1120px, calc(100% - 32px));
      max-height: calc(100vh - 40px);
      margin: 20px auto;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 24px 60px rgba(0,0,0,.18);
      overflow: hidden;
    }

    .risk-modal-close {
      position: absolute;
      top: 10px;
      right: 14px;
      border: 0;
      background: transparent;
      color: #9ca3af;
      font-size: 46px;
      line-height: 1;
      cursor: pointer;
      padding: 0;
    }

    .risk-modal-body {
      padding: 22px 28px 30px;
      overflow: auto;
      max-height: calc(100vh - 40px);
    }

    .risk-modal-body h2 {
      margin: 0 0 18px;
      color: #111827;
      font-size: 28px;
      line-height: 1.2;
    }

    .risk-modal-body p {
      margin: 0 0 22px;
      color: #4b5563;
      font-size: 18px;
      line-height: 1.62;
    }

    .download-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }

    .download-card,
    .seo-info-card,
    .journey-step {
      padding: 28px;
      border-radius: 24px;
    }

    .download-card h3,
    .seo-info-card h3,
    .journey-step h3 {
      font-size: 22px;
      line-height: 1.35;
      margin-bottom: 10px;
      color: #111827;
    }

    .download-card p,
    .seo-info-card p,
    .journey-step p {
      color: #6b7280;
      margin-bottom: 0;
    }

    .download-card ul,
    .seo-info-card ul {
      margin: 16px 0 0;
      padding-left: 18px;
      color: #4b5563;
    }

    .download-card li,
    .seo-info-card li {
      margin-bottom: 10px;
    }

    .platform-band {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      margin-top: 10px;
    }

    .platform-chip {
      padding: 18px 16px;
      border-radius: 20px;
      background: #fff;
      border: 1px solid #edf0f4;
      box-shadow: 0 10px 26px rgba(15,23,42,.04);
      text-align: center;
    }

    .platform-chip strong {
      display: block;
      color: #111827;
      font-size: 17px;
      margin-bottom: 6px;
    }

    .platform-chip span {
      color: #6b7280;
      font-size: 13px;
      line-height: 1.7;
    }

    .seo-info-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
    }

    .journey-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }

    .journey-step {
      position: relative;
    }

    .journey-step .step-no {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: #fff7ed;
      color: #f97316;
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 18px;
    }

    .download-note {
      margin-top: 16px;
      color: #9ca3af;
      font-size: 13px;
      text-align: center;
    }

    @media (max-width: 1080px) {
      .download-grid,
      .seo-info-grid,
      .journey-grid,
      .platform-band,
      .download-showcase,
      .download-reasons-grid,
      .help-kb-grid,
      .about-value-grid,
      .about-contact-grid,
      .about-strength-grid,
      .about-global-grid {
        grid-template-columns: 1fr 1fr;
      }

      .download-entry-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }

      .help-faq-layout,
      .about-intro-grid,
      .about-split-grid,
      .about-contact,
      .disclaimer-layout,
      .terms-layout,
      .privacy-layout {
        grid-template-columns: 1fr;
      }

      .help-faq-sidebar,
      .disclaimer-sidebar,
      .terms-sidebar,
      .privacy-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 760px) {
      .container { width: min(var(--max), calc(100% - 28px)); }
      .nav { display: none; }
      .header-inner { min-height: 68px; }
      .market-grid,
      .adv-grid,
      .trust-grid,
      .ticker-grid,
      .service-stats,
      .brand-stats,
      .awards-grid,
      .reviews-grid,
      .bottom-cta,
      .download-stat-row,
      .download-grid,
      .platform-band,
      .seo-info-grid,
      .journey-grid,
      .download-showcase,
      .download-reasons-grid,
      .help-kb-grid,
      .help-guide-grid,
      .help-hero-inner,
      .help-faq-sidebar,
      .about-value-grid,
      .about-contact-grid,
      .about-strength-grid,
      .about-global-grid,
      .disclaimer-sidebar,
      .terms-sidebar,
      .privacy-sidebar {
        grid-template-columns: 1fr;
      }
      .bottom-cta {
        padding: 22px 18px;
        min-height: auto;
      }
      .cta-copy h2 {
        font-size: 24px;
        max-width: none;
      }
      .cta-copy .btn {
        min-width: 160px;
        font-size: 16px;
      }
      .cta-art {
        justify-content: center;
      }
      .cta-art img {
        max-width: 420px;
      }
      .tool-tabs {
        gap: 18px;
        flex-wrap: wrap;
      }
      .tool-phone-wrap {
        min-height: 500px;
        margin-top: 0;
      }
      .tool-stage {
        height: 500px;
      }
      .tool-stage::before {
        left: 10px;
        right: 10px;
        bottom: 14px;
        height: 290px;
        background: #ffffff;
      }
      .tool-video-box {
        width: 248px;
        height: 480px;
        margin-top: 0;
      }
      .tool-video-box video {
        transform: translateY(-56px) scale(1.04, 1.28);
        transform-origin: center bottom;
      }
      .hero-actions,
      .bottom-cta,
      .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
      }
      .footer-links-grid,
      .footer-store-layout {
        grid-template-columns: 1fr;
      }
      .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 56px 0;
      }
      .hero-visual {
        min-height: 180px;
      }
      .hero-actions .btn-primary { min-width: 160px; }
      h1 { font-size: 42px; }
      .download-hero {
        padding: 72px 0 46px;
      }
      .download-card,
      .seo-info-card,
      .journey-step,
      .download-showcase {
        padding: 22px;
      }
      .download-hero-simple {
        max-width: 100%;
      }
      .download-hero-simple p {
        font-size: 17px;
        margin-bottom: 24px;
      }
      .download-entry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
      }
      .download-entry-card {
        min-height: 96px;
        padding: 14px 8px;
      }
      .download-entry-card strong {
        font-size: 14px;
      }
      .download-entry-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 10px;
      }
      .download-entry-icon img {
        width: 28px;
        height: 28px;
      }
      .help-hero {
        padding: 54px 0 22px;
      }
      .help-main h1,
      .about-main h1,
      .disclaimer-main h1,
      .terms-main h1,
      .privacy-main h1 {
        font-size: 34px;
      }
      .help-hero p,
      .about-hero p,
      .about-intro-copy p,
      .about-panel p,
      .about-contact-copy p,
      .disclaimer-hero p,
      .disclaimer-block p,
      .disclaimer-block li,
      .terms-hero p,
      .terms-block p,
      .terms-block li,
      .privacy-hero p,
      .privacy-block p,
      .privacy-block li {
        font-size: 16px;
        margin-bottom: 18px;
      }
      .help-search-box {
        grid-template-columns: 1fr;
      }
      .help-hot-tags {
        font-size: 13px;
      }
      .help-section-head h2,
      .about-intro-copy h2,
      .about-panel h2,
      .about-contact-copy h2 {
        font-size: 28px;
      }
      .help-faq-sidebar a,
      .disclaimer-sidebar a,
      .terms-sidebar a,
      .privacy-sidebar a {
        font-size: 13px;
      }
      .about-hero {
        padding: 58px 0 24px;
      }
      .disclaimer-hero,
      .terms-hero,
      .privacy-hero {
        padding: 58px 0 24px;
      }
      .disclaimer-block,
      .terms-block,
      .privacy-block {
        padding: 22px;
      }
      .disclaimer-block h2,
      .terms-block h2,
      .privacy-block h2 {
        font-size: 24px;
      }
      .about-hero p {
        margin-bottom: 22px;
      }
      .about-hero-media {
        border-radius: 10px;
      }
      .about-intro-panel,
      .about-panel,
      .about-contact,
      .about-value-card,
      .about-strength-stat {
        padding: 22px;
      }
      .about-strength-brand,
      .about-strength-device {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 220px;
      }
      .about-timeline-item {
        grid-template-columns: 1fr;
        gap: 10px;
      }
      .about-year {
        font-size: 22px;
      }
      .download-showcase-copy h2 {
        font-size: 30px;
        margin-bottom: 20px;
      }
      .download-reasons-head h2 {
        font-size: 30px;
      }
      .download-reason-card {
        min-height: auto;
        padding: 26px 20px 24px;
      }
      .download-reason-card h3 {
        font-size: 20px;
        margin-bottom: 14px;
      }
      .download-reason-card p {
        font-size: 15px;
        line-height: 1.75;
      }
      .risk-modal-panel {
        width: min(100%, calc(100% - 16px));
        margin: 8px auto;
        max-height: calc(100vh - 16px);
      }
      .risk-modal-body {
        padding: 18px 16px 24px;
        max-height: calc(100vh - 16px);
      }
      .risk-modal-body h2 {
        font-size: 24px;
      }
      .risk-modal-body p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 18px;
      }
      .download-showcase-list {
        gap: 14px;
        margin-bottom: 24px;
      }
      .download-showcase-list li {
        font-size: 16px;
        line-height: 1.7;
        padding-left: 30px;
      }
      .download-showcase-copy .btn {
        min-width: 168px;
        min-height: 48px;
        font-size: 18px;
      }
    }
    }
