/* ==========================================================================
   Armologic — light / minimal design system
   Brand accent: #ff9900 (from the Armologic logo). Clean, enterprise, fast.
   ========================================================================== */

:root {
    --bg: #ffffff;
    --surface: #f8fafc;
    --surface-2: #f1f5f9;
    --ink: #0f172a;
    --ink-2: #1e293b;
    --muted: #64748b;
    --muted-2: #94a3b8;
    --border: #e2e8f0;
    --border-strong: #cbd5e1;

    --primary: #ff9900;
    --primary-hover: #f08c00;
    --primary-soft: #fff4e0;
    --on-primary: #0f172a;

    --footer-bg: #0f172a;
    --footer-ink: #cbd5e1;
    --footer-heading: #ffffff;

    --radius: 14px;
    --radius-sm: 10px;
    --radius-lg: 22px;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
    --shadow: 0 8px 24px rgba(15, 23, 42, .08);
    --shadow-lg: 0 20px 48px rgba(15, 23, 42, .12);

    --container: 1160px;
    --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    --space-section: clamp(3.5rem, 6vw, 6.5rem);
}

/* ---- reset / base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: clip;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.02em; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; border-radius: 4px; }

.visually-hidden {
    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 {
    position: absolute; left: 1rem; top: -100px; z-index: 200;
    background: var(--ink); color: #fff; padding: .6rem 1rem; border-radius: 8px;
    transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }

/* ---- layout helpers ----------------------------------------------------- */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding-block: var(--space-section); }
.section-tight { padding-block: clamp(2.5rem, 4vw, 4rem); }
.section-surface { background: var(--surface); }

.section-head { max-width: 720px; margin: 0 auto clamp(2rem, 4vw, 3.25rem); text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }
.eyebrow {
    display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--primary-hover); margin-bottom: .85rem;
}
.lead { font-size: 1.15rem; color: var(--muted); }
.section-head .lead { margin-bottom: 0; }

/* ---- buttons ------------------------------------------------------------ */
.btn {
    --btn-bg: var(--ink); --btn-fg: #fff; --btn-bd: var(--ink);
    display: inline-flex; align-items: center; gap: .5rem; justify-content: center;
    background: var(--btn-bg); color: var(--btn-fg); border: 1.5px solid var(--btn-bd);
    padding: .8rem 1.4rem; border-radius: 999px; font-weight: 600; font-size: .98rem;
    cursor: pointer; transition: transform .12s ease, background .15s ease, box-shadow .15s ease, color .15s ease;
    text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: .55rem 1.05rem; font-size: .9rem; }
.btn-lg { padding: .95rem 1.7rem; font-size: 1.05rem; }
.btn-primary { --btn-bg: var(--primary); --btn-fg: var(--on-primary); --btn-bd: var(--primary); box-shadow: var(--shadow-sm); }
.btn-primary:hover { --btn-bg: var(--primary-hover); --btn-bd: var(--primary-hover); }
.btn-outline { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--border-strong); }
.btn-outline:hover { --btn-bd: var(--ink); }
.btn-light { --btn-bg: #fff; --btn-fg: var(--ink); --btn-bd: #fff; }
.btn-ghost-light { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.35); }
.btn-ghost-light:hover { --btn-bd: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }
.center .btn-row, .section-head .btn-row { justify-content: center; }

.text-link { color: var(--primary-hover); font-weight: 600; display: inline-flex; align-items: center; gap: .35rem; }
.text-link .arrow { transition: transform .15s ease; }
.text-link:hover .arrow { transform: translateX(3px); }

