/* ==========================================================================
   EasyGlobal SaaS — Global Marketing SaaS
   国际 B 端极简商务风 / International B2B minimal design system
   所有视觉元素均为自绘 SVG + CSS，无第三方图片素材，全球商用无版权风险
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* 主色：国际科技蓝 RGB 0,102,204 */
  --og-blue: #0066cc;
  --og-blue-700: #004f9e;
  --og-blue-600: #005cb8;
  --og-blue-300: #7fb4e8;
  --og-blue-100: #d6e7fa;
  --og-blue-50: #eef5fd;

  /* 辅助色：活力增长橙 RGB 255,153,0 */
  --og-orange: #ff9900;
  --og-orange-700: #d97e00;
  --og-orange-50: #fff5e5;

  /* 点缀色：全球青绿 RGB 52,199,89 */
  --og-green: #34c759;
  --og-green-700: #219c42;
  --og-green-50: #eafaef;

  /* 国际中性色层级 */
  --og-ink: #0d1523;
  --og-ink-2: #26364d;
  --og-body: #46586f;
  --og-muted: #6b7c93;
  --og-line: #e2e9f2;
  --og-line-2: #eef2f7;
  --og-bg: #ffffff;
  --og-soft: #f5f8fc;
  --og-soft-2: #eef3f9;

  /* 深色（首屏 / CTA 带） */
  --og-dark: #06121f;
  --og-dark-2: #0a2036;
  --og-dark-3: #0d3155;

  --og-radius: 16px;
  --og-radius-sm: 10px;
  --og-radius-lg: 24px;
  --og-shadow: 0 1px 2px rgba(13, 21, 35, .04), 0 8px 24px rgba(13, 21, 35, .06);
  --og-shadow-lg: 0 2px 6px rgba(13, 21, 35, .05), 0 22px 56px rgba(13, 21, 35, .12);
  --og-shadow-blue: 0 10px 30px rgba(0, 102, 204, .22);

  --og-wrap: 1200px;
  --og-gut: 24px;
  --og-header-h: 72px;

  --og-sans: "Inter", "Noto Sans SC", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--og-header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--og-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--og-body);
  background: var(--og-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--og-blue);
  text-decoration: none;
  transition: color .18s ease;
}
a:hover { color: var(--og-blue-700); }

h1, h2, h3, h4, h5 {
  margin: 0;
  color: var(--og-ink);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -.01em;
}
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid rgba(0, 102, 204, .45);
  outline-offset: 2px;
  border-radius: 6px;
}

.og-wrap {
  width: min(var(--og-wrap), 100% - 48px);
  margin-inline: auto;
}

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

.og-skip {
  position: absolute;
  left: 16px; top: -60px;
  z-index: 200;
  padding: 10px 18px;
  background: var(--og-blue);
  color: #fff;
  border-radius: 0 0 10px 10px;
  transition: top .2s ease;
}
.og-skip:focus { top: 0; color: #fff; }

/* --------------------------------------------------------------------------
   3. Buttons
   -------------------------------------------------------------------------- */
.og-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .16s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.og-btn:active { transform: translateY(1px); }

.og-btn--primary {
  background: var(--og-orange);
  color: #241300;
  box-shadow: 0 8px 22px rgba(255, 153, 0, .32);
}
.og-btn--primary:hover {
  background: #ffa726;
  color: #241300;
  box-shadow: 0 12px 28px rgba(255, 153, 0, .4);
}

.og-btn--blue {
  background: var(--og-blue);
  color: #fff;
  box-shadow: var(--og-shadow-blue);
}
.og-btn--blue:hover { background: var(--og-blue-700); color: #fff; }

.og-btn--ghost {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .38);
  color: #fff;
}
.og-btn--ghost:hover {
  background: rgba(255, 255, 255, .16);
  border-color: #fff;
  color: #fff;
}

.og-btn--line {
  background: #fff;
  border-color: var(--og-line);
  color: var(--og-ink-2);
}
.og-btn--line:hover {
  border-color: var(--og-blue);
  color: var(--og-blue);
}

.og-btn--sm { padding: 9px 18px; font-size: 14px; }
.og-btn--lg { padding: 16px 34px; font-size: 16.5px; }
.og-btn--block { width: 100%; }

/* --------------------------------------------------------------------------
   4. Header / Nav
   -------------------------------------------------------------------------- */
.og-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--og-line-2);
}
.og-header__inner {
  height: var(--og-header-h);
  display: flex;
  align-items: center;
  gap: 20px;
}

.og-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 240px;
  color: var(--og-ink);
}
.og-brand:hover { color: var(--og-ink); }
.og-brand__mark { width: 36px; height: 36px; flex: none; }
.og-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
  overflow: hidden;
}
.og-brand__name {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -.015em;
  color: var(--og-ink);
}
.og-brand__tag {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--og-muted);
  letter-spacing: .01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.og-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
  margin-right: 12px;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
  justify-content: center;
}
.og-nav a {
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--og-ink-2);
  white-space: nowrap;
  flex-shrink: 0;
}
.og-nav a:hover { background: var(--og-blue-50); color: var(--og-blue); }
.og-nav a.is-current { color: var(--og-blue); background: var(--og-blue-50); }

.og-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: none;
  flex-shrink: 0;
  margin-left: auto;
}

.og-header__back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--og-line-2, #e5e7eb);
  border-radius: 999px;
  background: #fff;
  color: var(--og-ink, #0f172a);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.og-header__back:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
  color: var(--og-blue, #0066cc);
}
.og-header__back-icon {
  font-size: 15px;
  line-height: 1;
}

.og-drawer__lang {
  display: none;
  margin: 12px 0 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  position: relative;
  z-index: 40;
  overflow: visible;
}
.og-drawer__lang-label {
  display: none !important;
}
.og-drawer__lang .gsc-lang-dd__btn {
  width: 100% !important;
  justify-content: space-between !important;
  min-height: 48px !important;
  padding: 0 16px !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #0066cc !important;
  border-radius: 10px !important;
  border: 1px solid #dbeafe !important;
  background: #eff6ff !important;
}

/* 语言切换：加大字号/高度，避免太小气 */
.og-header__actions > .gsc-lang-dd .gsc-lang-dd__btn,
.og-drawer__lang .gsc-lang-dd__btn {
  min-height: 44px !important;
  padding: 0 18px !important;
  gap: 10px !important;
  border: 1.5px solid rgba(15, 23, 42, .16) !important;
  background: #fff !important;
  color: #0f172a !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .05);
}
.og-header__actions > .gsc-lang-dd .gsc-lang-dd__btn:hover,
.og-header__actions > .gsc-lang-dd.is-open .gsc-lang-dd__btn,
.og-drawer__lang .gsc-lang-dd__btn:hover,
.og-drawer__lang.gsc-lang-dd.is-open .gsc-lang-dd__btn,
.og-drawer__lang .gsc-lang-dd.is-open .gsc-lang-dd__btn {
  border-color: var(--og-blue, #0066cc) !important;
  color: var(--og-blue-700, #0052a3) !important;
}
.og-header__actions > .gsc-lang-dd .gsc-lang-dd__label,
.og-drawer__lang .gsc-lang-dd__label {
  max-width: none !important;
  gap: 10px !important;
}
.og-header__actions > .gsc-lang-dd .gsc-lang-dd__flag,
.og-drawer__lang .gsc-lang-dd__flag {
  font-size: 18px !important;
}
.og-header__actions > .gsc-lang-dd .gsc-lang-dd__chev,
.og-drawer__lang .gsc-lang-dd__chev {
  width: 16px !important;
  height: 16px !important;
  opacity: 1 !important;
  transition: transform .18s ease;
}
.og-drawer__lang.gsc-lang-dd.is-open .gsc-lang-dd__chev,
.og-drawer__lang .gsc-lang-dd.is-open .gsc-lang-dd__chev {
  transform: rotate(180deg);
}
.og-header__actions > .gsc-lang-dd .gsc-lang-dd__panel {
  min-width: 240px !important;
}
/* 侧栏语言在底部：列表向上弹出 */
.og-drawer__lang .gsc-lang-dd__panel {
  min-width: 0 !important;
  left: 0 !important;
  right: 0 !important;
  top: auto !important;
  bottom: calc(100% + 8px) !important;
  max-height: min(55vh, 360px) !important;
  z-index: 900 !important;
  box-shadow: 0 -12px 32px rgba(15, 23, 42, .16) !important;
}
.og-header__actions > .gsc-lang-dd .gsc-lang-dd__panel a,
.og-drawer__lang .gsc-lang-dd__panel a {
  padding: 11px 16px !important;
  font-size: 14px !important;
}

.og-lang {
  display: inline-flex;
  padding: 3px;
  background: var(--og-soft-2);
  border-radius: 999px;
}
.og-lang button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 6px 13px;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--og-muted);
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}
.og-lang button.is-active {
  background: #fff;
  color: var(--og-blue);
  box-shadow: 0 1px 3px rgba(13, 21, 35, .12);
}

.og-menu-btn {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--og-line);
  border-radius: 11px;
  background: #fff;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.og-menu-btn span {
  position: absolute;
  left: 11px;
  width: 18px; height: 2px;
  border-radius: 2px;
  background: var(--og-ink-2);
  transition: transform .22s ease, opacity .18s ease;
}
.og-menu-btn span:nth-child(1) { top: 14px; }
.og-menu-btn span:nth-child(2) { top: 20px; }
.og-menu-btn span:nth-child(3) { top: 26px; }
.og-menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.og-menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.og-menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Drawer */
.og-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(6, 18, 31, .45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}
.og-drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.og-drawer {
  position: fixed;
  top: 0; right: 0;
  z-index: 96;
  width: min(340px, 86vw);
  height: 100dvh;
  padding: 22px 22px calc(22px + env(safe-area-inset-bottom));
  background: #fff;
  box-shadow: -18px 0 48px rgba(13, 21, 35, .18);
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.22, .8, .3, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.og-drawer.is-open { transform: translateX(0); }

.og-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex: none;
  margin: -22px -22px 0;
  padding: 16px 22px 12px;
  background: #fff;
  border-bottom: 1px solid var(--og-line-2);
  position: sticky;
  top: 0;
  z-index: 2;
}
.og-drawer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
  text-decoration: none;
  color: var(--og-ink);
}
.og-drawer__brand:hover { color: var(--og-blue-700); }
.og-drawer__brand-mark {
  width: 36px;
  height: 36px;
  flex: none;
}
.og-drawer__brand-name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.og-drawer__top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}
.og-drawer__hub {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 102, 204, .28);
  background: linear-gradient(135deg, rgba(0, 102, 204, .08), rgba(52, 199, 89, .06));
  color: var(--og-blue);
  font-size: 13.5px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.og-drawer__hub:hover {
  color: var(--og-blue-700);
  border-color: rgba(0, 102, 204, .42);
  background: rgba(0, 102, 204, .1);
}
.og-drawer__close {
  flex: none;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--og-line);
  border-radius: 11px;
  background: #fff;
  color: var(--og-ink-2);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.og-drawer__close span {
  display: block;
  margin-top: -2px;
}
.og-drawer__close:hover {
  background: var(--og-soft);
  border-color: var(--og-blue-100);
  color: var(--og-blue);
}

