:root {
  --blue: #2557D6;
  --dark: #111827;
  --text: #374151;
  --muted: #6B7280;
  --soft: #F8FAFC;
  --line: #E5E7EB;
}

* {
  box-sizing: border-box;
}

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

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.breadcrumbs a {
  color: var(--blue);
}

.card h2,
.card h3 {
  margin: 0 0 12px;
}

.card p {
  margin: 0;
  color: var(--text);
  line-height: 1.55;
}

.article {
  max-width: 820px;
}

.article h2 {
  margin: 38px 0 14px;
}

.article p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
}

.cta h2 {
  margin: 0 0 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  font-weight: 550;
  font-size: 14.5px;
  transition: background .15s ease, transform .12s ease;
}

.button:hover {
  background: #1d4ed8;
}

.button:active {
  transform: scale(.98);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 28px, 1120px);
  }

  .topbar {
    min-height: 64px;
  }

  .nav {
    display: none;
  }

  .hero {
    padding: 40px 0 28px;
  }

  h1 {
    font-size: 34px;
    line-height: 1.15;
  }

  .lead {
    font-size: 16px;
    line-height: 1.55;
  }

  .content {
    padding: 28px 0 42px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .card {
    border-radius: 14px;
    padding: 18px;
  }

  .article h2 {
    font-size: 24px;
  }

  .article p {
    font-size: 16px;
  }
}

/* Services page detailed */
.service-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: center;
}

.hero-visual {
  min-height: 360px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 70px rgba(15,23,42,.08);
  border: 1px solid rgba(229,231,235,.8);
}

.kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #EEF4FF;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
}

.section-title {
  max-width: 820px;
  margin: 0 0 18px;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.15;
  letter-spacing: -.04em;
}

.section-lead {
  max-width: 820px;
  margin: 0 0 34px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.5;
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-row {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15,23,42,.03);
}

.service-row-image {
  min-height: 220px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  background-color: var(--soft);
}

.img-buyout { background-image: url("/assets/sections/services-buyout-row.webp"); }
.img-payment { background-image: url("/assets/sections/services-payment-row.webp"); }
.img-check { background-image: url("/assets/sections/services-check-row.webp"); }
.img-delivery { background-image: url("/assets/sections/service-delivery.webp"); }
.img-factory { background-image: url("/assets/sections/service-factory-opt.webp"); }

.service-row h2 {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: -.022em;
}

.service-row p {
  margin: 0 0 14px;
  color: var(--text);
  line-height: 1.55;
}

.service-row ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--text);
  line-height: 1.55;
}

.service-row li + li {
  margin-top: 6px;
}

.service-note {
  margin-top: 32px;
  padding: 24px;
  border-radius: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.service-note h2 {
  margin: 0 0 14px;
  font-size: 26px;
  letter-spacing: -.022em;
}

.service-note p {
  margin: 0;
  color: var(--text);
  line-height: 1.55;
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.scene-card {
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
}

.scene-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--dark);
}

.scene-card span {
  display: block;
  color: var(--muted);
  line-height: 1.55;
}

.link-card {
  display: block;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
}

.link-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--dark);
}

.link-card span {
  display: block;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 760px) {
  .service-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-visual {
    min-height: 230px;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
    border-radius: 14px;
  }

  .service-row-image {
    min-height: 180px;
    border-radius: 14px;
  }

  .service-row h2 {
    font-size: 24px;
  }

  .scene-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== INNER PAGES POLISH 20260607 ========== */
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: #F8FAFC;
  color: #111827;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.page-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(229,231,235,.72);
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
}

.topbar {
  min-height: 76px;
}

.logo {
  display: inline-flex;
  align-items: center;
  width: 164px;
  height: 48px;
  font-size: 0;
  letter-spacing: 0;
}

.logo img {
  display: block;
  width: 164px;
  height: auto;
}

.nav {
  gap: 18px;
  font-size: 14px;
  font-weight: 600;
  color: #273244;
}

.nav a {
  position: relative;
  padding: 10px 0;
}

.nav a:hover {
  color: #2557D6;
}