/* ---- header ------------------------------------------------------------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255, 255, 255, .85);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 70px; }
.brand-logo { height: 30px; width: auto; }
.primary-nav { display: flex; align-items: center; gap: 2rem; }
.nav-list { display: flex; align-items: center; gap: 1.6rem; }
.nav-list a { font-weight: 500; color: var(--ink-2); font-size: .97rem; position: relative; padding: .25rem 0; transition: color .15s ease, text-shadow .15s ease; }
.nav-list > li > a:hover { color: var(--primary-hover); text-shadow: 0 0 16px rgba(255, 153, 0, .6); }
.has-sub { position: relative; }
.nav-list .caret { font-size: .65rem; color: var(--muted); margin-left: .15rem; }
.submenu {
    position: absolute; top: 100%; left: 50%; margin-top: 12px; transform: translateX(-50%) translateY(8px);
    min-width: 210px; background: #fff; border: 1px solid var(--border); border-radius: 14px;
    box-shadow: var(--shadow-lg); padding: .5rem; opacity: 0; pointer-events: none;
    transition: opacity .15s ease, transform .15s ease;
}
.submenu::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.has-sub:hover .submenu, .has-sub:focus-within .submenu { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.submenu li { border: 0 !important; }
.submenu a { display: block; padding: .55rem .75rem; border-radius: 8px; font-size: .92rem; color: var(--ink-2); }
.submenu a::after { display: none; }
.submenu a:hover { background: var(--surface-2); color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 1.1rem; }
.lang-switch { display: flex; align-items: center; gap: .35rem; font-size: .85rem; color: var(--muted); font-weight: 600; }
.lang-link.is-active { color: var(--primary-hover); }
.lang-link:not(.is-active):hover { color: var(--ink); }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px; background: none; border: 0;
    padding: .5rem; cursor: pointer;
}
.nav-toggle-bar { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { transform: rotate(45deg) translate(1px, 1px); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(4) { transform: rotate(-45deg) translate(1px, -1px); }

/* ---- hero --------------------------------------------------------------- */
.hero { position: relative; padding-block: clamp(3.5rem, 7vw, 6.5rem) clamp(3rem, 5vw, 5rem); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero-bg::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(48rem 26rem at 88% -8%, rgba(255, 153, 0, .18), transparent 62%),
        radial-gradient(42rem 24rem at -6% 8%, rgba(6, 182, 212, .12), transparent 60%),
        radial-gradient(40rem 30rem at 60% 120%, rgba(255, 153, 0, .07), transparent 60%);
}
.hero-bg::after {
    content: ""; position: absolute; inset: 0; opacity: .5;
    background-image:
        linear-gradient(to right, rgba(15, 23, 42, .045) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(15, 23, 42, .045) 1px, transparent 1px);
    background-size: 38px 38px;
    -webkit-mask-image: radial-gradient(70% 70% at 50% 30%, #000 40%, transparent 100%);
    mask-image: radial-gradient(70% 70% at 50% 30%, #000 40%, transparent 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-inner { max-width: 640px; }
.hero h1 { margin-bottom: 1.1rem; }
.hero .lead { font-size: clamp(1.1rem, 2vw, 1.3rem); max-width: 620px; }
.hero .btn-row { margin-top: 1.8rem; }

/* hero visual: platform family panel */
.hero-visual { position: relative; }
.hero-panel {
    background: rgba(255, 255, 255, .7); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); padding: 1.5rem;
}
.hero-panel-label {
    display: block; font-size: .75rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: var(--muted); margin-bottom: 1rem;
}
.hero-chips { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.hero-chip {
    --accent: var(--primary);
    display: flex; align-items: center; gap: .65rem;
    background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
    padding: .7rem .8rem; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.hero-chip:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--accent) 45%, var(--border)); }
.hero-chip-logo { width: 30px; height: 30px; object-fit: contain; flex: none; }
.hero-chip-logo.is-wordmark { width: 30px; height: 30px; }
.hero-chip-name { font-weight: 700; font-size: .95rem; color: var(--ink); }

/* ---- stat band ---------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; padding: 1.25rem 1rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg); box-shadow: var(--shadow-sm); }
.stat-num { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; letter-spacing: -.03em; }
.stat-num .unit { color: var(--primary-hover); }
.stat-label { color: var(--muted); font-size: .92rem; margin-top: .25rem; }

/* ---- product grid ------------------------------------------------------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.product-card {
    --accent: var(--primary);
    position: relative; display: flex; flex-direction: column;
    background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 1.6rem 1.6rem 1.4rem; overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.product-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--accent); }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-head { display: flex; align-items: center; gap: .8rem; min-height: 50px; margin-bottom: 1rem; }
.product-logo { object-fit: contain; flex: none; }
.product-logo.is-mark { width: 44px; height: 44px; }
.product-logo.is-wordmark { height: 30px; width: auto; max-width: 180px; }
.product-name { font-size: 1.3rem; font-weight: 800; letter-spacing: -.03em; margin: 0; }
.product-name-lg { font-size: 1.55rem; }
.product-name .accent { color: var(--accent); }
.product-category {
    display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, white); padding: .25rem .6rem; border-radius: 999px; margin-bottom: .8rem;
}
.product-tagline { font-weight: 700; font-size: 1.08rem; margin-bottom: .5rem; }
.product-desc { color: var(--muted); font-size: .96rem; flex: 1; }
.product-highlights { display: flex; flex-wrap: wrap; gap: .4rem; margin: 1rem 0 1.2rem; }
.product-highlights li { font-size: .8rem; color: var(--ink-2); background: var(--surface-2); border-radius: 999px; padding: .28rem .65rem; }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.product-visit { color: var(--accent); font-weight: 700; display: inline-flex; align-items: center; gap: .35rem; font-size: .95rem; }
.product-visit .arrow { transition: transform .15s ease; }
.product-card:hover .product-visit .arrow { transform: translate(2px, -2px); }

/* ---- icon feature grid (industries / compliance / partners) ------------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.feature-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.feature-card {
    background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 1.5rem; transition: transform .15s ease, box-shadow .15s ease;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feature-ico {
    width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
    background: var(--primary-soft); color: var(--primary-hover); margin-bottom: 1rem;
}
.feature-ico svg { width: 24px; height: 24px; }
.feature-card h3 { margin-bottom: .4rem; }
.feature-card p { color: var(--muted); font-size: .95rem; margin: 0; }
.feature-tag { display: inline-block; margin-top: .9rem; font-size: .82rem; font-weight: 600; color: var(--primary-hover); }

.compliance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.compliance-card { display: flex; gap: .9rem; align-items: flex-start; padding: 1.15rem 1.25rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg); }
.compliance-badge { flex: none; font-weight: 800; font-size: .8rem; letter-spacing: .02em; color: var(--primary-hover); background: var(--primary-soft); padding: .5rem .6rem; border-radius: 10px; white-space: nowrap; }
.compliance-card h3 { font-size: 1rem; margin: 0 0 .2rem; }
.compliance-card p { font-size: .9rem; color: var(--muted); margin: 0; }

/* ---- partners / alliances ---------------------------------------------- */
.partner-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.partner-card { text-align: center; padding: 1.6rem 1.4rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg); }
.partner-card .partner-name { font-weight: 800; font-size: 1.15rem; margin-bottom: .5rem; }
.partner-card p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ---- about -------------------------------------------------------------- */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.about-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; }
.about-card h3 { color: var(--primary-hover); font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; }
.slogan { font-size: clamp(1.3rem, 2.6vw, 1.9rem); font-weight: 700; letter-spacing: -.02em; max-width: 900px; }
.slogan .accent { color: var(--primary-hover); }