.og-drawer nav { display: flex; flex-direction: column; gap: 2px; margin-top: 0; }
.og-drawer nav a {
  padding: 13px 14px;
  border-radius: 11px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--og-ink-2);
}
.og-drawer nav a:hover { background: var(--og-blue-50); color: var(--og-blue); }
.og-drawer__cta { display: grid; gap: 10px; }

/* --------------------------------------------------------------------------
   5. Section shell
   -------------------------------------------------------------------------- */
.og-section { padding: 92px 0; }
.og-section--soft { background: var(--og-soft); }
.og-section--tight { padding: 64px 0; }

.og-head { max-width: 860px; margin: 0 auto 52px; text-align: center; }
.og-head--left { margin-inline: 0; text-align: left; }

.og-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 15px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--og-blue-50);
  color: var(--og-blue);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.og-kicker--orange { background: var(--og-orange-50); color: var(--og-orange-700); }
.og-kicker--green { background: var(--og-green-50); color: var(--og-green-700); }

.og-h2 {
  font-size: clamp(27px, 3.4vw, 40px);
  line-height: 1.24;
}
.og-h2 em { font-style: normal; color: var(--og-blue); }

.og-h2__en {
  display: block;
  margin-top: 10px;
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 600;
  color: var(--og-muted);
  letter-spacing: .01em;
}

.og-lead {
  margin-top: 18px;
  font-size: clamp(15.5px, 1.6vw, 17.5px);
  line-height: 1.85;
  color: var(--og-body);
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.og-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 620px at 78% 12%, rgba(0, 102, 204, .42), transparent 62%),
    radial-gradient(760px 520px at 12% 88%, rgba(52, 199, 89, .16), transparent 60%),
    linear-gradient(160deg, #06121f 0%, #0a2036 52%, #0d3155 100%);
  color: #e8f1fb;
}
.og-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(900px 560px at 50% 20%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(900px 560px at 50% 20%, #000 20%, transparent 78%);
  pointer-events: none;
}

.og-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 56px;
  align-items: center;
  padding: 78px 0 66px;
}

.og-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px 7px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .2);
  font-size: 13px;
  font-weight: 700;
  color: #cfe4fa;
}
.og-hero__eyebrow b {
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--og-green);
  color: #04240f;
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: .04em;
}

.og-hero h1 {
  margin: 22px 0 0;
  font-size: clamp(30px, 4.1vw, 50px);
  line-height: 1.2;
  color: #fff;
  letter-spacing: -.02em;
}
.og-hero h1 em {
  font-style: normal;
  background: linear-gradient(96deg, #ffb03a, #ff9900);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.og-hero__en {
  margin-top: 14px;
  font-size: clamp(15px, 1.7vw, 19px);
  font-weight: 700;
  color: #8fc0f0;
  letter-spacing: .005em;
}

.og-hero__sub {
  margin-top: 20px;
  max-width: 620px;
  font-size: clamp(15px, 1.5vw, 16.8px);
  line-height: 1.88;
  color: #c2d7ee;
}

.og-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.og-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.og-hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: #a8c6e6;
}
.og-hero__trust span::before {
  content: "";
  width: 15px; height: 15px;
  flex: none;
  border-radius: 50%;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M6.4 11.1 3.6 8.3l1-1 1.8 1.8 4.9-4.9 1 1z' fill='%2304240f'/></svg>") center / 15px 15px no-repeat,
    var(--og-green);
}

/* Hero photo mosaic */
.og-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}
.og-hero-mosaic {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.05fr;
  grid-template-rows: 1.15fr .85fr .95fr;
  gap: 10px;
  width: min(100%, 520px);
  height: min(58vw, 460px);
  transform: rotate(-1.5deg);
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, .45));
}
.og-hero-mosaic figure {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  position: relative;
}
.og-hero-mosaic figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6, 18, 31, .45));
  pointer-events: none;
}
.og-hero-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}
.og-hero-mosaic figure:hover img { transform: scale(1.06); }
.og-hero-mosaic__a { grid-column: 1; grid-row: 1 / 3; border-radius: 22px 16px 16px 22px; }
.og-hero-mosaic__b { grid-column: 2; grid-row: 1; }
.og-hero-mosaic__c { grid-column: 3; grid-row: 1 / 3; border-radius: 16px 22px 16px 16px; }
.og-hero-mosaic__d { grid-column: 2; grid-row: 2; }
.og-hero-mosaic__e { grid-column: 1; grid-row: 3; }
.og-hero-mosaic__f { grid-column: 2 / 4; grid-row: 3; border-radius: 16px 16px 22px 16px; }

/* Floating data chips around mosaic */
.og-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .24);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 12.5px;
  font-weight: 700;
  color: #eaf3ff;
  white-space: nowrap;
  animation: ogFloat 6s ease-in-out infinite;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}
.og-chip i {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--og-green);
  box-shadow: 0 0 0 4px rgba(52, 199, 89, .2);
}
.og-chip--a { top: 4%; left: -6%; }
.og-chip--b { top: 42%; right: -8%; animation-delay: 1.4s; }
.og-chip--b i { background: var(--og-orange); box-shadow: 0 0 0 4px rgba(255, 153, 0, .2); }
.og-chip--c { bottom: 2%; left: 2%; animation-delay: 2.6s; }
.og-chip--c i { background: #7fb4e8; box-shadow: 0 0 0 4px rgba(127, 180, 232, .2); }

@keyframes ogFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}

/* Industry photo wall */
.og-industries { background: var(--og-soft); }
.og-ind-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.og-ind-card {
  display: block;
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #0a2036;
  box-shadow: var(--og-shadow);
  text-decoration: none;
  color: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
  min-height: 280px;
}
.og-ind-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--og-shadow-lg);
  color: #fff;
}
.og-ind-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}
.og-ind-card--lg {
  grid-row: span 1;
}
.og-ind-card--lg img { aspect-ratio: 5 / 4; min-height: 240px; }
.og-ind-card--wide {
  grid-column: span 2;
}
.og-ind-card--wide img { aspect-ratio: 16 / 10; min-height: 260px; }
.og-ind-card:hover img { transform: scale(1.05); }
.og-ind-card__meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 52px 18px 18px;
  background: linear-gradient(180deg, transparent, rgba(6, 18, 31, .9));
  z-index: 1;
}
.og-ind-card__meta b {
  display: block;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.01em;
}
.og-ind-card__meta span {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(232, 241, 251, .82);
}