.hero {
  padding: 64px 0 48px;
  background:
    radial-gradient(circle at 18% 10%, rgba(37,87,214,.10), transparent 34%),
    linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

.breadcrumbs {
  margin-bottom: 20px;
  font-size: 13px;
  color: #7A8494;
}

.kicker {
  margin-bottom: 16px;
  padding: 7px 13px;
  background: rgba(37,87,214,.08);
  color: #2557D6;
  font-size: 13px;
  font-weight: 600;
}

h1 {
  max-width: 760px;
  font-size: clamp(36px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -.04em;
  font-weight: 600;
}

.lead {
  max-width: 700px;
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.5;
  color: #465266;
}

.content {
  padding: 52px 0 64px;
  background: #FFFFFF;
}

.service-hero-grid {
  grid-template-columns: 1.08fr .92fr;
  gap: 18px;
}

.hero-visual {
  min-height: 340px;
  box-shadow: 0 26px 80px rgba(15,23,42,.08);
  border: 1px solid rgba(229,231,235,.9);
}

.section-title {
  max-width: 760px;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -.04em;
}

.section-lead {
  max-width: 760px;
  color: #465266;
  font-size: 16px;
  line-height: 1.5;
}

.service-list {
  gap: 20px;
}

.service-row {
  grid-template-columns: 250px 1fr;
  gap: 24px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(229,231,235,.92);
  box-shadow: 0 14px 42px rgba(15,23,42,.03);
}

.service-row-image {
  min-height: 210px;
  border-radius: 14px;
}

.service-row h2 {
  font-size: 23px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -.022em;
}

.service-row p {
  color: #465266;
  line-height: 1.55;
}

.service-row ul {
  color: #3D485A;
  line-height: 1.55;
}

.service-note {
  border-radius: 16px;
  background: #F8FAFC;
  box-shadow: none;
}

.service-note h2 {
  font-weight: 600;
}

.scene-card,
.link-card,
.card {
  border-radius: 14px;
  border: 1px solid rgba(229,231,235,.92);
  box-shadow: 0 10px 30px rgba(15,23,42,.03);
}

.cta {
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 10%, rgba(37,87,214,.11), transparent 38%),
    #F8FAFC;
}

.footer {
  background: #FFFFFF;
}

@media (max-width: 760px) {
  .topbar {
    min-height: 64px;
  }

  .logo {
    width: 138px;
    height: 42px;
  }

  .logo img {
    width: 138px;
  }

  .hero {
    padding: 38px 0 28px;
  }

  h1 {
    font-size: 34px;
    line-height: 1.15;
  }

  .lead {
    font-size: 16px;
    line-height: 1.55;
  }

  .content {
    padding: 32px 0 48px;
  }

  .service-row {
    padding: 20px;
    border-radius: 14px;
  }

  .service-row-image {
    min-height: 176px;
  }
}

/* ========== INNER PAGE H1 SIZE FIX ========== */
.hero h1 {
  font-size: clamp(32px, 3.5vw, 42px);
  line-height: 1.15;
  letter-spacing: -.04em;
}

@media (max-width: 760px) {
  .hero h1 {
    font-size: 26px;
    line-height: 1.15;
  }
}

/* ========== INNER PAGE TYPOGRAPHY SCALE FIX ========== */
.section-title {
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.2;
  letter-spacing: -.022em;
}

.service-row h2 {
  font-size: 23px;
  line-height: 1.3;
  letter-spacing: -.018em;
}

.service-note h2,
.cta h2 {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -.018em;
}

.article h2 {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -.018em;
}

.card h2,
.card h3 {
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -.018em;
}

.scene-card strong,
.link-card strong {
  font-size: 16px;
  line-height: 1.3;
}

@media (max-width: 760px) {
  .section-title {
    font-size: 25px;
    line-height: 1.2;
  }

  .service-row h2 {
    font-size: 22px;
  }

  .service-note h2,
  .cta h2,
  .article h2 {
    font-size: 22px;
  }

  .card h2,
  .card h3 {
    font-size: 21px;
  }
}

/* ========== SERVICES MOBILE FINAL LAYOUT ========== */
@media (max-width: 760px) {
  body {
    background: #fff;
  }

  .page-header {
    position: sticky;
  }

  .wrap {
    width: min(100% - 28px, 1120px);
  }

  .topbar {
    min-height: 58px;
  }

  .hero {
    padding: 32px 0 24px;
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  }

  .breadcrumbs {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .kicker {
    margin-bottom: 12px;
    padding: 6px 11px;
    font-size: 12px;
  }

  .hero h1 {
    max-width: 330px;
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -.022em;
  }

  .lead {
    max-width: 340px;
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.55;
  }

  .service-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-visual {
    min-height: 160px;
    max-height: 170px;
    box-shadow: 0 14px 38px rgba(15,23,42,.03);
    background-position: center;
  }

  .content {
    padding: 28px 0 42px;
  }

  .section-title {
    max-width: 340px;
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -.018em;
  }

  .section-lead {
    max-width: 340px;
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.55;
  }

  .service-list {
    gap: 16px;
  }

  .service-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(15,23,42,.03);
  }

  .service-row-image {
    min-height: 128px;
    max-height: 140px;
    border-radius: 12px;
    background-position: center;
  }

  .service-row h2 {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -.018em;
  }

  .service-row p {
    margin-bottom: 10px;
    font-size: 14.5px;
    line-height: 1.55;
  }

  .service-row ul {
    margin-top: 10px;
    padding-left: 18px;
    font-size: 14.5px;
    line-height: 1.55;
  }

  .service-row li + li {
    margin-top: 4px;
  }

  .service-note {
    margin-top: 26px;
    padding: 18px;
    border-radius: 14px;
  }

  .service-note h2,
  .cta h2 {
    margin-bottom: 10px;
    font-size: 21px;
    line-height: 1.2;
    letter-spacing: -.018em;
  }

  .service-note p {
    font-size: 14.5px;
    line-height: 1.55;
  }

  .scene-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
  }

  .scene-card,
  .link-card {
    padding: 16px;
    border-radius: 12px;
  }

  .scene-card strong,
  .link-card strong {
    margin-bottom: 6px;
    font-size: 15px;
  }

  .scene-card span,
  .link-card span {
    font-size: 14px;
    line-height: 1.5;
  }

  .cta {
    margin-top: 28px;
    padding: 20px;
    border-radius: 14px;
  }

  .cta p {
    font-size: 14.5px;
    line-height: 1.55;
  }

  .button {
    margin-top: 14px;
    width: 100%;
    min-height: 44px;
    padding: 0 22px;
    font-size: 15px;
  }

  .footer {
    padding: 22px 0;
    font-size: 13px;
    line-height: 1.55;
  }
}

