:root {
    --ferox-bg: #f2f5f8;
    --ferox-bg-2: #e8edf2;
    --ferox-dark: #071018;
    --ferox-dark-2: #101923;
    --ferox-panel: #111a24;
    --ferox-ink: #121a23;
    --ferox-muted: #5d6a78;
    --ferox-soft: #eef3f6;
    --ferox-card: #ffffff;
    --ferox-accent: #f09a23;
    --ferox-accent-2: #d83d2f;
    --ferox-border: #d4dde6;
    --ferox-shadow: 0 22px 60px rgba(7, 16, 24, .13);
    --ferox-radius: 24px;
}

html {
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
}

*, *::before, *::after {
    box-sizing: inherit;
    min-width: 0;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ferox-ink);
    background:
        radial-gradient(circle at 18% -12%, rgba(240, 154, 35, .12), transparent 30rem),
        linear-gradient(180deg, #f8fafc 0%, var(--ferox-bg) 48%, #eef2f5 100%);
    line-height: 1.58;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img, svg, iframe {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

.ferox-container {
    width: min(94%, 1240px);
    margin: 0 auto;
}

.screen-reader-text,
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    width: auto;
    height: auto;
    padding: 12px 16px;
    clip: auto;
    background: #fff;
    color: #000;
    border-radius: 12px;
    box-shadow: var(--ferox-shadow);
}

.ferox-site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    color: #fff;
    background: #071018;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 14px 34px rgba(7, 16, 24, .25);
}

.ferox-topbar {
    background: #0d1823;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .72);
    font-size: .82rem;
}

.ferox-topbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 7px 0;
}

.ferox-header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    min-height: 78px;
}

.ferox-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
    text-decoration: none;
}

.ferox-brand .custom-logo-link,
.ferox-brand .custom-logo-link img {
    display: block;
    max-width: 54px;
    max-height: 54px;
}

.ferox-brand-mark {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(145deg, #151f2a, #090f16);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 10px 26px rgba(0,0,0,.28);
    overflow: hidden;
}

.ferox-brand-mark img {
    width: 100%;
    height: 100%;
}

.ferox-brand-text {
    display: grid;
    line-height: 1.08;
}

.ferox-brand-text strong {
    font-size: 1.28rem;
    letter-spacing: .11em;
}

.ferox-brand-text small {
    max-width: 210px;
    color: rgba(255,255,255,.68);
    font-size: .74rem;
}

.ferox-main-nav {
    justify-self: center;
}

.ferox-primary-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ferox-menu-item {
    position: relative;
}

.ferox-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 46px;
    padding: 0 13px;
    border: 0;
    border-radius: 999px;
    color: rgba(255,255,255,.88);
    background: transparent;
    font: inherit;
    font-size: .95rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}

.ferox-nav-link:hover,
.ferox-nav-link:focus-visible,
.ferox-menu-item--mega.is-open > .ferox-nav-link,
.ferox-menu-item--mega:hover > .ferox-nav-link {
    color: #fff;
    background: rgba(255,255,255,.1);
}

.ferox-nav-arrow {
    color: var(--ferox-accent);
    font-size: 1rem;
    line-height: 1;
}