.og-case__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #0a2036;
}
.og-case__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.og-case:hover .og-case__photo img { transform: scale(1.05); }


/* Country ticker */
.og-ticker {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: rgba(3, 10, 18, .38);
  overflow: hidden;
  padding: 14px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.og-ticker__track {
  display: flex;
  gap: 34px;
  width: max-content;
  animation: ogTicker 52s linear infinite;
}
.og-ticker__track span {
  font-size: 13px;
  font-weight: 700;
  color: rgba(200, 220, 242, .82);
  letter-spacing: .02em;
  white-space: nowrap;
}
.og-ticker:hover .og-ticker__track { animation-play-state: paused; }
@keyframes ogTicker { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   7. Stat strip
   -------------------------------------------------------------------------- */
.og-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--og-line);
  border: 1px solid var(--og-line);
  border-radius: var(--og-radius);
  overflow: hidden;
  box-shadow: var(--og-shadow);
}
.og-stat { background: #fff; padding: 30px 24px; text-align: center; }
.og-stat b {
  display: block;
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--og-blue);
  letter-spacing: -.02em;
}
.og-stat b .og-stat__suffix { color: var(--og-orange); }
.og-stat span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--og-ink-2);
}
.og-stat small {
  display: block;
  margin-top: 4px;
  font-size: 11.5px;
  color: var(--og-muted);
}

.og-disclaimer {
  margin-top: 18px;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--og-muted);
  text-align: center;
}

/* --------------------------------------------------------------------------
   8. Generic cards / grids
   -------------------------------------------------------------------------- */
.og-grid { display: grid; gap: 22px; }
.og-grid--2 { grid-template-columns: repeat(2, 1fr); }
.og-grid--3 { grid-template-columns: repeat(3, 1fr); }
.og-grid--4 { grid-template-columns: repeat(4, 1fr); }

.og-card {
  position: relative;
  padding: 30px 28px;
  background: #fff;
  border: 1px solid var(--og-line);
  border-radius: var(--og-radius);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.og-card:hover {
  transform: translateY(-4px);
  border-color: var(--og-blue-100);
  box-shadow: var(--og-shadow-lg);
}
.og-card h3 {
  font-size: 18.5px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.og-card h3 .og-card__en {
  display: block;
  margin-top: 5px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--og-muted);
  letter-spacing: .01em;
}
.og-card p { font-size: 14.8px; line-height: 1.82; color: var(--og-body); }

.og-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--og-blue-50);
  color: var(--og-blue);
}
.og-icon svg { width: 26px; height: 26px; }
.og-icon--orange { background: var(--og-orange-50); color: var(--og-orange-700); }
.og-icon--green { background: var(--og-green-50); color: var(--og-green-700); }

.og-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--og-blue), #2f8ae0);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

/* bullet list */
.og-list { display: grid; gap: 10px; margin-top: 16px; }
.og-list li {
  position: relative;
  padding-left: 26px;
  font-size: 14.6px;
  line-height: 1.8;
  color: var(--og-body);
}
.og-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M6.4 11.1 3.6 8.3l1-1 1.8 1.8 4.9-4.9 1 1z' fill='%23ffffff'/></svg>") center / 16px 16px no-repeat,
    var(--og-blue);
}
.og-list--green li::before { background-color: var(--og-green); }
.og-list--orange li::before { background-color: var(--og-orange); }

/* --------------------------------------------------------------------------
   9. Pain points
   -------------------------------------------------------------------------- */
.og-pains { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.og-pain {
  display: flex;
  gap: 15px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--og-line);
  border-left: 3px solid var(--og-orange);
  border-radius: 12px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.og-pain:hover { transform: translateX(3px); box-shadow: var(--og-shadow); }
.og-pain__q {
  flex: none;
  width: 28px; height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--og-orange-50);
  color: var(--og-orange-700);
  font-size: 14px;
  font-weight: 900;
}
.og-pain p { font-size: 14.8px; line-height: 1.78; color: var(--og-ink-2); }
.og-pain p em {
  display: block;
  margin-top: 5px;
  font-style: normal;
  font-size: 12.5px;
  color: var(--og-muted);
}

/* --------------------------------------------------------------------------
   9b. Audience personas
   -------------------------------------------------------------------------- */
.og-audience {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.og-audience__item {
  padding: 28px 26px;
  background: #fff;
  border: 1px solid var(--og-line);
  border-radius: var(--og-radius);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.og-audience__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--og-shadow-lg);
  border-color: var(--og-blue-100);
}
.og-audience__no {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  color: var(--og-orange);
}
.og-audience__item h3 {
  margin: 10px 0 4px;
  font-size: 18.5px;
  line-height: 1.35;
}
.og-audience__en {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--og-muted);
  margin-bottom: 12px;
}
.og-audience__item p {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--og-ink-2);
}

/* --------------------------------------------------------------------------
   10. Advantage (big feature rows)
   -------------------------------------------------------------------------- */
.og-adv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.og-adv__item {
  position: relative;
  padding: 34px 30px;
  background: #fff;
  border: 1px solid var(--og-line);
  border-radius: var(--og-radius);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.og-adv__item::after {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--og-blue), var(--og-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.og-adv__item:hover { transform: translateY(-5px); box-shadow: var(--og-shadow-lg); border-color: var(--og-blue-100); }
.og-adv__item:hover::after { transform: scaleX(1); }
.og-adv__no {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  color: var(--og-blue-300);
}
.og-adv__item h3 { margin: 12px 0 6px; font-size: 19.5px; line-height: 1.38; }
.og-adv__en {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--og-muted);
  margin-bottom: 12px;
}
.og-adv__item p { font-size: 14.8px; line-height: 1.84; }

/* --------------------------------------------------------------------------
   11. Feature detail (product page)
   -------------------------------------------------------------------------- */
.og-feat {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 52px;
  align-items: center;
  padding: 62px 0;
  border-top: 1px solid var(--og-line-2);
}
.og-feat:first-of-type { border-top: 0; }
.og-feat--rev .og-feat__media { order: -1; }

.og-feat__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--og-blue-50);
  color: var(--og-blue);
  font-size: 12.5px;
  font-weight: 800;
}
.og-feat h2 { margin: 16px 0 6px; font-size: clamp(22px, 2.5vw, 29px); line-height: 1.32; }
.og-feat__en { font-size: 13.5px; font-weight: 700; color: var(--og-muted); }
.og-feat__solve {
  display: inline-block;
  margin: 16px 0 0;
  padding: 8px 15px;
  border-radius: 10px;
  background: var(--og-orange-50);
  color: var(--og-orange-700);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.6;
}
.og-feat p.og-feat__body {
  margin-top: 18px;
  font-size: 15.2px;
  line-height: 1.92;
  color: var(--og-body);
}