/* ========== INNER LOGO FINAL XS ========== */
.page-header .logo {
  width: 66px;
  height: 24px;
}

.page-header .logo img {
  width: 66px;
  height: auto;
}

/* ========== MOBILE BACK TO TOP BUTTON ========== */
.back-to-top {
  display: none;
}

@media (max-width: 760px) {
  .back-to-top {
    position: fixed;
    right: 16px;
    bottom: 18px;
    z-index: 80;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(229,231,235,.95);
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #2557D6;
    box-shadow: 0 12px 34px rgba(15,23,42,.03);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease;
  }

  .back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .back-to-top svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2.4;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
}

/* ========== INNER HERO IMAGE SHARP FIX ========== */
.hero-visual {
  border-radius: 6px;
}

@media (max-width: 760px) {
  .hero-visual {
    border-radius: 4px;
  }
}

/* ========== INNER DESKTOP NAV AND BREADCRUMBS SIZE FIX ========== */
@media (min-width: 761px) {
  .page-header .nav {
    font-size: 15.5px;
    font-weight: 600;
    gap: 18px;
  }

  .breadcrumbs {
    font-size: 14.5px;
    line-height: 1.4;
  }
}

/* ========== SERVICES DESKTOP LESS CARD-LIKE ========== */
@media (min-width: 761px) {
  .service-list {
    gap: 0;
    border-top: 1px solid rgba(229,231,235,.9);
  }

  .service-row {
    border: 0;
    border-bottom: 1px solid rgba(229,231,235,.9);
    border-radius: 0;
    box-shadow: none;
    padding: 26px 0;
    background: transparent;
  }

  .service-row-image {
    border-radius: 6px;
    min-height: 200px;
    box-shadow: none;
  }

  .service-row h2 {
    margin-top: 2px;
  }

  .service-note {
    box-shadow: none;
    border-radius: 10px;
  }

  .scene-card,
  .link-card {
    box-shadow: none;
    border-radius: 10px;
  }

  .cta {
    border-radius: 11px;
    box-shadow: none;
  }
}

/* ========== INNER DESKTOP WIDTH FIX ========== */
@media (min-width: 761px) {
  .wrap {
    width: min(1200px, calc(100% - 56px));
  }

  .service-hero-grid {
    grid-template-columns: 1.05fr .95fr;
    gap: 40px;
  }

  .service-row {
    grid-template-columns: 300px 1fr;
    gap: 32px;
  }

  .section-title,
  .section-lead {
    max-width: 860px;
  }

  .lead {
    max-width: 760px;
  }
}

