);
}
// ============ ENGINEERING EXCELLENCE — sticky scroll ============
function EngExcellence() {
const [active, setActive] = useS3(0);
const features = [
{ num: "01", title: "cGMP-oriented design", body: "Cleanable, contained, and validatable surfaces and structures from concept onward — not retrofitted for compliance." },
{ num: "02", title: "21 CFR Part 11-ready architecture", body: "Audit trail messaging, electronic signatures, and recipe management ready for regulated environments where applicable." },
{ num: "03", title: "PLC-based automation", body: "Centralized PLC control with HMI panels designed for operator clarity, recipe libraries, and supervisory data export." },
{ num: "04", title: "Engineered for high throughput", body: "Continuous-motion designs that sustain throughput at the upper end of OSD volumes — without sacrificing rejection rates." },
{ num: "05", title: "Low-rejection precision", body: "Laser sensors and closed-loop verification at every critical transfer to keep rejection rates measurable in tenths of a percent." },
{ num: "06", title: "After-sales partnership", body: "Installation, validation, training, spares, and remote support — engineered into the relationship, not bolted on." },
];
return (
Engineering excellence
Six commitments that show up on every shop floor.
Feature {features[active].num}
Now showing
{features[active].title}
{features.map((f, i) => (
setActive(i)}
style={{
padding: "28px 0", borderBottom: "1px solid var(--line)",
cursor: "pointer", transition: "all 200ms",
opacity: active === i ? 1 : 0.5,
}}
>
{f.num}
{f.title}
{f.body}
))}
);
}
// ============ TESTIMONIALS ============
function Testimonials() {
const [i, setI] = useS3(0);
const t = [
{ quote: "Mark Maker's effervescent line transformed our throughput. The EFF-PACK 100 has been operational at 1.1 million tablets per shift, consistently — well above our original target.", name: "Ahmed Khalil", role: "Plant Director", company: "Pharco Pharmaceuticals", country: "Egypt", solution: "Complete EFF Line" },
{ quote: "What sold us was the engineering rigor — every spec they quoted held up in commissioning. The HMI and audit trail integrated cleanly into our existing QMS.", name: "Maria Santos", role: "Production Manager", company: "Hypera Pharma", country: "Brazil", solution: "EFF-PACK 4T" },
{ quote: "The granulation line is forgiving, validated, and clean. Quick changeover between products is genuinely fast — not the marketing-fast you sometimes see.", name: "Rajesh Verma", role: "VP Manufacturing", company: "Cipla Health", country: "India", solution: "RMG + FBP" },
];
const cur = t[i];
return (
Customer proof
"{cur.quote}"
{cur.name.split(" ").map(n => n[0]).join("")}
{cur.name}
{cur.role} · {cur.company}
{cur.solution}{cur.country}
{t.map((other, idx) => (
))}
);
}
// ============ FINAL CTA ============
function FinalCTA() {
return (
Project consultation
Planning a new processing or packaging line?
Speak with Mark Maker's engineering team about machine selection, capacity studies, layout planning, and complete-line integration.
Quick contact
);
}
function ContactRow({ label, value }) {
return (