.og-feat__media {
  position: relative;
  padding: 26px;
  background: linear-gradient(158deg, #f3f8fe, #eaf2fb);
  border: 1px solid var(--og-line);
  border-radius: var(--og-radius-lg);
}

/* mock UI panel */
.og-mock {
  background: #fff;
  border: 1px solid var(--og-line);
  border-radius: 14px;
  box-shadow: var(--og-shadow);
  overflow: hidden;
}
.og-mock__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--og-line-2);
  background: var(--og-soft);
}
.og-mock__bar i { width: 9px; height: 9px; border-radius: 50%; background: #d7dfe9; }
.og-mock__bar i:first-child { background: #ffbfbf; }
.og-mock__bar i:nth-child(2) { background: #ffe0a8; }
.og-mock__bar i:nth-child(3) { background: #b9e7c6; }
.og-mock__bar span {
  margin-left: 8px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--og-muted);
}
.og-mock__body { padding: 18px; display: grid; gap: 12px; }

.og-mock__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 13px;
  border: 1px solid var(--og-line-2);
  border-radius: 10px;
  background: #fff;
  font-size: 12.8px;
  font-weight: 700;
  color: var(--og-ink-2);
}
.og-mock__row em {
  font-style: normal;
  font-size: 11.5px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--og-green-50);
  color: var(--og-green-700);
}
.og-mock__row em.is-blue { background: var(--og-blue-50); color: var(--og-blue); }
.og-mock__row em.is-orange { background: var(--og-orange-50); color: var(--og-orange-700); }

.og-mock__bars { display: flex; align-items: flex-end; gap: 9px; height: 104px; padding: 0 2px; }
.og-mock__bars i {
  flex: 1;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, var(--og-blue-300), var(--og-blue));
  transform-origin: bottom;
  animation: ogBar 1.4s cubic-bezier(.22, .8, .3, 1) both;
}
.og-mock__bars i:nth-child(2) { animation-delay: .1s; }
.og-mock__bars i:nth-child(3) { animation-delay: .2s; }
.og-mock__bars i:nth-child(4) { animation-delay: .3s; background: linear-gradient(180deg, #ffc46b, var(--og-orange)); }
.og-mock__bars i:nth-child(5) { animation-delay: .4s; }
.og-mock__bars i:nth-child(6) { animation-delay: .5s; background: linear-gradient(180deg, #8fe2a6, var(--og-green)); }
@keyframes ogBar { from { transform: scaleY(.06); opacity: .2; } to { transform: scaleY(1); opacity: 1; } }

.og-mock__tags { display: flex; flex-wrap: wrap; gap: 7px; }
.og-mock__tags span {
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--og-soft-2);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--og-ink-2);
}

/* --------------------------------------------------------------------------
   12. Tabs
   -------------------------------------------------------------------------- */
.og-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 34px;
}
.og-tab {
  appearance: none;
  padding: 10px 20px;
  border: 1px solid var(--og-line);
  border-radius: 999px;
  background: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--og-ink-2);
  cursor: pointer;
  transition: all .18s ease;
}
.og-tab:hover { border-color: var(--og-blue-300); color: var(--og-blue); }
.og-tab.is-active {
  background: var(--og-blue);
  border-color: var(--og-blue);
  color: #fff;
  box-shadow: var(--og-shadow-blue);
}
.og-panel { display: none; }
.og-panel.is-active { display: block; animation: ogFade .35s ease both; }
@keyframes ogFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* --------------------------------------------------------------------------
   13. Solution block
   -------------------------------------------------------------------------- */
.og-sol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--og-line);
  border-radius: var(--og-radius-lg);
  box-shadow: var(--og-shadow);
}
.og-sol__col h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 15.5px;
  color: var(--og-ink);
}
.og-sol__col h4 i {
  width: 22px; height: 22px;
  flex: none;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
  font-style: normal;
  color: #fff;
  background: var(--og-orange);
}
.og-sol__col:nth-child(2) h4 i { background: var(--og-blue); }
.og-sol__col:nth-child(3) h4 i { background: var(--og-green); }
.og-sol__col li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 9px;
  font-size: 14.4px;
  line-height: 1.78;
  color: var(--og-body);
}
.og-sol__col li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--og-blue-300);
}
.og-sol__intro { margin-bottom: 26px; }
.og-sol__intro h3 { font-size: clamp(21px, 2.3vw, 26px); }
.og-sol__intro .og-h2__en { margin-top: 8px; }

/* --------------------------------------------------------------------------
   14. Case cards
   -------------------------------------------------------------------------- */
.og-case {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--og-line);
  border-radius: var(--og-radius);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}
.og-case:hover { transform: translateY(-4px); box-shadow: var(--og-shadow-lg); }
.og-case__top {
  padding: 20px 24px;
  background: linear-gradient(140deg, #0a2036, #0d3155);
  color: #dceafa;
}
.og-case__flagline {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .04em;
  color: #8fc0f0;
}
.og-case__flagline i {
  width: 24px; height: 16px;
  border-radius: 3px;
  background: linear-gradient(140deg, var(--og-blue-300), var(--og-blue));
  flex: none;
}
.og-case__top h3 { margin-top: 10px; font-size: 17.5px; color: #fff; line-height: 1.42; }
.og-case__body { padding: 22px 24px 24px; display: grid; gap: 14px; }
.og-case__sec h5 {
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--og-muted);
  text-transform: uppercase;
  margin-bottom: 5px;
}
.og-case__sec p { font-size: 14.4px; line-height: 1.8; }
.og-case__kpi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 15px;
  border-radius: 12px;
  background: var(--og-soft);
}
.og-case__kpi div { text-align: center; }
.og-case__kpi b {
  display: block;
  font-size: 19px;
  font-weight: 900;
  color: var(--og-green-700);
  line-height: 1.2;
}
.og-case__kpi span { font-size: 11.5px; color: var(--og-muted); font-weight: 600; }
.og-case__quote {
  padding: 14px 16px;
  border-left: 3px solid var(--og-blue-100);
  background: var(--og-blue-50);
  border-radius: 0 10px 10px 0;
  font-size: 13.8px;
  line-height: 1.78;
  color: var(--og-ink-2);
  font-style: italic;
}
.og-case__quote cite {
  display: block;
  margin-top: 7px;
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  color: var(--og-muted);
}

/* --------------------------------------------------------------------------
   15. Pricing
   -------------------------------------------------------------------------- */
.og-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.og-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 30px;
  background: #fff;
  border: 1px solid var(--og-line);
  border-radius: var(--og-radius-lg);
  transition: transform .22s ease, box-shadow .22s ease;
}
.og-plan:hover { transform: translateY(-4px); box-shadow: var(--og-shadow-lg); }
.og-plan--hot {
  border: 2px solid var(--og-blue);
  box-shadow: 0 20px 48px rgba(0, 102, 204, .16);
}
.og-plan__badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  padding: 6px 18px;
  border-radius: 999px;
  background: var(--og-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: var(--og-shadow-blue);
}
.og-plan h3 { font-size: 21px; }
.og-plan__en { display: block; margin-top: 5px; font-size: 12.5px; font-weight: 700; color: var(--og-muted); }
.og-plan__for {
  margin-top: 14px;
  padding: 11px 14px;
  border-radius: 10px;
  background: var(--og-soft);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--og-ink-2);
}
.og-plan__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 20px 0 4px;
}
.og-plan__price b {
  font-size: 34px;
  font-weight: 900;
  color: var(--og-ink);
  letter-spacing: -.02em;
}
.og-plan__price span { font-size: 13.5px; font-weight: 600; color: var(--og-muted); }
.og-plan__note { font-size: 12.5px; color: var(--og-muted); line-height: 1.7; }
.og-plan ul { margin: 20px 0 26px; display: grid; gap: 10px; }
.og-plan li {
  position: relative;
  padding-left: 25px;
  font-size: 14.2px;
  line-height: 1.72;
  color: var(--og-body);
}
.og-plan li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M6.4 11.1 3.6 8.3l1-1 1.8 1.8 4.9-4.9 1 1z' fill='%23ffffff'/></svg>") center / 15px 15px no-repeat,
    var(--og-green);
}
.og-plan .og-btn { margin-top: auto; }

.og-compare {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--og-line);
  border-radius: var(--og-radius);
  overflow: hidden;
  font-size: 14.2px;
}
.og-compare th, .og-compare td {
  padding: 15px 18px;
  text-align: left;
  border-bottom: 1px solid var(--og-line-2);
}
.og-compare thead th {
  background: var(--og-soft);
  color: var(--og-ink);
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
}
.og-compare tbody th { font-weight: 700; color: var(--og-ink-2); }
.og-compare td { text-align: center; color: var(--og-body); }
.og-compare tbody tr:last-child th,
.og-compare tbody tr:last-child td { border-bottom: 0; }
.og-compare .yes { color: var(--og-green-700); font-weight: 900; }
.og-compare .no { color: #c3ccd8; font-weight: 900; }
.og-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* --------------------------------------------------------------------------
   16. Steps / timeline
   -------------------------------------------------------------------------- */
.og-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.og-step {
  position: relative;
  padding: 26px 24px;
  background: #fff;
  border: 1px solid var(--og-line);
  border-radius: var(--og-radius);
}
.og-step__no {
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  color: var(--og-blue-100);
  letter-spacing: -.03em;
}
.og-step h4 { margin: 10px 0 8px; font-size: 16.5px; }
.og-step p { font-size: 14px; line-height: 1.78; }

/* --------------------------------------------------------------------------
   17. FAQ (details/summary)
   -------------------------------------------------------------------------- */
.og-faq { display: grid; gap: 12px; max-width: 900px; margin-inline: auto; }
.og-faq details {
  background: #fff;
  border: 1px solid var(--og-line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.og-faq details[open] { border-color: var(--og-blue-100); box-shadow: var(--og-shadow); }
.og-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 22px;
  cursor: pointer;
  list-style: none;
  font-size: 15.8px;
  font-weight: 700;
  color: var(--og-ink);
}
.og-faq summary::-webkit-details-marker { display: none; }
.og-faq summary::after {
  content: "";
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--og-soft-2)
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path d='M5.5 7.8 10 12.3l4.5-4.5' fill='none' stroke='%2346586f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / 20px 20px no-repeat;
  transition: transform .25s ease;
}
.og-faq details[open] summary::after { transform: rotate(180deg); }
.og-faq__a { padding: 0 22px 20px; font-size: 14.8px; line-height: 1.86; color: var(--og-body); }
.og-faq__a p + p { margin-top: 10px; }

/* --------------------------------------------------------------------------
   18. CTA band
   -------------------------------------------------------------------------- */
.og-cta {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  background:
    radial-gradient(720px 420px at 85% 20%, rgba(0, 102, 204, .5), transparent 60%),
    radial-gradient(520px 380px at 8% 90%, rgba(255, 153, 0, .2), transparent 62%),
    linear-gradient(150deg, #06121f, #0a2036 60%, #0d3155);
  color: #dfeaf7;
  text-align: center;
}
.og-cta h2 {
  font-size: clamp(24px, 3vw, 36px);
  color: #fff;
  line-height: 1.3;
}
.og-cta__en {
  margin-top: 14px;
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 700;
  color: #8fc0f0;
}
.og-cta p.og-cta__body {
  max-width: 800px;
  margin: 18px auto 0;
  font-size: 15.5px;
  line-height: 1.86;
  color: #c2d7ee;
}
.og-cta__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 30px;
}
.og-cta__promise {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: center;
  margin-top: 28px;
  font-size: 13px;
  color: #a8c6e6;
}
.og-cta__promise span { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.og-cta__promise span::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--og-green);
}