/* ========== PLATFORMS PAGE ========== */
.platform-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
}

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

.platform-card {
  padding: 20px;
  border: 1px solid rgba(229,231,235,.92);
  border-radius: 11px;
  background: #fff;
}

.platform-card h2 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.3;
  letter-spacing: -.018em;
}

.platform-card p {
  margin: 0;
  color: #465266;
  line-height: 1.55;
}

.platform-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #3D485A;
  line-height: 1.55;
}

.platform-note {
  margin-top: 36px;
  padding: 18px;
  border-radius: 11px;
  border: 1px solid rgba(229,231,235,.92);
  background: #F8FAFC;
}

.platform-note h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -.018em;
}

.platform-note p {
  margin: 0;
  color: #465266;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .platform-hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .platform-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .platform-card {
    padding: 18px;
    border-radius: 14px;
  }

  .platform-card h2 {
    font-size: 21px;
  }

  .platform-card p,
  .platform-card ul {
    font-size: 14.5px;
    line-height: 1.55;
  }

  .platform-note {
    margin-top: 24px;
    padding: 18px;
    border-radius: 14px;
  }

  .platform-note h2 {
    font-size: 21px;
  }

  .platform-note p {
    font-size: 14.5px;
    line-height: 1.55;
  }
}

/* ========== INNER MOBILE NAVIGATION ========== */
.inner-mobile-back,
.inner-menu-btn,
.inner-mobile-menu-overlay,
.inner-mobile-menu-panel {
  display: none;
}

@media (max-width: 760px) {
  body.inner-menu-open {
    overflow: hidden;
  }

  .page-header .topbar {
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    align-items: center;
    min-height: 58px;
    gap: 8px;
  }

  .page-header .nav {
    display: none;
  }

  .inner-mobile-back {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 10px;
    background: rgba(248,250,252,.92);
    color: #111827;
  }

  .inner-mobile-back svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .page-header .logo {
    justify-self: center;
  }

  .page-header .logo img {
    height: auto !important;
  }

  .inner-menu-btn {
    justify-self: end;
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 0;
    border-radius: 10px;
    background: rgba(248,250,252,.92);
  }

  .inner-menu-btn span {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: #111827;
    transition: transform .18s ease, opacity .18s ease;
  }

  body.inner-menu-open .inner-menu-btn span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.inner-menu-open .inner-menu-btn span:nth-child(2) {
    opacity: 0;
  }

  body.inner-menu-open .inner-menu-btn span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .inner-mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: block;
    background: rgba(15,23,42,.34);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease;
  }

  body.inner-menu-open .inner-mobile-menu-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .inner-mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 91;
    display: block;
    width: min(82vw, 330px);
    height: 100vh;
    padding: 18px 18px 24px;
    background: #fff;
    box-shadow: -24px 0 70px rgba(15,23,42,.03);
    transform: translateX(105%);
    transition: transform .22s ease;
  }

  body.inner-menu-open .inner-mobile-menu-panel {
    transform: translateX(0);
  }

  .inner-mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
  }

  .inner-mobile-menu-logo {
    width: 86px;
    height: auto;
  }

  .inner-mobile-menu-close {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 10px;
    background: #F8FAFC;
    position: relative;
  }

  .inner-mobile-menu-close span {
    position: absolute;
    left: 10px;
    top: 18px;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #111827;
  }

  .inner-mobile-menu-close span:first-child {
    transform: rotate(45deg);
  }

  .inner-mobile-menu-close span:last-child {
    transform: rotate(-45deg);
  }

  .inner-mobile-menu-panel a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(229,231,235,.9);
    color: #111827;
    font-size: 17px;
    font-weight: 600;
  }

  .inner-mobile-menu-about {
    margin-top: 22px;
    padding-top: 18px;
    color: #6B7280;
    font-size: 13px;
    line-height: 1.55;
  }

  .inner-mobile-menu-socials {
    display: flex;
    gap: 10px;
    margin-top: 16px;
  }

  .inner-mobile-menu-socials a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(229,231,235,.9);
    border-radius: 999px;
    background: #F8FAFC;
  }

  .inner-mobile-menu-socials svg {
    width: 19px;
    height: 19px;
    fill: #2557D6;
  }
}