/* ---- CTA band ----------------------------------------------------------- */
.cta-band { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: clamp(2.2rem, 5vw, 3.5rem); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(40rem 20rem at 80% 0%, rgba(255,153,0,.18), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #cbd5e1; max-width: 560px; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 1.6rem; }

/* ---- page header (interior pages) -------------------------------------- */
.page-hero { padding-block: clamp(3rem, 6vw, 4.5rem) clamp(1.5rem, 3vw, 2.5rem); background: var(--surface); border-bottom: 1px solid var(--border); }
.page-hero .lead { max-width: 680px; }

/* ---- contact ------------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.5rem; align-items: start; }
.form-field { margin-bottom: 1.1rem; }
.form-field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .4rem; }
.form-field input, .form-field textarea {
    width: 100%; font: inherit; color: var(--ink); background: var(--bg);
    border: 1.5px solid var(--border-strong); border-radius: var(--radius-sm); padding: .7rem .9rem;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,153,0,.18); }
.form-field textarea { min-height: 150px; resize: vertical; }
.field-validation-error, .validation-summary-errors { color: #dc2626; font-size: .86rem; }
.field-validation-error { display: block; margin-top: .3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.alert { padding: .9rem 1.1rem; border-radius: var(--radius-sm); margin-bottom: 1.2rem; font-size: .95rem; }
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.contact-aside { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.8rem; }
.contact-aside h3 { font-size: 1.05rem; }
.contact-aside address { font-style: normal; color: var(--muted); margin-bottom: 1.2rem; }
.contact-aside a { color: var(--primary-hover); font-weight: 600; }

/* ---- prose (legal) ------------------------------------------------------ */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2rem; font-size: 1.4rem; }
.prose p, .prose li { color: var(--ink-2); }
.prose ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1rem; }
.prose ul li { margin-bottom: .4rem; }