.ferox-mega-panel {
    position: fixed;
    top: 120px;
    left: 50%;
    width: min(1180px, calc(100vw - 28px));
    max-height: min(72vh, 760px);
    transform: translateX(-50%) translateY(14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: auto;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 28px;
    background: #ffffff;
    color: var(--ferox-ink);
    box-shadow: 0 30px 90px rgba(0,0,0,.36);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.ferox-menu-item--mega:hover .ferox-mega-panel,
.ferox-menu-item--mega:focus-within .ferox-mega-panel,
.ferox-menu-item--mega.is-open .ferox-mega-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.ferox-mega-shell {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 18px;
    padding: 18px;
}

.ferox-mega-intro {
    position: sticky;
    top: 18px;
    align-self: start;
    padding: 22px;
    border-radius: 22px;
    color: #fff;
    background:
        linear-gradient(145deg, rgba(240,154,35,.22), transparent 52%),
        linear-gradient(160deg, #071018 0%, #13202b 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}

.ferox-mega-intro h2 {
    margin: 7px 0 8px;
    font-size: clamp(1.45rem, 2vw, 2.2rem);
    line-height: 1.08;
}

.ferox-mega-intro p {
    margin: 0 0 16px;
    color: rgba(255,255,255,.78);
}

.ferox-mini-kicker,
.ferox-kicker {
    margin: 0 0 10px;
    color: #b86a16;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.ferox-mega-intro .ferox-mini-kicker,
.ferox-hero .ferox-kicker,
.ferox-section--dark .ferox-kicker {
    color: #f7c06c;
}

.ferox-mega-actions {
    display: grid;
    gap: 9px;
}

.ferox-mega-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.ferox-mega-card {
    padding: 16px;
    border: 1px solid var(--ferox-border);
    border-radius: 20px;
    background: linear-gradient(180deg, #fff 0%, #f7f9fb 100%);
}

.ferox-mega-section-link {
    display: grid;
    gap: 6px;
    margin-bottom: 12px;
    text-decoration: none;
}

.ferox-mega-section-link strong {
    font-size: 1rem;
    line-height: 1.18;
}

.ferox-mega-section-link small {
    color: var(--ferox-muted);
    font-size: .82rem;
    line-height: 1.35;
}

.ferox-mega-groups,
.ferox-mega-leaves {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ferox-mega-groups > li {
    padding-top: 10px;
    border-top: 1px solid var(--ferox-border);
}

.ferox-mega-groups > li + li {
    margin-top: 10px;
}

.ferox-mega-groups > li > a {
    display: block;
    margin-bottom: 8px;
    color: #111923;
    font-size: .88rem;
    font-weight: 900;
    text-decoration: none;
}

.ferox-mega-leaves {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 8px;
    max-height: 138px;
    overflow: auto;
    padding-right: 4px;
    scrollbar-width: thin;
}

.ferox-mega-leaves a {
    display: block;
    padding: 4px 0;
    color: #41505f;
    font-size: .78rem;
    line-height: 1.25;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.ferox-mega-leaves a:hover,
.ferox-mega-groups > li > a:hover,
.ferox-mega-section-link:hover strong,
.ferox-footer-links a:hover,
.ferox-card-more:hover {
    color: var(--ferox-accent-2);
}

.ferox-mega-empty {
    margin: 0;
    color: var(--ferox-muted);
    font-size: .86rem;
}

.ferox-header-cta,
.ferox-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 11px;
}

.ferox-header-cta {
    justify-content: flex-end;
}

.ferox-phone {
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.ferox-btn,
button.ferox-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border: 1px solid var(--ferox-border);
    border-radius: 999px;
    background: #fff;
    color: var(--ferox-dark);
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
}

.ferox-btn:hover,
button.ferox-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(7,16,24,.16);
}

.ferox-btn--primary,
button.ferox-btn--primary {
    border-color: #f0a238;
    background: linear-gradient(135deg, #ffbe58 0%, var(--ferox-accent) 100%);
    color: #12100b;
}

.ferox-btn--light {
    border-color: rgba(255,255,255,.24);
    background: #fff;
    color: var(--ferox-dark);
}

.ferox-btn--ghost,
.ferox-btn--ghost-light {
    background: transparent;
}

.ferox-btn--ghost {
    color: #fff;
    border-color: rgba(255,255,255,.3);
}

.ferox-btn--ghost-light {
    color: #fff;
    border-color: rgba(255,255,255,.32);
}

.ferox-btn--small {
    min-height: 42px;
    padding: 9px 14px;
    font-size: .9rem;
}

.ferox-btn--header {
    min-height: 42px;
    padding: 9px 14px;
}

.ferox-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 14px;
    background: #111b26;
    color: #fff;
}

.ferox-menu-toggle span[aria-hidden="true"] {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    border-radius: 2px;
    background: currentColor;
}

.ferox-hero {
    position: relative;
    isolation: isolate;
    padding: clamp(62px, 8vw, 122px) 0;
    color: #fff;
    background:
        linear-gradient(125deg, rgba(216,61,47,.22), transparent 34%),
        radial-gradient(circle at 78% 16%, rgba(240,154,35,.28), transparent 28rem),
        linear-gradient(145deg, #071018 0%, #111c27 58%, #0a1119 100%);
    overflow: hidden;
}

.ferox-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .34;
    background-image:
        linear-gradient(110deg, transparent 0 47%, rgba(255,255,255,.1) 47.3% 47.7%, transparent 48% 100%),
        linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 300px 300px, 42px 42px, 42px 42px;
}

.ferox-hero-grid,
.ferox-contact-grid,
.ferox-process-grid,
.ferox-two-funnels {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
    gap: clamp(26px, 5vw, 62px);
    align-items: center;
}

.ferox-hero h1,
.ferox-page h1,
.ferox-content-card h1,
.ferox-pc-hero h1 {
    margin: 0 0 20px;
    font-size: clamp(2.25rem, 5vw, 5.15rem);
    line-height: 1.03;
    letter-spacing: -0.036em;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    hyphens: auto;
}

.ferox-hero-lead,
.ferox-hero p {
    max-width: 820px;
    color: rgba(255,255,255,.82);
    font-size: clamp(1.06rem, 1.7vw, 1.35rem);
}

.ferox-hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.ferox-hero-metrics span {
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    background: rgba(255,255,255,.06);
}

.ferox-hero-metrics strong {
    color: #fff;
    font-size: 1.52rem;
    line-height: 1;
}

.ferox-hero-metrics small {
    color: rgba(255,255,255,.66);
    line-height: 1.25;
}

.ferox-hero-panel {
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.05));
    box-shadow: 0 28px 80px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.14);
}

.ferox-panel-label {
    margin: 0 0 18px;
    color: #f7c06c;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ferox-hero-panel ol {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ferox-hero-panel li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 4px 14px;
    padding: 17px;
    border-radius: 20px;
    background: #fff;
    color: var(--ferox-ink);
}

.ferox-hero-panel li span {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--ferox-dark);
    color: var(--ferox-accent);
    font-weight: 1000;
}

.ferox-hero-panel li strong {
    font-size: 1.05rem;
}

.ferox-hero-panel li small {
    color: var(--ferox-muted);
}

.ferox-section {
    padding: clamp(52px, 7vw, 96px) 0;
}

.ferox-section-head {
    max-width: 820px;
    margin-bottom: 28px;
}

.ferox-section-head--left {
    margin: 0;
}

.ferox-section h2,
.ferox-section-head h2,
.ferox-pc-card h2 {
    margin: 0 0 16px;
    font-size: clamp(1.75rem, 3vw, 3.25rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
    overflow-wrap: anywhere;
}

.ferox-section-head p,
.ferox-section p,
.ferox-card p,
.ferox-product-card p {
    color: var(--ferox-muted);
}

.ferox-product-grid,
.ferox-card-grid,
.ferox-pc-archive-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.ferox-product-card,
.ferox-card,
.ferox-content-card,
.ferox-pc-card,
.ferox-pc-archive-card {
    position: relative;
    padding: clamp(20px, 2.3vw, 30px);
    border: 1px solid var(--ferox-border);
    border-radius: var(--ferox-radius);
    background: var(--ferox-card);
    box-shadow: 0 16px 42px rgba(7,16,24,.07);
}

.ferox-product-card {
    display: flex;
    flex-direction: column;
    min-height: 270px;
    overflow: hidden;
}

.ferox-product-card::after {
    content: '';
    position: absolute;
    right: -40px;
    bottom: -46px;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background: rgba(240,154,35,.12);
}

.ferox-card-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(145deg, #111b26, #071018);
    font-size: 1rem;
    font-weight: 1000;
    letter-spacing: .04em;
}

.ferox-product-card h3 {
    margin: 0 0 10px;
    font-size: 1.13rem;
    line-height: 1.18;
}

.ferox-product-card h3 a,
.ferox-card-more {
    text-decoration: none;
}

.ferox-product-mini-list {
    display: grid;
    gap: 6px;
    margin: 0 0 14px;
    padding: 0;
    list-style: none;
}

.ferox-product-mini-list a {
    color: #334151;
    font-size: .9rem;
    text-decoration: none;
}

.ferox-card-more {
    margin-top: auto;
    color: #111923;
    font-weight: 900;
}

.ferox-section--dark {
    color: #fff;
    background:
        radial-gradient(circle at 12% 0%, rgba(216,61,47,.24), transparent 28rem),
        linear-gradient(145deg, #071018 0%, #101923 100%);
}

.ferox-section--dark p,
.ferox-section--dark .ferox-check-list {
    color: rgba(255,255,255,.76);
}

.ferox-funnel-card {
    min-height: 100%;
    padding: clamp(24px, 3vw, 38px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 30px;
    background: rgba(255,255,255,.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.ferox-funnel-card h2 {
    color: #fff;
}

.ferox-check-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.ferox-check-list li {
    position: relative;
    margin: 10px 0;
    padding-left: 30px;
}

.ferox-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--ferox-accent);
    font-weight: 1000;
}

.ferox-process-steps {
    display: grid;
    gap: 14px;
}

.ferox-process-steps article {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 4px 15px;
    padding: 18px;
    border: 1px solid var(--ferox-border);
    border-radius: 22px;
    background: #fff;
}

.ferox-process-steps span {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 15px;
    background: var(--ferox-accent);
    color: #111;
    font-weight: 1000;
}

.ferox-process-steps h3,
.ferox-card h3 {
    margin: 0;
}

.ferox-process-steps p {
    margin: 0;
}

.ferox-contact-section {
    background: linear-gradient(180deg, #eef3f6 0%, #fff 100%);
}

.ferox-contact-direct {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.ferox-contact-direct a {
    width: max-content;
    color: var(--ferox-dark);
    font-size: 1.1rem;
    font-weight: 900;
    text-decoration: none;
}

.ferox-contact-card {
    border-color: rgba(240,154,35,.36);
    box-shadow: 0 28px 70px rgba(7,16,24,.12);
}

.ferox-contact-form,
.ferox-pc-lead-form {
    display: grid;
    gap: 14px;
}

.ferox-contact-form label,
.ferox-pc-lead-form label {
    display: grid;
    gap: 6px;
    color: var(--ferox-ink);
    font-weight: 900;
}

.ferox-contact-form input,
.ferox-contact-form textarea,
.ferox-contact-form select,
.ferox-pc-lead-form input,
.ferox-pc-lead-form textarea,
.ferox-pc-lead-form select {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid var(--ferox-border);
    border-radius: 15px;
    font: inherit;
    font-size: 16px;
    background: #fff;
    color: var(--ferox-ink);
}

.ferox-contact-form textarea,
.ferox-pc-lead-form textarea {
    min-height: 130px;
    resize: vertical;
}

.ferox-consent,
.ferox-pc-consent {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    font-weight: 500 !important;
}

.ferox-consent input,
.ferox-pc-consent input {
    width: auto;
    min-height: 0;
    margin-top: 5px;
}

.ferox-hp,
.ferox-pc-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.ferox-site-footer {
    padding: 58px 0 24px;
    background: #071018;
    color: rgba(255,255,255,.78);
}

.ferox-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(160px, .55fr) minmax(210px, .75fr) minmax(280px, 1fr);
    gap: 26px;
}

.ferox-site-footer h2,
.ferox-site-footer h3 {
    margin-top: 0;
    color: #fff;
}

.ferox-footer-links,
.ferox-footer-contact {
    display: grid;
    align-content: start;
    gap: 9px;
    font-style: normal;
}

.ferox-footer-links a,
.ferox-site-footer a {
    color: rgba(255,255,255,.86);
    text-decoration: none;
}

.ferox-footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ferox-footer-badges span {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.78);
    font-size: .84rem;
    font-weight: 800;
}

.ferox-footer-map iframe {
    display: block;
    min-height: 240px;
    border: 0;
    border-radius: 22px;
    filter: grayscale(.22) contrast(1.05);
}

.ferox-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.58);
}

.ferox-main {
    min-height: 50vh;
}

.ferox-page,
.ferox-index {
    padding: 54px 0;
}

.ferox-content-card {
    margin: 22px 0;
}

/* Plugin catalog pages: theme-level polish and fallback styles. */
.ferox-pc-template,
.ferox-pc-single,
.ferox-pc-archive {
    padding: 42px 0 72px;
    background: var(--ferox-bg);
}

.ferox-pc-container {
    width: min(94%, 1180px);
    margin: 0 auto;
}

.ferox-pc-breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
    color: var(--ferox-muted);
    font-size: .92rem;
}

.ferox-pc-breadcrumbs li:not(:last-child)::after {
    content: '›';
    margin-left: 8px;
    color: #9aa7b3;
}

.ferox-pc-breadcrumbs a {
    color: #344353;
    text-decoration: none;
}

.ferox-pc-hero {
    position: relative;
    margin-bottom: 22px;
    padding: clamp(26px, 5vw, 58px);
    border-radius: 30px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(240,154,35,.28), transparent 34%),
        linear-gradient(145deg, #071018 0%, #13202b 100%);
    overflow: hidden;
}

.ferox-pc-kicker {
    margin: 0 0 10px;
    color: #f7c06c;
    font-weight: 1000;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.ferox-pc-lead {
    max-width: 820px;
    color: rgba(255,255,255,.8);
    font-size: clamp(1rem, 1.5vw, 1.24rem);
}

.ferox-pc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.ferox-pc-btn,
.ferox-pc-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 16px;
    border: 1px solid var(--ferox-border);
    border-radius: 999px;
    background: #fff;
    color: var(--ferox-dark);
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
}

.ferox-pc-btn--primary {
    border-color: var(--ferox-accent);
    background: linear-gradient(135deg, #ffbe58, var(--ferox-accent));
    color: #111;
}

.ferox-pc-grid,
.ferox-pc-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.ferox-pc-card {
    margin: 18px 0;
}

.ferox-pc-table-wrap {
    overflow: auto;
}

.ferox-pc-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
}

.ferox-pc-table th,
.ferox-pc-table td {
    padding: 13px 14px;
    border-bottom: 1px solid var(--ferox-border);
    text-align: left;
    vertical-align: top;
}

.ferox-pc-table th {
    width: 32%;
    color: #1b2734;
    background: #f5f8fb;
}

.ferox-pc-inline-svg {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
    background: #f7f9fb;
}

.ferox-pc-scrap {
    border-color: rgba(216,61,47,.24);
    background: linear-gradient(180deg, #fff 0%, #fff7f5 100%);
}

.ferox-pc-form-section {
    border-color: rgba(240,154,35,.34);
}

.ferox-pc-form-status {
    margin: 0;
    color: var(--ferox-muted);
    font-weight: 800;
}

.ferox-main a:focus-visible,
.ferox-site-header a:focus-visible,
.ferox-site-footer a:focus-visible,
.ferox-main button:focus-visible,
.ferox-main input:focus-visible,
.ferox-main textarea:focus-visible,
.ferox-main select:focus-visible,
.ferox-site-header button:focus-visible {
    outline: 3px solid var(--ferox-accent);
    outline-offset: 3px;
}

@media (max-width: 1180px) {
    .ferox-header-inner {
        grid-template-columns: auto auto;
    }

    .ferox-menu-toggle {
        display: block;
        justify-self: end;
    }

    .ferox-main-nav,
    .ferox-header-cta {
        grid-column: 1 / -1;
        display: none;
    }

    body.ferox-menu-open .ferox-main-nav,
    body.ferox-menu-open .ferox-header-cta {
        display: block;
    }

    body.ferox-menu-open .ferox-site-header {
        max-height: 100vh;
        overflow: auto;
    }

    .ferox-primary-menu {
        display: grid;
        justify-content: stretch;
        gap: 8px;
        padding: 12px 0 6px;
    }

    .ferox-nav-link {
        width: 100%;
        justify-content: space-between;
        border-radius: 14px;
        background: #101923;
    }

    .ferox-mega-panel {
        position: static;
        width: 100%;
        max-height: none;
        margin-top: 8px;
        transform: none;
        display: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        border-radius: 18px;
        box-shadow: none;
        transition: none;
    }

    .ferox-menu-item--mega:hover .ferox-mega-panel,
    .ferox-menu-item--mega:focus-within .ferox-mega-panel {
        display: none;
    }

    .ferox-menu-item--mega.is-open .ferox-mega-panel {
        display: block;
    }

    .ferox-mega-shell {
        grid-template-columns: 1fr;
    }

    .ferox-mega-intro {
        position: static;
    }

    .ferox-mega-grid,
    .ferox-product-grid,
    .ferox-card-grid,
    .ferox-pc-archive-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ferox-header-cta {
        padding-bottom: 18px;
    }
}

@media (max-width: 860px) {
    .ferox-topbar-inner,
    .ferox-footer-bottom {
        display: grid;
    }

    .ferox-hero-grid,
    .ferox-contact-grid,
    .ferox-process-grid,
    .ferox-two-funnels,
    .ferox-footer-grid,
    .ferox-pc-grid,
    .ferox-pc-form-grid {
        grid-template-columns: 1fr;
    }

    .ferox-footer-grid {
        gap: 22px;
    }

    .ferox-hero-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .ferox-container,
    .ferox-pc-container {
        width: 92%;
    }

    .ferox-brand-text small,
    .ferox-topbar {
        display: none;
    }

    .ferox-header-inner {
        min-height: 68px;
    }

    .ferox-brand-mark {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .ferox-brand-text strong {
        font-size: 1.12rem;
    }

    .ferox-hero h1,
    .ferox-page h1,
    .ferox-content-card h1,
    .ferox-pc-hero h1 {
        font-size: clamp(1.8rem, 8.3vw, 2.7rem);
        line-height: 1.12;
        letter-spacing: -0.018em;
    }

    .ferox-actions,
    .ferox-btn,
    .ferox-pc-actions,
    .ferox-pc-btn {
        width: 100%;
    }

    .ferox-product-grid,
    .ferox-card-grid,
    .ferox-mega-grid,
    .ferox-pc-archive-grid {
        grid-template-columns: 1fr;
    }

    .ferox-mega-leaves {
        grid-template-columns: 1fr;
        max-height: 210px;
    }

    .ferox-product-card,
    .ferox-card,
    .ferox-content-card,
    .ferox-pc-card {
        border-radius: 20px;
    }
}

@media (max-width: 380px) {
    .ferox-hero h1,
    .ferox-page h1,
    .ferox-content-card h1,
    .ferox-pc-hero h1 {
        font-size: 1.68rem;
        line-height: 1.16;
    }

    .ferox-product-card,
    .ferox-card,
    .ferox-content-card,
    .ferox-pc-card,
    .ferox-pc-hero,
    .ferox-hero-panel {
        padding: 18px 14px;
        border-radius: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
}

.admin-bar .ferox-site-header { top: 32px; }
.admin-bar .ferox-mega-panel { top: 152px; }
@media (max-width: 782px) {
    .admin-bar .ferox-site-header { top: 46px; }
}
@media (max-width: 1180px) {
    .admin-bar .ferox-mega-panel { top: auto; }
}


/* FEROX v1.4.2 base: robust mobile menu + compact desktop header CTA; v1.4.3 overrides below. */
.ferox-header-cta {
    flex-wrap: nowrap;
}

.ferox-header-cta .ferox-btn {
    white-space: nowrap;
}

.ferox-btn--call {
    border-color: rgba(255,255,255,.24);
    background: #172230;
    color: #fff;
}

.ferox-btn--call:hover,
.ferox-btn--call:focus-visible {
    background: #202e3e;
    color: #fff;
}

.ferox-mobile-nav-cta {
    display: none;
}

.ferox-menu-toggle {
    position: relative;
    z-index: 145;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.ferox-menu-toggle[aria-expanded="true"] span[aria-hidden="true"]:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
}

.ferox-menu-toggle[aria-expanded="true"] span[aria-hidden="true"]:nth-of-type(3) {
    opacity: 0;
}

.ferox-menu-toggle[aria-expanded="true"] span[aria-hidden="true"]:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
}

.ferox-menu-toggle span[aria-hidden="true"] {
    transition: transform .16s ease, opacity .16s ease;
}

@media (max-width: 1420px) {
    .ferox-header-inner {
        gap: 12px;
    }

    .ferox-nav-link {
        min-height: 42px;
        padding-right: 10px;
        padding-left: 10px;
        font-size: .9rem;
    }

    .ferox-btn--header {
        min-height: 40px;
        padding-right: 12px;
        padding-left: 12px;
        font-size: .9rem;
    }

    .ferox-brand-text small {
        max-width: 176px;
    }
}

@media (max-width: 1280px) {
    html.ferox-menu-open,
    body.ferox-menu-open {
        overflow: hidden;
    }

    body.ferox-menu-open::before {
        content: '';
        position: fixed;
        inset: 0;
        z-index: 110;
        background: rgba(0, 0, 0, .54);
    }

    .ferox-site-header {
        z-index: 140;
    }

    .ferox-header-inner {
        grid-template-columns: minmax(0, 1fr) auto;
        min-height: 76px;
    }

    .ferox-brand {
        min-width: 0;
    }

    .ferox-brand-text {
        min-width: 0;
    }

    .ferox-brand-text strong,
    .ferox-brand-text small {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .ferox-menu-toggle {
        display: inline-flex;
        grid-column: 2;
        justify-self: end;
    }

    .ferox-header-cta {
        display: none !important;
    }

    .ferox-main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        z-index: 130;
        display: block !important;
        grid-column: auto !important;
        justify-self: auto;
        width: min(440px, 92vw);
        max-width: 100vw;
        padding: 122px 16px 24px;
        overflow-x: hidden;
        overflow-y: auto;
        color: #fff;
        background: #071018;
        border-left: 1px solid rgba(255,255,255,.12);
        box-shadow: -28px 0 80px rgba(0,0,0,.38);
        transform: translate3d(110%, 0, 0);
        visibility: hidden;
        pointer-events: none;
        transition: transform .22s ease, visibility .22s ease;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    html.ferox-menu-open .ferox-main-nav,
    body.ferox-menu-open .ferox-main-nav,
    .ferox-site-header.is-menu-open .ferox-main-nav {
        transform: translate3d(0, 0, 0);
        visibility: visible;
        pointer-events: auto;
    }

    .ferox-primary-menu {
        display: grid;
        justify-content: stretch;
        gap: 10px;
        width: 100%;
        padding: 0;
    }

    .ferox-nav-link {
        width: 100%;
        min-height: 52px;
        justify-content: space-between;
        padding: 0 15px;
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 16px;
        background: #101923;
        color: #fff;
        font-size: 1rem;
    }

    .ferox-menu-item--mega:hover > .ferox-nav-link,
    .ferox-menu-item--mega:focus-within > .ferox-nav-link,
    .ferox-menu-item--mega.is-open > .ferox-nav-link {
        background: #182433;
    }

    .ferox-mega-panel {
        position: static;
        display: none;
        width: 100%;
        max-height: none;
        margin-top: 8px;
        overflow: visible;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        border-radius: 18px;
        background: #ffffff;
        box-shadow: none;
        transition: none;
    }

    .ferox-menu-item--mega:hover .ferox-mega-panel,
    .ferox-menu-item--mega:focus-within .ferox-mega-panel {
        display: none;
    }

    .ferox-menu-item--mega.is-open .ferox-mega-panel {
        display: block;
    }

    .ferox-mega-shell {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 14px;
    }

    .ferox-mega-intro {
        position: static;
        padding: 16px;
        border-radius: 16px;
    }

    .ferox-mega-intro h2 {
        font-size: 1.35rem;
    }

    .ferox-mega-actions {
        grid-template-columns: 1fr;
    }

    .ferox-mega-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ferox-mega-card {
        padding: 14px;
        border-radius: 16px;
    }

    .ferox-mega-section-link strong {
        font-size: 1rem;
    }

    .ferox-mega-groups,
    .ferox-mega-leaves {
        max-height: none;
        overflow: visible;
    }

    .ferox-mega-leaves {
        grid-template-columns: 1fr;
    }

    .ferox-mobile-nav-cta {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid rgba(255,255,255,.12);
    }

    .ferox-mobile-nav-cta .ferox-btn {
        width: 100%;
    }
}

@media (max-width: 782px) {
    .admin-bar .ferox-main-nav {
        top: 46px;
        padding-top: 98px;
    }
}

@media (min-width: 783px) and (max-width: 1280px) {
    .admin-bar .ferox-main-nav {
        top: 32px;
        padding-top: 122px;
    }
}

@media (max-width: 620px) {
    .ferox-main-nav {
        width: min(420px, 94vw);
        padding-top: 92px;
    }

    .ferox-header-inner {
        min-height: 68px;
    }

    .ferox-menu-toggle {
        width: 46px;
        height: 46px;
        border-radius: 13px;
    }

    .ferox-brand-text strong {
        max-width: 148px;
    }

    .ferox-nav-link {
        min-height: 50px;
    }
}

@media (max-width: 380px) {
    .ferox-main-nav {
        width: 100vw;
        padding-right: 12px;
        padding-left: 12px;
    }

    .ferox-brand-text strong {
        max-width: 124px;
    }
}

/* FEROX v1.4.3 FIX: mobile scroll-lock compensation, no header jump, richer B2B UX. */
:root {
    --ferox-scrollbar-w: 0px;
}

@supports (scrollbar-gutter: stable) {
    html {
        scrollbar-gutter: stable;
    }
}

body.ferox-menu-open {
    padding-right: var(--ferox-scrollbar-w) !important;
}

.ferox-site-header {
    transition: padding-right .18s ease;
}

.ferox-site-header.is-menu-open {
    padding-right: var(--ferox-scrollbar-w);
}

@media (min-width: 1281px) and (max-width: 1380px) {
    .ferox-header-inner {
        gap: 8px;
    }

    .ferox-brand-text small {
        display: none;
    }

    .ferox-nav-link {
        min-height: 40px;
        padding-right: 8px;
        padding-left: 8px;
        font-size: .84rem;
    }

    .ferox-btn--header {
        min-height: 38px;
        padding: 8px 10px;
        font-size: .82rem;
    }

    .ferox-header-cta .ferox-btn--call {
        display: none;
    }
}

@media (max-width: 1280px) {
    body.ferox-menu-open .ferox-site-header {
        max-height: none;
        overflow: visible;
    }

    .ferox-site-header.is-menu-open {
        padding-right: var(--ferox-scrollbar-w);
    }

    .ferox-main-nav[role="dialog"] {
        outline: 0;
    }
}

.ferox-process-visual {
    display: flex;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    margin: 40px 0;
}

.ferox-step {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    padding: 0 15px;
    text-align: center;
}

.ferox-step-icon {
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    margin: 0 auto 15px;
    border: 1px solid rgba(240,154,35,.32);
    border-radius: 24px;
    background:
        radial-gradient(circle at 35% 25%, rgba(255,255,255,.95), rgba(255,255,255,.2) 38%, transparent 39%),
        linear-gradient(145deg, #fff7ea 0%, #fff 58%, #f6f8fa 100%);
    box-shadow: 0 18px 40px rgba(240,154,35,.18);
    font-size: 2rem;
    line-height: 1;
}

.ferox-step h3 {
    margin: 0 0 8px;
    color: var(--ferox-ink);
    font-size: 1.16rem;
    line-height: 1.18;
}

.ferox-step p {
    max-width: 260px;
    margin: 0 auto;
    color: var(--ferox-muted);
    font-size: .95rem;
}

.ferox-step-connector {
    position: relative;
    align-self: center;
    flex: 0 0 80px;
    width: 80px;
    height: 3px;
    margin: 37px -10px 0;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--ferox-accent), var(--ferox-accent-2));
}

.ferox-step-connector::after {
    content: '';
    position: absolute;
    top: -3px;
    right: -4px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--ferox-accent);
    box-shadow: 0 0 0 5px rgba(240,154,35,.14);
    animation: ferox-step-pulse 1.2s infinite alternate;
}

@keyframes ferox-step-pulse {
    from {
        transform: scale(.92);
        opacity: .72;
    }
    to {
        transform: scale(1.22);
        opacity: 1;
    }
}

.ferox-contact-section {
    position: relative;
    overflow: hidden;
}

.ferox-contact-section::before {
    content: '';
    position: absolute;
    top: -170px;
    left: -120px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240,154,35,.18) 0%, rgba(240,154,35,0) 68%);
    pointer-events: none;
}

.ferox-contact-tiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.ferox-contact-tile {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 92px;
    padding: 20px 24px;
    border: 1px solid var(--ferox-border);
    border-radius: 20px;
    background: #fff;
    color: var(--ferox-ink);
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    overflow: hidden;
}

.ferox-contact-tile::after {
    content: '';
    position: absolute;
    right: -42px;
    bottom: -52px;
    width: 118px;
    height: 118px;
    border-radius: 50%;
    background: rgba(240,154,35,.1);
}

.ferox-contact-tile:hover,
.ferox-contact-tile:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(240,154,35,.52);
    box-shadow: 0 18px 40px rgba(240,154,35,.18);
}