/* ========== INNER MOBILE MENU WIDTH ========== */
@media (max-width: 760px) {
  .inner-mobile-menu-panel {
    width: min(64vw, 240px);
  }
}

/* ========== PLATFORMS DESKTOP LESS CARD-LIKE ========== */
@media (min-width: 761px) {
  .platform-grid {
    display: block;
    border-top: 1px solid rgba(229,231,235,.9);
  }

  .platform-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 32px;
    padding: 24px 0;
    border: 0;
    border-bottom: 1px solid rgba(229,231,235,.9);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .platform-card h2 {
    margin: 0;
    font-size: 23px;
    line-height: 1.2;
  }

  .platform-card p {
    margin: 0 0 12px;
    max-width: 760px;
  }

  .platform-card ul {
    margin: 12px 0 0;
    max-width: 760px;
  }

  .platform-note {
    border-radius: 10px;
    box-shadow: none;
  }
}

/* ========== PLATFORMS DETAIL CONTENT ========== */
.platform-card-body {
  display: grid;
  gap: 16px;
}

.platform-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 4px;
}

.platform-mini {
  padding: 15px 16px;
  border-radius: 10px;
  background: #F8FAFC;
  border: 1px solid rgba(229,231,235,.86);
}

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

.platform-mini span {
  display: block;
  color: #5B6475;
  font-size: 14.5px;
  line-height: 1.5;
}

@media (min-width: 761px) {
  .platform-card {
    grid-template-columns: 240px 1fr;
  }

  .platform-card p {
    font-size: 17px;
    line-height: 1.55;
  }

  .platform-card ul {
    font-size: 16px;
    line-height: 1.55;
  }
}

@media (max-width: 760px) {
  .platform-card-body {
    gap: 12px;
  }

  .platform-mini-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .platform-mini {
    padding: 14px;
    border-radius: 11px;
  }

  .platform-mini strong {
    font-size: 14px;
  }

  .platform-mini span {
    font-size: 14px;
  }
}

/* ========== PLATFORM MINI DESKTOP TEXT-LIKE / MOBILE ICON SLOT ========== */
@media (min-width: 761px) {
  .platform-mini-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 8px;
    border-top: 1px solid rgba(229,231,235,.75);
  }

  .platform-mini {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid rgba(229,231,235,.75);
    border-radius: 0;
    background: transparent;
  }

  .platform-mini strong {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #111827;
  }

  .platform-mini span {
    font-size: 15.5px;
    line-height: 1.55;
    color: #5B6475;
  }
}

@media (max-width: 760px) {
  .platform-card {
    position: relative;
  }

  .platform-card::before {
    content: "";
    display: block;
    width: 34px;
    height: 34px;
    margin-bottom: 12px;
    border-radius: 8px;
    background:
      linear-gradient(135deg, rgba(37,87,214,.16), rgba(37,87,214,.04));
    border: 1px solid rgba(37,87,214,.14);
  }

  .platform-mini {
    display: grid;
    grid-template-columns: 30px 1fr;
    column-gap: 10px;
    align-items: start;
  }

  .platform-mini::before {
    content: "";
    width: 22px;
    height: 22px;
    margin-top: 2px;
    border-radius: 999px;
    background: rgba(37,87,214,.10);
    border: 1px solid rgba(37,87,214,.14);
  }

  .platform-mini strong,
  .platform-mini span {
    grid-column: 2;
  }
}

/* ========== INNER MOBILE HEADER COMPACT + REMOVE MINI ICONS ========== */
@media (max-width: 760px) {
  .page-header .topbar {
    min-height: 50px;
    grid-template-columns: 38px 1fr 38px;
  }

  .inner-mobile-back,
  .inner-menu-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .inner-menu-btn span {
    width: 18px;
  }

  .page-header .logo {
    width: 54px;
    height: 20px;
  }

  .page-header .logo img {
    width: 54px;
  }

  .platform-card::before {
    display: none !important;
  }

  .platform-mini {
    display: block;
    padding: 14px 16px;
  }

  .platform-mini::before {
    display: none !important;
  }

  .platform-mini strong,
  .platform-mini span {
    grid-column: auto;
  }
}