/* --------------------------------------------------------------------------
   19. Lead form
   -------------------------------------------------------------------------- */
.og-form-wrap {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 44px;
  align-items: start;
  padding: 42px;
  background: #fff;
  border: 1px solid var(--og-line);
  border-radius: var(--og-radius-lg);
  box-shadow: var(--og-shadow-lg);
}
.og-form { display: grid; gap: 16px; }
.og-field { display: grid; gap: 7px; }
.og-field label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--og-ink-2);
}
.og-field label span { color: var(--og-orange-700); }
.og-field input,
.og-field select,
.og-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--og-line);
  border-radius: 11px;
  font: inherit;
  font-size: 14.5px;
  color: var(--og-ink);
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.og-field input:focus,
.og-field select:focus,
.og-field textarea:focus {
  outline: none;
  border-color: var(--og-blue);
  box-shadow: 0 0 0 4px rgba(0, 102, 204, .12);
}
.og-field textarea { min-height: 96px; resize: vertical; }
.og-field--2 { grid-template-columns: 1fr 1fr; gap: 16px; display: grid; }
.og-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12.8px;
  line-height: 1.7;
  color: var(--og-muted);
}
.og-consent input { width: 17px; height: 17px; margin-top: 2px; flex: none; accent-color: var(--og-blue); }
.og-form__msg {
  display: none;
  padding: 13px 16px;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}
.og-form__msg.is-ok { display: block; background: var(--og-green-50); color: var(--og-green-700); }
.og-form__msg.is-err { display: block; background: #fdecec; color: #c0392b; }

.og-form-side h3 { font-size: 23px; line-height: 1.34; }
.og-form-side .og-h2__en { margin-top: 8px; }
.og-form-side p { margin-top: 16px; font-size: 14.8px; line-height: 1.85; }
.og-contact-list { margin-top: 22px; display: grid; gap: 14px; }
.og-contact-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 15px 17px;
  border: 1px solid var(--og-line);
  border-radius: 13px;
  background: var(--og-soft);
}
.og-contact-list i {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--og-line);
  color: var(--og-blue);
}
.og-contact-list i svg { width: 18px; height: 18px; }
.og-contact-list b { display: block; font-size: 14px; color: var(--og-ink); }
.og-contact-list span { font-size: 13.2px; color: var(--og-muted); line-height: 1.65; }

/* --------------------------------------------------------------------------
   20. Compliance badges
   -------------------------------------------------------------------------- */
.og-badges {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.og-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 20px 12px;
  background: #fff;
  border: 1px solid var(--og-line);
  border-radius: 14px;
  text-align: center;
  transition: border-color .2s ease, transform .2s ease;
}
.og-badge:hover { border-color: var(--og-green); transform: translateY(-3px); }
.og-badge i {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--og-green-50);
  color: var(--og-green-700);
}
.og-badge i svg { width: 20px; height: 20px; }
.og-badge b { font-size: 13.2px; color: var(--og-ink); line-height: 1.4; }
.og-badge span { font-size: 11.5px; color: var(--og-muted); line-height: 1.5; }

/* --------------------------------------------------------------------------
   21. Region grid
   -------------------------------------------------------------------------- */
.og-regions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.og-region {
  position: relative;
  padding: 26px 24px;
  border: 1px solid var(--og-line);
  border-radius: var(--og-radius);
  background: #fff;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.og-region::before {
  content: "";
  position: absolute;
  right: -34px; top: -34px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--og-blue-50);
  transition: transform .3s ease;
}
.og-region:hover { transform: translateY(-4px); box-shadow: var(--og-shadow-lg); border-color: var(--og-blue-100); }
.og-region:hover::before { transform: scale(1.35); }
.og-region > * { position: relative; }
.og-region h4 { font-size: 17px; }
.og-region__en { display: block; margin-top: 4px; font-size: 12px; font-weight: 700; color: var(--og-muted); }
.og-region p { margin-top: 12px; font-size: 14.2px; line-height: 1.78; }
.og-region__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.og-region__tags span {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--og-soft-2);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--og-ink-2);
}

/* --------------------------------------------------------------------------
   22. Industry chips
   -------------------------------------------------------------------------- */
.og-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.og-chips a, .og-chips span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border: 1px solid var(--og-line);
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  color: var(--og-ink-2);
  transition: all .18s ease;
}
.og-chips a:hover {
  border-color: var(--og-blue);
  color: var(--og-blue);
  transform: translateY(-2px);
  box-shadow: var(--og-shadow);
}

/* --------------------------------------------------------------------------
   23. Article list (help / news)
   -------------------------------------------------------------------------- */
.og-arts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.og-art {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--og-line);
  border-radius: var(--og-radius);
  transition: transform .2s ease, box-shadow .2s ease;
}
.og-art:hover { transform: translateY(-3px); box-shadow: var(--og-shadow-lg); }
.og-art__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 800;
  color: var(--og-muted);
  letter-spacing: .04em;
}
.og-art__meta em {
  font-style: normal;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--og-blue-50);
  color: var(--og-blue);
}
.og-art h4 { font-size: 16.5px; line-height: 1.45; }
.og-art p { font-size: 14px; line-height: 1.78; }

/* --------------------------------------------------------------------------
   24. Page hero (inner pages)
   -------------------------------------------------------------------------- */