/* ---- footer ------------------------------------------------------------- */
.site-footer { background: var(--footer-bg); color: var(--footer-ink); padding-block: clamp(2.8rem, 5vw, 4rem) 1.8rem; margin-top: var(--space-section); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 2rem; }
.footer-logo { height: 28px; width: auto; margin-bottom: 1rem; }
.footer-tagline { color: var(--footer-ink); max-width: 34ch; font-size: .95rem; }
.footer-address { font-style: normal; font-size: .9rem; color: var(--muted-2); margin-top: 1rem; }
.footer-heading { color: var(--footer-heading); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-heading-spaced { margin-top: 1.6rem; }
.footer-col ul li { margin-bottom: .55rem; }
.footer-col a { color: var(--footer-ink); font-size: .95rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem; border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.5rem; padding-top: 1.4rem; font-size: .88rem; color: var(--muted-2); }
.footer-bottom a { color: var(--footer-ink); }
.footer-bottom a:hover { color: #fff; }

/* ---- responsive --------------------------------------------------------- */
@media (max-width: 960px) {
    .product-grid, .feature-grid, .feature-grid.cols-4, .compliance-grid, .partner-row { grid-template-columns: repeat(2, 1fr); }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .about-split, .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
    .nav-toggle { display: flex; }
    .primary-nav {
        position: fixed; inset: 70px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
        background: #fff; border-bottom: 1px solid var(--border); box-shadow: var(--shadow);
        padding: 1rem 1.25rem 1.5rem; transform: translateY(-12px); opacity: 0; pointer-events: none;
        transition: opacity .2s ease, transform .2s ease;
    }
    .primary-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
    .nav-list li { border-bottom: 1px solid var(--border); }
    .nav-list a { display: block; padding: .9rem 0; }
    .nav-list a::after { display: none; }
    .submenu { position: static; transform: none; opacity: 1; pointer-events: auto; box-shadow: none; border: 0; padding: 0 0 .6rem 1rem; min-width: 0; margin-top: 0; }
    .submenu::before { display: none; }
    .submenu a { padding: .5rem 0; }
    .nav-list .caret { display: none; }
    .nav-actions { margin-top: 1rem; justify-content: space-between; }
}

@media (max-width: 560px) {
    body { font-size: 16px; }
    .product-grid, .feature-grid, .compliance-grid, .partner-row, .stats { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .btn { width: 100%; }
    .btn-row .btn { width: auto; }
}

/* ==========================================================================
   v2 — premium components (product showcase rows, industry detail, AOS)
   ========================================================================== */

/* stat band */
.stat-band { padding-block: clamp(2rem, 4vw, 3rem); }

/* feature cards as links */
.feature-link { display: block; color: inherit; }
.feature-link .feature-tag { transition: gap .15s ease; }
.feature-link:hover { border-color: color-mix(in srgb, var(--primary) 40%, var(--border)); }

/* ---- product showcase rows (alternating, framed screenshots) ----------- */
.product-rows { display: flex; flex-direction: column; gap: clamp(3rem, 7vw, 6rem); }
.product-row { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.product-row:nth-child(even) .product-shot { order: 2; }
.product-info .product-head { min-height: auto; margin-bottom: 1.1rem; }
.product-info .product-tagline { font-size: 1.25rem; font-weight: 700; margin-bottom: .6rem; }
.product-info .product-desc { font-size: 1.02rem; max-width: 46ch; }
.product-info .product-highlights { margin: 1.2rem 0 1.6rem; }

/* framed "browser" screenshot */
.shot-frame {
    border-radius: 16px; overflow: hidden; background: #fff;
    border: 1px solid var(--border); box-shadow: var(--shadow-lg);
    position: relative;
}
.product-shot { position: relative; }
.product-shot::before {
    content: ""; position: absolute; inset: -8% -6% -10% -6%; z-index: -1; border-radius: 28px;
    background: radial-gradient(60% 60% at 50% 30%, rgba(255,153,0,.16), transparent 70%);
}
.shot-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: var(--surface-2); border-bottom: 1px solid var(--border); }
.shot-bar span { width: 11px; height: 11px; border-radius: 50%; background: #cbd5e1; }
.shot-bar span:nth-child(1) { background: #f87171; }
.shot-bar span:nth-child(2) { background: #fbbf24; }
.shot-bar span:nth-child(3) { background: #34d399; }
.shot-canvas { background: var(--surface); display: flex; justify-content: center; align-items: center; max-height: 460px; overflow: hidden; }
.shot-img { width: 100%; height: auto; display: block; }
/* portrait (phone) screenshots: contain & center */
.shot-canvas:has(.shot-img[src*="armoshred"]) { padding: 1.5rem; }
.shot-canvas:has(.shot-img[src*="armoshred"]) .shot-img,
.shot-canvas:has(.shot-img[src*="armoconnect"]) .shot-img { width: auto; max-height: 420px; border-radius: 10px; }

/* ---- industry detail page ---------------------------------------------- */
.page-hero-detail { padding-bottom: clamp(2rem, 4vw, 3rem); }
.back-link { display: inline-flex; align-items: center; gap: .4rem; color: var(--muted); font-weight: 600; font-size: .9rem; margin-bottom: 1.2rem; }
.back-link:hover { color: var(--primary-hover); }
.detail-head { display: flex; align-items: center; gap: 1.1rem; margin-bottom: 1.2rem; }
.detail-head h1 { margin: 0; }
.detail-ico { width: 64px; height: 64px; flex: none; border-radius: 16px; display: grid; place-items: center; background: var(--primary-soft); color: var(--primary-hover); }
.detail-ico svg { width: 32px; height: 32px; }

.industry-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.iproduct-card { display: flex; flex-direction: column; justify-content: space-between; gap: 1rem; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; transition: transform .15s ease, box-shadow .15s ease; }
.iproduct-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.iproduct-card .product-head { min-height: auto; margin-bottom: .7rem; }
.iproduct-positioning { color: var(--muted); font-size: .95rem; margin: .2rem 0 0; }

.benefits-split { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2.5rem; align-items: start; }
.benefit-list { display: flex; flex-direction: column; gap: .8rem; margin-top: 1rem; }
.benefit-list li { display: flex; align-items: flex-start; gap: .7rem; font-size: 1.05rem; color: var(--ink-2); }
.benefit-check { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--primary-soft); color: var(--primary-hover); font-weight: 800; display: grid; place-items: center; font-size: .8rem; margin-top: .15rem; }
.compliance-aside { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.8rem; }
.compliance-aside h3 { font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.compliance-badges { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }

@media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; gap: 2.2rem; }
    .hero-inner { max-width: 100%; }
    .hero-visual { order: 2; }
}
@media (max-width: 900px) {
    .product-row { grid-template-columns: 1fr; gap: 1.8rem; }
    .product-row:nth-child(even) .product-shot { order: 0; }
    .industry-products { grid-template-columns: 1fr; }
    .benefits-split { grid-template-columns: 1fr; gap: 1.8rem; }
    .detail-head { gap: .8rem; flex-wrap: wrap; }
    .detail-ico { width: 52px; height: 52px; }
}
@media (max-width: 560px) {
    .hero-chips { grid-template-columns: 1fr; }
    h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); }
    .product-info .product-tagline { font-size: 1.1rem; }
    .shot-canvas { max-height: 300px; }
}

/* compliance cards as links + cross-links + detail badge */
.compliance-link { color: inherit; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.compliance-link:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--primary) 40%, var(--border)); }
.card-more { display: inline-block; margin-top: .5rem; color: var(--primary-hover); font-weight: 600; font-size: .85rem; }
.detail-badge { flex: none; font-weight: 800; font-size: 1.05rem; color: var(--primary-hover); background: var(--primary-soft); padding: .9rem 1.1rem; border-radius: 16px; white-space: nowrap; }
.badge-link { transition: background .15s ease, color .15s ease; }
.badge-link:hover { background: var(--primary); color: var(--on-primary); }
.submenu-wide { min-width: 360px; display: grid; grid-template-columns: 1fr 1fr; gap: .1rem .4rem; }
@media (max-width: 720px) {
    .submenu-wide { min-width: 0; display: block; }
}