/* ========== PLATFORM TITLE MARKS + LOGOS FINAL ========== */
.platform-card h2 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.platform-mark {
  flex: 0 0 auto;
  display: block;
  width: 126px;
  height: 62px;
  background-color: #F8FAFC;
  background-size: 76% auto;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #DDE3EA;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(15,23,42,.06);
}

.platform-mark::after {
  display: none !important;
}

.mark-1688 {
  background-image: url("/assets/platforms/logos/1688-long-logo.webp");
  background-size: 78% auto;
}

.mark-taobao {
  background-image: url("/assets/platforms/logos/taobao-logo.svg");
  background-size: 74% auto;
}

.mark-pdd {
  background-image: url("/assets/platforms/logos/pinduoduo-logo.svg");
  background-size: 74% auto;
}

.mark-jd {
  background-image: url("/assets/platforms/logos/poizon-logo.webp");
  background-size: 76% auto;
}

.mark-supplier {
  background-image: url("/assets/platforms/supplier.svg?v=2");
}

.mark-search {
  background-image: url("/assets/platforms/search.svg?v=2");
}

@media (min-width: 761px) {
  .platform-card h2 {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 126px;
    text-align: center;
  }
}

@media (max-width: 760px) {
  .platform-card h2 {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
  }

  .platform-mark {
    width: 78px;
    height: 48px;
    border-radius: 12px;
  }

  .platform-mini-grid {
    display: none !important;
  }

  .platform-card::before,
  .platform-mini::before {
    display: none !important;
  }
}

/* ========== INSPECTION PAGE ========== */
.inspection-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(229,231,235,.9);
}

.check-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(229,231,235,.9);
}

.check-row h2 {
  margin: 0;
  font-size: 23px;
  line-height: 1.3;
  letter-spacing: -.018em;
}

.check-row p {
  margin: 0;
  max-width: 780px;
  color: #465266;
  font-size: 16px;
  line-height: 1.5;
}

.check-row ul {
  margin: 14px 0 0;
  padding-left: 20px;
  max-width: 780px;
  color: #3D485A;
  font-size: 16px;
  line-height: 1.55;
}

.inspection-warning {
  margin-top: 36px;
  padding: 18px;
  border-radius: 11px;
  border: 1px solid rgba(229,231,235,.92);
  background: #F8FAFC;
}

.inspection-warning h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -.018em;
}

.inspection-warning p {
  margin: 0;
  color: #465266;
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .inspection-hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .check-list {
    border-top: 0;
    gap: 14px;
  }

  .check-row {
    display: block;
    padding: 18px;
    border: 1px solid rgba(229,231,235,.92);
    border-radius: 14px;
    background: #fff;
  }

  .check-row h2 {
    margin-bottom: 10px;
    font-size: 21px;
  }

  .check-row p,
  .check-row ul {
    font-size: 14.5px;
    line-height: 1.55;
  }

  .check-row ul {
    margin-top: 10px;
    padding-left: 18px;
  }

  .inspection-warning {
    margin-top: 24px;
    padding: 18px;
    border-radius: 14px;
  }

  .inspection-warning h2 {
    font-size: 21px;
  }

  .inspection-warning p {
    font-size: 14.5px;
    line-height: 1.55;
  }
}

/* ========== DELIVERY PAGE ========== */
.delivery-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
}

.delivery-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(229,231,235,.9);
}

.delivery-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(229,231,235,.9);
}

.delivery-row h2 {
  margin: 0;
  font-size: 23px;
  line-height: 1.3;
  letter-spacing: -.018em;
}

.delivery-row p {
  margin: 0;
  max-width: 780px;
  color: #465266;
  font-size: 16px;
  line-height: 1.5;
}

.delivery-row ul {
  margin: 14px 0 0;
  padding-left: 20px;
  max-width: 780px;
  color: #3D485A;
  font-size: 16px;
  line-height: 1.55;
}

.delivery-note {
  margin-top: 36px;
  padding: 18px;
  border-radius: 11px;
  border: 1px solid rgba(229,231,235,.92);
  background: #F8FAFC;
}

.delivery-note h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -.018em;
}