.og-phero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 62px;
  background:
    radial-gradient(700px 400px at 82% 18%, rgba(0, 102, 204, .38), transparent 62%),
    linear-gradient(150deg, #06121f, #0a2036 62%, #0d3155);
  color: #dceafa;
}
.og-phero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(760px 400px at 50% 30%, #000 10%, transparent 76%);
  -webkit-mask-image: radial-gradient(760px 400px at 50% 30%, #000 10%, transparent 76%);
}
.og-phero > * { position: relative; }
.og-phero .og-kicker {
  background: rgba(255, 255, 255, .1);
  color: #9fc9f2;
  border: 1px solid rgba(255, 255, 255, .18);
}
.og-phero h1 {
  font-size: clamp(27px, 3.6vw, 42px);
  color: #fff;
  line-height: 1.24;
}
.og-phero__en {
  margin-top: 12px;
  font-size: clamp(14px, 1.5vw, 17.5px);
  font-weight: 700;
  color: #8fc0f0;
}
.og-phero p.og-phero__lead {
  max-width: 840px;
  margin-top: 18px;
  font-size: 15.5px;
  line-height: 1.88;
  color: #c2d7ee;
}
.og-crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 12.5px;
  color: #7fa8cf;
}
.og-crumb a { color: #9fc9f2; }
.og-crumb a:hover { color: #fff; }

/* --------------------------------------------------------------------------
   25. Footer
   -------------------------------------------------------------------------- */
.og-footer {
  background: #06121f;
  color: #93a9c1;
  padding: 60px 0 26px;
  font-size: 14px;
}
.og-footer__top {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 34px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.og-footer__brand .og-brand__name { color: #fff; }
.og-footer__brand .og-brand__tag { color: #7f97b1; }
.og-footer__desc { margin-top: 16px; font-size: 13.5px; line-height: 1.8; color: #8ba2bc; max-width: 340px; }
.og-footer__col h5 {
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}
.og-footer__col a {
  display: block;
  padding: 5px 0;
  font-size: 13.5px;
  color: #93a9c1;
}
.og-footer__col a:hover { color: #fff; }
.og-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  font-size: 12.5px;
  color: #7f97b1;
}
.og-footer__legal { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.og-footer__legal a { color: #93a9c1; }
.og-footer__note {
  margin-top: 14px;
  font-size: 12px;
  line-height: 1.75;
  color: #6f889f;
}

/* --------------------------------------------------------------------------
   26. Sticky mobile CTA + to top
   -------------------------------------------------------------------------- */
.og-totop {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 80;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--og-line);
  border-radius: 50%;
  background: #fff;
  color: var(--og-ink-2);
  box-shadow: var(--og-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .24s ease;
  cursor: pointer;
}
.og-totop.is-show { opacity: 1; visibility: visible; transform: none; }
.og-totop:hover { border-color: var(--og-blue); color: var(--og-blue); }
.og-totop svg { width: 20px; height: 20px; }

.og-mcta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 85;
  display: none;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--og-line);
}
.og-mcta .og-btn { flex: 1; }

/* --------------------------------------------------------------------------
   27. Reveal animation
   -------------------------------------------------------------------------- */
.og-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s cubic-bezier(.22, .8, .3, 1), transform .6s cubic-bezier(.22, .8, .3, 1);
}
.og-reveal.is-in { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   28. Language helpers
   -------------------------------------------------------------------------- */
html.lang-en [data-zh-only] { display: none !important; }
html.lang-zh [data-en-only] { display: none !important; }
html.lang-en body { letter-spacing: 0; }

/* 这些英文小字是给中文读者的对照标签，切到英文后与主标题重复，隐藏即可 */
html.lang-en .og-card__en,
html.lang-en .og-region__en,
html.lang-en .og-plan__en,
html.lang-en .og-hero__en { display: none; }

/* --------------------------------------------------------------------------
   29. Legal / long-form article pages
   -------------------------------------------------------------------------- */
.og-doc { max-width: 900px; margin-inline: auto; }
.og-doc h2 {
  margin-top: 40px;
  font-size: 22px;
  line-height: 1.4;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--og-line);
}
.og-doc h3 { margin-top: 26px; font-size: 17px; }
.og-doc p { margin-top: 14px; font-size: 15px; line-height: 1.9; }
.og-doc ul { margin-top: 14px; display: grid; gap: 9px; }
.og-doc ul li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.85;
}
.og-doc ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--og-blue-300);
}
.og-doc__updated {
  padding: 13px 17px;
  border-radius: 11px;
  background: var(--og-blue-50);
  font-size: 13.5px;
  color: var(--og-ink-2);
  font-weight: 600;
}

/* Business plan long-form */
.og-bp .og-bp-chapter {
  margin-top: 52px;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 900;
  line-height: 1.35;
  color: var(--og-ink);
  padding-bottom: 14px;
  border-bottom: 2px solid var(--og-blue-300);
}
.og-bp .og-bp-chapter:first-of-type { margin-top: 8px; }
.og-bp .og-bp-section {
  margin-top: 32px;
  font-size: clamp(17px, 2.2vw, 20px);
  font-weight: 800;
  color: var(--og-blue-700);
}
.og-bp .og-bp-sub {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 800;
  color: var(--og-ink);
}
.og-bp .og-bp-lead {
  padding: 22px 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--og-blue-50) 0%, #fff 100%);
  border: 1px solid var(--og-line);
  border-left: 5px solid var(--og-blue-300);
}
.og-bp .og-bp-lead p { margin-top: 12px; font-size: 15.5px; }
.og-bp .og-bp-lead p:first-child { margin-top: 0; font-size: 17px; }
.og-bp .og-bp-highlight {
  padding: 16px 18px;
  border-radius: 12px;
  background: var(--og-blue-50);
  font-size: 16px;
  font-weight: 600;
  border: 1px solid rgba(10, 122, 224, 0.15);
}
.og-bp-toc {
  padding: 20px 22px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--og-line);
  box-shadow: var(--og-shadow);
}
.og-bp-toc__title {
  font-size: 15px;
  font-weight: 800;
  color: var(--og-ink);
  margin-bottom: 14px;
}
.og-bp-toc__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px 16px;
}
.og-bp-toc__grid a {
  font-size: 14px;
  font-weight: 600;
  color: var(--og-blue-600);
  padding: 6px 0;
}
.og-bp-toc__grid a:hover { color: var(--og-blue-700); text-decoration: underline; }
.og-bp-timeline {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}
.og-bp-timeline__item {
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid var(--og-line);
  background: #fff;
}
.og-bp-timeline__year {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--og-blue-600);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 10px;
}
.og-bp-timeline__item p { margin-top: 8px; }
.og-bp-timeline__item p:first-of-type { margin-top: 0; }
.og-bp ul li strong { color: var(--og-ink); font-weight: 800; }
.og-bp-links li { padding-left: 0; }
.og-bp-links li::before { display: none; }
.og-bp-links a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--og-blue-50);
  border: 1px solid var(--og-line);
  font-size: 15px;
}
.og-bp-links a:hover {
  background: #fff;
  border-color: var(--og-blue-300);
}

/* --------------------------------------------------------------------------
   30. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1360px) {
  .og-header__inner { gap: 12px; }
  .og-brand { max-width: 210px; }
  .og-nav { gap: 2px; margin-left: 6px; margin-right: 6px; }
  .og-nav a { padding: 8px 7px; font-size: 13px; }
  .og-header__actions .og-btn--sm { padding: 8px 12px; font-size: 12.5px; }
}

@media (max-width: 1240px) {
  .og-brand__tag { display: none; }
  .og-brand { max-width: 180px; }
  .og-nav a { padding: 8px 6px; font-size: 12.5px; }
  .og-nav a[href="help.html"] { display: none; }
}

@media (max-width: 1120px) {
  .og-nav a[href="about.html"] { display: none; }
}

@media (max-width: 1024px) {
  .og-nav { display: none; }
  .og-menu-btn { display: block; }
  .og-brand { max-width: none; flex: 1 1 auto; }
  .og-header__actions .og-btn { display: none; }
  .og-header-lang--mobile-hide { display: none !important; }
  .og-drawer__lang { display: block; }
  .og-hero__inner { grid-template-columns: 1fr; gap: 40px; padding: 58px 0 52px; }
  .og-hero__visual { min-height: 340px; order: -1; }
  .og-globe { width: min(88%, 380px); }
  .og-stats { grid-template-columns: repeat(2, 1fr); }
  .og-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .og-adv { grid-template-columns: repeat(2, 1fr); }
  .og-audience { grid-template-columns: repeat(2, 1fr); }
  .og-ind-wall { grid-template-columns: repeat(2, 1fr); }
  .og-ind-card--wide { grid-column: span 2; }
  .og-hero__inner { grid-template-columns: 1fr; gap: 36px; padding: 56px 0 48px; }
  .og-hero__visual { min-height: 340px; }
  .og-hero-mosaic { width: min(100%, 420px); height: 360px; transform: none; margin: 0 auto; }
  .og-chip--a { left: 0; }
  .og-chip--b { right: 0; }
  .og-badges { grid-template-columns: repeat(3, 1fr); }
  .og-steps { grid-template-columns: repeat(2, 1fr); }
  .og-arts { grid-template-columns: repeat(2, 1fr); }
  .og-regions { grid-template-columns: repeat(2, 1fr); }
  .og-plans { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .og-feat { grid-template-columns: 1fr; gap: 34px; padding: 48px 0; }
  .og-feat--rev .og-feat__media { order: 0; }
  .og-form-wrap { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
  .og-footer__top { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

@media (max-width: 768px) {
  .og-section { padding: 62px 0; }
  .og-section--tight { padding: 46px 0; }
  .og-wrap { width: calc(100% - 40px); }
  .og-head { margin-bottom: 38px; }
  .og-grid--2, .og-grid--3, .og-grid--4 { grid-template-columns: 1fr; }
  .og-pains { grid-template-columns: 1fr; }
  .og-adv { grid-template-columns: 1fr; }
  .og-audience { grid-template-columns: 1fr; }
  .og-ind-wall { grid-template-columns: 1fr; }
  .og-ind-card--wide { grid-column: span 1; }
  .og-hero-mosaic { height: 300px; }
  .og-chip { font-size: 11px; padding: 7px 10px; }
  .og-regions { grid-template-columns: 1fr; }
  .og-arts { grid-template-columns: 1fr; }
  .og-steps { grid-template-columns: 1fr; }
  .og-badges { grid-template-columns: repeat(2, 1fr); }
  .og-sol { grid-template-columns: 1fr; padding: 26px 22px; gap: 24px; }
  .og-stats { grid-template-columns: repeat(2, 1fr); }
  .og-mcta { display: flex; }
  .og-totop { bottom: 82px; }
  body { padding-bottom: 0; }
  .og-hero__visual { min-height: 290px; }
  .og-chip { font-size: 11.5px; padding: 7px 11px; }
  .og-chip--a { left: -8px; }
  .og-chip--b { right: -8px; }
  .og-field--2 { grid-template-columns: 1fr; }
  .og-cta { padding: 58px 0; }
  .og-phero { padding: 52px 0 46px; }
  .og-card { padding: 24px 22px; }
  .og-footer__top { grid-template-columns: 1fr; gap: 26px; }
  .og-footer { padding-bottom: 92px; }
  .og-cookie-bar__inner { flex-direction: column; align-items: stretch; }
  .og-cookie-bar__btns { width: 100%; }
  .og-cookie-bar__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .og-access-modal { width: calc(100% - 36px); padding: 22px 20px 18px; }
  .og-access-modal__head { flex-wrap: wrap; gap: 10px; }
  .og-access-modal__actions { width: 100%; justify-content: flex-end; }
}

@media (max-width: 480px) {
  .og-wrap { width: calc(100% - 36px); }
  .og-brand__name { font-size: 15px; }
  .og-brand__tag { display: none; }
  .og-header__inner { gap: 10px; }
  .og-hero__cta .og-btn { width: 100%; }
  .og-cta__btns .og-btn { width: 100%; }
}

/* ========================================================= compliance overlays */
.og-access-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6, 18, 31, .58);
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s ease, visibility .24s ease;
}
.og-access-backdrop.is-open { opacity: 1; visibility: visible; }