.tile-icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 17px;
    background: #111923;
    color: var(--ferox-accent);
    font-size: 1.6rem;
    line-height: 1;
}

.tile-text {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2px;
    min-width: 0;
}

.tile-text strong {
    color: var(--ferox-ink);
    font-size: 1.08rem;
    line-height: 1.16;
}

.tile-text small {
    color: var(--ferox-muted);
    font-size: .9rem;
    overflow-wrap: anywhere;
}

.ferox-contact-tile--call {
    border-color: rgba(240,154,35,.4);
    background: linear-gradient(135deg, #fff8ed 0%, #fff 100%);
}

.ferox-contact-tile--mail {
    border-color: rgba(16,25,35,.15);
    background: linear-gradient(135deg, #f4f6f9 0%, #fff 100%);
}

@media (max-width: 860px) {
    .ferox-process-visual {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 28px 0 0;
    }

    .ferox-step {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 4px 15px;
        padding: 16px;
        border: 1px solid var(--ferox-border);
        border-radius: 22px;
        background: #fff;
        text-align: left;
        box-shadow: 0 14px 34px rgba(7,16,24,.06);
    }

    .ferox-step-icon {
        grid-row: span 2;
        width: 54px;
        height: 54px;
        margin: 0;
        border-radius: 17px;
        font-size: 1.45rem;
    }

    .ferox-step p {
        max-width: none;
        margin: 0;
    }

    .ferox-step-connector {
        align-self: center;
        flex: 0 0 auto;
        width: 3px;
        height: 34px;
        margin: 0 auto;
    }

    .ferox-step-connector::after {
        top: auto;
        right: -3px;
        bottom: -4px;
    }

    .ferox-contact-tiles {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .ferox-contact-tile {
        min-height: 82px;
        padding: 17px 18px;
    }

    .tile-icon {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
    }
}
