/**
 * Ship For Me page — hero section.
 *
 * Built from a screenshot only (Figma access was unavailable this pass), same
 * caveat already on record for the RFQ / Cost Calculator pages: structure and
 * copy are transcribed carefully, but most px values below are estimates by
 * eye against the screenshot, not a node-tree pull.
 *
 * One exception: the stat row. The client's second screenshot had Figma's
 * inspector panel open on the first card, which gave real numbers —
 * X:122 Y:762 W:392.72 H:108.1 on the page's usual 1440 stage (X≈122 lands
 * flush with the 1200 container's left edge, same as everywhere else on the
 * site), fill `linear-gradient(#71DBFF → #EEFC72)` at **10% fill opacity**,
 * 16px corner radius, 1px inset stroke `#EAE7E7`. That exact treatment is
 * applied to all three cards below — they read as one consistent set in the
 * screenshot, not just the first — but only card 1's numbers are confirmed.
 * The gap between cards is not from the inspector; 16px is a visual estimate.
 *
 * The "Live from 1688 factories" badge was later confirmed the same way —
 * inspector size 173x27, "Selection colors" `#4A5200` / `#8E9E00` /
 * `#EEFC72` / `#F4F4F4`. Applied in ShipHero.tsx as `#4A5200` on the bold
 * text, `#8E9E00` on the regular text and dot, `#EEFC72` as a low-opacity
 * background tint. `#F4F4F4` is folded into that tint rather than laid down
 * as its own flat fill — the badge only ever reads as one soft color, not
 * two stacked layers, so a separate near-white base didn't have anywhere
 * distinct to go.
 */

export const shipHeroBadge = {
  prefix: "Live from ",
  strong: "1688 factories",
};

export const shipHeroIntro = {
  titleLead: "Ship anything from China, ",
  titleAccent: "straight to your door",
  titleTail: " in Bangladesh",
  subtitle:
    "DK Bazar picks up, warehouses, and delivers your sourced products — with real factory livestreams, transparent customs, and door-to-door tracking. No middleman guesswork.",
  primaryCta: "Get my shipping quote",
  secondaryCta: "Watch 60-sec demo",
};

// Cutout PNG the client dropped in public/ship/. Natural size kept here so
// <Image> can reason about aspect ratio without a network round trip.
export const shipHeroImage = {
  src: "/ship/ship-hero.png",
  alt: "DK Bazar delivery agent holding a phone showing live shipment tracking, next to a globe of the China-to-Bangladesh logistics network",
  width: 818,
  height: 719,
};

export const shipHeroStats = [
  { value: "18,400+", label: "Shipments Delivered" },
  { value: "7-12 days", label: "Avg. Delivery Time" },
  { value: "bKash • Nagad", label: "Local Payment Ready" },
] as const;
