/* === RefurbishBox theme styles === */

/* =====================================================================
   RefurbishBox — Colors & Type
   Calibrated against refurbishbox.com (2026 screens).
   ===================================================================== */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Open+Sans:wght@400;500;600;700&family=Caveat:wght@500;700&family=JetBrains+Mono:wght@400;500&family=Noto+Sans+SC:wght@500;700&display=swap');

:root {
  /* ============ RAW PALETTE ============ */

  /* GREEN — primary brand. Pulled from chat bubble, accent strip,
     hero stripe, icon circles, and the About panel on the live site. */
  --green-900: #0E3D22;
  --green-800: #145630;
  --green-700: #1B7340;   /* primary brand green */
  --green-600: #1F8A4A;
  --green-500: #2EA055;
  --green-200: #B8DEC5;
  --green-100: #E2F1E7;
  --green-050: #F1F8F3;

  /* PAPER — warm cream surfaces. The brand's previous coffee tone
     was preferred; we keep it for the page and tinted sections,
     and use cool INK only for the footer and dark UI. */
  --paper-000: #FFFFFF;
  --paper-050: #FAF7F2;   /* default page bg */
  --paper-100: #F3EEE6;
  --paper-200: #E6DFD3;
  --paper-300: #CFC6B7;

  /* INK — near-black headings + dark footer. */
  --ink-900: #0F1417;
  --ink-800: #1A2227;    /* footer bg */
  --ink-700: #2A343B;
  --ink-600: #424B52;
  --ink-500: #5F6A72;
  --ink-400: #8A929A;
  --ink-300: #C0C6CC;
  --ink-200: #DDE1E5;
  --ink-100: #EEF1F3;
  --ink-050: #F6F8F9;
  --ink-000: #FFFFFF;

  /* KRAFT — reserved for the SHIELD LOGO and the small services
     "marker" squares. Not a UI surface color. */
  --kraft-900: #422A17;   /* shield body */
  --kraft-700: #8E6438;
  --kraft-500: #B58455;   /* logo box face */
  --kraft-200: #CFB99B;   /* logo box highlight */
  --kraft-100: #E2D3BB;
  --kraft-050: #F4ECDD;

  /* SIGNAL — the strike/extra-cost rust-red used on the pricing list. */
  --rust-500: #C03A2B;
  --rust-100: #F6DBD6;

  /* ============ SEMANTIC TOKENS ============ */
  /* Surfaces */
  --surface:           var(--paper-050);           /* page = warm cream */
  --surface-raised:    var(--paper-000);           /* cards = white */
  --surface-sunken:    var(--paper-100);
  --surface-tinted:    var(--kraft-050);
  --surface-inverse:   var(--ink-800);             /* footer */

  /* Foreground */
  --fg-1:              var(--ink-900);             /* primary text */
  --fg-2:              var(--ink-700);             /* secondary text */
  --fg-3:              var(--ink-500);             /* tertiary / labels */
  --fg-muted:          var(--ink-400);
  --fg-on-dark:        var(--ink-000);
  --fg-on-brand:       var(--ink-000);

  /* Brand */
  --brand:             var(--green-700);
  --brand-hover:       var(--green-800);
  --brand-press:       var(--green-900);
  --brand-soft:        var(--green-100);
  --accent-rust:       var(--rust-500);            /* strike / extra cost */

  /* Lines */
  --border-subtle:     rgba(15, 20, 23, 0.07);
  --border:            rgba(15, 20, 23, 0.14);
  --border-strong:     rgba(15, 20, 23, 0.28);
  --divider:           var(--ink-100);

  /* Status */
  --success:           var(--green-600);
  --success-soft:      var(--green-100);
  --warning:           #C46A2D;
  --warning-soft:      #F6E2CF;
  --danger:            var(--rust-500);
  --danger-soft:       var(--rust-100);

  /* ============ TYPE — RAW ============ */
  --font-display: 'Oswald', 'Roboto Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Open Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-script:  'Caveat', cursive;                /* "Chat with us", CEO signature */
  --font-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-sc:      'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;

  /* Type scale */
  --fs-xs:   12px;
  --fs-sm:   14px;
  --fs-md:   16px;
  --fs-lg:   18px;
  --fs-xl:   20px;
  --fs-2xl:  24px;
  --fs-3xl:  30px;
  --fs-4xl:  38px;
  --fs-5xl:  48px;
  --fs-6xl:  64px;
  --fs-7xl:  84px;

  --lh-tight:  1.05;
  --lh-snug:   1.2;
  --lh-normal: 1.55;
  --lh-loose:  1.75;

  --tracking-tight:  -0.01em;
  --tracking-snug:    0;
  --tracking-normal:  0.01em;
  --tracking-wide:    0.06em;
  --tracking-caps:    0.18em;

  /* ============ SHAPE & ELEVATION ============ */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-xl: 14px;
  --radius-pill: 999px;

  --shadow-sm:  0 1px 2px rgba(15,20,23,0.05), 0 1px 1px rgba(15,20,23,0.04);
  --shadow-md:  0 6px 16px rgba(15,20,23,0.06), 0 1px 2px rgba(15,20,23,0.04);
  --shadow-lg:  0 18px 32px rgba(15,20,23,0.10), 0 2px 4px rgba(15,20,23,0.05);
  --shadow-xl:  0 32px 64px rgba(15,20,23,0.14), 0 4px 8px rgba(15,20,23,0.06);

  /* Spacing (4px base) */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Motion */
  --ease-out:    cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-in:     cubic-bezier(0.5, 0, 0.85, 0.4);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-quick:   120ms;
  --dur-base:    200ms;
  --dur-slow:    320ms;
}

/* ============ SEMANTIC TYPE STYLES ============
   The live brand uses condensed UPPERCASE for hero/section titles
   and Title Case for in-section H2s. Both with Oswald.            */

.h-display, h1.display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 6vw, 84px);
  line-height: var(--lh-tight);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--fg-1);
}
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-5xl);
  line-height: var(--lh-tight);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--fg-1);
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-4xl);
  line-height: var(--lh-snug);
  letter-spacing: 0.01em;
  color: var(--fg-1);
}
.h2-caps {
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-2xl);
  line-height: var(--lh-snug);
  color: var(--fg-1);
}
h4, .h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-lg);
  line-height: var(--lh-snug);
  color: var(--fg-1);
}
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--fg-3);
}
p, .body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-md);
  line-height: var(--lh-normal);
  color: var(--fg-2);
}
.lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-lg);
  line-height: var(--lh-normal);
  color: var(--fg-2);
}
.small, small {
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
  color: var(--fg-3);
}
.caption {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-xs);
  letter-spacing: 0.04em;
  color: var(--fg-3);
}
.script {
  font-family: var(--font-script);
  font-weight: 700;
}
code, .mono {
  font-family: var(--font-mono);
  font-size: 0.92em;
  background: var(--ink-050);
  padding: 0.12em 0.4em;
  border-radius: var(--radius-sm);
  color: var(--fg-1);
}
.sc {
  font-family: var(--font-sc);
  font-weight: 700;
}