.delivery-note p {
  margin: 0;
  color: #465266;
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .delivery-hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .delivery-list {
    border-top: 0;
    gap: 14px;
  }

  .delivery-row {
    display: block;
    padding: 18px;
    border: 1px solid rgba(229,231,235,.92);
    border-radius: 14px;
    background: #fff;
  }

  .delivery-row h2 {
    margin-bottom: 10px;
    font-size: 21px;
  }

  .delivery-row p,
  .delivery-row ul {
    font-size: 14.5px;
    line-height: 1.55;
  }

  .delivery-row ul {
    margin-top: 10px;
    padding-left: 18px;
  }

  .delivery-note {
    margin-top: 24px;
    padding: 18px;
    border-radius: 14px;
  }

  .delivery-note h2 {
    font-size: 21px;
  }

  .delivery-note p {
    font-size: 14.5px;
    line-height: 1.55;
  }
}

/* ========== ABOUT PAGE ========== */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
}

.about-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(229,231,235,.9);
}

.about-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(229,231,235,.9);
}

.about-row h2 {
  margin: 0;
  font-size: 23px;
  line-height: 1.3;
  letter-spacing: -.018em;
}

.about-row p {
  margin: 0;
  max-width: 800px;
  color: #465266;
  font-size: 16px;
  line-height: 1.5;
}

.about-row ul {
  margin: 14px 0 0;
  padding-left: 20px;
  max-width: 800px;
  color: #3D485A;
  font-size: 16px;
  line-height: 1.55;
}

.about-note {
  margin-top: 36px;
  padding: 18px;
  border-radius: 11px;
  border: 1px solid rgba(229,231,235,.92);
  background: #F8FAFC;
}

.about-note h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -.018em;
}

.about-note p {
  margin: 0;
  color: #465266;
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-list {
    border-top: 0;
    gap: 14px;
  }

  .about-row {
    display: block;
    padding: 18px;
    border: 1px solid rgba(229,231,235,.92);
    border-radius: 14px;
    background: #fff;
  }

  .about-row h2 {
    margin-bottom: 10px;
    font-size: 21px;
  }

  .about-row p,
  .about-row ul {
    font-size: 14.5px;
    line-height: 1.55;
  }

  .about-row ul {
    margin-top: 10px;
    padding-left: 18px;
  }

  .about-note {
    margin-top: 24px;
    padding: 18px;
    border-radius: 14px;
  }

  .about-note h2 {
    font-size: 21px;
  }

  .about-note p {
    font-size: 14.5px;
    line-height: 1.55;
  }
}

/* ========== BLOG PAGE ========== */
.blog-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(229,231,235,.9);
}

.blog-card {
  padding: 30px 28px 30px 0;
  border-bottom: 1px solid rgba(229,231,235,.9);
}

.blog-card:nth-child(odd) {
  padding-right: 36px;
}

.blog-card:nth-child(even) {
  padding-left: 36px;
  border-left: 1px solid rgba(229,231,235,.9);
}

.blog-card .tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(37,87,214,.08);
  color: #2557D6;
  font-size: 13px;
  font-weight: 600;
}

.blog-card h2 {
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.3;
  letter-spacing: -.018em;
}

.blog-card p {
  margin: 0;
  color: #465266;
  font-size: 15px;
  line-height: 1.55;
}

.blog-note {
  margin-top: 36px;
  padding: 18px;
  border-radius: 11px;
  border: 1px solid rgba(229,231,235,.92);
  background: #F8FAFC;
}

.blog-note h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -.018em;
}

.blog-note p {
  margin: 0;
  color: #465266;
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .blog-hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    border-top: 0;
  }

  .blog-card,
  .blog-card:nth-child(odd),
  .blog-card:nth-child(even) {
    padding: 18px;
    border: 1px solid rgba(229,231,235,.92);
    border-radius: 14px;
    background: #fff;
  }

  .blog-card h2 {
    font-size: 21px;
  }

  .blog-card p {
    font-size: 14.5px;
    line-height: 1.55;
  }

  .blog-note {
    margin-top: 24px;
    padding: 18px;
    border-radius: 14px;
  }

  .blog-note h2 {
    font-size: 21px;
  }

  .blog-note p {
    font-size: 14.5px;
    line-height: 1.55;
  }
}

/* ========== BLOG NOTE COMPACT INLINE ========== */
@media (min-width: 761px) {
  .blog-note {
    margin-top: 26px !important;
    padding: 16px 0 0 !important;
    border: 0 !important;
    border-top: 1px solid rgba(229,231,235,.75) !important;
    background: transparent !important;
  }

  .blog-note h2 {
    margin: 0 0 8px !important;
    font-size: 20px !important;
    line-height: 1.3 !important;
    letter-spacing: -.012em !important;
    font-weight: 600 !important;
  }

  .blog-note p {
    max-width: 860px !important;
    font-size: 16px !important;
    line-height: 1.55 !important;
    color: #5B6475 !important;
  }
}

