/* iOS-inspired flat factory homepage */
.factory-home {
    --fh-blue: #007aff;
    --fh-blue-dark: #0062cc;
    --fh-blue-soft: #e8f2ff;
    --fh-green: #34c759;
    --fh-green-soft: #eaf9ee;
    --fh-orange: #ff9f0a;
    --fh-orange-soft: #fff4df;
    --fh-purple: #5e5ce6;
    --fh-purple-soft: #eeedff;
    --fh-pink: #ff375f;
    --fh-pink-soft: #ffedf1;
    --fh-teal: #30b0c7;
    --fh-teal-soft: #e8f8fb;
    --fh-ink: #1c1c1e;
    --fh-muted: #6e6e73;
    --fh-tertiary: #8e8e93;
    --fh-bg: #f2f2f7;
    --fh-surface: #ffffff;
    --fh-line: rgba(60, 60, 67, .13);
    --fh-line-strong: rgba(60, 60, 67, .22);
    --fh-radius-sm: 14px;
    --fh-radius: 22px;
    --fh-radius-lg: 30px;
    --fh-shadow: 0 1px 2px rgba(16, 24, 40, .04), 0 12px 32px rgba(16, 24, 40, .06);
    --fh-shadow-hover: 0 2px 4px rgba(16, 24, 40, .05), 0 18px 42px rgba(0, 122, 255, .12);
    --fh-shell: 1200px;
    overflow-x: clip;
    color: var(--fh-ink);
    background: var(--fh-bg);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
.factory-home *,
.factory-home *::before,
.factory-home *::after { box-sizing: border-box; }
.factory-home img { display: block; max-width: 100%; }
.factory-home h1,
.factory-home h2,
.factory-home h3,
.factory-home p,
.factory-home ul,
.factory-home ol,
.factory-home dl,
.factory-home dd,
.factory-home dt,
.factory-home figure { margin: 0; }
.factory-home ul,
.factory-home ol { padding: 0; list-style: none; }
.factory-home a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
.factory-home a:focus-visible,
.factory-home button:focus-visible { outline: 3px solid rgba(0, 122, 255, .28); outline-offset: 3px; }
.factory-home ::selection { color: #fff; background: var(--fh-blue); }
.fh-shell { width: min(var(--fh-shell), calc(100% - 48px)); margin: 0 auto; }
.factory-home section[id] { scroll-margin-top: 118px; }
.fh-hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    color: #fff;
    background: #0d1624;
}
.fh-hero::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(115deg, rgba(7, 15, 29, .96) 0%, rgba(9, 25, 46, .83) 45%, rgba(7, 19, 34, .42) 100%);
    content: "";
}
.fh-hero::after {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    height: 180px;
    background: linear-gradient(180deg, transparent, rgba(242, 242, 247, .96));
    content: "";
    pointer-events: none;
}
.fh-hero-media,
.fh-hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.fh-hero-media img { object-fit: cover; object-position: center; filter: saturate(.82) contrast(1.02); }
.fh-hero-inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 72px;
    align-items: center;
    min-height: 760px;
    padding-top: 76px;
    padding-bottom: 112px;
}
.fh-hero-copy { max-width: 760px; }
.fh-eyebrow,
.fh-kicker {
    color: var(--fh-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1.45;
    text-transform: uppercase;
}
.fh-eyebrow { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.78); }
.fh-eyebrow span { width: 38px; height: 2px; border-radius: 99px; background: var(--fh-blue); }
.fh-hero h1 {
    max-width: 760px;
    margin-top: 22px !important;
    font-family: inherit;
    font-size: clamp(48px, 5.1vw, 72px);
    font-weight: 700;
    letter-spacing: -.052em;
    line-height: 1.02;
    text-wrap: balance;
}
.fh-hero-lead {
    max-width: 700px;
    margin-top: 24px !important;
    color: rgba(255,255,255,.76);
    font-size: 17px;
    line-height: 1.75;
}
.fh-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.fh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: 0;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 650;
    letter-spacing: -.01em;
    transition: background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.fh-btn:hover { transform: translateY(-1px); }