/* ============ BRAND STRIP — the small green accent
   bar that sits to the left of hero overlay cards. ============ */
.brand-strip {
  position: relative;
  padding-left: 28px;
}
.brand-strip::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 8px;
  background: var(--green-700);
}



  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; background: var(--paper-050); color: var(--fg-1); font-family: var(--font-body); -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
  section[id] { scroll-margin-top: 80px; }
  a { color: inherit; text-decoration: none; }
  em { font-style: italic; color: var(--green-700); font-weight: 600; }

  /* ===================== NAV ===================== */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(250,247,242,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
  }
  .nav-inner {
    max-width: 1280px; margin: 0 auto;
    padding: 14px 32px;
    display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center;
  }
  .brand-logo { height: 38px; display: block; }
  .nav-links { display: flex; gap: 30px; justify-content: center; }
  .nav-links a {
    font-family: var(--font-display); font-weight: 600; font-size: 13px;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--ink-700); transition: color var(--dur-base) var(--ease-out);
  }
  .nav-links a:hover { color: var(--green-700); }
  .nav-actions { display: flex; align-items: center; gap: 14px; }
  .lang {
    background: transparent; border: 0;
    color: var(--ink-700); font-family: var(--font-display); font-weight: 600;
    font-size: 13px; letter-spacing: 0.12em; cursor: pointer;
    padding: 6px 8px;
  }
  .lang .bar { margin: 0 4px; color: var(--ink-300); font-weight: 400; }
  .btn-portal {
    background: var(--ink-900); color: var(--paper-000);
    font-family: var(--font-display); font-weight: 700; font-size: 13px;
    letter-spacing: 0.18em; text-transform: uppercase;
    padding: 10px 18px; border-radius: var(--radius-sm);
    transition: background var(--dur-base) var(--ease-out);
  }
  .btn-portal:hover { background: var(--green-700); }

  /* ===================== BUTTONS ===================== */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    height: 44px; padding: 0 20px; border-radius: var(--radius-md);
    font-family: var(--font-body); font-weight: 700; font-size: 14px;
    letter-spacing: 0.04em; text-transform: uppercase;
    border: 1px solid transparent; cursor: pointer;
    transition: all var(--dur-base) var(--ease-out);
  }
  .btn-primary { background: var(--green-700); color: var(--paper-000); }
  .btn-primary:hover { background: var(--green-800); transform: translateY(-1px); box-shadow: var(--shadow-md); }
  .btn-secondary { background: transparent; color: var(--ink-900); border-color: var(--ink-900); }
  .btn-block { width: 100%; justify-content: center; height: 52px; }
  .ico { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

  /* Lucide global sizing — applied wherever <i data-lucide> turns into an SVG */
  [data-lucide], svg.lucide {
    width: 24px; height: 24px;
    stroke-width: 1.75;
  }

  /* ===================== TYPE HELPERS ===================== */
  .eyebrow {
    font-family: var(--font-body); font-weight: 700;
    font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--ink-700); margin: 0 0 8px;
  }
  .h2-caps {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(40px, 5vw, 60px); line-height: 1.1;
    letter-spacing: 0.01em; text-transform: uppercase; color: var(--ink-900);
    margin: 0 0 12px;
  }
  .lead { font-family: var(--font-body); font-size: 17px; line-height: 1.55; color: var(--ink-700); margin: 0; max-width: 56ch; }
  .lead-center { margin: 0 auto; }

  /* ===================== HERO ===================== */
  .hero {
    max-width: 1280px; margin: 0 auto;
    padding: 48px 32px 24px;
  }
  .hero-grid {
    display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center;
  }
  .hero-left { position: relative; padding-left: 24px; }
  .hero-strip {
    position: absolute; left: 0; top: 8px; bottom: 60px;
    width: 6px; background: var(--green-700);
  }
  .hero-eyebrow {
    font-family: var(--font-body); font-weight: 700;
    font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--ink-700); margin: 0 0 18px;
  }
  .hero-h1 {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(56px, 7vw, 92px); line-height: 1.05;
    letter-spacing: 0.005em; text-transform: uppercase;
    margin: 0 0 22px; color: var(--ink-900);
  }
  .hero-h1 .hero-accent { color: var(--green-700); font-style: italic; font-weight: 700; }
  .hero-lead {
    color: var(--ink-700); font-size: 18px; line-height: 1.55;
    margin: 0 0 32px; max-width: 52ch;
  }
  .hero-lead em { color: var(--green-700); font-style: italic; font-weight: 700; }
  .hero-ctas { display: flex; gap: 12px; margin-bottom: 40px; }
  .hero-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    padding-top: 26px; border-top: 1px solid var(--border);
  }
  .hs-num { font-family: var(--font-display); font-weight: 700; font-size: 36px; line-height: 1; color: var(--ink-900); letter-spacing: 0.01em; text-transform: uppercase; }
  .hs-unit { color: var(--green-700); font-size: 18px; margin-left: 3px; font-weight: 700; }
  .hs-label { font-size: 12px; color: var(--ink-500); margin-top: 6px; line-height: 1.45; }

  .hero-right { position: relative; }
  .hero-slider {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-sm); overflow: hidden;
    background: #000;
    box-shadow: 12px 12px 0 0 var(--green-700);
  }
  .hero-frames { position: absolute; inset: 0; }
  .hero-frame {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 700ms var(--ease-out);
  }
  .hero-frame.is-active { opacity: 1; }
  .hero-slider::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(15,20,23,0) 55%, rgba(15,20,23,0.7) 100%);
    pointer-events: none;
  }
  .slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 3;
    width: 40px; height: 40px; border-radius: 999px;
    background: rgba(15,20,23,0.55); color: var(--paper-050);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; opacity: 0;
    transition: opacity var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
  }
  .slider-arrow svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .hero-slider:hover .slider-arrow { opacity: 1; }
  .slider-arrow:hover { background: var(--green-700); border-color: transparent; }
  .slider-prev { left: 14px; }
  .slider-next { right: 14px; }
  .hero-photo-tag {
    position: absolute; left: 18px; bottom: 56px; z-index: 4;
    display: flex; align-items: center; gap: 12px;
    background: rgba(15,20,23,0.65); backdrop-filter: blur(6px);
    padding: 10px 16px; border-radius: 999px;
    animation: tagIn 500ms var(--ease-out);
  }
  @keyframes tagIn {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0);   }
  }
  .hpt-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 3px rgba(46,160,85,0.3); }
  .hpt-label { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-200); }
  .hpt-where { font-size: 13px; font-weight: 700; color: var(--paper-050); }

  .slider-dots {
    position: absolute; left: 0; right: 0; bottom: 18px;
    z-index: 4;
    display: flex; gap: 8px; justify-content: center;
  }
  .slider-dot {
    width: 8px; height: 8px; border-radius: 999px;
    background: rgba(255,255,255,0.35); border: 0; padding: 0;
    cursor: pointer;
    transition: all var(--dur-base) var(--ease-out);
  }
  .slider-dot:hover { background: rgba(255,255,255,0.6); }
  .slider-dot.is-active {
    background: var(--green-500);
    width: 22px;
  }

  .hero-trio {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    padding-top: 32px; margin-top: 32px;
    border-top: 1px solid var(--border-subtle);
  }
  .trio-item {
    display: flex; align-items: center; gap: 14px;
  }
  .trio-ico {
    width: 52px; height: 52px; flex: none; display: flex; align-items: center; justify-content: center;
    border-radius: 999px; background: var(--kraft-200);
  }
  .trio-ico svg { width: 24px; height: 24px; stroke: var(--ink-900); fill: none; stroke-width: 1.75; }
  .trio-label {
    font-family: var(--font-display); font-weight: 700;
    font-size: 16px; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--ink-900);
  }
  .trio-sub { font-size: 12px; color: var(--ink-600); margin-top: 2px; }

  /* ===================== CLIENT STRIP ===================== */
  .strip { background: var(--kraft-050); border-top: 1px solid rgba(181,132,85,0.18); border-bottom: 1px solid rgba(181,132,85,0.18); }
  .strip-inner { max-width: 1280px; margin: 0 auto; padding: 36px 32px; display: flex; flex-direction: column; gap: 22px; align-items: center; }
  .strip-eyebrow { font-family: var(--font-body); font-weight: 700; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--kraft-700); margin: 0; }
  .strip-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; width: 100%; }
  .strip-logo {
    height: 56px; width: 130px;
    display: flex; align-items: center; justify-content: center;
    background: var(--paper-000); border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
    padding: 8px 14px;
    transition: all var(--dur-base) var(--ease-out);
  }
  .strip-logo:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .strip-logo img { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(0.25); transition: filter var(--dur-base) var(--ease-out); }
  .strip-logo:hover img { filter: grayscale(0); }
  .strip-text { font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: 0.04em; color: var(--ink-600); white-space: nowrap; }
  .strip-you-row { display: flex; justify-content: center; padding-top: 6px; }
  .strip-you {
    display: inline-flex; align-items: baseline; gap: 8px;
    background: var(--green-100); color: var(--green-700);
    font-family: var(--font-display); font-weight: 700;
    padding: 12px 32px;
    border: 1px dashed var(--green-500);
    border-radius: 999px;
  }
  .strip-you-plus { font-size: 22px; line-height: 1; }
  .strip-you-word { font-style: italic; font-size: 18px; letter-spacing: 0.04em; }

  /* ===================== CASE STUDIES ===================== */
  .cases-strip {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
    margin-bottom: 32px; max-width: 1180px; margin-left: auto; margin-right: auto;
  }
  .case-thumb {
    height: 64px; width: 132px;
    background: var(--paper-000); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm); padding: 8px 12px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all var(--dur-base) var(--ease-out);
    opacity: 0.6;
  }
  .case-thumb img { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(1); transition: filter var(--dur-base) var(--ease-out); }
  .case-text { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--ink-600); white-space: nowrap; }
  .case-thumb:hover { opacity: 0.9; }
  .case-thumb:hover img { filter: grayscale(0.3); }
  .case-thumb.is-active {
    opacity: 1; border-color: var(--green-700); background: var(--paper-000);
    box-shadow: 0 0 0 3px rgba(27,115,64,0.12), var(--shadow-sm);
    transform: translateY(-2px);
  }
  .case-thumb.is-active img { filter: grayscale(0); }
  .case-thumb.is-active .case-text { color: var(--green-700); }

  .case-card {
    background: var(--paper-000); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md); padding: 36px 40px 44px;
    box-shadow: var(--shadow-md);
    display: grid; grid-template-columns: 280px 1fr; gap: 40px;
    position: relative; max-width: 1080px; margin: 0 auto;
    animation: caseIn 360ms var(--ease-out);
  }
  @keyframes caseIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
  .case-meta { display: flex; flex-direction: column; gap: 16px; }
  .case-logo {
    width: 100%; height: 88px;
    background: var(--paper-050); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm); padding: 14px 22px;
    display: flex; align-items: center; justify-content: center;
  }
  .case-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
  .case-logo span { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--ink-900); letter-spacing: 0.02em; }
  .case-name { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: 0.01em; text-transform: uppercase; color: var(--ink-900); }
  .case-cat { display: block; margin-top: 4px; font-family: var(--font-body); font-size: 11px; letter-spacing: 0.18em; color: var(--ink-500); font-weight: 600; text-transform: uppercase; }
  .case-metric {
    background: var(--green-700); color: var(--paper-000);
    border-radius: var(--radius-md); padding: 18px 20px;
    margin-top: auto;
  }
  .cm-num { font-family: var(--font-display); font-weight: 700; font-size: 34px; line-height: 1; letter-spacing: 0.01em; color: var(--paper-000); }
  .cm-lbl { font-size: 12px; color: var(--green-200); margin-top: 8px; line-height: 1.45; }

  .case-quote { position: relative; padding-top: 32px; padding-bottom: 40px; }
  .quote-mark {
    position: absolute; top: -24px; left: -14px;
    font-family: var(--font-display); font-weight: 700; font-size: 140px;
    line-height: 1; color: var(--green-100);
    z-index: 0; pointer-events: none;
  }
  .quote-text {
    position: relative; z-index: 1;
    font-family: var(--font-body); font-weight: 500; font-size: 19px; line-height: 1.5;
    color: var(--ink-900); margin: 0 0 18px;
    font-style: italic;
  }
  .quote-summary { font-size: 14px; line-height: 1.6; color: var(--ink-700); margin: 0; }
  .case-dots {
    position: absolute; left: 0; bottom: 0;
    display: flex; gap: 6px;
  }
  .case-dot {
    width: 6px; height: 6px; border-radius: 999px;
    background: var(--ink-300); border: 0; cursor: pointer; padding: 0;
    transition: all var(--dur-base) var(--ease-out);
  }
  .case-dot:hover { background: var(--ink-500); }
  .case-dot.is-active { background: var(--green-700); width: 20px; }

  /* ===================== HUBS ===================== */
  .hubs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .hub-card {
    background: var(--paper-000); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md); padding: 16px;
    display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: center;
    transition: all var(--dur-base) var(--ease-out);
  }
  .hub-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .hub-coverage { background: var(--paper-050); }
  .hub-flag {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: transparent;
  }
  .hub-flag img { width: 100%; height: 100%; display: block; }
  .hub-row { display: flex; align-items: center; gap: 10px; }
  .hub-name { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: 0.01em; text-transform: uppercase; color: var(--ink-900); }
  .hub-status { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 3px 8px; border-radius: 999px; }
  .hub-status-live { background: var(--green-100); color: var(--green-700); }
  .hub-status-coverage { background: var(--ink-100); color: var(--ink-600); }
  .hub-where { font-size: 12px; color: var(--ink-600); margin-top: 4px; }

  /* ===================== GRADING ===================== */
  .grading-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start; }
  .grading-text .lead { margin: 0 0 32px; }
  .grading-stage {
    background: var(--paper-000); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md); padding: 22px 24px;
    box-shadow: var(--shadow-md);
    max-width: 440px;
  }
  .stage-pill {
    display: inline-block; padding: 4px 12px; border-radius: 999px;
    font-family: var(--font-display); font-weight: 700; font-size: 12px;
    letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px;
  }
  .stage-a { background: var(--green-100); color: var(--green-700); }
  .stage-b { background: var(--kraft-100); color: var(--kraft-700); }
  .stage-c { background: #F6E2CF;          color: #C46A2D; }
  .stage-d { background: var(--ink-100);   color: var(--ink-700); }
  .stage-title { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: 0.01em; text-transform: uppercase; color: var(--ink-900); margin: 0 0 8px; }
  .stage-body { color: var(--ink-700); font-size: 14px; line-height: 1.55; margin: 0; }

  .grading-rail { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
  .rail-step {
    width: 100%; display: grid; grid-template-columns: 56px 1fr;
    gap: 16px; align-items: center; padding: 16px 18px; text-align: left;
    background: var(--paper-000); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md); cursor: pointer;
    font-family: var(--font-body); color: var(--ink-900);
    transition: all var(--dur-base) var(--ease-out);
  }
  .rail-step:hover { transform: translateX(2px); }
  .rail-step.is-active { border-color: var(--ink-900); box-shadow: 0 0 0 3px rgba(15,20,23,0.06); }
  .rail-grade {
    width: 48px; height: 48px; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 700; font-size: 22px;
  }
  .rail-a { background: var(--green-600); color: var(--paper-000); }
  .rail-b { background: var(--kraft-500); color: var(--ink-900); }
  .rail-c { background: #C46A2D;          color: var(--paper-000); }
  .rail-d { background: var(--ink-700);   color: var(--paper-050); }
  .rail-label { display: block; font-weight: 700; font-size: 15px; color: var(--ink-900); }
  .rail-sub   { display: block; font-size: 13px; color: var(--ink-500); margin-top: 2px; }

  /* ===================== INTEGRATIONS ===================== */
  .wms-preview {
    max-width: 1100px; margin: 0 auto 56px;
    border-radius: 14px; overflow: hidden;
    background: var(--paper-000);
    border: 1px solid var(--border);
    box-shadow: 18px 18px 0 0 var(--green-700), var(--shadow-xl);
  }
  .wms-chrome {
    display: grid; grid-template-columns: auto auto 1fr auto;
    gap: 18px; align-items: center;
    padding: 12px 18px;
    background: var(--ink-100);
    border-bottom: 1px solid var(--border-subtle);
  }
  .wms-traffic { display: flex; gap: 7px; }
  .wms-traffic span { width: 12px; height: 12px; border-radius: 50%; background: var(--ink-300); }
  .wms-traffic span:nth-child(1) { background: #FF5F57; }
  .wms-traffic span:nth-child(2) { background: #FEBC2E; }
  .wms-traffic span:nth-child(3) { background: #28C840; }
  .wms-tabs { display: flex; gap: 4px; }
  .wms-tab {
    padding: 6px 14px; border-radius: 6px; border: 0;
    background: transparent; color: var(--ink-700);
    font-family: var(--font-display); font-weight: 700; font-size: 12px;
    letter-spacing: 0.12em; text-transform: uppercase;
    cursor: pointer; transition: all var(--dur-base) var(--ease-out);
  }
  .wms-tab:hover { background: var(--paper-000); }
  .wms-tab.is-active { background: var(--paper-000); color: var(--green-700); box-shadow: var(--shadow-sm); }
  .wms-url {
    justify-self: center;
    background: var(--paper-000); border-radius: 999px;
    padding: 6px 14px; font-family: var(--font-mono); font-size: 12px; color: var(--ink-600);
    border: 1px solid var(--border-subtle);
    max-width: 320px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  }
  .wms-live {
    display: flex; align-items: center; gap: 8px;
    font-family: var(--font-display); font-weight: 700;
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--green-700);
  }
  .wms-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--green-500); box-shadow: 0 0 0 3px rgba(46,160,85,0.25);
    animation: wmsPulse 1.6s ease-in-out infinite;
  }
  @keyframes wmsPulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(46,160,85,0.25); }
    50%      { box-shadow: 0 0 0 8px rgba(46,160,85,0);    }
  }
  .wms-screen { display: block; max-height: 540px; overflow: hidden; }
  .wms-screen img { width: 100%; height: auto; display: block; }
  .wms-caption {
    margin: 0; padding: 12px 18px;
    background: var(--paper-050); border-top: 1px solid var(--border-subtle);
    font-size: 12px; color: var(--ink-500); text-align: center;
    font-family: var(--font-mono); letter-spacing: 0.04em;
  }

  .int-cards {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 14px;
    max-width: 1180px; margin: 0 auto;
  }
  .int-card {
    background: var(--paper-000); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md); padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column; gap: 14px;
  }
  .int-free {
    background: var(--green-700); color: var(--paper-000);
    border-color: transparent; box-shadow: var(--shadow-md);
  }
  .int-flag {
    display: inline-block; background: var(--paper-000); color: var(--green-700);
    font-family: var(--font-display); font-weight: 700;
    font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
    padding: 4px 12px; border-radius: 999px;
    width: fit-content;
  }
  .int-title {
    font-family: var(--font-display); font-weight: 700;
    font-size: 28px; line-height: 1; letter-spacing: 0.01em; text-transform: uppercase;
    color: var(--paper-000); margin: 0;
  }
  .int-sub {
    color: rgba(255,255,255,0.88); font-size: 14px; line-height: 1.55; margin: 0;
  }
  .int-checks {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 8px;
  }
  .int-checks li {
    position: relative; padding-left: 24px;
    font-size: 13px; color: var(--paper-050); line-height: 1.4;
  }
  .int-checks li::before {
    content: ''; position: absolute; left: 0; top: 4px;
    width: 14px; height: 14px;
    background: var(--green-200);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 12 10 18 20 6'/></svg>") center/contain no-repeat;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 12 10 18 20 6'/></svg>") center/contain no-repeat;
  }
  .int-h {
    font-family: var(--font-display); font-weight: 700;
    font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--green-700); margin: 0;
  }
  .int-row { display: flex; flex-wrap: wrap; gap: 8px; }
  .int-pill {
    display: inline-flex; flex-direction: column; align-items: flex-start; gap: 2px;
    padding: 8px 12px; border-radius: var(--radius-md);
    background: var(--green-050); border: 1px solid rgba(27,115,64,0.18);
    min-width: 80px;
  }
  .ip-en { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--ink-900); letter-spacing: 0.01em; }
  .ip-cn { font-family: var(--font-sc); font-weight: 700; font-size: 11px; color: var(--green-700); }
  .int-pill-dashed { background: transparent; border-style: dashed; }
  .int-pill-dashed .ip-en { color: var(--green-700); }
  .int-pill-dashed .ip-cn { color: var(--ink-500); font-family: var(--font-body); font-style: italic; font-weight: 500; }
  .int-foot { font-size: 12px; color: var(--ink-600); margin: auto 0 0; line-height: 1.5; }

  /* ===================== SECTIONS ===================== */
  .section { padding: 32px 32px; }
  .section-tight { padding: 32px 32px; }
  .section-paper { background: var(--paper-050); }
  .section-cream { background: var(--kraft-050); }
  .section-inner { max-width: 1280px; margin: 0 auto; }
  .section-head { max-width: 720px; margin: 0 auto 24px; text-align: center; }

  /* ===================== HOW IT WORKS ===================== */
  .flow { list-style: none; padding: 0; margin: 0; display: grid; gap: 28px; max-width: 900px; margin: 0 auto; }
  .flow-step {
    position: relative;
    display: grid; grid-template-columns: 140px 1fr;
    gap: 32px; align-items: center;
    padding-bottom: 28px;
  }
  .flow-ico {
    position: relative;
    width: 140px; height: 140px; border-radius: 999px;
    background: var(--kraft-200);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-sm);
  }
  .flow-ico svg { width: 56px; height: 56px; stroke: var(--ink-900); fill: none; stroke-width: 1.5; }
  .flow-num {
    position: absolute; top: -6px; right: -6px;
    width: 32px; height: 32px; border-radius: 999px;
    background: var(--green-700); color: var(--paper-000);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 700; font-size: 16px;
    box-shadow: var(--shadow-sm);
  }
  .flow-title {
    font-family: var(--font-display); font-weight: 700;
    font-size: 26px; letter-spacing: 0.01em; text-transform: uppercase;
    color: var(--ink-900); margin: 0 0 8px;
  }
  .flow-text { color: var(--ink-700); font-size: 15px; line-height: 1.6; margin: 0; max-width: 60ch; }
  .flow-arrow {
    position: absolute; left: 70px; bottom: -28px; transform: translateX(-50%);
    color: var(--green-700);
  }
  .flow-arrow svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; }
  .flow-step:last-child { padding-bottom: 0; }
  .flow-step:last-child .flow-arrow { display: none; }

  .flow-footer { text-align: center; margin-top: 56px; }
  .flow-eye {
    display: block; font-family: var(--font-body); font-weight: 600;
    font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--ink-700); margin-bottom: 10px;
  }
  .flow-portal {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(28px, 3vw, 38px); letter-spacing: 0.01em; text-transform: uppercase;
    color: var(--green-700);
    border-bottom: 3px solid var(--green-500); padding-bottom: 2px;
  }

  /* ===================== PILLARS ===================== */
  .pillars { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 14px; }
  .pillar {
    position: relative;
    background: var(--paper-000); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md); padding: 24px;
    display: flex; flex-direction: column; gap: 12px;
    transition: all var(--dur-base) var(--ease-out);
  }
  .pillar:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .pillar-accent { background: var(--green-700); color: var(--paper-000); border-color: transparent; }
  .pillar-ribbon {
    position: absolute; top: 14px; right: 14px;
    font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
    background: var(--paper-000); color: var(--green-700);
    padding: 4px 10px; border-radius: 999px;
  }
  .pillar-badge {
    position: absolute; top: -10px; right: 14px;
    background: var(--green-700); color: var(--paper-000);
    font-family: var(--font-display); font-weight: 700;
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    padding: 6px 12px; border-radius: 999px;
    box-shadow: var(--shadow-md);
    z-index: 2;
  }
  .pillar-ico-bg {
    width: 76px; height: 76px; border-radius: 999px;
    background: var(--kraft-200);
    display: flex; align-items: center; justify-content: center;
  }
  .pillar-ico-bg svg { width: 36px; height: 36px; stroke: var(--ink-900); fill: none; stroke-width: 1.75; }
  .pillar-accent .pillar-ico-bg { background: rgba(255,255,255,0.16); }
  .pillar-accent .pillar-ico-bg svg { stroke: var(--paper-000); }
  .pillar-title {
    font-family: var(--font-display); font-weight: 700;
    font-size: 22px; letter-spacing: 0.01em; text-transform: uppercase;
    color: var(--ink-900); margin: 0;
  }
  .pillar-accent .pillar-title { color: var(--paper-000); }
  .pillar-body { color: var(--ink-700); font-size: 14px; line-height: 1.55; margin: 0; flex: 1; }
  .pillar-accent .pillar-body { color: rgba(255,255,255,0.92); }
  .pillar-link {
    color: var(--green-700); font-weight: 700; font-size: 13px;
    letter-spacing: 0.12em; text-transform: uppercase; margin-top: 6px;
    background: transparent; border: 0; padding: 0; cursor: pointer;
    align-self: flex-start;
    font-family: var(--font-body);
  }
  .pillar-link:hover { color: var(--green-800); }
  .pillar-accent .pillar-link { color: var(--paper-000); }
  .pillar-accent .pillar-link:hover { color: var(--green-200); }

  /* ===================== PILLAR MODAL ===================== */
  .pmodal-backdrop[hidden] { display: none !important; }
  .pmodal-backdrop {
    position: fixed; inset: 0; z-index: 100;
    background: rgba(15, 20, 23, 0.6);
    backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    animation: pmodalFade 200ms var(--ease-out);
  }
  @keyframes pmodalFade { from { opacity: 0; } to { opacity: 1; } }
  .pmodal {
    background: var(--paper-000);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    max-width: 640px; width: 100%;
    max-height: 90vh; overflow-y: auto;
    padding: 36px 36px 28px;
    position: relative;
    animation: pmodalRise 280ms var(--ease-out);
  }
  @keyframes pmodalRise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
  .pmodal-close {
    position: absolute; top: 14px; right: 14px;
    width: 36px; height: 36px; border-radius: 999px;
    background: var(--paper-050); border: 1px solid var(--border-subtle);
    cursor: pointer; color: var(--ink-700);
    display: flex; align-items: center; justify-content: center;
    transition: all var(--dur-base) var(--ease-out);
  }
  .pmodal-close:hover { background: var(--ink-900); color: var(--paper-000); border-color: transparent; }
  .pmodal-close svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

  .pmodal-head { display: grid; grid-template-columns: 68px 1fr; gap: 18px; align-items: center; margin-bottom: 18px; }
  .pmodal-ico {
    width: 68px; height: 68px; border-radius: 999px;
    background: var(--kraft-200);
    display: flex; align-items: center; justify-content: center;
  }
  .pmodal-ico svg { width: 34px; height: 34px; stroke: var(--ink-900); fill: none; stroke-width: 1.5; }
  .pmodal-eye { font-family: var(--font-body); font-weight: 700; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green-700); margin: 0 0 4px; }
  .pmodal-title { font-family: var(--font-display); font-weight: 700; font-size: 28px; line-height: 1.15; letter-spacing: 0.01em; text-transform: uppercase; color: var(--ink-900); margin: 0; }
  .pmodal-intro { color: var(--ink-700); font-size: 16px; line-height: 1.55; margin: 0 0 18px; }

  .pmodal-key {
    background: var(--green-700); color: var(--paper-000);
    border-radius: var(--radius-sm);
    padding: 14px 18px; margin: 0 0 18px;
  }
  .pmodal-key-label {
    font-family: var(--font-display); font-weight: 700;
    font-size: 16px; letter-spacing: 0.04em; text-transform: uppercase;
  }
  .pmodal-key-sub { font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.9); margin-top: 4px; }

  .pmodal-logos {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 18px;
  }
  .pmodal-logo {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 14px;
    background: var(--paper-050);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    text-align: center;
  }
  .pmodal-logo-stage {
    width: 100%; height: 56px;
    background: var(--paper-000);
    border-radius: var(--radius-xs);
    display: flex; align-items: center; justify-content: center;
    padding: 6px 12px;
    box-shadow: inset 0 0 0 1px var(--border-subtle);
  }
  .pmodal-logo-stage img {
    max-width: 100%; max-height: 100%;
    width: auto; height: auto;
    object-fit: contain;
  }
  .pmodal-logo-meta { display: flex; align-items: baseline; justify-content: center; gap: 8px; }
  .pmodal-logo-name {
    font-family: var(--font-display); font-weight: 700;
    font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase;
    color: var(--ink-900);
  }
  .pmodal-logo-sub { font-family: var(--font-sc); font-size: 12px; color: var(--green-700); font-weight: 700; }

  .pmodal-bullets { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 8px; }
  .pmodal-bullets li {
    position: relative; padding-left: 22px;
    font-size: 14px; color: var(--ink-700); line-height: 1.5;
  }
  .pmodal-bullets li::before {
    content: ''; position: absolute; left: 0; top: 5px;
    width: 14px; height: 14px; background: var(--green-600);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 12 10 18 20 6'/></svg>") center/contain no-repeat;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 12 10 18 20 6'/></svg>") center/contain no-repeat;
  }

  .pmodal-foot { display: flex; gap: 10px; justify-content: flex-end; border-top: 1px solid var(--border-subtle); padding-top: 18px; }

  .pillar-compare { margin-top: 6px; border-radius: var(--radius-sm); overflow: hidden; }
  .cmp-row {
    display: grid; grid-template-columns: 72px 1fr;
    align-items: center; padding: 8px 12px; font-size: 13px; line-height: 1.35;
  }
  .cmp-us { background: rgba(255,255,255,0.14); color: var(--paper-000); }
  .cmp-them { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.6); }
  .cmp-who {
    font-family: var(--font-display); font-weight: 700; font-size: 11px;
    letter-spacing: 0.14em; text-transform: uppercase;
  }
  .cmp-them .cmp-what { text-decoration: line-through; text-decoration-thickness: 1px; }

  /* ===================== PRICES ===================== */
  .tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .tier {
    position: relative;
    background: var(--paper-000); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md); padding: 24px 20px;
    display: flex; flex-direction: column; gap: 14px;
  }
  .tier-featured {
    background: var(--paper-000);
    border-color: var(--green-700);
    box-shadow: 0 0 0 4px rgba(27,115,64,0.10), var(--shadow-md);
    transform: translateY(-4px);
  }
  .tier-flag {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--green-700); color: var(--paper-000);
    font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
    padding: 5px 14px; border-radius: 999px;
    white-space: nowrap;
  }
  .tier-name {
    font-family: var(--font-display); font-weight: 700;
    font-size: 18px; letter-spacing: 0.01em; text-transform: uppercase;
    color: var(--ink-900); margin: 0; text-align: center;
  }
  .tier-price {
    text-align: center; padding: 12px 0; border-top: 1px dashed var(--border); border-bottom: 1px dashed var(--border);
  }
  .tp-from { display: block; font-size: 12px; color: var(--ink-500); margin-bottom: 4px; }
  .tp-num { font-family: var(--font-display); font-weight: 700; font-size: 48px; color: var(--green-700); }
  .tp-unit { font-size: 13px; color: var(--ink-500); margin-left: 4px; }
  .tier-items { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
  .ti { font-size: 13px; padding-left: 22px; position: relative; line-height: 1.5; }
  .ti::before {
    content: ''; position: absolute; left: 0; top: 7px;
    width: 12px; height: 12px;
  }
  .ti-ok { color: var(--ink-900); }
  .ti-ok::before {
    background: var(--green-600);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 12 10 18 20 6'/></svg>") center/contain no-repeat;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 12 10 18 20 6'/></svg>") center/contain no-repeat;
  }
  .ti-no { color: var(--ink-400); text-decoration: line-through; }
  .ti-no::before {
    background: var(--ink-400);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round'><line x1='5' y1='5' x2='19' y2='19'/><line x1='5' y1='19' x2='19' y2='5'/></svg>") center/contain no-repeat;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round'><line x1='5' y1='5' x2='19' y2='19'/><line x1='5' y1='19' x2='19' y2='5'/></svg>") center/contain no-repeat;
  }
  .ti-extra { color: var(--rust-500); font-weight: 600; }
  .ti-extra::before {
    background: var(--rust-500);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>") center/contain no-repeat;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>") center/contain no-repeat;
  }
  .tier-fine { font-size: 11px; color: var(--ink-500); margin: auto 0 0; line-height: 1.45; }

  /* ===================== ABOUT ===================== */
  .about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
  .about-grid .lead { margin-bottom: 16px; }
  .about-grid .body { color: var(--ink-700); font-size: 16px; line-height: 1.6; }
  .about-card {
    position: relative;
    background: var(--green-700); color: var(--paper-000);
    border-radius: var(--radius-md); padding: 40px 36px;
    overflow: hidden;
  }
  .ac-mark { position: absolute; right: -30px; bottom: -30px; opacity: 0.10; }
  .ac-mark img { width: 280px; }
  .ac-eyebrow {
    font-family: var(--font-body); font-weight: 700;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(255,255,255,0.7); margin: 0 0 12px;
  }
  .ac-quote {
    font-family: var(--font-display); font-weight: 700;
    font-size: 26px; line-height: 1.15; letter-spacing: 0.01em; text-transform: uppercase;
    margin: 0 0 18px; color: var(--paper-000); position: relative;
  }
  .ac-sig { display: flex; flex-direction: column; gap: 4px; position: relative; }
  .ac-script { font-family: var(--font-script); font-weight: 700; font-size: 30px; color: var(--paper-000); line-height: 1; }
  .ac-name { font-size: 12px; color: rgba(255,255,255,0.75); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }

  /* ===================== STAT BAND ===================== */
  .band {
    background: var(--ink-800); color: var(--paper-050);
    background-image:
      linear-gradient(rgba(26,34,39,0.95), rgba(26,34,39,0.97)),
      url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='xMidYMax slice'><g fill='%23ffffff' opacity='0.08'><rect x='40' y='70' width='30' height='130'/><rect x='80' y='40' width='40' height='160'/><rect x='130' y='90' width='30' height='110'/><rect x='170' y='30' width='50' height='170'/><rect x='230' y='80' width='35' height='120'/><rect x='275' y='60' width='30' height='140'/><rect x='315' y='100' width='40' height='100'/><rect x='365' y='20' width='45' height='180'/><rect x='420' y='90' width='35' height='110'/><rect x='465' y='50' width='40' height='150'/><rect x='515' y='70' width='30' height='130'/><rect x='555' y='30' width='55' height='170'/><rect x='620' y='80' width='40' height='120'/><rect x='670' y='40' width='30' height='160'/><rect x='710' y='90' width='45' height='110'/><rect x='765' y='60' width='30' height='140'/><rect x='805' y='20' width='50' height='180'/><rect x='865' y='80' width='35' height='120'/><rect x='910' y='50' width='30' height='150'/><rect x='950' y='100' width='40' height='100'/><rect x='1000' y='30' width='50' height='170'/><rect x='1060' y='70' width='30' height='130'/><rect x='1100' y='90' width='40' height='110'/></g></svg>");
    background-size: cover; background-position: bottom center;
  }
  .band-inner {
    max-width: 1280px; margin: 0 auto;
    padding: 64px 32px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
    text-align: center;
  }
  .bs-num { font-family: var(--font-display); font-weight: 700; font-size: 56px; line-height: 1; letter-spacing: 0.01em; color: var(--paper-050); text-transform: uppercase; }
  .bs-unit { color: var(--green-500); font-size: 26px; margin-left: 2px; font-weight: 700; }
  .bs-label { color: rgba(255,255,255,0.7); font-size: 13px; margin-top: 12px; line-height: 1.5; }

  /* ===================== CTA ===================== */
  .cta-wrap {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px;
    background: var(--paper-000);
    border-radius: var(--radius-md);
    padding: 56px 48px;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-md);
    align-items: start;
  }
  .cta-pop { color: var(--green-700); }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .field select {
    appearance: none;
    border: 1px solid var(--border); border-radius: var(--radius-sm);
    padding: 12px 14px; font-family: var(--font-body); font-size: 14px;
    color: var(--ink-900); background: var(--paper-050);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232A343B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat; background-position: right 12px center; background-size: 16px;
    padding-right: 36px;
  }
  .field select:focus { outline: none; border-color: var(--green-700); box-shadow: 0 0 0 3px rgba(27,115,64,0.15); }
  .cta-fineprint { font-size: 12px; color: var(--ink-500); margin: 0; text-align: center; }
  .contact-list { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 14px; }
  .contact-list li { display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: center; }
  .ci {
    width: 40px; height: 40px; border-radius: 999px;
    background: var(--green-100); display: flex; align-items: center; justify-content: center;
  }
  .ci svg { width: 18px; height: 18px; stroke: var(--green-700); fill: none; stroke-width: 1.75; }
  .contact-list li span:last-child { font-size: 14px; color: var(--ink-900); font-weight: 500; }

  .wechat-card {
    margin-top: 22px;
    display: grid; grid-template-columns: 140px 1fr; gap: 20px; align-items: center;
    padding: 20px 22px;
    background: var(--paper-050);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
  }
  .wechat-card img {
    width: 140px; height: 140px;
    border-radius: var(--radius-sm);
    background: var(--paper-000);
    border: 1px solid var(--border-subtle);
    object-fit: contain;
    padding: 6px;
  }
  .wechat-meta { display: flex; flex-direction: column; gap: 4px; }
  .wechat-eye {
    font-family: var(--font-body); font-weight: 700;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--green-700); margin: 0;
  }
  .wechat-title {
    font-family: var(--font-display); font-weight: 700;
    font-size: 22px; letter-spacing: 0.01em; text-transform: uppercase;
    color: var(--ink-900); margin: 0;
  }
  .wechat-id {
    font-family: var(--font-mono); font-size: 14px; color: var(--ink-700); margin: 0;
  }

  .cta-form { display: flex; flex-direction: column; gap: 12px; }
  .form-eyebrow { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: 0.01em; text-transform: uppercase; color: var(--ink-900); margin: 0 0 10px; }
  .field { display: flex; flex-direction: column; gap: 6px; }
  .field label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-600); }
  .field input, .field textarea {
    border: 1px solid var(--border); border-radius: var(--radius-sm);
    padding: 12px 14px; font-family: var(--font-body); font-size: 14px;
    color: var(--ink-900); background: var(--paper-050);
    transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
  }
  .field input:focus, .field textarea:focus { outline: none; border-color: var(--green-700); box-shadow: 0 0 0 3px rgba(27,115,64,0.15); }

  /* ===================== FOOTER ===================== */
  .footer { background: var(--ink-900); color: var(--paper-200); padding: 64px 32px 24px; }
  .footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; }
  .footer-logo { height: 44px; margin-bottom: 18px; }
  .footer-addr { color: var(--paper-300); font-size: 14px; margin: 0 0 6px; line-height: 1.5; }
  .footer-mail a { color: var(--green-500); font-size: 13px; }
  .footer-mail { margin: 0 0 6px; }
  .footer-phone { color: var(--paper-200); font-size: 14px; margin: 0; }
  .footer-cols .footer-h { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: 0.01em; text-transform: uppercase; color: var(--paper-050); margin: 0 0 18px; }
  .footer-cols ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
  .footer-cols li { position: relative; padding-left: 18px; }
  .footer-cols li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; background: var(--green-500); }
  .footer-cols a { color: var(--paper-200); font-size: 13px; letter-spacing: 0.06em; }
  .footer-cols a:hover { color: var(--paper-050); }
  .footer-fine {
    max-width: 1280px; margin: 56px auto 0; padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; justify-content: space-between; gap: 32px;
    font-size: 12px; color: var(--paper-300);
  }
  .footer-fine a { color: var(--paper-300); }
  .footer-fine a:hover { color: var(--paper-050); }

  /* ===================== CHAT BUBBLE ===================== */
  .chat-bubble {
    position: fixed; bottom: 24px; right: 24px;
    background: var(--green-700); color: var(--paper-000);
    border: none; cursor: pointer; z-index: 80;
    border-radius: 999px;
    padding: 14px 22px 14px 18px;
    box-shadow: var(--shadow-xl);
    display: flex; align-items: center; gap: 10px;
    transition: transform var(--dur-base) var(--ease-out);
  }
  .chat-bubble:hover { transform: translateY(-2px); }
  .chat-bubble .script { font-family: var(--font-script); font-weight: 700; font-size: 22px; letter-spacing: 0; }
  .chat-bubble svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

  /* ===================== MOBILE ===================== */
  @media (max-width: 960px) {
    /* Nav — drop the link row, keep just brand + portal */
    .nav-inner { grid-template-columns: auto auto; gap: 12px; padding: 12px 16px; }
    .nav-links { display: none; }
    .lang { display: none; }
    .brand-logo { height: 32px; }

    /* Hero — stack vertically, slider goes below copy */
    .hero { padding: 24px 16px 16px; }
    .hero-grid { grid-template-columns: 1fr; gap: 28px; }
    .hero-left { padding-left: 18px; }
    .hero-strip { width: 4px; }
    .hero-h1 { font-size: clamp(40px, 9vw, 56px); }
    .hero-lead { font-size: 16px; }
    .hero-ctas { flex-wrap: wrap; }
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 16px; padding-top: 18px; }
    .hs-num { font-size: 28px; }
    .hero-slider { box-shadow: 6px 6px 0 0 var(--green-700); aspect-ratio: 4/3; }
    .hero-trio { grid-template-columns: 1fr; gap: 14px; padding-top: 24px; margin-top: 24px; }

    /* Sections — tighter padding */
    .section, .section-tight { padding: 28px 16px; }
    .section-head { margin-bottom: 18px; }
    .h2-caps { font-size: clamp(28px, 7vw, 38px); line-height: 1.15; }
    .lead { font-size: 15px; }

    /* Client stories */
    .cases-strip { gap: 6px; margin-bottom: 18px; }
    .case-thumb { width: calc(50% - 6px); height: 56px; padding: 6px 10px; }
    .case-card { grid-template-columns: 1fr; gap: 20px; padding: 22px 18px 28px; }
    .case-logo { height: 64px; padding: 8px 16px; }
    .case-quote { padding-top: 26px; padding-bottom: 28px; }
    .quote-text { font-size: 16px; }
    .quote-mark { font-size: 96px; top: -16px; left: -8px; }

    /* Pillars — stack to one column */
    .pillars { grid-template-columns: 1fr; gap: 12px; }
    .pillar { padding: 18px; }
    .pillar-badge { right: 12px; }

    /* How it works */
    .flow-step { grid-template-columns: 88px 1fr; gap: 18px; }
    .flow-ico { width: 88px; height: 88px; }
    .flow-ico svg { width: 40px; height: 40px; }
    .flow-num { width: 26px; height: 26px; font-size: 13px; }
    .flow-title { font-size: 20px; }
    .flow-text { font-size: 14px; }
    .flow-arrow { left: 44px; bottom: -18px; }

    /* Grading */
    .grading-grid { grid-template-columns: 1fr; gap: 24px; }
    .grading-stage { max-width: none; }
    .rail-step { padding: 12px 14px; grid-template-columns: 44px 1fr; gap: 12px; }
    .rail-grade { width: 40px; height: 40px; font-size: 18px; }

    /* Hubs */
    .hubs { grid-template-columns: 1fr; }
    .hub-card { padding: 12px 14px; }

    /* Integrations */
    .wms-preview { box-shadow: 8px 8px 0 0 var(--green-700), var(--shadow-md); margin-bottom: 32px; }
    .wms-chrome { grid-template-columns: auto 1fr auto; padding: 10px 12px; gap: 10px; }
    .wms-url { display: none; }
    .wms-tab { padding: 5px 10px; font-size: 11px; letter-spacing: 0.08em; }
    .int-cards { grid-template-columns: 1fr; }

    /* Prices */
    .tiers { grid-template-columns: 1fr; gap: 14px; }
    .tier-featured { transform: none; margin-top: 14px; }
    .tp-num { font-size: 40px; }

    /* About */
    .about-grid { grid-template-columns: 1fr; gap: 24px; }
    .about-card { padding: 28px 22px; }
    .ac-quote { font-size: 22px; }
    .ac-mark img { width: 200px; }

    /* Stat band */
    .band-inner { padding: 36px 16px; grid-template-columns: 1fr 1fr; gap: 24px; }
    .bs-num { font-size: 38px; }
    .bs-unit { font-size: 20px; }

    /* CTA */
    .cta-wrap { grid-template-columns: 1fr; gap: 28px; padding: 28px 18px; }
    .field-row { grid-template-columns: 1fr; }
    .wechat-card { grid-template-columns: 100px 1fr; gap: 14px; padding: 14px; }
    .wechat-card img { width: 100px; height: 100px; }
    .wechat-title { font-size: 18px; }

    /* Footer */
    .footer { padding: 36px 16px 20px; }
    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
    .footer-logo { height: 36px; }
    .footer-fine { flex-direction: column; gap: 8px; margin-top: 32px; padding-top: 18px; text-align: center; }

    /* Chat bubble */
    .chat-bubble { bottom: 14px; right: 14px; padding: 10px 16px 10px 12px; }
    .chat-bubble .script { font-size: 18px; }

    /* Modal */
    .pmodal-backdrop { padding: 16px; }
    .pmodal { padding: 24px 20px 20px; }
    .pmodal-head { grid-template-columns: 52px 1fr; gap: 14px; margin-bottom: 14px; }
    .pmodal-ico { width: 52px; height: 52px; }
    .pmodal-ico svg { width: 26px; height: 26px; }
    .pmodal-title { font-size: 22px; }
    .pmodal-intro { font-size: 15px; }
    .pmodal-logos { grid-template-columns: 1fr; }
    .pmodal-foot { flex-direction: column-reverse; align-items: stretch; gap: 8px; }
    .pmodal-foot .btn { justify-content: center; }
  }

  @media (max-width: 480px) {
    .hero-stats { grid-template-columns: 1fr; }
    .band-inner { grid-template-columns: 1fr; }
    .cases-strip { grid-template-columns: 1fr; }
    .case-thumb { width: calc(50% - 4px); }
    .hero-ctas .btn { width: 100%; justify-content: center; }
  }