@media (max-width: 760px) {
  .blog-note {
    margin-top: 18px !important;
    padding: 14px 0 0 !important;
    border: 0 !important;
    border-top: 1px solid rgba(229,231,235,.75) !important;
    border-radius: 0 !important;
    background: transparent !important;
  }

  .blog-note h2 {
    margin-bottom: 6px !important;
    font-size: 18px !important;
  }

  .blog-note p {
    font-size: 14.5px !important;
    line-height: 1.55 !important;
  }
}

/* ========== BLOG NOTE INLINE DISCLAIMER FINAL ========== */
.blog-note-inline {
  margin-top: 20px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  color: #6B7280 !important;
  font-size: 14.5px !important;
  line-height: 1.55 !important;
}

@media (min-width: 761px) {
  .blog-note-inline {
    max-width: 980px;
    font-size: 15px !important;
  }
}

@media (max-width: 760px) {
  .blog-note-inline {
    margin-top: 14px !important;
    font-size: 13.5px !important;
    line-height: 1.5 !important;
  }
}

/* ========== BLOG INLINE NOTE MOBILE WIDTH FIX ========== */
@media (max-width: 760px) {
  .blog-note-inline {
    margin-left: 18px !important;
    margin-right: 18px !important;
    max-width: calc(100% - 36px) !important;
  }
}

/* ========== BLOG INLINE NOTE DOT ========== */
.blog-note-inline {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.blog-note-dot {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-top: .62em;
  border-radius: 999px;
  background: #2557D6;
  opacity: .72;
}

@media (max-width: 760px) {
  .blog-note-inline {
    gap: 9px;
  }

  .blog-note-dot {
    width: 6px;
    height: 6px;
    margin-top: .58em;
  }
}

/* ========== INNER BREADCRUMBS DESKTOP HIDE / MOBILE KEEP ========== */
@media (min-width: 761px) {
  .breadcrumbs {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .breadcrumbs {
    display: block !important;
  }
}

/* ========== PAGE HERO IMAGES STABLE PATHS ========== */
.hero-visual.services-main {
  background-image: url("/assets/pages/services-hero.webp");
}

.hero-visual.platforms-main {
  background-image: url("/assets/pages/platforms-hero.webp");
}

.hero-visual.inspection-main {
  background-image: url("/assets/pages/inspection-hero.webp");
}

.hero-visual.delivery-main {
  background-image: url("/assets/pages/delivery-hero.webp");
}

.hero-visual.about-main {
  background-image: url("/assets/pages/about-hero.webp");
}

.hero-visual.blog-main {
  background-image: url("/assets/pages/blog-hero.webp");
}

/* ========== INNER DESKTOP HEADER LAYOUT RESTORE ========== */
@media (min-width: 761px) {
  .page-header .topbar {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }

  .page-header .nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    margin-left: auto;
  }

  .page-header .nav a {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
  }

  .page-header .logo {
    flex: 0 0 auto;
  }
}

/* ========== INNER DESKTOP HEADER HEIGHT + CTA GAP RESTORE ========== */
@media (min-width: 761px) {
  .page-header .topbar {
    min-height: 64px;
  }

  .cta {
    margin-top: 32px;
  }
}

/* ========== INNER CTA CARD RESTORE ========== */
.cta {
  margin-top: 32px;
  padding: 24px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 12% 10%, rgba(37,87,214,.11), transparent 38%),
    #F8FAFC;
  border: 1px solid rgba(229,231,235,.92);
}

.cta h2 {
  margin: 0 0 12px;
}

.cta p {
  margin: 0 0 20px;
}

@media (max-width: 760px) {
  .cta {
    margin-top: 28px;
    padding: 20px;
    border-radius: 14px;
  }
}

/* ========== INNER HERO KICKER GAP TIGHTEN ========== */
@media (min-width: 761px) {
  .kicker {
    margin-bottom: 12px;
  }
}

/* ========== INNER HERO KICKER GAP FINAL TIGHT ========== */
@media (min-width: 761px) {
  .hero .kicker {
    margin-bottom: 6px !important;
  }
}

/* ========== INNER HERO TITLE STACK RESTORE ========== */
.hero h1 {
  margin: 0;
}

.hero .lead {
  margin: 16px 0 0;
}
