
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --orange: #EA6A1E;
      --orange-light: #FFF3EA;
      --orange-mid: #FBD4B4;
      --ink: #1A1714;
      --ink-mid: #4A423B;
      --ink-muted: #8A7E73;
      --surface: #FFFFFF;
      --surface-alt: #FBF8F4;
      --border: #ECE4DA;
      --border-strong: #D8CCBE;
      --green: #2F7D4F;
      --radius: 8px;
    }

    html { font-size: 16px; scroll-behavior: smooth; }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
      color: var(--ink);
      background: var(--surface);
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

    /* ── Layout ── */
    .container { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }
    .section { padding: 3.5rem 0; }
    .section + .section { border-top: 1px solid var(--border); }

    /* ── Breadcrumb ── */
    .breadcrumb {
      background: var(--surface-alt);
      border-bottom: 1px solid var(--border);
      padding: 0.6rem 0;
      font-size: 0.78rem;
      color: var(--ink-muted);
    }
    .breadcrumb a { color: var(--ink-muted); text-decoration: none; }
    .breadcrumb a:hover { color: var(--orange); text-decoration: underline; }
    .breadcrumb span { margin: 0 0.4rem; }

    /* ── Hero ── */
    .hero { padding: 3rem 0 2.5rem; border-bottom: 1px solid var(--border); }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--orange);
      background: var(--orange-light);
      border: 1px solid var(--orange-mid);
      padding: 0.28rem 0.75rem;
      border-radius: 99px;
      margin-bottom: 1.1rem;
    }
    .hero h1 {
      font-size: clamp(1.7rem, 4vw, 2.5rem);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.025em;
      color: var(--ink);
      margin-bottom: 0.9rem;
    }
    .hero h1 em { font-style: normal; color: var(--orange); }
    .hero-sub {
      font-size: 1.02rem;
      color: var(--ink-mid);
      max-width: 660px;
      margin-bottom: 1.8rem;
      line-height: 1.75;
    }
    .trust-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 1.4rem;
      font-size: 0.81rem;
      color: var(--ink-mid);
      margin-bottom: 2rem;
    }
    .trust-item { display: flex; align-items: center; gap: 0.35rem; }
    .trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

    /* CTA row */
    .btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
    .btn-primary {
      display: inline-block;
      background: var(--orange);
      color: #fff;
      font-weight: 600;
      font-size: 0.9rem;
      padding: 0.7rem 1.6rem;
      border-radius: var(--radius);
      text-decoration: none;
      transition: background 0.15s;
    }
    .btn-primary:hover { background: #cf5a13; }
    .btn-secondary {
      display: inline-block;
      background: transparent;
      color: var(--ink);
      font-weight: 500;
      font-size: 0.9rem;
      padding: 0.7rem 1.5rem;
      border-radius: var(--radius);
      border: 1.5px solid var(--border-strong);
      text-decoration: none;
      transition: border-color 0.15s;
    }
    .btn-secondary:hover { border-color: var(--ink-muted); }

    /* ── Product layout (image + spec) ── */
    .product-top { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
    .product-img {
      width: 100%;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--surface-alt);
      aspect-ratio: 1 / 1;
      object-fit: contain;
      padding: 1rem;
    }

    /* ── Spec grid ── */
    .specs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }
    .spec-cell { background: var(--surface); padding: 1rem 1.2rem; }
    .spec-label {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: var(--ink-muted);
      margin-bottom: 0.3rem;
    }
    .spec-val { font-size: 0.92rem; font-weight: 600; color: var(--ink); }

    /* ── Section headings ── */
    .section-heading { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.015em; color: var(--ink); margin-bottom: 0.45rem; }
    .section-sub { font-size: 0.9rem; color: var(--ink-muted); margin-bottom: 1.75rem; }

    /* ── Prose ── */
    .prose p { font-size: 0.92rem; color: var(--ink-mid); line-height: 1.85; margin-bottom: 0.85rem; }
    .prose p:last-child { margin-bottom: 0; }
    .prose h3 { font-size: 1.02rem; font-weight: 700; color: var(--ink); margin: 1.4rem 0 0.5rem; }

    /* ── Nutrition table ── */
    .nutri-wrap { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
    .nutri-table { width: 100%; border-collapse: collapse; font-size: 0.86rem; }
    .nutri-table th {
      text-align: left;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: var(--ink-muted);
      padding: 0.65rem 1rem;
      background: var(--surface-alt);
      border-bottom: 1px solid var(--border);
    }
    .nutri-table td { padding: 0.7rem 1rem; border-bottom: 1px solid var(--border); color: var(--ink-mid); }
    .nutri-table td:first-child { font-weight: 600; color: var(--ink); }
    .nutri-table tr:last-child td { border-bottom: none; }

    /* ── Feature cards ── */
    .feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
    .feature-card { background: var(--surface-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem 1.3rem; }
    .feature-card h3 { font-size: 0.9rem; font-weight: 700; color: var(--ink); margin-bottom: 0.4rem; display: flex; align-items: center; gap: 0.5rem; }
    .feature-icon {
      width: 28px; height: 28px;
      background: var(--orange-light);
      border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.85rem; flex-shrink: 0;
    }
    .feature-card p { font-size: 0.83rem; color: var(--ink-mid); line-height: 1.6; }

    /* ── Use pills ── */
    .use-strip { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
    .use-pill {
      background: var(--orange-light);
      border: 1px solid var(--orange-mid);
      color: var(--ink-mid);
      font-size: 0.8rem; font-weight: 500;
      padding: 0.3rem 0.85rem; border-radius: 99px;
    }

    /* ── Process flow ── */
    .flow { display: flex; flex-wrap: wrap; gap: 0.5rem; }
    .flow-step { flex: 1 1 140px; background: var(--surface-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 0.9rem 1rem; }
    .flow-step .flow-n { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); display: block; margin-bottom: 0.3rem; }
    .flow-step h3 { font-size: 0.85rem; font-weight: 600; color: var(--ink); margin-bottom: 0.2rem; }
    .flow-step p { font-size: 0.76rem; color: var(--ink-mid); line-height: 1.5; }

    /* ── Info boxes (export / payment) ── */
    .info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .info-box { background: var(--surface-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem 1.3rem; }
    .info-box h3 { font-size: 0.88rem; font-weight: 700; color: var(--ink); margin-bottom: 0.6rem; }
    .info-box li { font-size: 0.82rem; color: var(--ink-mid); line-height: 1.65; list-style: none; display: flex; align-items: flex-start; gap: 0.4rem; padding: 2px 0; }
    .info-box li::before { content: "–"; color: var(--ink-muted); flex-shrink: 0; }

    /* ── FAQ ── */
    details { border-bottom: 1px solid var(--border); }
    details:first-of-type { border-top: 1px solid var(--border); }
    summary {
      font-size: 0.93rem; font-weight: 600; color: var(--ink);
      padding: 1.1rem 0; cursor: pointer; list-style: none;
      display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    }
    summary::-webkit-details-marker { display: none; }
    summary::after { content: '+'; font-size: 1rem; color: var(--ink-muted); flex-shrink: 0; }
    details[open] summary::after { content: '−'; }
    .faq-answer { font-size: 0.86rem; color: var(--ink-mid); line-height: 1.8; padding-bottom: 1.1rem; max-width: 720px; }

    /* ── Internal link cluster ── */
    .link-cluster { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
    .link-pill {
      display: inline-block;
      background: var(--surface-alt);
      border: 1px solid var(--border);
      color: var(--orange);
      font-size: 0.82rem; font-weight: 500;
      padding: 0.4rem 0.9rem; border-radius: 99px;
      text-decoration: none; transition: border-color 0.15s, background 0.15s;
    }
    .link-pill:hover { border-color: var(--orange-mid); background: var(--orange-light); }

    /* ── CTA block ── */
    .cta-block { background: var(--ink); color: #fff; border-radius: 12px; padding: 2.5rem 2rem; text-align: center; }
    .cta-block h2 { font-size: 1.35rem; font-weight: 700; margin-bottom: 0.6rem; }
    .cta-block p { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; max-width: 520px; margin-left: auto; margin-right: auto; }
    .btn-cta { display: inline-block; background: var(--orange); color: #fff; font-weight: 700; font-size: 0.9rem; padding: 0.75rem 1.8rem; border-radius: var(--radius); text-decoration: none; transition: background 0.15s; }
    .btn-cta:hover { background: #cf5a13; }
    .cta-sub { margin-top: 1rem; font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-bottom: 0 !important; }

    /* ── Factory stats band ── */
    .stat-band {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      margin-top: 1.6rem;
    }
    .stat-band .stat-cell { background: var(--surface); padding: 1.3rem 1.25rem; text-align: center; }
    .stat-band .stat-num { font-size: 1.6rem; font-weight: 800; color: var(--orange); line-height: 1.05; letter-spacing: -0.02em; }
    .stat-band .stat-cap { font-size: 0.76rem; color: var(--ink-mid); margin-top: 0.35rem; line-height: 1.4; }

    /* ── Inline contextual callout ── */
    .callout {
      background: var(--orange-light);
      border: 1px solid var(--orange-mid);
      border-radius: var(--radius);
      padding: 0.85rem 1.1rem;
      font-size: 0.86rem;
      color: var(--ink-mid);
      margin: 1.1rem 0;
    }
    .callout a { color: var(--orange); font-weight: 600; text-decoration: none; }
    .callout a:hover { text-decoration: underline; }

    /* ── Hero rating line ── */
    .hero-rating {
      display: flex; align-items: center; gap: 0.5rem;
      font-size: 0.84rem; color: var(--ink-mid);
      margin-bottom: 1.4rem; font-weight: 500;
    }
    .hero-rating .stars { color: var(--orange); letter-spacing: 1px; }

    /* ── Responsive ── */
    @media (max-width: 640px) {
      .section { padding: 2.5rem 0; }
      .hero { padding: 2rem 0; }
      .hero h1 { font-size: 1.6rem; }
      .product-top { grid-template-columns: 1fr; }
      .specs-grid { grid-template-columns: 1fr 1fr; }
      .info-grid { grid-template-columns: 1fr; }
      .flow-step { flex: 1 1 100%; }
      .cta-block { padding: 2rem 1.25rem; }
    }
  