.og-access-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 201;
  width: min(440px, calc(100% - 48px));
  padding: 24px 24px 20px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(6, 18, 31, .28);
  transform: translate(-50%, -48%) scale(.96);
  opacity: 0;
  visibility: hidden;
  transition: opacity .26s ease, transform .26s ease, visibility .26s ease;
}
.og-access-modal.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.og-access-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.og-access-modal__head h2 {
  margin: 0;
  flex: 1;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
  color: var(--og-ink);
  letter-spacing: -.02em;
}
.og-access-modal__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: none;
}
.og-access-modal__hub {
  /* 跨境访问提示弹窗内「商家中心/登录」入口已隐藏（保留关闭 + 继续访问） */
  display: none !important;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 102, 204, .28);
  background: rgba(0, 102, 204, .06);
  color: var(--og-blue);
  font-size: 12.5px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.og-access-modal__hub:hover {
  background: rgba(0, 102, 204, .12);
  color: var(--og-blue-700);
}
.og-access-modal__close {
  flex: none;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--og-line);
  border-radius: 10px;
  background: #fff;
  color: var(--og-ink-2);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.og-access-modal__close:hover { background: var(--og-soft); }
.og-access-modal__body {
  margin: 0 0 18px;
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--og-ink-2);
}
.og-access-modal__continue {
  display: block;
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 999px;
  background: #0d1523;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}
.og-access-modal__continue:hover { background: #1a2438; }
.og-access-modal__continue:active { transform: scale(.985); }
.og-access-modal__mute {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--og-ink-2);
  cursor: pointer;
  user-select: none;
}
.og-access-modal__mute input {
  width: 16px;
  height: 16px;
  accent-color: var(--og-blue);
}

.og-cookie-bar {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 190;
  width: min(560px, calc(100% - 24px));
  margin-bottom: max(12px, env(safe-area-inset-bottom));
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(6, 18, 31, .22);
  transform: translate(-50%, 120%);
  opacity: 0;
  visibility: hidden;
  transition: transform .28s cubic-bezier(.22, .8, .3, 1), opacity .24s ease, visibility .24s ease;
}
.og-cookie-bar.is-open {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}
.og-cookie-bar__inner { display: flex; flex-direction: column; gap: 14px; }
.og-cookie-bar__main p {
  margin: 0 0 14px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--og-ink-2);
}
.og-cookie-bar__main a {
  color: var(--og-blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.og-cookie-bar__btns { display: flex; flex-direction: column; gap: 10px; }
.og-cookie-bar__pair { display: flex; gap: 10px; }
.og-cookie-btn {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 999px;
  background: #0d1523;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background .18s ease;
}
.og-cookie-btn:hover { background: #1a2438; }
.og-cookie-btn--wide { width: 100%; margin-top: 4px; }
.og-cookie-bar__custom p {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--og-ink-2);
}
.og-cookie-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 13.5px;
  color: var(--og-ink);
}
.og-cookie-opt input { accent-color: var(--og-blue); }
body.og-access-open { overflow: hidden; }
body.og-cookie-open { padding-bottom: calc(120px + env(safe-area-inset-bottom)); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .og-reveal { opacity: 1; transform: none; }
}

@media print {
  .og-header, .og-drawer, .og-drawer-backdrop, .og-mcta, .og-totop, .og-cta,
  .og-access-backdrop, .og-access-modal, .og-cookie-bar { display: none !important; }
  body { color: #000; }
}

/* Homepage · business management & merchant shop blocks */
.og-hero__bizline {
  margin: 10px 0 0;
  font-size: 15px;
  font-weight: 800;
  color: var(--og-blue);
  letter-spacing: .01em;
}
.og-hero__slogan {
  margin: 8px 0 0;
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 900;
  color: var(--og-ink);
  letter-spacing: -.02em;
}
.og-hero__slogan-en {
  margin: 6px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--og-muted);
  letter-spacing: .04em;
}
.og-brand-band {
  background: linear-gradient(180deg, #fff 0%, #f4f8fd 100%);
  border-bottom: 1px solid var(--og-line-2);
  padding: 28px 0;
}
.og-brand-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.og-brand-band__copy {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 260px;
}
.og-brand-band__logo {
  width: 72px;
  height: 72px;
  flex: none;
  border-radius: 16px;
  box-shadow: var(--og-shadow);
}
.og-brand-band__title { margin: 0; font-size: 22px; font-weight: 900; }
.og-brand-band__sub {
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--og-ink-2);
}
.og-brand-band__en {
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--og-muted);
  letter-spacing: .06em;
}
.og-brand-pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.og-brand-pillars li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 140px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--og-line);
  box-shadow: var(--og-shadow);
}
.og-brand-pillars__icon { font-size: 20px; line-height: 1; }
.og-brand-pillars b { font-size: 14px; }
.og-brand-pillars span { font-size: 12px; color: var(--og-muted); line-height: 1.4; }
.og-head__sub {
  margin-top: 10px;
  max-width: 820px;
  color: var(--og-muted);
  font-size: 15px;
  line-height: 1.8;
}
.og-trust-gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.og-trust-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--og-line);
  background: #0b1524;
  box-shadow: var(--og-shadow-lg);
  min-height: 240px;
}
.og-trust-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}
.og-trust-card:hover img {
  transform: scale(1.02);
  filter: saturate(1.02);
}
.og-trust-card__cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 18px 16px;
  background: linear-gradient(180deg, rgba(6, 18, 31, 0), rgba(6, 18, 31, .88));
  color: #fff;
}
.og-trust-card__cap b {
  display: block;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -.01em;
}
.og-trust-card__cap span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .86);
}
.og-trust-card--hero { grid-column: span 6; min-height: 340px; }
.og-trust-card--hero img { min-height: 340px; }
.og-trust-card--small { grid-column: span 4; min-height: 260px; }
.og-trust-card--small img { min-height: 260px; }
.og-platform__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 32px;
  align-items: center;
}
.og-platform__modules {
  margin: 16px 0 20px;
  padding-left: 18px;
  color: var(--og-ink-2);
  line-height: 1.8;
  font-size: 14px;
}
.og-dash {
  display: grid;
  grid-template-columns: 120px 1fr;
  min-height: 280px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--og-line);
  background: #fff;
  box-shadow: var(--og-shadow-blue);
}
.og-dash__side {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 10px;
  background: #0b1f33;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 700;
}
.og-dash__side span { padding: 8px 10px; border-radius: 8px; }
.og-dash__side .is-on { background: rgba(0, 102, 204, .35); color: #fff; }
.og-dash__main { padding: 16px; display: flex; flex-direction: column; gap: 14px; }
.og-dash__kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.og-dash__kpis div {
  padding: 10px 8px;
  border-radius: 10px;
  background: var(--og-soft);
  text-align: center;
}
.og-dash__kpis b { display: block; font-size: 15px; color: var(--og-blue); }
.og-dash__kpis span { font-size: 10px; color: var(--og-muted); }
.og-dash__chart {
  flex: 1;
  min-height: 120px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(0, 102, 204, .08), transparent 70%),
    repeating-linear-gradient(90deg, rgba(0, 102, 204, .12) 0, rgba(0, 102, 204, .12) 1px, transparent 1px, transparent 36px);
  border: 1px solid var(--og-line-2);
}
.og-why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.og-why-card {
  padding: 18px 16px;
  border-radius: 16px;
  border: 1px solid var(--og-line);
  background: #fff;
  box-shadow: var(--og-shadow);
}
.og-why-card__icon { font-size: 26px; display: block; margin-bottom: 8px; }
.og-why-card h3 { margin: 0 0 8px; font-size: 15px; }
.og-why-card p { margin: 0; font-size: 13px; color: var(--og-muted); line-height: 1.6; }
.og-biz-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.og-biz-card {
  padding: 20px 18px;
  border-radius: 16px;
  border: 1px solid var(--og-line);
  background: #fff;
  box-shadow: var(--og-shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.og-biz-card__icon { font-size: 28px; }
.og-biz-card h3 { margin: 0; font-size: 17px; }
.og-biz-card p { margin: 0; flex: 1; font-size: 13px; color: var(--og-muted); line-height: 1.6; }
.og-biz-card a { font-size: 13px; font-weight: 800; color: var(--og-blue); text-decoration: none; }
.og-biz-card a:hover { text-decoration: underline; }
.og-merchant-block {
  background: linear-gradient(135deg, rgba(0, 102, 204, .06), rgba(52, 199, 89, .04));
}
.og-private-shop {
  background: linear-gradient(135deg, rgba(0, 102, 204, .04), rgba(6, 18, 31, .02));
}
.og-merchant-block__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}
.og-merchant-block__lead {
  margin: 12px 0 16px;
  color: var(--og-ink-2);
  line-height: 1.75;
  font-size: 15px;
}
.og-merchant-steps {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.og-merchant-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .85);
  border: 1px solid var(--og-line);
  font-size: 14px;
}
.og-merchant-steps b {
  flex: none;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--og-blue);
  color: #fff;
  font-size: 12px;
}
.og-merchant-block__cta { display: flex; flex-wrap: wrap; gap: 10px; }
.og-private-shop__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 18px;
}
.og-private-shop__card {
  padding: 18px 18px 16px;
  border-radius: 18px;
  border: 1px solid var(--og-line);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--og-shadow);
}
.og-private-shop__card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.5;
}
.og-private-shop__card p {
  margin: 0;
  color: var(--og-muted);
  font-size: 13px;
  line-height: 1.7;
}
.og-private-shop__card small {
  display: block;
  margin-top: 10px;
  color: var(--og-muted);
  font-size: 11.5px;
  line-height: 1.6;
}
.og-private-shop__banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0066cc, #0a7ae0);
  color: #fff;
  box-shadow: var(--og-shadow-blue);
}
.og-private-shop__banner strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 900;
}
.og-private-shop__banner p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  opacity: .95;
}
.og-private-shop__banner-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.og-private-shop__banner-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .12);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.og-private-shop__fineprint {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--og-muted);
  font-size: 12px;
  line-height: 1.8;
}
.og-private-shop__fineprint li + li { margin-top: 6px; }
.og-private-shop__visual { align-self: stretch; }
.og-store-reviews {
  background: linear-gradient(135deg, rgba(6, 18, 31, .02), rgba(0, 102, 204, .03));
}
.og-review-banner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}
.og-review-banner__copy {
  padding: 18px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--og-line);
  box-shadow: var(--og-shadow);
}
.og-review-banner__copy--accent {
  background: linear-gradient(135deg, #0066cc, #0a7ae0);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--og-shadow-blue);
}
.og-review-banner__copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 900;
}
.og-review-banner__copy p {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
}
.og-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.og-review-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--og-line);
  background: #fff;
  box-shadow: var(--og-shadow);
}
.og-review-card__tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--og-blue-50);
  color: var(--og-blue-700);
  font-size: 12px;
  font-weight: 800;
}
.og-review-card__stars {
  color: #f4a000;
  letter-spacing: 1px;
  font-size: 15px;
  line-height: 1;
}
.og-review-card p {
  margin: 0;
  flex: 1;
  color: var(--og-ink-2);
  font-size: 13.5px;
  line-height: 1.8;
}
.og-review-card footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 8px;
  border-top: 1px solid var(--og-line-2);
}
.og-review-card footer b {
  font-size: 13px;
  color: var(--og-ink);
}
.og-review-card footer span {
  font-size: 12px;
  color: var(--og-muted);
}
.og-review-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 102, 204, .08), rgba(52, 199, 89, .08));
  border: 1px solid var(--og-line);
}
.og-review-cta p {
  margin: 0;
  color: var(--og-ink-2);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 700;
}
.og-review-banner--mini {
  margin-top: 18px;
}
.og-merchant-mock__shop {
  padding: 22px 18px;
  border-radius: 20px;
  background: linear-gradient(160deg, #0066cc, #0a7ae0);
  color: #fff;
  box-shadow: var(--og-shadow-blue);
}
.og-merchant-mock__name { margin: 0 0 14px; font-size: 18px; font-weight: 900; }
.og-merchant-mock__item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  font-size: 14px;
}
.og-merchant-mock__item b { font-size: 15px; }
.og-merchant-mock__btn {
  margin-top: 16px;
  width: 100%;
  padding: 12px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--og-blue);
  font-weight: 900;
  font-size: 14px;
}
.og-stats-band {
  background: linear-gradient(135deg, #0066cc, #0a7ae0);
  color: #fff;
  padding: 28px 0 12px;
}
.og-stats-band__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.og-stats-band__inner b {
  display: block;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 900;
}
.og-stats-band__inner span { font-size: 13px; opacity: .88; }
.og-stats-band__note {
  margin: 12px auto 0;
  text-align: center;
  font-size: 11px;
  opacity: .75;
}
.og-price-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.og-price-preview__card {
  position: relative;
  padding: 22px 18px;
  border-radius: 16px;
  border: 1px solid var(--og-line);
  background: #fff;
  box-shadow: var(--og-shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.og-price-preview__card--hot {
  border-color: var(--og-blue);
  box-shadow: var(--og-shadow-blue);
}
.og-price-preview__tag {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--og-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}
.og-price-preview__card h3 { margin: 0; font-size: 18px; }
.og-price-preview__price { margin: 0; }
.og-price-preview__price b { font-size: 28px; color: var(--og-blue); }
.og-price-preview__card p { margin: 0; flex: 1; font-size: 13px; color: var(--og-muted); line-height: 1.5; }
.og-price-preview__card a { font-size: 13px; font-weight: 800; color: var(--og-blue); text-decoration: none; }

@media (max-width: 1024px) {
  .og-trust-gallery__grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .og-trust-card--hero,
  .og-trust-card--small { grid-column: span 6; }
  .og-trust-card--hero,
  .og-trust-card--hero img { min-height: 300px; }
  .og-trust-card--small,
  .og-trust-card--small img { min-height: 240px; }
  .og-private-shop__cards { grid-template-columns: 1fr; }
  .og-private-shop__banner { flex-direction: column; align-items: flex-start; }
  .og-private-shop__banner-pills { justify-content: flex-start; }
  .og-review-banner,
  .og-review-grid { grid-template-columns: 1fr; }
  .og-review-cta { flex-direction: column; align-items: flex-start; }
  .og-platform__grid,
  .og-merchant-block__grid { grid-template-columns: 1fr; }
  .og-why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .og-biz-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .og-price-preview { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .og-stats-band__inner { grid-template-columns: repeat(2, 1fr); }
  .og-dash__kpis { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .og-brand-band__inner { flex-direction: column; align-items: flex-start; }
  .og-trust-gallery__grid { grid-template-columns: 1fr; }
  .og-trust-card--hero,
  .og-trust-card--small { grid-column: auto; min-height: 220px; }
  .og-trust-card--hero img,
  .og-trust-card--small img { min-height: 220px; }
  .og-private-shop__banner { padding: 16px; }
  .og-review-card,
  .og-review-banner__copy,
  .og-review-cta { padding: 16px; }
  .og-why-grid,
  .og-biz-grid,
  .og-price-preview { grid-template-columns: 1fr; }
  .og-dash { grid-template-columns: 1fr; }
  .og-dash__side { flex-direction: row; flex-wrap: wrap; }
}