.fh-btn .iconfont { margin-left: 8px; }
.fh-btn-primary { color: #fff; background: var(--fh-blue); box-shadow: 0 8px 20px rgba(0, 122, 255, .25); }
.fh-btn-primary:hover { color: #fff; background: var(--fh-blue-dark); box-shadow: 0 10px 24px rgba(0, 98, 204, .28); }
.fh-btn-ghost { color: #fff; background: rgba(255,255,255,.14); box-shadow: inset 0 0 0 1px rgba(255,255,255,.24); backdrop-filter: blur(16px); }
.fh-btn-ghost:hover { color: #fff; background: rgba(255,255,255,.22); }
.fh-btn-light { color: var(--fh-blue); background: #fff; box-shadow: 0 10px 24px rgba(10, 44, 84, .16); }
.fh-btn-light:hover { color: var(--fh-blue); background: #f7fbff; }
.fh-btn-outline-light { color: #fff; background: rgba(255,255,255,.12); box-shadow: inset 0 0 0 1px rgba(255,255,255,.32); }
.fh-btn-outline-light:hover { color: #fff; background: rgba(255,255,255,.2); }
.fh-hero-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 760px;
    margin-top: 48px !important;
    border-top: 1px solid rgba(255,255,255,.17);
}
.fh-hero-metrics > div { padding: 20px 18px 0 0; }
.fh-hero-metrics dt { color: #fff; font-size: 30px; font-weight: 700; letter-spacing: -.04em; line-height: 1; }
.fh-hero-metrics dt small { margin-left: 3px; color: rgba(255,255,255,.62); font-size: 14px; font-weight: 600; }
.fh-hero-metrics dd { margin-top: 9px; color: rgba(255,255,255,.57); font-size: 11px; line-height: 1.45; }
.fh-hero-card {
    align-self: end;
    margin-bottom: 18px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--fh-radius-lg);
    background: rgba(22, 31, 46, .62);
    box-shadow: 0 24px 70px rgba(0,0,0,.24);
    backdrop-filter: saturate(160%) blur(24px);
}
.fh-card-label { color: rgba(255,255,255,.62); font-size: 10px; font-weight: 700; letter-spacing: .11em; }
.fh-hero-card h2 {
    margin-top: 10px !important;
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: -.035em;
    line-height: 1.24;
}
.fh-hero-card ul { margin-top: 22px; border-top: 1px solid rgba(255,255,255,.13); }
.fh-hero-card li { display: grid; grid-template-columns: 34px 1fr; gap: 12px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.fh-hero-card li > span { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 9px; color: #fff; background: rgba(0,122,255,.85); font-size: 10px; font-weight: 700; }
.fh-hero-card strong,
.fh-hero-card small { display: block; }
.fh-hero-card strong { color: #fff; font-size: 13px; font-weight: 600; line-height: 1.45; }
.fh-hero-card small { margin-top: 4px; color: rgba(255,255,255,.55); font-size: 11px; line-height: 1.5; }

.fh-strength-strip { position: relative; z-index: 4; margin-top: -58px; background: transparent; }
.fh-strength-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); padding: 8px; border: 1px solid rgba(255,255,255,.75); border-radius: var(--fh-radius-lg); background: rgba(255,255,255,.9); box-shadow: var(--fh-shadow); backdrop-filter: saturate(180%) blur(24px); }
.fh-strength-grid article { display: grid; grid-template-columns: 42px 1fr; gap: 12px; min-height: 148px; padding: 25px 20px; border-right: 1px solid var(--fh-line); }
.fh-strength-grid article:last-child { border-right: 0; }
.fh-strength-grid article > span { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 12px; color: var(--fh-blue); background: var(--fh-blue-soft); font-size: 11px; font-weight: 700; }
.fh-strength-grid article:nth-child(2) > span { color: #1f8f43; background: var(--fh-green-soft); }
.fh-strength-grid article:nth-child(3) > span { color: #b96f00; background: var(--fh-orange-soft); }
.fh-strength-grid article:nth-child(4) > span { color: var(--fh-purple); background: var(--fh-purple-soft); }
.fh-strength-grid strong { color: var(--fh-ink); font-size: 15px; font-weight: 650; letter-spacing: -.02em; line-height: 1.42; }
.fh-strength-grid p { margin-top: 7px !important; color: var(--fh-muted); font-size: 12px; line-height: 1.6; }

.fh-section { padding: 112px 0; border: 0; }
.fh-company,
.fh-products,
.fh-process { background: var(--fh-surface); }
.fh-qualification,
.fh-production,
.fh-research { background: var(--fh-bg); }
.fh-capabilities { background: var(--fh-surface); }
.fh-heading { max-width: 780px; }
.fh-heading h2,
.fh-qualification-intro h2,
.fh-research-copy h2,
.fh-inquiry h2 {
    margin-top: 12px !important;
    color: var(--fh-ink);
    font-family: inherit;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    letter-spacing: -.052em;
    line-height: 1.07;
    text-wrap: balance;
}
.fh-heading-split { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(290px, .65fr); gap: 64px; max-width: none; align-items: end; }
.fh-heading-split > p { padding-bottom: 4px; color: var(--fh-muted); font-size: 15px; line-height: 1.7; }

.fh-factory-grid { display: grid; gap: 24px; margin-top: 52px; }
.fh-factory-card { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); min-height: 520px; overflow: hidden; border: 1px solid var(--fh-line); border-radius: var(--fh-radius-lg); background: var(--fh-surface); box-shadow: var(--fh-shadow); }
.fh-factory-card-reverse { grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr); }
.fh-factory-card-reverse figure { order: 2; }
.fh-factory-card figure { position: relative; min-height: 450px; overflow: hidden; margin: 10px; border-radius: 22px; background: #e5e5ea; }
.fh-factory-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.22,.61,.36,1); }
.fh-factory-card:hover img { transform: scale(1.018); }
.fh-factory-body { display: flex; padding: clamp(34px, 4.5vw, 58px); flex-direction: column; justify-content: center; }
.fh-factory-no { display: inline-flex; align-self: flex-start; padding: 7px 11px; border-radius: 999px; color: var(--fh-blue); background: var(--fh-blue-soft); font-size: 10px; font-weight: 700; letter-spacing: .07em; }
.fh-factory-body h3 { margin-top: 17px !important; color: var(--fh-ink); font-size: 29px; font-weight: 700; letter-spacing: -.04em; line-height: 1.2; }
.fh-factory-legal { margin-top: 10px !important; color: var(--fh-blue); font-size: 12px; font-weight: 650; line-height: 1.5; }
.fh-factory-body > p:not(.fh-factory-no):not(.fh-factory-legal) { margin-top: 18px !important; color: var(--fh-muted); font-size: 14px; line-height: 1.75; }
.fh-check-list { margin-top: 22px !important; border-top: 1px solid var(--fh-line); }
.fh-check-list li { position: relative; padding: 11px 0 11px 24px; border-bottom: 1px solid var(--fh-line); color: #3a3a3c; font-size: 13px; line-height: 1.5; }
.fh-check-list li::before { position: absolute; top: 14px; left: 1px; width: 8px; height: 8px; border-radius: 50%; background: var(--fh-blue); box-shadow: 0 0 0 4px var(--fh-blue-soft); content: ""; }

.fh-qualification-layout { display: grid; grid-template-columns: minmax(270px, .72fr) minmax(0, 1.28fr); gap: 72px; align-items: start; }
.fh-qualification-intro p:not(.fh-kicker) { margin-top: 22px !important; color: var(--fh-muted); font-size: 15px; line-height: 1.7; }
.fh-text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; color: var(--fh-blue); font-size: 14px; font-weight: 650; }
.fh-text-link:hover { color: var(--fh-blue-dark); }
.fh-text-link .iconfont { font-size: 11px; }
.fh-heading-side { display: flex; flex-direction: column; align-items: flex-start; }
.fh-heading-side > p { padding-bottom: 4px; color: var(--fh-muted); font-size: 15px; line-height: 1.7; }
.fh-heading-side .fh-module-link { margin-top: 18px; }
.fh-module-link { width: fit-content; }
.fh-qualification-links { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 24px; align-items: center; }
.fh-qualification-links .fh-text-link { margin-top: 0; }
.fh-research-copy > .fh-module-link { margin-top: 20px; }
.fh-credential-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.fh-credential-grid article { min-height: 194px; padding: 24px; border: 1px solid rgba(255,255,255,.84); border-radius: var(--fh-radius); background: var(--fh-surface); box-shadow: 0 1px 2px rgba(16,24,40,.03); transition: transform .2s ease, box-shadow .2s ease; }
.fh-credential-grid article:hover { transform: translateY(-2px); box-shadow: var(--fh-shadow); }
.fh-credential-grid span { display: inline-flex; padding: 6px 9px; border-radius: 9px; color: var(--fh-blue); background: var(--fh-blue-soft); font-size: 10px; font-weight: 750; letter-spacing: .04em; }
.fh-credential-grid article:nth-child(2) span { color: #1f8f43; background: var(--fh-green-soft); }
.fh-credential-grid article:nth-child(3) span { color: #b96f00; background: var(--fh-orange-soft); }
.fh-credential-grid article:nth-child(4) span { color: var(--fh-pink); background: var(--fh-pink-soft); }
.fh-credential-grid article:nth-child(5) span { color: var(--fh-purple); background: var(--fh-purple-soft); }
.fh-credential-grid article:nth-child(6) span { color: #177f91; background: var(--fh-teal-soft); }
.fh-credential-grid strong { display: block; margin-top: 19px; color: var(--fh-ink); font-size: 15px; font-weight: 650; line-height: 1.4; }
.fh-credential-grid p { margin-top: 8px !important; color: var(--fh-muted); font-size: 12px; line-height: 1.6; }

.fh-heading-dark h2 { color: var(--fh-ink); }
.fh-heading-dark > p { color: var(--fh-muted); }
.fh-capability-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 52px; }
.fh-capability-grid article { min-height: 220px; padding: 25px 23px; border: 0; border-radius: var(--fh-radius); background: var(--fh-blue-soft); transition: transform .2s ease, box-shadow .2s ease; }
.fh-capability-grid article:hover { transform: translateY(-3px); box-shadow: var(--fh-shadow); }
.fh-capability-grid article:nth-child(2) { background: var(--fh-green-soft); }
.fh-capability-grid article:nth-child(3) { background: var(--fh-orange-soft); }
.fh-capability-grid article:nth-child(4) { background: var(--fh-purple-soft); }
.fh-capability-grid article:nth-child(5) { background: var(--fh-pink-soft); }
.fh-capability-grid article:nth-child(6) { background: var(--fh-teal-soft); }
.fh-capability-grid article:nth-child(7) { background: #f2f2f7; }
.fh-capability-grid article:nth-child(8) { background: #eef6ff; }
.fh-cap-no { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 11px; color: #fff; background: var(--fh-blue); font-size: 10px; font-weight: 750; letter-spacing: .02em; }
.fh-capability-grid article:nth-child(2) .fh-cap-no { background: #2da84f; }
.fh-capability-grid article:nth-child(3) .fh-cap-no { background: #e98f00; }
.fh-capability-grid article:nth-child(4) .fh-cap-no { background: var(--fh-purple); }
.fh-capability-grid article:nth-child(5) .fh-cap-no { background: var(--fh-pink); }
.fh-capability-grid article:nth-child(6) .fh-cap-no { background: var(--fh-teal); }
.fh-capability-grid article:nth-child(7) .fh-cap-no { background: #636366; }
.fh-capability-grid article:nth-child(8) .fh-cap-no { background: #0a84ff; }
.fh-capability-grid h3 { margin-top: 22px !important; color: var(--fh-ink); font-size: 19px; font-weight: 700; letter-spacing: -.03em; line-height: 1.3; }
.fh-capability-grid strong { display: block; margin-top: 9px; color: var(--fh-blue); font-size: 12px; font-weight: 650; }
.fh-capability-grid article:nth-child(2) strong { color: #1f8f43; }
.fh-capability-grid article:nth-child(3) strong { color: #b96f00; }
.fh-capability-grid article:nth-child(4) strong { color: var(--fh-purple); }
.fh-capability-grid article:nth-child(5) strong { color: var(--fh-pink); }
.fh-capability-grid article:nth-child(6) strong { color: #177f91; }
.fh-capability-grid p { margin-top: 13px !important; color: var(--fh-muted); font-size: 12px; line-height: 1.65; }
.fh-cap-note { margin-top: 22px !important; color: var(--fh-tertiary); font-size: 11px; line-height: 1.6; }

.fh-production-layout { display: grid; grid-template-columns: minmax(280px, .58fr) minmax(0, 1.42fr); gap: 20px; margin-top: 52px; }
.fh-production-feature { position: relative; min-height: 650px; overflow: hidden; margin: 0; border-radius: var(--fh-radius-lg); background: #d1d1d6; box-shadow: var(--fh-shadow); }
.fh-production-feature::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 34%, rgba(7,17,32,.86) 100%); content: ""; }
.fh-production-feature img { width: 100%; height: 100%; object-fit: cover; }
.fh-production-feature figcaption { position: absolute; z-index: 2; right: 28px; bottom: 28px; left: 28px; color: #fff; }
.fh-production-feature figcaption span { color: rgba(255,255,255,.68); font-size: 10px; font-weight: 750; letter-spacing: .1em; }
.fh-production-feature figcaption strong { display: block; margin-top: 9px; font-size: 28px; font-weight: 700; letter-spacing: -.04em; line-height: 1.15; }
.fh-production-feature figcaption p { margin-top: 10px !important; color: rgba(255,255,255,.66); font-size: 12px; line-height: 1.6; }
.fh-production-side { display: grid; gap: 20px; }
.fh-production-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.fh-production-stats article { min-height: 130px; padding: 23px; border-radius: var(--fh-radius); background: var(--fh-surface); box-shadow: 0 1px 2px rgba(16,24,40,.03); }
.fh-production-stats strong { display: block; color: var(--fh-blue); font-size: 30px; font-weight: 700; letter-spacing: -.045em; line-height: 1; }
.fh-production-stats article:nth-child(2) strong { color: #2da84f; }
.fh-production-stats article:nth-child(3) strong { color: #e98f00; }
.fh-production-stats article:nth-child(4) strong { color: var(--fh-purple); }
.fh-production-stats span { display: block; margin-top: 11px; color: var(--fh-muted); font-size: 11px; line-height: 1.45; }
.fh-photo-grid { display: grid; grid-template-columns: 1.1fr .9fr; grid-template-rows: repeat(2, 218px); gap: 12px; }
.fh-photo-grid figure { position: relative; overflow: hidden; border-radius: var(--fh-radius); background: #d1d1d6; }
.fh-photo-grid figure:first-child { grid-row: 1 / 3; }
.fh-photo-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.fh-photo-grid figure:hover img { transform: scale(1.025); }
.fh-photo-grid figcaption { position: absolute; right: 16px; bottom: 14px; left: 16px; padding-top: 26px; color: #fff; background: linear-gradient(180deg, transparent, rgba(8,20,38,.72)); font-size: 11px; font-weight: 650; text-shadow: 0 1px 4px rgba(0,0,0,.3); }
.fh-equipment-block { display: grid; grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr); gap: 48px; align-items: center; margin-top: 20px; padding: 44px; border-radius: var(--fh-radius-lg); background: var(--fh-surface); box-shadow: 0 1px 2px rgba(16,24,40,.03); }
.fh-equipment-copy h3 { margin-top: 12px !important; color: var(--fh-ink); font-size: 29px; font-weight: 700; letter-spacing: -.04em; line-height: 1.2; }
.fh-equipment-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px !important; }
.fh-equipment-tags li { padding: 8px 11px; border-radius: 10px; color: #3a3a3c; background: var(--fh-bg); font-size: 11px; line-height: 1.3; }
.fh-equipment-photos { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.fh-equipment-photos figure { overflow: hidden; aspect-ratio: 4 / 3; border-radius: var(--fh-radius); background: #d1d1d6; }
.fh-equipment-photos img { width: 100%; height: 100%; object-fit: cover; }

.fh-product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 52px; }
.fh-product-card { display: grid; grid-template-columns: 42px 1fr; min-height: 190px; padding: 27px 24px; border: 0; border-radius: var(--fh-radius); background: var(--fh-bg); transition: background .2s ease, transform .2s ease, box-shadow .2s ease; }
.fh-product-card:hover { transform: translateY(-2px); background: var(--fh-blue-soft); box-shadow: var(--fh-shadow); }
.fh-product-card > span { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 11px; color: var(--fh-blue); background: #fff; font-size: 10px; font-weight: 750; box-shadow: 0 1px 2px rgba(16,24,40,.04); }
.fh-product-card:nth-child(2) > span { color: #2da84f; }
.fh-product-card:nth-child(3) > span { color: var(--fh-pink); }
.fh-product-card:nth-child(4) > span { color: #e98f00; }
.fh-product-card:nth-child(5) > span { color: var(--fh-purple); }
.fh-product-card:nth-child(6) > span { color: var(--fh-teal); }
.fh-product-card:nth-child(7) > span { color: var(--fh-pink); }
.fh-product-card:nth-child(8) > span { color: #e98f00; }
.fh-product-card:nth-child(9) > span { color: var(--fh-purple); }
.fh-product-card h3 { color: var(--fh-ink); font-size: 18px; font-weight: 700; letter-spacing: -.03em; line-height: 1.3; }
.fh-product-card p { margin-top: 11px !important; color: var(--fh-muted); font-size: 12px; line-height: 1.65; }
.fh-product-card-wide { grid-column: span 2; }
.fh-product-note { margin-top: 20px !important; color: var(--fh-tertiary); font-size: 11px; line-height: 1.6; }

/* Enterprise video */
.fh-video { background: var(--fh-bg); }
.fh-video-frame { position: relative; overflow: hidden; margin-top: 52px !important; border-radius: var(--fh-radius-lg); background: #0c0c0e; box-shadow: 0 24px 64px rgba(16,24,40,.16); }
.fh-video-frame video { display: block; width: 100%; height: auto; aspect-ratio: 960 / 544; background: #000; object-fit: contain; }

/* Database-driven product categories */
.fh-live-catalog { background: var(--fh-surface); }
.fh-catalog-tabs-wrap { margin-top: 46px; overflow-x: auto; scrollbar-width: none; }
.fh-catalog-tabs-wrap::-webkit-scrollbar { display: none; }
.fh-catalog-tabs { display: flex; width: max-content; min-width: 100%; gap: 8px; padding: 3px; border-radius: 18px; background: var(--fh-bg); }
.fh-category-tab { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 46px; padding: 0 17px; border: 0; border-radius: 14px; color: #3a3a3c; background: transparent; font: inherit; font-size: 13px; font-weight: 650; white-space: nowrap; cursor: pointer; transition: color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease; }
.fh-category-tab:hover { color: var(--fh-blue); background: rgba(255,255,255,.72); }
.fh-category-tab[aria-selected="true"] { color: #fff; background: var(--fh-blue); box-shadow: 0 8px 20px rgba(0,122,255,.22); }
.fh-category-tab small { display: inline-flex; align-items: center; justify-content: center; min-width: 22px; height: 22px; padding: 0 6px; border-radius: 999px; color: var(--fh-blue); background: #fff; font-size: 10px; font-weight: 700; }
.fh-category-tab[aria-selected="true"] small { color: var(--fh-blue); background: rgba(255,255,255,.92); }
.fh-catalog-panels { margin-top: 30px; }
.fh-catalog-panel[hidden] { display: none; }
.fh-catalog-panel:not([hidden]) { animation: fhCatalogPanelIn .36s cubic-bezier(.22,.61,.36,1) both; }
.fh-catalog-panel-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--fh-line); }
.fh-catalog-panel-label { color: var(--fh-blue); font-size: 10px; font-weight: 750; letter-spacing: .1em; }
.fh-catalog-panel-head h3 { margin-top: 8px !important; color: var(--fh-ink); font-size: 26px; font-weight: 700; letter-spacing: -.04em; line-height: 1.22; }
.fh-catalog-panel-head .fh-text-link { flex: none; margin-top: 0; }
.fh-live-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 1fr; gap: 14px; margin-top: 24px; }
.fh-live-product-card { min-width: 0; overflow: hidden; border: 1px solid var(--fh-line); border-radius: var(--fh-radius); background: #fff; box-shadow: 0 1px 2px rgba(16,24,40,.03); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.fh-live-product-card:hover { border-color: rgba(0,122,255,.22); box-shadow: var(--fh-shadow-hover); transform: translateY(-4px); }
.fh-live-product-card > a { display: flex; height: 100%; flex-direction: column; }
.fh-live-product-media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; margin: 0; background: linear-gradient(135deg, #eef4ff, #f7f7fb); }
.fh-live-product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s cubic-bezier(.22,.61,.36,1); }
.fh-live-product-card:hover .fh-live-product-media img { transform: scale(1.035); }
.fh-live-product-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; color: rgba(0,122,255,.32); font-size: 34px; font-weight: 800; letter-spacing: -.06em; }
.fh-live-product-category { position: absolute; right: 12px; bottom: 12px; left: 12px; overflow: hidden; padding: 7px 10px; border-radius: 10px; color: #fff; background: rgba(15,24,38,.72); font-size: 10px; font-weight: 650; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; backdrop-filter: blur(12px); }
.fh-live-product-body { display: flex; flex: 1; padding: 17px 17px 18px; flex-direction: column; }
.fh-live-product-body h4 { display: -webkit-box; overflow: hidden; color: var(--fh-ink); font-size: 15px; font-weight: 700; letter-spacing: -.025em; line-height: 1.4; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.fh-live-product-body p { display: -webkit-box; overflow: hidden; margin-top: 8px !important; color: var(--fh-muted); font-size: 11px; line-height: 1.58; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.fh-live-product-more { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 14px; color: var(--fh-blue); font-size: 11px; font-weight: 700; }
.fh-live-product-more .iconfont { font-size: 10px; }
.fh-catalog-panel-footer { display: flex; justify-content: center; margin-top: 26px; }
.fh-btn-soft { color: var(--fh-blue); background: var(--fh-blue-soft); box-shadow: inset 0 0 0 1px rgba(0,122,255,.1); }
.fh-btn-soft:hover { color: #fff; background: var(--fh-blue); box-shadow: 0 9px 22px rgba(0,122,255,.2); }
.fh-catalog-empty { margin-top: 24px; padding: 52px 24px; border: 1px dashed var(--fh-line-strong); border-radius: var(--fh-radius); color: var(--fh-muted); background: var(--fh-bg); font-size: 14px; text-align: center; }
@keyframes fhCatalogPanelIn { from { opacity: 0; transform: translate3d(0, 12px, 0); } to { opacity: 1; transform: translate3d(0, 0, 0); } }

.fh-research-layout { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 62px; align-items: center; }
.fh-research-visual { position: relative; min-height: 520px; overflow: hidden; margin: 0; border-radius: var(--fh-radius-lg); background: #d1d1d6; box-shadow: var(--fh-shadow); }
.fh-research-visual img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.fh-research-visual figcaption { position: absolute; right: 18px; bottom: 18px; padding: 9px 12px; border-radius: 10px; color: #fff; background: rgba(20,20,22,.7); font-size: 10px; font-weight: 650; letter-spacing: .02em; backdrop-filter: blur(14px); }
.fh-research-copy > p:not(.fh-kicker):not(.fh-research-note) { margin-top: 20px !important; color: var(--fh-muted); font-size: 15px; line-height: 1.72; }
.fh-research-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 28px !important; }
.fh-research-stats div { padding: 19px; border-radius: var(--fh-radius-sm); background: var(--fh-surface); box-shadow: 0 1px 2px rgba(16,24,40,.03); }
.fh-research-stats dt { color: var(--fh-blue); font-size: 29px; font-weight: 700; letter-spacing: -.04em; line-height: 1; }
.fh-research-stats div:nth-child(2) dt { color: #2da84f; }
.fh-research-stats div:nth-child(3) dt { color: #e98f00; }
.fh-research-stats div:nth-child(4) dt { color: var(--fh-purple); }
.fh-research-stats dd { margin-top: 6px; color: var(--fh-muted); font-size: 11px; line-height: 1.45; }
.fh-research-note { margin-top: 17px !important; color: var(--fh-tertiary); font-size: 11px; line-height: 1.6; }
.fh-scientist-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(270px, .7fr); gap: 16px; margin-top: 58px; }
.fh-scientist-card { display: grid; grid-template-columns: 145px 1fr; min-height: 250px; overflow: hidden; border: 1px solid rgba(255,255,255,.85); border-radius: var(--fh-radius); background: var(--fh-surface); box-shadow: 0 1px 2px rgba(16,24,40,.03); }
.fh-scientist-card img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.fh-scientist-card div { padding: 23px 20px; }
.fh-scientist-card p { color: var(--fh-blue); font-size: 9px; font-weight: 750; letter-spacing: .08em; }
.fh-scientist-card h3 { margin-top: 9px !important; color: var(--fh-ink); font-size: 18px; font-weight: 700; letter-spacing: -.03em; line-height: 1.3; }
.fh-scientist-card span { display: block; margin-top: 11px; color: var(--fh-muted); font-size: 11px; line-height: 1.6; }
.fh-team-summary { padding: 26px 23px; border-radius: var(--fh-radius); color: #fff; background: var(--fh-blue); box-shadow: 0 12px 30px rgba(0,122,255,.2); }
.fh-team-summary .fh-kicker { color: rgba(255,255,255,.7); }
.fh-team-summary h3 { margin-top: 12px !important; color: #fff; font-size: 22px; font-weight: 700; letter-spacing: -.035em; line-height: 1.28; }
.fh-team-summary dl { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 22px !important; }
.fh-team-summary dl div { padding: 14px 12px; border-radius: 14px; background: rgba(255,255,255,.13); }
.fh-team-summary dt { color: #fff; font-size: 27px; font-weight: 700; letter-spacing: -.04em; }
.fh-team-summary dd { margin-top: 5px; color: rgba(255,255,255,.68); font-size: 10px; line-height: 1.4; }

.fh-process .fh-heading { margin: 0 auto; text-align: center; }
.fh-process-list { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; margin-top: 52px; }
.fh-process-list li { position: relative; min-height: 292px; padding: 27px 22px; border: 0; border-radius: var(--fh-radius); background: var(--fh-bg); }
.fh-process-list li:nth-child(2) { background: var(--fh-green-soft); }
.fh-process-list li:nth-child(3) { background: var(--fh-orange-soft); }
.fh-process-list li:nth-child(4) { background: var(--fh-purple-soft); }
.fh-process-list li:nth-child(5) { background: var(--fh-blue-soft); }
.fh-process-list li > span { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 13px; color: #fff; background: #636366; font-size: 11px; font-weight: 700; }
.fh-process-list li:nth-child(2) > span { background: #2da84f; }
.fh-process-list li:nth-child(3) > span { background: #e98f00; }
.fh-process-list li:nth-child(4) > span { background: var(--fh-purple); }
.fh-process-list li:nth-child(5) > span { background: var(--fh-blue); }
.fh-process-list h3 { margin-top: 31px !important; color: var(--fh-ink); font-size: 17px; font-weight: 700; letter-spacing: -.025em; line-height: 1.35; }
.fh-process-list p { margin-top: 11px !important; color: var(--fh-muted); font-size: 12px; line-height: 1.65; }
.fh-process-list li::after { display: none; }

.fh-inquiry { padding: 96px 0; color: #fff; background: var(--fh-blue); }
.fh-inquiry-layout { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); gap: 68px; align-items: center; }
.fh-inquiry .fh-kicker { color: rgba(255,255,255,.7); }
.fh-inquiry h2 { color: #fff; }
.fh-inquiry-copy > p:not(.fh-kicker) { margin-top: 20px !important; color: rgba(255,255,255,.76); font-size: 15px; line-height: 1.72; }
.fh-contact-notes { display: grid; gap: 10px; margin-top: 26px !important; }
.fh-contact-notes li { display: flex; align-items: center; color: rgba(255,255,255,.82); font-size: 12px; }
.fh-contact-notes i { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; margin-right: 9px; border-radius: 50%; color: var(--fh-blue); background: #fff; font-size: 10px; }
.fh-feedback-panel { padding: 24px; border-radius: var(--fh-radius-lg); color: var(--fh-ink); background: rgba(255,255,255,.96); box-shadow: 0 24px 60px rgba(0,45,100,.22); }
.fh-feedback-panel .am-form-group:last-child { margin-bottom: 0; }
.fh-feedback-panel input,
.fh-feedback-panel select,
.fh-feedback-panel textarea { border: 0; border-radius: var(--fh-radius-sm); background: var(--fh-bg); box-shadow: none; }
.fh-feedback-panel input:focus,
.fh-feedback-panel select:focus,
.fh-feedback-panel textarea:focus { background: #fff; box-shadow: 0 0 0 3px rgba(0,122,255,.18); }
.fh-feedback-panel .am-btn-primary { min-height: 46px; border: 0; border-radius: var(--fh-radius-sm); background: var(--fh-blue); font-weight: 650; }
.fh-feedback-panel .am-btn-primary:hover { border: 0; background: var(--fh-blue-dark); }

@media (max-width: 1100px) {
    .fh-hero-inner { grid-template-columns: 1fr; gap: 40px; align-content: center; }
    .fh-hero-copy { max-width: 860px; }
    .fh-hero-card { width: min(100%, 720px); align-self: auto; margin-bottom: 0; }
    .fh-hero-card ul { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,.13); border-left: 1px solid rgba(255,255,255,.13); }
    .fh-hero-card li { display: block; padding: 16px; border-top: 0; border-right: 1px solid rgba(255,255,255,.13); border-bottom: 0; }
    .fh-hero-card li:last-child { border-right: 0; }
    .fh-hero-card li > span { display: inline-flex; margin-bottom: 10px; }
    .fh-strength-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .fh-strength-grid article:nth-child(2) { border-right: 0; }
    .fh-strength-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--fh-line); }
    .fh-factory-card,
    .fh-factory-card-reverse { grid-template-columns: 1fr; }
    .fh-factory-card-reverse figure { order: 0; }
    .fh-factory-card figure { min-height: 400px; }
    .fh-qualification-layout,
    .fh-research-layout,
    .fh-inquiry-layout { grid-template-columns: 1fr; gap: 44px; }
    .fh-capability-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .fh-live-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .fh-production-layout { grid-template-columns: 1fr; }
    .fh-production-feature { min-height: 500px; }
    .fh-equipment-block { grid-template-columns: 1fr; gap: 34px; }
    .fh-scientist-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .fh-team-summary { grid-column: 1 / -1; }
    .fh-process-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
    .fh-shell { width: calc(100% - 32px); }
    .fh-hero,
    .fh-hero-inner { min-height: 0; }
    .fh-hero-inner { padding-top: 58px; padding-bottom: 92px; }
    .fh-hero::after { height: 110px; }
    .fh-hero h1 { font-size: clamp(38px, 11.5vw, 54px); letter-spacing: -.045em; }
    .fh-hero-lead { font-size: 15px; line-height: 1.68; }
    .fh-hero-card { padding: 22px; border-radius: 24px; }
    .fh-hero-card ul { grid-template-columns: 1fr; }
    .fh-hero-card li { display: grid; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
    .fh-hero-card li:last-child { border-bottom: 0; }
    .fh-hero-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 38px !important; }
    .fh-hero-metrics > div:nth-child(-n+2) { padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.14); }
    .fh-strength-strip { margin-top: -36px; }
    .fh-strength-grid { grid-template-columns: 1fr; padding: 6px; border-radius: 24px; }
    .fh-strength-grid article { min-height: 0; padding: 22px 18px; border-right: 0; border-bottom: 1px solid var(--fh-line); }
    .fh-strength-grid article:last-child { border-bottom: 0; }
    .fh-section { padding: 72px 0; }
    .fh-heading-split { grid-template-columns: 1fr; gap: 20px; }
    .fh-heading h2,
    .fh-qualification-intro h2,
    .fh-research-copy h2,
    .fh-inquiry h2 { font-size: 35px; }
    .fh-factory-grid { margin-top: 38px; }
    .fh-factory-card { border-radius: 24px; }
    .fh-factory-card figure { min-height: 300px; margin: 8px; border-radius: 18px; }
    .fh-factory-body { padding: 28px 22px 32px; }
    .fh-factory-body h3 { font-size: 25px; }
    .fh-qualification-layout { gap: 34px; }
    .fh-credential-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .fh-credential-grid article { min-height: 0; padding: 20px; border-radius: 18px; }
    .fh-capability-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 38px; }
    .fh-capability-grid article { min-height: 0; border-radius: 20px; }
    .fh-video-frame { margin-top: 38px !important; border-radius: 24px; }
    .fh-catalog-tabs-wrap { margin-top: 34px; }
    .fh-catalog-panel-head { align-items: start; flex-direction: column; gap: 16px; }
    .fh-catalog-panel-head h3 { font-size: 23px; }
    .fh-live-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .fh-live-product-card { border-radius: 20px; }
    .fh-live-product-body { padding: 15px 15px 16px; }
    .fh-live-product-body h4 { font-size: 14px; }
    .fh-production-layout { margin-top: 38px; }
    .fh-production-feature { min-height: 420px; border-radius: 24px; }
    .fh-production-stats,
    .fh-photo-grid { grid-template-columns: 1fr; }
    .fh-photo-grid { grid-template-rows: repeat(3, 230px); }
    .fh-photo-grid figure:first-child { grid-row: auto; }
    .fh-photo-grid figure { border-radius: 18px; }
    .fh-equipment-block { padding: 22px; border-radius: 24px; }
    .fh-equipment-copy h3 { font-size: 25px; }
    .fh-product-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 38px; }
    .fh-product-card-wide { grid-column: auto; }
    .fh-product-card { min-height: 0; border-radius: 20px; }
    .fh-research-visual,
    .fh-research-visual img { min-height: 340px; }
    .fh-research-visual { border-radius: 24px; }
    .fh-scientist-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 42px; }
    .fh-scientist-card { grid-template-columns: 112px 1fr; border-radius: 20px; }
    .fh-scientist-card div { padding: 20px 16px; }
    .fh-team-summary { grid-column: auto; border-radius: 20px; }
    .fh-process-list { grid-template-columns: 1fr; gap: 10px; margin-top: 38px; }
    .fh-process-list li { min-height: 0; padding: 24px 21px; border-radius: 20px; }
    .fh-inquiry { padding: 68px 0; }
    .fh-feedback-panel { padding: 18px; border-radius: 24px; }
}

@media (max-width: 479px) {
    .fh-shell { width: calc(100% - 24px); }
    .fh-actions { display: grid; }
    .fh-btn { width: 100%; }
    .fh-hero-metrics dt { font-size: 26px; }
    .fh-hero-metrics dd { font-size: 9px; }
    .fh-credential-grid { grid-template-columns: 1fr; }
    .fh-production-stats { grid-template-columns: 1fr; }
    .fh-scientist-card { grid-template-columns: 1fr; }
    .fh-scientist-card img { height: 300px; }
    .fh-team-summary dl,
    .fh-research-stats { grid-template-columns: 1fr; }
    .fh-equipment-photos { grid-template-columns: 1fr; }
    .fh-live-product-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    .factory-home *,
    .factory-home *::before,
    .factory-home *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Motion enhancement layer */
.fh-scroll-progress { position: fixed; z-index: 10050; top: 0; left: 0; width: 100%; height: 3px; pointer-events: none; }
.fh-scroll-progress span { display: block; width: 100%; height: 100%; border-radius: 0 99px 99px 0; background: linear-gradient(90deg, var(--fh-blue), #5ac8fa, var(--fh-purple)); box-shadow: 0 0 14px rgba(0,122,255,.48); transform: scaleX(0); transform-origin: left center; }
.fh-motion-enabled .fh-hero-copy { animation: fhHeroIn .9s cubic-bezier(.22,.61,.36,1) both; }
.fh-motion-enabled .fh-hero-card { animation: fhHeroCardIn 1s .18s cubic-bezier(.22,.61,.36,1) both; }
.fh-motion-enabled .fh-hero-media img { animation: fhHeroDrift 20s ease-in-out infinite alternate; }
.fh-motion-enabled .fh-eyebrow span { animation: fhPulseLine 2.6s ease-in-out infinite; }
.fh-motion-enabled .fh-strength-grid { animation: fhFloatIn 1s .35s cubic-bezier(.22,.61,.36,1) both; }
.fh-motion-enabled .fh-reveal { opacity: 0; transform: translate3d(0, 34px, 0); transition: opacity .7s cubic-bezier(.22,.61,.36,1) var(--fh-reveal-delay,0ms), transform .7s cubic-bezier(.22,.61,.36,1) var(--fh-reveal-delay,0ms); will-change: opacity, transform; }
.fh-motion-enabled .fh-reveal.fh-is-visible { opacity: 1; transform: translate3d(0, 0, 0); will-change: auto; }
.fh-motion-enabled .fh-reveal-scale { transform: translate3d(0, 28px, 0) scale(.975); }
.fh-motion-enabled .fh-reveal-scale.fh-is-visible { transform: translate3d(0, 0, 0) scale(1); }
.fh-motion-enabled .fh-auto-active { z-index: 2; box-shadow: 0 16px 38px rgba(0,122,255,.16) !important; transform: translateY(-6px) scale(1.012) !important; }
.fh-motion-enabled .fh-product-card.fh-auto-active { background: var(--fh-blue-soft); }
.fh-motion-enabled .fh-capability-grid article.fh-auto-active { filter: saturate(1.08); }
.fh-motion-enabled .fh-number-pulse { animation: fhNumberGlow 1.2s ease-out; }

.fh-ticker { position: relative; z-index: 3; overflow: hidden; border-bottom: 1px solid var(--fh-line); background: rgba(255,255,255,.88); backdrop-filter: saturate(180%) blur(20px); }
.fh-ticker-track { display: flex; width: max-content; animation: fhTickerMove 30s linear infinite; will-change: transform; }
.fh-ticker:hover .fh-ticker-track { animation-play-state: paused; }
.fh-ticker-group { display: flex; flex: none; align-items: center; min-height: 58px; padding: 0 14px; }
.fh-ticker-item { display: inline-flex; align-items: center; gap: 10px; padding: 0 27px; color: #48484a; font-size: 11px; font-weight: 700; letter-spacing: .09em; white-space: nowrap; text-transform: uppercase; }
.fh-ticker-item::before { width: 7px; height: 7px; border-radius: 50%; background: var(--fh-blue); box-shadow: 0 0 0 4px var(--fh-blue-soft); content: ""; }
.fh-ticker-item:nth-child(2n)::before { background: var(--fh-green); box-shadow: 0 0 0 4px var(--fh-green-soft); }
.fh-ticker-item:nth-child(3n)::before { background: var(--fh-orange); box-shadow: 0 0 0 4px var(--fh-orange-soft); }
.fh-ticker-item:nth-child(4n)::before { background: var(--fh-purple); box-shadow: 0 0 0 4px var(--fh-purple-soft); }

.fh-section { position: relative; isolation: isolate; }
.fh-section > .fh-shell { position: relative; z-index: 1; }
.fh-production::before,
.fh-research::before { position: absolute; z-index: -1; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(0,122,255,.13), rgba(0,122,255,0) 68%); content: ""; filter: blur(8px); pointer-events: none; animation: fhAmbientDrift 14s ease-in-out infinite alternate; }
.fh-production::before { top: 8%; right: -120px; }
.fh-research::before { bottom: 4%; left: -140px; background: radial-gradient(circle, rgba(94,92,230,.13), rgba(94,92,230,0) 68%); animation-delay: -5s; }

.fh-hero-card::after { position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.09) 48%, transparent 72%); content: ""; pointer-events: none; animation: fhGlassSweep 6.5s ease-in-out infinite; transform: translateX(-120%); }
.fh-hero-card { position: relative; overflow: hidden; }
.fh-factory-card,
.fh-credential-grid article,
.fh-capability-grid article,
.fh-product-card,
.fh-scientist-card { backface-visibility: hidden; }
.fh-factory-card img,
.fh-production-feature img { transform-origin: center; }

@keyframes fhHeroIn { from { opacity: 0; transform: translate3d(0, 32px, 0); } to { opacity: 1; transform: translate3d(0, 0, 0); } }
@keyframes fhHeroCardIn { from { opacity: 0; transform: translate3d(28px, 24px, 0) scale(.97); } to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); } }
@keyframes fhHeroDrift { from { transform: scale(1.035) translate3d(-.45%, -.3%, 0); } to { transform: scale(1.085) translate3d(.55%, .45%, 0); } }
@keyframes fhPulseLine { 0%,100% { width: 38px; opacity: .72; } 50% { width: 64px; opacity: 1; } }
@keyframes fhFloatIn { from { opacity: 0; transform: translate3d(0, 28px, 0) scale(.985); } to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); } }
@keyframes fhTickerMove { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
@keyframes fhAmbientDrift { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-36px,28px,0) scale(1.12); } }
@keyframes fhGlassSweep { 0%,58% { transform: translateX(-120%); } 78%,100% { transform: translateX(120%); } }
@keyframes fhNumberGlow { 0% { color: inherit; text-shadow: none; } 45% { color: var(--fh-blue); text-shadow: 0 0 24px rgba(0,122,255,.24); } 100% { color: inherit; text-shadow: none; } }

@media (max-width: 767px) {
    .fh-scroll-progress { height: 2px; }
    .fh-ticker-group { min-height: 50px; }
    .fh-ticker-item { padding: 0 19px; font-size: 10px; }
    .fh-motion-enabled .fh-reveal { transform: translate3d(0, 24px, 0); }
    .fh-motion-enabled .fh-auto-active { transform: translateY(-2px) !important; }
}

@media (prefers-reduced-motion: reduce) {
    .fh-scroll-progress span { transform: scaleX(0) !important; }
    .fh-motion-enabled .fh-hero-copy,
    .fh-motion-enabled .fh-hero-card,
    .fh-motion-enabled .fh-hero-media img,
    .fh-motion-enabled .fh-eyebrow span,
    .fh-motion-enabled .fh-strength-grid,
    .fh-ticker-track,
    .fh-production::before,
    .fh-research::before,
    .fh-hero-card::after { animation: none !important; }
    .fh-motion-enabled .fh-reveal { opacity: 1; transform: none; }
}

/* Main content follows the shared header/footer shell exactly. */
.factory-home { --fh-shell: var(--pbh-content-max, 1000px); }
.fh-shell {
    width: 100%;
    max-width: var(--fh-shell);
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
}
.fh-strength-grid { padding-right: 0; padding-left: 0; }

@media only screen and (min-width: 768px) and (max-width: 1100px) {
    .fh-shell { width: calc(100% - 40px); max-width: none; }
}

@media only screen and (max-width: 767px) {
    .fh-shell { width: calc(100% - 32px); max-width: none; }
}

@media only screen and (max-width: 479px) {
    .fh-shell { width: calc(100% - 24px); max-width: none; }
}
/* RTL support for the Arabic homepage locale */
.factory-home[dir="rtl"] { text-align: right; }
.factory-home[dir="rtl"] .fh-eyebrow { flex-direction: row-reverse; }
.factory-home[dir="rtl"] .fh-btn .iconfont,
.factory-home[dir="rtl"] .fh-text-link .iconfont { margin-right: 8px; margin-left: 0; }
.factory-home[dir="rtl"] .fh-check-list li { padding-right: 24px; padding-left: 0; text-align: right; }
.factory-home[dir="rtl"] .fh-check-list li::before { right: 1px; left: auto; }
.factory-home[dir="rtl"] .fh-live-product-category { right: 12px; left: 12px; text-align: right; }
.factory-home[dir="rtl"] .fh-live-product-more { flex-direction: row-reverse; }
.factory-home[dir="rtl"] .fh-hero-copy,
.factory-home[dir="rtl"] .fh-heading,
.factory-home[dir="rtl"] .fh-qualification-intro,
.factory-home[dir="rtl"] .fh-factory-body,
.factory-home[dir="rtl"] .fh-research-copy,
.factory-home[dir="rtl"] .fh-inquiry-copy { text-align: right; }
.factory-home[dir="rtl"] .fh-heading-split > p,
.factory-home[dir="rtl"] .fh-heading-side > p,
.factory-home[dir="rtl"] .fh-qualification-intro p,
.factory-home[dir="rtl"] .fh-research-copy p,
.factory-home[dir="rtl"] .fh-inquiry-copy p { text-align: right; }
